From 6bcf3d6a91c07e64f6596d1af9d866f9924c2575 Mon Sep 17 00:00:00 2001 From: Dmitry Bushev Date: Tue, 2 Aug 2022 17:44:59 +0300 Subject: [PATCH 01/10] feat: scala 2.13.8 --- build.sbt | 73 +++++++++---------- .../internal/service/Server.scala | 11 +-- .../infrastructure/log/Slf4jLogging.scala | 1 + project/build.properties | 2 +- .../org/enso/base/text/CaseFoldedString.java | 4 +- 5 files changed, 43 insertions(+), 48 deletions(-) diff --git a/build.sbt b/build.sbt index 5bb3fb90a24c..5d3c86a48a3f 100644 --- a/build.sbt +++ b/build.sbt @@ -14,7 +14,7 @@ import java.io.File // === Global Configuration =================================================== // ============================================================================ -val scalacVersion = "2.13.7" +val scalacVersion = "2.13.8" val graalVersion = "21.3.0" val javaVersion = "11" val defaultDevEnsoVersion = "0.0.0-dev" @@ -324,10 +324,10 @@ lazy val enso = (project in file(".")) def akkaPkg(name: String) = akkaURL %% s"akka-$name" % akkaVersion def akkaHTTPPkg(name: String) = akkaURL %% s"akka-$name" % akkaHTTPVersion val akkaURL = "com.typesafe.akka" -val akkaVersion = "2.6.18" -val akkaHTTPVersion = "10.2.7" +val akkaVersion = "2.6.19" +val akkaHTTPVersion = "10.2.9" val akkaMockSchedulerVersion = "0.5.5" -val logbackClassicVersion = "1.2.10" +val logbackClassicVersion = "1.2.11" val akkaActor = akkaPkg("actor") val akkaStream = akkaPkg("stream") val akkaTyped = akkaPkg("actor-typed") @@ -350,7 +350,7 @@ val akka = // === Cats =================================================================== -val catsVersion = "2.7.0" +val catsVersion = "2.8.0" val kittensVersion = "2.3.2" val cats = { Seq( @@ -364,7 +364,7 @@ val cats = { // === Circe ================================================================== -val circeVersion = "0.14.1" +val circeVersion = "0.14.2" val circeYamlVersion = "0.14.1" val enumeratumCirceVersion = "1.7.0" val circeGenericExtrasVersion = "0.14.1" @@ -391,7 +391,7 @@ val commons = Seq( // === Jackson ================================================================ -val jacksonVersion = "2.13.1" +val jacksonVersion = "2.13.3" val jackson = Seq( "com.fasterxml.jackson.dataformat" % "jackson-dataformat-cbor" % jacksonVersion, "com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion, @@ -400,7 +400,7 @@ val jackson = Seq( // === JAXB ================================================================ -val jaxbVersion = "3.0.1" +val jaxbVersion = "4.0.0" val jaxb = Seq( "jakarta.xml.bind" % "jakarta.xml.bind-api" % jaxbVersion % Benchmark, "com.sun.xml.bind" % "jaxb-impl" % jaxbVersion % Benchmark @@ -408,7 +408,7 @@ val jaxb = Seq( // === JMH ==================================================================== -val jmhVersion = "1.34" +val jmhVersion = "1.35" val jmh = Seq( "org.openjdk.jmh" % "jmh-core" % jmhVersion % Benchmark, "org.openjdk.jmh" % "jmh-generator-annprocess" % jmhVersion % Benchmark @@ -434,7 +434,7 @@ val scalaCompiler = Seq( // === std-lib ================================================================ -val icuVersion = "67.1" +val icuVersion = "71.1" // === ZIO ==================================================================== @@ -449,29 +449,29 @@ val zio = Seq( val bcpkixJdk15Version = "1.70" val bumpVersion = "0.1.3" -val declineVersion = "2.2.0" -val directoryWatcherVersion = "0.9.10" +val declineVersion = "2.3.0" +val directoryWatcherVersion = "0.16.0" val flatbuffersVersion = "1.12.0" -val guavaVersion = "31.0.1-jre" +val guavaVersion = "31.1-jre" val jlineVersion = "3.21.0" val kindProjectorVersion = "0.13.2" -val mockitoScalaVersion = "1.16.49" +val mockitoScalaVersion = "1.17.7" val newtypeVersion = "0.4.4" -val pprintVersion = "0.7.1" +val pprintVersion = "0.7.3" val pureconfigVersion = "0.17.1" -val refinedVersion = "0.9.27" -val scalacheckVersion = "1.15.4" +val scalacheckVersion = "1.16.0" val scalacticVersion = "3.3.0-SNAP3" val scalaLoggingVersion = "3.9.4" val scalameterVersion = "0.19" -val scalatagsVersion = "0.11.0" +val scalatagsVersion = "0.11.1" val scalatestVersion = "3.3.0-SNAP3" val shapelessVersion = "2.4.0-M1" -val slf4jVersion = "1.7.32" +val slf4jVersion = "1.7.36" val slickVersion = "3.3.3" val sqliteVersion = "3.36.0.3" -val tikaVersion = "2.2.1" -val typesafeConfigVersion = "1.4.1" +val tikaVersion = "2.4.1" +val typesafeConfigVersion = "1.4.2" +val junitVersion = "4.13.2" // ============================================================================ // === Internal Libraries ===================================================== @@ -494,7 +494,7 @@ lazy val flexer = crossProject(JVMPlatform, JSPlatform) .dependsOn(logger) .settings( version := "0.1", - resolvers += Resolver.sonatypeRepo("releases"), + resolvers ++= Resolver.sonatypeOssRepos("releases"), libraryDependencies ++= scalaCompiler ++ Seq( "com.google.guava" % "guava" % guavaVersion exclude ("com.google.code.findbugs", "jsr305"), "org.typelevel" %%% "cats-core" % catsVersion, @@ -659,9 +659,9 @@ lazy val graph = (project in file("lib/scala/graph/")) .configs(Test) .settings( version := "0.1", - resolvers ++= Seq( - Resolver.sonatypeRepo("releases"), - Resolver.sonatypeRepo("snapshots") + resolvers ++= ( + Resolver.sonatypeOssRepos("releases") ++ + Resolver.sonatypeOssRepos("snapshots") ), scalacOptions += "-Ymacro-annotations", libraryDependencies ++= scalaCompiler ++ Seq( @@ -983,7 +983,7 @@ lazy val `interpreter-dsl` = (project in file("lib/scala/interpreter-dsl")) )), libraryDependencies ++= Seq( "org.apache.commons" % "commons-lang3" % commonsLangVersion, - "org.netbeans.api" % "org-openide-util-lookup" % "RELEASE130", + "org.netbeans.api" % "org-openide-util-lookup" % "RELEASE140", "com.google.guava" % "guava" % guavaVersion exclude ("com.google.code.findbugs", "jsr305") ) ) @@ -1249,8 +1249,7 @@ lazy val runtime = (project in file("engine/runtime")) "org.scalatest" %% "scalatest" % scalatestVersion % Test, "org.graalvm.truffle" % "truffle-api" % graalVersion % Benchmark, "org.typelevel" %% "cats-core" % catsVersion, - "eu.timepit" %% "refined" % refinedVersion, - "junit" % "junit" % "4.12" % Test, + "junit" % "junit" % junitVersion % Test, "com.novocode" % "junit-interface" % "0.11" % Test exclude ("junit", "junit-dep") ), Compile / compile / compileInputs := (Compile / compile / compileInputs) @@ -1757,9 +1756,9 @@ lazy val `std-table` = project `table-polyglot-root` / "std-table.jar", libraryDependencies ++= Seq( "com.ibm.icu" % "icu4j" % icuVersion, - "com.univocity" % "univocity-parsers" % "2.9.0", - "org.apache.poi" % "poi-ooxml" % "5.0.0", - "org.apache.xmlbeans" % "xmlbeans" % "5.0.1", + "com.univocity" % "univocity-parsers" % "2.9.1", + "org.apache.poi" % "poi-ooxml" % "5.2.2", + "org.apache.xmlbeans" % "xmlbeans" % "5.1.0", "org.graalvm.truffle" % "truffle-api" % graalVersion % "provided" ), Compile / packageBin := Def.task { @@ -1784,7 +1783,7 @@ lazy val `std-image` = project Compile / packageBin / artifactPath := `image-polyglot-root` / "std-image.jar", libraryDependencies ++= Seq( - "org.openpnp" % "opencv" % "4.5.1-0" + "org.openpnp" % "opencv" % "4.5.1-2" ), Compile / packageBin := Def.task { val result = (Compile / packageBin).value @@ -1832,11 +1831,11 @@ lazy val `std-database` = project `database-polyglot-root` / "std-database.jar", libraryDependencies ++= Seq( "org.xerial" % "sqlite-jdbc" % "3.36.0.3", - "org.postgresql" % "postgresql" % "42.3.6", - "com.amazon.redshift" % "redshift-jdbc42" % "2.1.0.1", - "com.amazonaws" % "aws-java-sdk-core" % "1.12.23", - "com.amazonaws" % "aws-java-sdk-redshift" % "1.12.23", - "com.amazonaws" % "aws-java-sdk-sts" % "1.12.23" + "org.postgresql" % "postgresql" % "42.0.0", + "com.amazon.redshift" % "redshift-jdbc42" % "2.1.0.9", + "com.amazonaws" % "aws-java-sdk-core" % "1.12.273", + "com.amazonaws" % "aws-java-sdk-redshift" % "1.12.273", + "com.amazonaws" % "aws-java-sdk-sts" % "1.12.273" ), Compile / packageBin := Def.task { val result = (Compile / packageBin).value diff --git a/lib/scala/logging-service/src/main/scala/org/enso/loggingservice/internal/service/Server.scala b/lib/scala/logging-service/src/main/scala/org/enso/loggingservice/internal/service/Server.scala index a695b450dc9a..c1b942d358be 100644 --- a/lib/scala/logging-service/src/main/scala/org/enso/loggingservice/internal/service/Server.scala +++ b/lib/scala/logging-service/src/main/scala/org/enso/loggingservice/internal/service/Server.scala @@ -1,13 +1,9 @@ package org.enso.loggingservice.internal.service import akka.http.scaladsl.Http +import akka.http.scaladsl.model.AttributeKeys import akka.http.scaladsl.model.HttpMethods._ -import akka.http.scaladsl.model.ws.{ - BinaryMessage, - Message, - TextMessage, - UpgradeToWebSocket -} +import akka.http.scaladsl.model.ws.{BinaryMessage, Message, TextMessage} import akka.http.scaladsl.model.{HttpRequest, HttpResponse, Uri} import akka.stream.scaladsl.{Flow, Sink, Source} import io.circe.{parser, Error} @@ -19,7 +15,6 @@ import org.enso.loggingservice.internal.protocol.WSLogMessage import org.enso.loggingservice.printers.Printer import org.enso.loggingservice.{LogLevel, ServerBinding} -import scala.annotation.nowarn import scala.concurrent.duration.DurationInt import scala.concurrent.{Await, Future} @@ -61,7 +56,7 @@ class Server( private def startWebSocketServer(): Future[Unit] = { val requestHandler: HttpRequest => HttpResponse = { case req @ HttpRequest(GET, Uri.Path("/"), _, _, _) => - req.header[UpgradeToWebSocket @nowarn] match { + req.attribute(AttributeKeys.webSocketUpgrade) match { case Some(upgrade) => val flow = Flow.fromSinkAndSourceCoupled( createMessageProcessor(), diff --git a/lib/scala/project-manager/src/main/scala/org/enso/projectmanager/infrastructure/log/Slf4jLogging.scala b/lib/scala/project-manager/src/main/scala/org/enso/projectmanager/infrastructure/log/Slf4jLogging.scala index 31c23fccc253..96c590dc98fe 100644 --- a/lib/scala/project-manager/src/main/scala/org/enso/projectmanager/infrastructure/log/Slf4jLogging.scala +++ b/lib/scala/project-manager/src/main/scala/org/enso/projectmanager/infrastructure/log/Slf4jLogging.scala @@ -1,4 +1,5 @@ package org.enso.projectmanager.infrastructure.log + import com.typesafe.scalalogging.LazyLogging import org.enso.projectmanager.control.effect.Sync diff --git a/project/build.properties b/project/build.properties index 3161d2146c63..22af2628c413 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.6.1 +sbt.version=1.7.1 diff --git a/std-bits/base/src/main/java/org/enso/base/text/CaseFoldedString.java b/std-bits/base/src/main/java/org/enso/base/text/CaseFoldedString.java index 94bf771554b3..62b3921bad4e 100644 --- a/std-bits/base/src/main/java/org/enso/base/text/CaseFoldedString.java +++ b/std-bits/base/src/main/java/org/enso/base/text/CaseFoldedString.java @@ -172,8 +172,8 @@ public static String simpleFold(CharSequence string, Locale locale) { return caseFoldAlgorithmForLocale(locale).apply(string); } - private static final Locale AZ_LOCALE = new Locale("az"); - private static final Locale TR_LOCALE = new Locale("tr"); + private static final Locale AZ_LOCALE = Locale.forLanguageTag("az"); + private static final Locale TR_LOCALE = Locale.forLanguageTag("tr"); /** * Returns a case folding algorithm appropriate for the given locale. From b360b6060e02d3f107194d65f5ea3504ce447a9e Mon Sep 17 00:00:00 2001 From: Dmitry Bushev Date: Tue, 2 Aug 2022 17:50:03 +0300 Subject: [PATCH 02/10] misc: changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb17fc3645ab..b57f954cc7f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -299,6 +299,7 @@ - [Explicit `self`][3569] - [Added benchmarking tool for the language server][3578] - [Support module imports using a qualified name][3608] +- [Update Scala compiler and libraries][3631] [3227]: https://github.com/enso-org/enso/pull/3227 [3248]: https://github.com/enso-org/enso/pull/3248 @@ -335,6 +336,7 @@ [3538]: https://github.com/enso-org/enso/pull/3569 [3578]: https://github.com/enso-org/enso/pull/3578 [3608]: https://github.com/enso-org/enso/pull/3608 +[3631]: https://github.com/enso-org/enso/pull/3631 # Enso 2.0.0-alpha.18 (2021-10-12) From 18cc9ed2d21994760c7cfdaa8d219fcb5510af0e Mon Sep 17 00:00:00 2001 From: Dmitry Bushev Date: Tue, 2 Aug 2022 18:09:21 +0300 Subject: [PATCH 03/10] fix: postgresql dep --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 5d3c86a48a3f..0c4793c0749f 100644 --- a/build.sbt +++ b/build.sbt @@ -1831,7 +1831,7 @@ lazy val `std-database` = project `database-polyglot-root` / "std-database.jar", libraryDependencies ++= Seq( "org.xerial" % "sqlite-jdbc" % "3.36.0.3", - "org.postgresql" % "postgresql" % "42.0.0", + "org.postgresql" % "postgresql" % "42.4.0", "com.amazon.redshift" % "redshift-jdbc42" % "2.1.0.9", "com.amazonaws" % "aws-java-sdk-core" % "1.12.273", "com.amazonaws" % "aws-java-sdk-redshift" % "1.12.273", From 6b2dc80ef82c0b406b6dd102afed831711ee8be8 Mon Sep 17 00:00:00 2001 From: Dmitry Bushev Date: Thu, 4 Aug 2022 15:35:27 +0300 Subject: [PATCH 04/10] update: netbeans api --- build.sbt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/build.sbt b/build.sbt index 0c4793c0749f..d9c960120a11 100644 --- a/build.sbt +++ b/build.sbt @@ -450,7 +450,7 @@ val zio = Seq( val bcpkixJdk15Version = "1.70" val bumpVersion = "0.1.3" val declineVersion = "2.3.0" -val directoryWatcherVersion = "0.16.0" +val directoryWatcherVersion = "0.16.1" val flatbuffersVersion = "1.12.0" val guavaVersion = "31.1-jre" val jlineVersion = "3.21.0" @@ -472,6 +472,7 @@ val sqliteVersion = "3.36.0.3" val tikaVersion = "2.4.1" val typesafeConfigVersion = "1.4.2" val junitVersion = "4.13.2" +val netbeansApiVersion = "RELEASE140" // ============================================================================ // === Internal Libraries ===================================================== @@ -707,15 +708,14 @@ lazy val `profiling-utils` = project .settings( version := "0.1", libraryDependencies ++= Seq( - "org.netbeans.api" % "org-netbeans-modules-sampler" % "RELEASE130" + "org.netbeans.api" % "org-netbeans-modules-sampler" % netbeansApiVersion exclude ("org.netbeans.api", "org-openide-loaders") exclude ("org.netbeans.api", "org-openide-nodes") - // exclude following when RELEASE140 is out: - // exclude("org.netbeans.api", "org-netbeans-api-progress-nb") - // exclude("org.netbeans.api", "org-netbeans-api-progress") - // exclude("org.netbeans.api", "org-openide-util-lookup") - // exclude("org.netbeans.api", "org-openide-util") - // exclude("org.netbeans.api", "org-openide-dialogs") + exclude("org.netbeans.api", "org-netbeans-api-progress-nb") + exclude("org.netbeans.api", "org-netbeans-api-progress") + exclude("org.netbeans.api", "org-openide-util-lookup") + exclude("org.netbeans.api", "org-openide-util") + exclude("org.netbeans.api", "org-openide-dialogs") exclude ("org.netbeans.api", "org-openide-filesystems") exclude ("org.netbeans.api", "org-openide-util-ui") exclude ("org.netbeans.api", "org-openide-awt") @@ -983,7 +983,7 @@ lazy val `interpreter-dsl` = (project in file("lib/scala/interpreter-dsl")) )), libraryDependencies ++= Seq( "org.apache.commons" % "commons-lang3" % commonsLangVersion, - "org.netbeans.api" % "org-openide-util-lookup" % "RELEASE140", + "org.netbeans.api" % "org-openide-util-lookup" % netbeansApiVersion, "com.google.guava" % "guava" % guavaVersion exclude ("com.google.code.findbugs", "jsr305") ) ) From e97a0024d28112646ba5928614120b3a89fc7454 Mon Sep 17 00:00:00 2001 From: Dmitry Bushev Date: Thu, 4 Aug 2022 16:27:55 +0300 Subject: [PATCH 05/10] update: circe-generic --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index d9c960120a11..263fc434fd8e 100644 --- a/build.sbt +++ b/build.sbt @@ -367,7 +367,7 @@ val cats = { val circeVersion = "0.14.2" val circeYamlVersion = "0.14.1" val enumeratumCirceVersion = "1.7.0" -val circeGenericExtrasVersion = "0.14.1" +val circeGenericExtrasVersion = "0.14.2" val circe = Seq("circe-core", "circe-generic", "circe-parser") .map("io.circe" %% _ % circeVersion) From a16b25521e970bd81b601338f75d5f5122bb1b13 Mon Sep 17 00:00:00 2001 From: Dmitry Bushev Date: Thu, 4 Aug 2022 17:10:00 +0300 Subject: [PATCH 06/10] fix: launcher --- engine/launcher/src/main/resources/application.conf | 1 - 1 file changed, 1 deletion(-) diff --git a/engine/launcher/src/main/resources/application.conf b/engine/launcher/src/main/resources/application.conf index bf3de5e69207..71ed309c6873 100644 --- a/engine/launcher/src/main/resources/application.conf +++ b/engine/launcher/src/main/resources/application.conf @@ -1,7 +1,6 @@ akka { loggers = ["akka.event.slf4j.Slf4jLogger"] logging-filter = "akka.event.slf4j.Slf4jLoggingFilter" - version = "2.6.18" stdout-loglevel = "ERROR" } From 41de19f3162e0e67b3060f53ebea1e4e45e20b6b Mon Sep 17 00:00:00 2001 From: Dmitry Bushev Date: Thu, 4 Aug 2022 17:40:21 +0300 Subject: [PATCH 07/10] fix: legal review --- distribution/engine/THIRD-PARTY/NOTICE | 143 ++--- .../com.chuusai.shapeless_2.13-2.3.9/NOTICES | 3 + .../LICENSE | 0 .../CREDITS-2.x.txt | 0 .../NOTICE | 0 .../NOTICES | 0 .../CREDITS-2.x.txt | 0 .../NOTICE | 0 .../CREDITS-2.x.txt | 0 .../LICENSE | 0 .../NOTICES | 1 - .../NOTICES | 1 + .../NOTICES | 79 --- .../com.google.guava.guava-31.0.1-jre/NOTICES | 61 -- .../com.google.guava.guava-31.1-jre/NOTICES | 1 + .../LICENSE | 0 .../LICENSE | 0 .../LICENSE.txt | 0 .../com.lihaoyi.scalatags_2.13-0.11.1/NOTICES | 1 + .../LICENSE | 0 .../NOTICES | 0 .../NOTICES | 15 - .../NOTICES | 1 + .../NOTICES | 19 - .../NOTICES | 1 + .../NOTICES | 114 ---- .../NOTICES | 9 +- .../NOTICES | 7 - .../NOTICES | 0 .../NOTICES | 27 - .../NOTICES | 1 + .../NOTICES | 98 ---- .../NOTICES | 4 +- .../COPYING.protobuf | 0 .../LICENSE | 0 .../NOTICES | 3 - .../NOTICES | 1 + .../NOTICES | 35 -- .../NOTICES | 1 + .../com.typesafe.config-1.4.2/NOTICES | 1 + .../NOTICES | 0 .../eu.timepit.refined_2.13-0.9.27/LICENSE | 21 - .../NOTICE | 0 .../NOTICES | 0 .../NOTICE | 0 .../NOTICE | 0 .../NOTICE | 0 .../NOTICE | 0 .../NOTICE | 0 .../NOTICES | 0 .../NOTICES | 17 - .../net.java.dev.jna.jna-5.12.1/NOTICES | 3 + .../net.java.dev.jna.jna-5.8.0/NOTICES | 78 --- .../net.java.dev.jna.jna-5.9.0/NOTICES | 3 + .../org.apache.tika.tika-core-2.2.1/LICENSE | 260 --------- .../org.apache.tika.tika-core-2.2.1/NOTICES | 42 -- .../NOTICE | 2 +- .../org.apache.tika.tika-core-2.4.1/NOTICES | 3 + .../org.jline.jline-3.20.0/NOTICES | 19 - .../NOTICE | 14 - .../NOTICE.1 | 14 - .../NOTICE | 14 - .../NOTICE | 2 +- .../NOTICES | 0 .../NOTICE | 14 - .../NOTICE.1 | 14 - .../NOTICE | 14 - .../NOTICES | 19 - .../NOTICE | 2 +- .../NOTICES | 10 - .../NOTICES | 11 - .../NOTICE | 0 .../NOTICES | 3 + .../NOTICE | 0 .../NOTICES | 0 .../NOTICE | 0 .../NOTICES | 0 .../org.slf4j.slf4j-api-1.7.36}/NOTICES | 0 .../AUTHORS.md | 324 ----------- .../COPYING | 255 --------- .../NOTICES | 3 + .../NOTICES | 2 - .../NOTICES | 7 + .../LICENSE | 0 distribution/launcher/THIRD-PARTY/NOTICE | 51 +- .../com.chuusai.shapeless_2.13-2.3.9}/NOTICES | 0 .../NOTICES | 19 - .../NOTICES | 1 + .../NOTICES | 0 .../NOTICES | 0 .../NOTICES | 0 .../COPYING.protobuf | 0 .../LICENSE | 0 .../NOTICES | 3 - .../NOTICES | 1 + .../NOTICES | 19 - .../NOTICES | 1 + .../com.typesafe.config-1.4.1/NOTICES | 11 - .../com.typesafe.config-1.4.2}/NOTICES | 0 .../NOTICES | 0 .../LICENSE | 0 .../LICENSE.argonaut | 0 .../LICENSE.ephox | 0 .../NOTICE | 0 .../LICENSE | 0 .../LICENSE.argonaut | 0 .../LICENSE.ephox | 0 .../NOTICE | 0 .../LICENSE | 0 .../LICENSE.argonaut | 0 .../LICENSE.ephox | 0 .../NOTICE | 0 .../LICENSE | 0 .../LICENSE.argonaut | 0 .../LICENSE.ephox | 0 .../NOTICE | 0 .../LICENSE | 0 .../LICENSE.argonaut | 0 .../LICENSE.ephox | 0 .../NOTICE | 0 .../NOTICE | 0 .../NOTICES | 0 .../NOTICE | 0 .../NOTICES | 0 .../org.slf4j.slf4j-api-1.7.36}/NOTICES | 0 .../AUTHORS.md | 324 ----------- .../NOTICES | 3 + .../AUTHORS | 1 - .../COPYING | 255 --------- .../NOTICES | 7 + .../LICENSE | 0 .../Base/0.0.0-dev/THIRD-PARTY/NOTICE | 2 +- .../com.ibm.icu.icu4j-67.1/NOTICES | 405 -------------- .../LICENSE | 157 +++++- .../com.ibm.icu.icu4j-71.1/NOTICES | 1 + .../Database/0.0.0-dev/THIRD-PARTY/NOTICE | 28 +- .../NOTICES | 41 -- .../THIRD_PARTY_LICENSES | 67 --- .../LICENSE | 0 .../NOTICES | 7 + .../NOTICES | 45 -- .../NOTICES | 5 + .../NOTICES | 1 - .../NOTICES | 1 + .../NOTICES | 13 - .../NOTICES | 1 + .../NOTICES | 14 - .../NOTICES | 1 + .../NOTICES | 2 - .../LICENSE | 0 .../LICENSE | 0 .../NOTICE | 0 .../NOTICES | 0 .../LICENSE | 0 .../CREDITS-2.x.txt | 0 .../org.postgresql.postgresql-42.3.6/NOTICES | 43 -- .../LICENSE | 0 .../org.postgresql.postgresql-42.4.0/NOTICES | 5 + .../Image/0.0.0-dev/THIRD-PARTY/NOTICE | 2 +- .../org.openpnp.opencv-4.5.1-0/NOTICES | 9 - .../org.openpnp.opencv-4.5.1-2/NOTICES | 3 + .../Table/0.0.0-dev/THIRD-PARTY/NOTICE | 254 +-------- .../LICENSE | 8 - .../NOTICES | 5 - .../NOTICES | 0 .../com.ibm.icu.icu4j-67.1/NOTICES | 405 -------------- .../LICENSE | 157 +++++- .../com.ibm.icu.icu4j-71.1/NOTICES | 3 + .../NOTICES | 15 - .../NOTICES | 1 + .../commons-io.commons-io-1.3.1/NOTICE.txt | 6 - .../commons-io.commons-io-2.11.0/NOTICE.txt | 5 + .../commons-io.commons-io-2.11.0/NOTICES | 0 .../de.rototor.pdfbox.graphics2d-0.30/NOTICES | 1 - .../licenses/Bouncy_Castle_Licence.txt | 7 - .../Table/0.0.0-dev/THIRD-PARTY/licenses/MIT | 6 - .../NOTICES | 1 - .../NOTICE.txt | 2 +- .../NOTICES | 3 + .../NOTICE | 2 +- .../NOTICES | 0 .../org.apache.pdfbox.fontbox-2.0.22/LICENSE | 331 ----------- .../org.apache.pdfbox.fontbox-2.0.22/NOTICE | 13 - .../org.apache.pdfbox.fontbox-2.0.22/NOTICES | 11 - .../org.apache.pdfbox.pdfbox-2.0.22/LICENSE | 441 --------------- .../org.apache.pdfbox.pdfbox-2.0.22/NOTICE | 22 - .../org.apache.pdfbox.pdfbox-2.0.22/NOTICES | 46 -- .../org.apache.poi.poi-5.0.0/NOTICES | 1 - .../LICENSE | 24 +- .../LICENSE.1 | 24 +- .../org.apache.poi.poi-5.2.2/LICENSE.2} | 166 ++++-- .../NOTICE | 0 .../NOTICE.1 | 0 .../NOTICE.2} | 0 .../org.apache.poi.poi-5.2.2/NOTICES | 9 + .../org.apache.poi.poi-ooxml-5.0.0/NOTICES | 1 - .../LICENSE | 24 +- .../org.apache.poi.poi-ooxml-5.2.2/LICENSE.1 | 315 +++++++++++ .../org.apache.poi.poi-ooxml-5.2.2/NOTICE | 24 + .../org.apache.poi.poi-ooxml-5.2.2/NOTICE.1 | 24 + .../org.apache.poi.poi-ooxml-5.2.2/NOTICES | 7 + .../NOTICES | 2 - .../LICENSE} | 166 ++++-- .../NOTICE | 24 + .../NOTICES | 7 + .../org.apache.santuario.xmlsec-2.2.1/NOTICE | 8 - .../org.apache.santuario.xmlsec-2.2.1/NOTICES | 13 - .../NOTICE.txt | 24 - .../NOTICES | 7 - .../NOTICES | 2 + .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 1 - .../NOTICES | 1 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICE | 18 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 7 - .../LICENSE.icons.txt | 252 --------- .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICES | 2 - .../NOTICE | 5 - .../NOTICES | 2 - .../NOTICES | 7 - .../LICENSE | 13 - .../NOTICES | 7 - .../org.slf4j.jcl-over-slf4j-1.7.30/NOTICES | 1 - .../xalan.serializer-2.7.2/NOTICES | 1 - .../THIRD-PARTY/xalan.xalan-2.7.2/NOTICES | 1 - .../xml-apis.xml-apis-1.4.01/LICENSE | 202 ------- .../LICENSE.dom-documentation.txt | 73 --- .../LICENSE.dom-software.txt | 54 -- .../xml-apis.xml-apis-1.4.01/LICENSE.sac.html | 75 --- .../xml-apis.xml-apis-1.4.01/LICENSE.sax.txt | 23 - .../xml-apis.xml-apis-1.4.01/NOTICE | 16 - .../xml-apis.xml-apis-1.4.01/NOTICES | 15 - .../xml-apis.xml-apis-ext-1.3.04/NOTICES | 2 - .../project-manager/THIRD-PARTY/NOTICE | 69 ++- .../com.chuusai.shapeless_2.13-2.3.7/NOTICES | 153 ------ .../com.chuusai.shapeless_2.13-2.3.9}/NOTICES | 0 .../LICENSE} | 1 - .../NOTICES | 4 - .../CREDITS-2.x.txt | 0 .../NOTICE | 0 .../NOTICES | 0 .../NOTICE | 17 - .../CREDITS-2.x.txt | 0 .../NOTICE | 0 .../CREDITS-2.x.txt | 0 .../NOTICES | 29 - .../LICENSE | 0 .../NOTICES | 0 .../NOTICES | 15 - .../NOTICES | 1 + .../NOTICES | 19 - .../NOTICES | 1 + .../NOTICES | 0 .../NOTICES | 0 .../NOTICES | 0 .../NOTICES | 0 .../COPYING.protobuf | 0 .../LICENSE | 0 .../NOTICES | 3 - .../NOTICES | 1 + .../NOTICES | 19 - .../NOTICES | 1 + .../com.typesafe.config-1.4.1/NOTICES | 11 - .../com.typesafe.config-1.4.2}/NOTICES | 0 .../NOTICES | 0 .../LICENSE.argonaut | 24 - .../LICENSE.ephox | 24 - .../LICENSE.argonaut | 0 .../LICENSE.ephox | 0 .../NOTICE | 0 .../LICENSE.argonaut | 24 - .../LICENSE.ephox | 24 - .../LICENSE.argonaut | 0 .../LICENSE.ephox | 0 .../NOTICE | 0 .../LICENSE.argonaut | 24 - .../LICENSE.ephox | 24 - .../LICENSE.argonaut | 0 .../LICENSE.ephox | 0 .../NOTICE | 0 .../LICENSE.argonaut | 24 - .../LICENSE.ephox | 24 - .../LICENSE.argonaut | 0 .../LICENSE.ephox | 0 .../NOTICE | 0 .../LICENSE.argonaut | 24 - .../LICENSE.ephox | 24 - .../LICENSE.argonaut | 0 .../LICENSE.ephox | 0 .../NOTICE | 0 .../LICENSE.argonaut | 24 - .../LICENSE.ephox | 24 - .../LICENSE.argonaut | 0 .../LICENSE.ephox | 0 .../NOTICE | 0 .../NOTICE | 0 .../NOTICES | 0 .../NOTICE | 0 .../NOTICES | 0 .../org.slf4j.slf4j-api-1.7.32/NOTICES | 24 - .../org.slf4j.slf4j-api-1.7.36}/NOTICES | 0 .../AUTHORS.md | 324 ----------- .../COPYING | 255 --------- .../NOTICES | 3 + .../COPYING | 255 --------- .../NOTICES | 2 - .../NOTICES | 10 + .../LICENSE | 0 .../NOTICES | 203 ------- .../com.ibm.icu.icu4j-67.1/copyright-ignore | 4 - .../com.ibm.icu.icu4j-71.1/copyright-ignore} | 79 +-- .../com.ibm.icu.icu4j-71.1/copyright-keep | 1 + .../custom-license | 0 .../files-keep | 0 tools/legal-review/Base/report-state | 4 +- .../reviewed-licenses/Unicode_ICU_License | 1 + .../copyright-ignore | Bin 4566 -> 0 bytes .../files-add/THIRD_PARTY_LICENSES | 67 --- .../files-keep copy | 0 .../copyright-ignore | Bin 0 -> 5578 bytes .../copyright-keep | 4 + .../custom-license | 0 .../files-keep | 0 .../copyright-ignore | 2 - .../copyright-keep | 23 - .../copyright-ignore | 22 + .../copyright-keep | 3 + .../copyright-keep | 1 - .../copyright-keep | 1 + .../copyright-keep | 7 - .../copyright-ignore | 6 + .../copyright-keep | 1 + .../copyright-keep | 0 .../copyright-keep-context | 1 - .../copyright-keep | 1 + .../copyright-add | 1 - .../files-keep | 0 .../custom-license | 0 .../files-keep | 0 .../copyright-keep} | 0 .../custom-license | 0 .../files-keep | 0 .../custom-license | 0 .../files-ignore} | 0 .../files-keep | 0 .../files-add/CREDITS-2.x.txt | 0 .../files-ignore | 0 .../copyright-ignore | 3 - .../copyright-keep | 16 - .../copyright-ignore} | 8 +- .../copyright-keep} | 0 .../custom-license | 0 .../files-keep | 0 tools/legal-review/Database/report-state | 4 +- .../Database/reviewed-licenses/BSD-2-Clause | 1 + .../copyright-ignore | Bin 201964 -> 0 bytes .../org.openpnp.opencv-4.5.1-0/copyright-keep | 5 - .../copyright-ignore | Bin 0 -> 109832 bytes .../org.openpnp.opencv-4.5.1-2/copyright-keep | 2 + tools/legal-review/Image/report-state | 4 +- .../copyright-keep | 3 - .../copyright-ignore | 0 .../copyright-keep | 0 .../com.ibm.icu.icu4j-67.1/copyright-ignore | 4 - .../com.ibm.icu.icu4j-71.1/copyright-ignore} | 80 +-- .../com.ibm.icu.icu4j-71.1/copyright-keep | 2 + .../custom-license | 0 .../files-keep | 0 .../copyright-ignore} | 1 - .../copyright-keep | 1 + .../copyright-ignore | 0 .../copyright-keep} | 0 .../files-ignore | 0 .../files-keep | 0 .../copyright-keep | 1 - .../copyright-ignore | 2 - .../copyright-keep | 1 - .../copyright-ignore | 2 + .../copyright-keep | 2 + .../files-ignore | 0 .../files-keep | 0 .../copyright-ignore | 1 - .../copyright-keep} | 0 .../files-ignore | 0 .../files-keep | 0 .../copyright-ignore | 44 -- .../copyright-keep | 6 - .../copyright-add | 3 - .../copyright-ignore | Bin 4486 -> 0 bytes .../copyright-keep | 21 - .../files-keep | 2 - .../org.apache.poi.poi-5.0.0/copyright-keep | 1 - .../copyright-ignore | 3 + .../org.apache.poi.poi-5.2.2/copyright-keep | 5 + .../custom-license | 0 .../org.apache.poi.poi-5.2.2/files-ignore | 15 + .../files-keep | 0 .../copyright-keep | 1 - .../org.apache.poi.poi-ooxml-5.0.0/files-keep | 2 - .../copyright-ignore | 5 + .../copyright-keep | 4 + .../custom-license | 0 .../files-ignore | 14 + .../files-keep} | 2 +- .../copyright-add | 1 - .../copyright-ignore | 2 +- .../copyright-keep | 4 + .../custom-license | 0 .../files-ignore | 13 + .../files-keep | 0 .../copyright-keep | 7 - .../files-ignore | 1 - .../files-keep | 1 - .../copyright-ignore} | 0 .../copyright-keep} | 1 + .../copyright-add | 1 - .../copyright-add | 1 - .../copyright-add | 1 - .../copyright-add | 1 - .../copyright-ignore | 1 - .../copyright-add | 1 - .../copyright-ignore | 1 - .../copyright-add | 1 - .../copyright-add | 1 - .../copyright-ignore | 1 - .../copyright-keep | 1 - .../copyright-ignore | 2 - .../copyright-keep | 1 - .../copyright-add | 1 - .../copyright-ignore | 1 - .../copyright-add | 1 - .../copyright-ignore | 1 - .../copyright-add | 1 - .../copyright-ignore | 1 - .../copyright-add | 1 - .../copyright-ignore | 1 - .../copyright-add | 1 - .../copyright-ignore | 1 - .../copyright-add | 1 - .../copyright-ignore | 1 - .../copyright-add | 1 - .../copyright-add | 1 - .../copyright-ignore | 1 - .../copyright-ignore | 1 - .../copyright-add | 1 - .../copyright-ignore | 1 - .../copyright-add | 1 - .../copyright-add | 1 - .../copyright-ignore | 3 - .../copyright-keep | 4 - .../copyright-ignore | 1 - .../custom-license | 1 - .../files-keep | 1 - .../copyright-add | 1 - .../copyright-ignore | 3 - .../copyright-add | 1 - .../copyright-ignore | 1 - .../copyright-add | 1 - .../copyright-ignore | 1 - .../copyright-add | 1 - .../copyright-ignore | 1 - .../copyright-add | 1 - .../copyright-ignore | 1 - .../copyright-add | 1 - .../copyright-ignore | 1 - .../copyright-add | 1 - .../copyright-ignore | 1 - .../copyright-add | 1 - .../copyright-ignore | 1 - .../copyright-ignore | 19 - .../copyright-add | 1 - .../copyright-ignore | 2 - .../copyright-keep | 4 - .../copyright-keep | 4 - .../copyright-keep | 1 - tools/legal-review/Table/report-state | 4 +- .../reviewed-licenses/Unicode_ICU_License | 1 + .../xalan.serializer-2.7.2/copyright-ignore | 2 - .../xalan.serializer-2.7.2/copyright-keep | 1 - .../Table/xalan.xalan-2.7.2/copyright-ignore | 2 - .../Table/xalan.xalan-2.7.2/copyright-keep | 1 - .../xml-apis.xml-apis-1.4.01/copyright-ignore | 3 - .../xml-apis.xml-apis-1.4.01/copyright-keep | 8 - .../Table/xml-apis.xml-apis-1.4.01/files-keep | 6 - .../copyright-add | 1 - .../copyright-ignore} | 9 +- .../copyright-keep | 2 + .../custom-license | 0 .../files-keep | 0 .../files-ignore | 1 - .../copyright-keep} | 0 .../files-add/CREDITS-2.x.txt | 0 .../files-ignore | 0 .../files-keep | 0 .../files-ignore | 1 - .../files-add/CREDITS-2.x.txt | 0 .../files-ignore | 0 .../files-keep | 0 .../files-add/CREDITS-2.x.txt | 0 .../files-ignore | 0 .../copyright-ignore | 1 + .../copyright-keep | 1 + .../custom-license | 0 .../files-keep | 0 .../copyright-ignore} | 3 +- .../copyright-keep | 1 + .../copyright-keep-context | 3 - .../copyright-ignore} | 3 + .../copyright-keep | 1 + .../custom-license | 0 .../files-keep | 0 .../custom-license | 0 .../files-keep | 0 .../copyright-ignore | 1 - .../copyright-keep | 1 + .../custom-license | 0 .../files-add/LICENSE.txt | 0 .../custom-license | 0 .../files-keep | 0 .../copyright-add | 0 .../copyright-keep | 6 - .../copyright-ignore | 6 + .../copyright-keep | 1 + .../copyright-ignore | 8 + .../copyright-keep | 1 + .../copyright-keep | 8 - .../copyright-ignore} | 3 +- .../copyright-keep | 5 + .../copyright-ignore} | 0 .../copyright-keep | 0 .../copyright-ignore} | 1 - .../copyright-keep | 1 + .../copyright-ignore | 4 + .../copyright-keep} | 2 +- .../custom-license | 0 .../files-add/COPYING.protobuf | 0 .../files-add/LICENSE | 0 .../copyright-keep | 1 + .../copyright-keep-context | 9 - .../copyright-ignore | 8 + .../copyright-keep | 1 + .../copyright-ignore} | 3 +- .../com.typesafe.config-1.4.2/copyright-keep | 1 + .../copyright-keep | 0 .../eu.timepit.refined_2.13-0.9.27/files-keep | 1 - .../default-and-custom-license | 0 .../files-ignore} | 3 +- .../files-keep | 1 + .../copyright-add | 0 .../files-ignore | 0 .../default-and-custom-license | 0 .../files-ignore} | 3 +- .../files-keep | 1 + .../default-and-custom-license | 0 .../files-ignore} | 3 +- .../files-keep | 1 + .../default-and-custom-license | 0 .../files-ignore} | 3 +- .../files-keep | 1 + .../default-and-custom-license | 0 .../files-ignore | 4 + .../files-keep | 1 + .../default-and-custom-license | 0 .../files-ignore | 4 + .../files-keep | 1 + .../copyright-keep | 1 + .../copyright-ignore | 12 + .../copyright-keep | 2 + .../net.java.dev.jna.jna-5.8.0/copyright-add | 55 -- .../copyright-ignore | 2 - .../net.java.dev.jna.jna-5.8.0/copyright-keep | 2 - .../copyright-ignore} | 2 + .../net.java.dev.jna.jna-5.9.0/copyright-keep | 2 + .../copyright-keep-context | 2 - .../copyright-ignore | 4 +- .../copyright-keep | 2 + .../files-ignore | 0 .../files-keep | 0 .../org.jline.jline-3.20.0/copyright-keep | 10 - .../copyright-ignore | 2 - .../files-ignore | 1 - .../files-keep | 1 - .../files-ignore | 1 - .../files-keep | 1 - .../copyright-keep} | 0 .../files-ignore | 0 .../files-keep | 0 .../files-ignore | 1 - .../files-keep | 1 - .../copyright-ignore | 2 - .../files-ignore | 3 - .../files-keep | 1 - .../copyright-add | 18 - .../files-ignore | 1 - .../files-keep | 1 - .../copyright-ignore | 0 .../files-ignore | 0 .../files-keep | 0 .../copyright-add | 9 - .../copyright-ignore | 1 - .../copyright-keep | 6 - .../copyright-ignore | 4 + .../copyright-keep | 2 + .../files-ignore | 0 .../files-keep | 0 .../copyright-ignore | 0 .../copyright-keep | 0 .../files-ignore | 0 .../files-keep | 0 .../copyright-keep | 0 .../files-ignore | 0 .../files-keep | 0 .../copyright-keep | 0 .../custom-license | 1 - .../files-keep | 2 - .../copyright-keep | 2 + .../custom-license | 1 - .../files-ignore | 1 - .../files-keep | 1 - .../copyright-keep | 4 + .../custom-license | 0 .../files-add/LICENSE | 0 tools/legal-review/engine/report-state | 4 +- .../copyright-ignore | 0 .../copyright-ignore | 0 .../copyright-keep | 0 .../copyright-keep-context | 0 .../copyright-keep | 8 - .../copyright-keep-context | 1 - .../copyright-ignore | 8 + .../copyright-keep | 1 + .../copyright-add | 0 .../copyright-keep | 0 .../copyright-keep-context | 0 .../copyright-keep | 0 .../copyright-keep-context | 0 .../copyright-add | 0 .../copyright-ignore | 0 .../copyright-keep | 0 .../copyright-keep-context | 0 .../custom-license | 0 .../files-add/COPYING.protobuf | 0 .../files-add/LICENSE | 0 .../copyright-keep-context | 1 - .../copyright-keep | 1 + .../copyright-keep | 8 - .../copyright-keep-context | 1 - .../copyright-ignore | 8 + .../copyright-keep | 1 + .../copyright-keep-context | 0 .../copyright-keep | 0 .../custom-license | 0 .../files-ignore | 0 .../files-keep | 0 .../custom-license | 0 .../files-ignore | 0 .../files-keep | 0 .../custom-license | 0 .../files-ignore | 0 .../files-keep | 0 .../custom-license | 0 .../files-ignore | 0 .../files-keep | 0 .../custom-license | 0 .../files-ignore | 0 .../files-keep | 0 .../copyright-ignore | 0 .../copyright-keep | 0 .../files-ignore | 0 .../files-keep | 0 .../copyright-keep | 0 .../files-ignore | 0 .../files-keep | 0 .../copyright-keep-context | 0 .../custom-license | 1 - .../files-keep | 3 - .../copyright-keep | 2 + .../custom-license | 1 - .../files-add/AUTHORS | 1 - .../files-ignore | 1 - .../files-keep | 1 - .../copyright-keep | 4 + .../custom-license | 0 .../files-add/LICENSE | 0 .../files-ignore | 1 - tools/legal-review/launcher/report-state | 4 +- tools/legal-review/license-texts/BSD-2-Clause | 23 + .../license-texts/Unicode_ICU_License | 519 ++++++++++++++++++ .../copyright-ignore | 0 .../copyright-keep-context | 7 - .../copyright-ignore | 0 .../copyright-keep | 0 .../copyright-keep-context | 0 .../custom-license | 0 .../default-and-custom-license | 0 .../files-keep | 0 .../files-ignore | 1 - .../files-keep | 1 - .../copyright-keep-context | 1 + .../default-and-custom-license | 0 .../files-add/CREDITS-2.x.txt | 0 .../files-ignore | 0 .../files-keep | 0 .../files-ignore | 1 - .../files-keep | 1 - .../default-and-custom-license | 0 .../files-add/CREDITS-2.x.txt | 0 .../files-ignore | 0 .../files-keep | 0 .../files-ignore | 1 - .../files-add/CREDITS-2.x.txt | 0 .../files-ignore | 0 .../copyright-add | 28 - .../default-and-custom-license | 0 .../copyright-add | 0 .../copyright-ignore | 0 .../default-and-custom-license | 0 .../files-keep | 0 .../copyright-keep | 6 - .../copyright-keep-context | 1 - .../copyright-ignore | 6 + .../copyright-keep | 1 + .../copyright-keep | 8 - .../copyright-keep-context | 1 - .../copyright-ignore | 8 + .../copyright-keep | 1 + .../copyright-add | 6 - .../copyright-add | 0 .../copyright-keep | 0 .../copyright-keep-context | 0 .../copyright-keep-context | 1 - .../copyright-keep | 1 + .../copyright-keep-context | 0 .../copyright-keep | 0 .../copyright-keep-context | 0 .../copyright-add | 41 -- .../copyright-ignore | 1 - .../copyright-add | 0 .../copyright-ignore | 0 .../copyright-keep} | 0 .../copyright-keep-context | 0 .../custom-license} | 0 .../files-add/COPYING.protobuf | 0 .../files-add/LICENSE | 0 .../copyright-keep-context | 1 - .../copyright-keep | 1 + .../copyright-keep | 8 - .../copyright-keep-context | 1 - .../copyright-ignore | 8 + .../copyright-keep | 1 + .../copyright-keep-context | 3 - .../copyright-keep-context | 0 .../copyright-keep | 0 .../default-and-custom-license | 0 .../files-ignore | 2 - .../default-and-custom-license | 0 .../files-ignore | 0 .../files-keep | 0 .../default-and-custom-license | 0 .../files-ignore | 2 - .../default-and-custom-license | 0 .../files-ignore | 0 .../files-keep | 0 .../default-and-custom-license | 0 .../files-ignore | 2 - .../default-and-custom-license | 0 .../files-ignore | 0 .../files-keep | 0 .../default-and-custom-license | 0 .../files-ignore | 2 - .../default-and-custom-license | 0 .../files-ignore | 0 .../files-keep | 0 .../default-and-custom-license | 0 .../files-ignore | 2 - .../files-keep | 3 - .../default-and-custom-license | 0 .../files-ignore | 0 .../files-keep | 0 .../default-and-custom-license | 0 .../files-ignore | 2 - .../files-keep | 3 - .../default-and-custom-license | 0 .../files-ignore | 0 .../files-keep | 0 .../copyright-ignore | 0 .../copyright-keep | 0 .../files-ignore | 0 .../files-keep | 0 .../copyright-keep | 2 +- .../files-ignore | 1 + .../files-keep | 0 .../copyright-keep-context | 1 - .../copyright-keep-context | 0 .../custom-license | 1 - .../files-keep | 2 - .../copyright-keep | 2 + .../copyright-add | 1 - .../custom-license | 1 - .../files-ignore | 1 - .../files-keep | 1 - .../copyright-add | 0 .../copyright-keep | 4 + .../custom-license | 1 + .../files-add/LICENSE | 0 .../files-ignore | 1 - .../legal-review/project-manager/report-state | 4 +- 831 files changed, 2089 insertions(+), 8140 deletions(-) create mode 100644 distribution/engine/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.9/NOTICES rename distribution/engine/THIRD-PARTY/{com.fasterxml.jackson.core.jackson-annotations-2.13.1 => com.fasterxml.jackson.core.jackson-annotations-2.13.3}/LICENSE (100%) rename distribution/engine/THIRD-PARTY/{com.fasterxml.jackson.core.jackson-core-2.13.1 => com.fasterxml.jackson.core.jackson-core-2.13.3}/CREDITS-2.x.txt (100%) rename distribution/engine/THIRD-PARTY/{com.fasterxml.jackson.core.jackson-core-2.13.1 => com.fasterxml.jackson.core.jackson-core-2.13.3}/NOTICE (100%) rename distribution/{lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.12.3 => engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.3}/NOTICES (100%) rename distribution/engine/THIRD-PARTY/{com.fasterxml.jackson.core.jackson-databind-2.13.1 => com.fasterxml.jackson.core.jackson-databind-2.13.3}/CREDITS-2.x.txt (100%) rename distribution/engine/THIRD-PARTY/{com.fasterxml.jackson.core.jackson-databind-2.13.1 => com.fasterxml.jackson.core.jackson-databind-2.13.3}/NOTICE (100%) rename distribution/engine/THIRD-PARTY/{com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.1 => com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.3}/CREDITS-2.x.txt (100%) rename distribution/engine/THIRD-PARTY/{com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1 => com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3}/LICENSE (100%) rename tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/copyright-ignore => distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/NOTICES (56%) create mode 100644 distribution/engine/THIRD-PARTY/com.google.errorprone.error_prone_annotations-2.11.0/NOTICES delete mode 100644 distribution/engine/THIRD-PARTY/com.google.errorprone.error_prone_annotations-2.7.1/NOTICES delete mode 100644 distribution/engine/THIRD-PARTY/com.google.guava.guava-31.0.1-jre/NOTICES create mode 100644 distribution/engine/THIRD-PARTY/com.google.guava.guava-31.1-jre/NOTICES rename distribution/engine/THIRD-PARTY/{com.lihaoyi.fansi_2.13-0.3.0 => com.lihaoyi.fansi_2.13-0.3.1}/LICENSE (100%) rename distribution/engine/THIRD-PARTY/{com.lihaoyi.pprint_2.13-0.7.1 => com.lihaoyi.pprint_2.13-0.7.3}/LICENSE (100%) rename distribution/engine/THIRD-PARTY/{com.lihaoyi.scalatags_2.13-0.11.0 => com.lihaoyi.scalatags_2.13-0.11.1}/LICENSE.txt (100%) create mode 100644 distribution/engine/THIRD-PARTY/com.lihaoyi.scalatags_2.13-0.11.1/NOTICES rename distribution/engine/THIRD-PARTY/{com.lihaoyi.sourcecode_2.13-0.2.7 => com.lihaoyi.sourcecode_2.13-0.2.8}/LICENSE (100%) rename distribution/engine/THIRD-PARTY/{com.monovore.decline_2.13-2.2.0 => com.monovore.decline_2.13-2.3.0}/NOTICES (100%) delete mode 100644 distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/NOTICES create mode 100644 distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/NOTICES delete mode 100644 distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.18/NOTICES create mode 100644 distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.19/NOTICES delete mode 100644 distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.7/NOTICES rename tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-keep-context => distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.9/NOTICES (63%) delete mode 100644 distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-spray-json_2.13-10.2.7/NOTICES rename tools/legal-review/engine/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/copyright-keep-context => distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-spray-json_2.13-10.2.9/NOTICES (100%) delete mode 100644 distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.7/NOTICES create mode 100644 distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.9/NOTICES delete mode 100644 distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.7/NOTICES rename tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-keep-context => distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.9/NOTICES (51%) rename distribution/engine/THIRD-PARTY/{com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18 => com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19}/COPYING.protobuf (100%) rename distribution/engine/THIRD-PARTY/{com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18 => com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19}/LICENSE (100%) delete mode 100644 distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.18/NOTICES create mode 100644 distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.19/NOTICES delete mode 100644 distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.18/NOTICES create mode 100644 distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.19/NOTICES create mode 100644 distribution/engine/THIRD-PARTY/com.typesafe.config-1.4.2/NOTICES rename distribution/engine/THIRD-PARTY/{com.typesafe.ssl-config-core_2.13-0.4.2 => com.typesafe.ssl-config-core_2.13-0.4.3}/NOTICES (100%) delete mode 100644 distribution/engine/THIRD-PARTY/eu.timepit.refined_2.13-0.9.27/LICENSE rename distribution/engine/THIRD-PARTY/{io.circe.circe-core_2.13-0.14.1 => io.circe.circe-core_2.13-0.14.2}/NOTICE (100%) rename distribution/engine/THIRD-PARTY/{io.circe.circe-generic-extras_2.13-0.14.1 => io.circe.circe-generic-extras_2.13-0.14.2}/NOTICES (100%) rename distribution/engine/THIRD-PARTY/{io.circe.circe-generic_2.13-0.14.1 => io.circe.circe-generic_2.13-0.14.2}/NOTICE (100%) rename distribution/engine/THIRD-PARTY/{io.circe.circe-jawn_2.13-0.14.1 => io.circe.circe-jawn_2.13-0.14.2}/NOTICE (100%) rename distribution/engine/THIRD-PARTY/{io.circe.circe-literal_2.13-0.14.1 => io.circe.circe-literal_2.13-0.14.2}/NOTICE (100%) rename distribution/engine/THIRD-PARTY/{io.circe.circe-numbers_2.13-0.14.1 => io.circe.circe-numbers_2.13-0.14.2}/NOTICE (100%) rename distribution/engine/THIRD-PARTY/{io.circe.circe-parser_2.13-0.14.1 => io.circe.circe-parser_2.13-0.14.2}/NOTICE (100%) rename tools/legal-review/engine/io.methvin.directory-watcher-0.9.10/copyright-keep-context => distribution/engine/THIRD-PARTY/io.methvin.directory-watcher-0.16.1/NOTICES (100%) delete mode 100644 distribution/engine/THIRD-PARTY/io.methvin.directory-watcher-0.9.10/NOTICES create mode 100644 distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.12.1/NOTICES delete mode 100644 distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.8.0/NOTICES create mode 100644 distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.9.0/NOTICES delete mode 100644 distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-2.2.1/LICENSE delete mode 100644 distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-2.2.1/NOTICES rename distribution/engine/THIRD-PARTY/{org.apache.tika.tika-core-2.2.1 => org.apache.tika.tika-core-2.4.1}/NOTICE (70%) create mode 100644 distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-2.4.1/NOTICES delete mode 100644 distribution/engine/THIRD-PARTY/org.jline.jline-3.20.0/NOTICES delete mode 100644 distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-api-progress-RELEASE130/NOTICE delete mode 100644 distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-api-progress-RELEASE130/NOTICE.1 delete mode 100644 distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-modules-sampler-RELEASE130/NOTICE rename distribution/engine/THIRD-PARTY/{org.netbeans.api.org-netbeans-api-progress-nb-RELEASE130 => org.netbeans.api.org-netbeans-modules-sampler-RELEASE140}/NOTICE (89%) rename tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-nb-RELEASE130/copyright-ignore => distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-modules-sampler-RELEASE140/NOTICES (100%) delete mode 100644 distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-RELEASE130/NOTICE delete mode 100644 distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-RELEASE130/NOTICE.1 delete mode 100644 distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-lookup-RELEASE130/NOTICE delete mode 100644 distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-lookup-RELEASE130/NOTICES rename distribution/engine/THIRD-PARTY/{org.netbeans.api.org-openide-dialogs-RELEASE130 => org.netbeans.api.org-openide-util-lookup-RELEASE140}/NOTICE (89%) delete mode 100644 distribution/engine/THIRD-PARTY/org.scala-lang.modules.scala-xml_2.13-1.3.0/NOTICES delete mode 100644 distribution/engine/THIRD-PARTY/org.scala-lang.scala-compiler-2.13.7/NOTICES rename distribution/engine/THIRD-PARTY/{org.scala-lang.scala-compiler-2.13.7 => org.scala-lang.scala-compiler-2.13.8}/NOTICE (100%) create mode 100644 distribution/engine/THIRD-PARTY/org.scala-lang.scala-compiler-2.13.8/NOTICES rename distribution/engine/THIRD-PARTY/{org.scala-lang.scala-library-2.13.7 => org.scala-lang.scala-library-2.13.8}/NOTICE (100%) rename distribution/engine/THIRD-PARTY/{org.scala-lang.scala-library-2.13.7 => org.scala-lang.scala-library-2.13.8}/NOTICES (100%) rename distribution/engine/THIRD-PARTY/{org.scala-lang.scala-reflect-2.13.7 => org.scala-lang.scala-reflect-2.13.8}/NOTICE (100%) rename distribution/engine/THIRD-PARTY/{org.scala-lang.scala-reflect-2.13.7 => org.scala-lang.scala-reflect-2.13.8}/NOTICES (100%) rename distribution/{lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.slf4j.slf4j-api-1.7.30 => engine/THIRD-PARTY/org.slf4j.slf4j-api-1.7.36}/NOTICES (100%) delete mode 100644 distribution/engine/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/AUTHORS.md delete mode 100644 distribution/engine/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/COPYING create mode 100644 distribution/engine/THIRD-PARTY/org.typelevel.cats-core_2.13-2.8.0/NOTICES delete mode 100644 distribution/engine/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/NOTICES create mode 100644 distribution/engine/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.8.0/NOTICES rename distribution/engine/THIRD-PARTY/{org.typelevel.jawn-parser_2.13-1.1.2 => org.typelevel.jawn-parser_2.13-1.3.2}/LICENSE (100%) rename distribution/{engine/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.7 => launcher/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.9}/NOTICES (100%) delete mode 100644 distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.18/NOTICES create mode 100644 distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.19/NOTICES rename distribution/launcher/THIRD-PARTY/{com.typesafe.akka.akka-http-core_2.13-10.2.7 => com.typesafe.akka.akka-http-core_2.13-10.2.9}/NOTICES (100%) rename distribution/launcher/THIRD-PARTY/{com.typesafe.akka.akka-http_2.13-10.2.7 => com.typesafe.akka.akka-http_2.13-10.2.9}/NOTICES (100%) rename distribution/launcher/THIRD-PARTY/{com.typesafe.akka.akka-parsing_2.13-10.2.7 => com.typesafe.akka.akka-parsing_2.13-10.2.9}/NOTICES (100%) rename distribution/launcher/THIRD-PARTY/{com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18 => com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19}/COPYING.protobuf (100%) rename distribution/launcher/THIRD-PARTY/{com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18 => com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19}/LICENSE (100%) delete mode 100644 distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.18/NOTICES create mode 100644 distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.19/NOTICES delete mode 100644 distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.18/NOTICES create mode 100644 distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.19/NOTICES delete mode 100644 distribution/launcher/THIRD-PARTY/com.typesafe.config-1.4.1/NOTICES rename distribution/{engine/THIRD-PARTY/com.typesafe.config-1.4.0 => launcher/THIRD-PARTY/com.typesafe.config-1.4.2}/NOTICES (100%) rename distribution/launcher/THIRD-PARTY/{com.typesafe.ssl-config-core_2.13-0.4.2 => com.typesafe.ssl-config-core_2.13-0.4.3}/NOTICES (100%) rename distribution/launcher/THIRD-PARTY/{io.circe.circe-core_2.13-0.14.1 => io.circe.circe-core_2.13-0.14.2}/LICENSE (100%) rename distribution/{engine/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1 => launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2}/LICENSE.argonaut (100%) rename distribution/{engine/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1 => launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2}/LICENSE.ephox (100%) rename distribution/launcher/THIRD-PARTY/{io.circe.circe-core_2.13-0.14.1 => io.circe.circe-core_2.13-0.14.2}/NOTICE (100%) rename distribution/launcher/THIRD-PARTY/{io.circe.circe-generic_2.13-0.14.1 => io.circe.circe-generic_2.13-0.14.2}/LICENSE (100%) rename distribution/{engine/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1 => launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2}/LICENSE.argonaut (100%) rename distribution/{engine/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1 => launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2}/LICENSE.ephox (100%) rename distribution/launcher/THIRD-PARTY/{io.circe.circe-generic_2.13-0.14.1 => io.circe.circe-generic_2.13-0.14.2}/NOTICE (100%) rename distribution/launcher/THIRD-PARTY/{io.circe.circe-jawn_2.13-0.14.1 => io.circe.circe-jawn_2.13-0.14.2}/LICENSE (100%) rename distribution/{engine/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1 => launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2}/LICENSE.argonaut (100%) rename distribution/{engine/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1 => launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2}/LICENSE.ephox (100%) rename distribution/launcher/THIRD-PARTY/{io.circe.circe-jawn_2.13-0.14.1 => io.circe.circe-jawn_2.13-0.14.2}/NOTICE (100%) rename distribution/launcher/THIRD-PARTY/{io.circe.circe-numbers_2.13-0.14.1 => io.circe.circe-numbers_2.13-0.14.2}/LICENSE (100%) rename distribution/{engine/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.1 => launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2}/LICENSE.argonaut (100%) rename distribution/{engine/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.1 => launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2}/LICENSE.ephox (100%) rename distribution/launcher/THIRD-PARTY/{io.circe.circe-numbers_2.13-0.14.1 => io.circe.circe-numbers_2.13-0.14.2}/NOTICE (100%) rename distribution/launcher/THIRD-PARTY/{io.circe.circe-parser_2.13-0.14.1 => io.circe.circe-parser_2.13-0.14.2}/LICENSE (100%) rename distribution/{engine/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1 => launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2}/LICENSE.argonaut (100%) rename distribution/{engine/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1 => launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2}/LICENSE.ephox (100%) rename distribution/launcher/THIRD-PARTY/{io.circe.circe-parser_2.13-0.14.1 => io.circe.circe-parser_2.13-0.14.2}/NOTICE (100%) rename distribution/launcher/THIRD-PARTY/{org.scala-lang.scala-library-2.13.7 => org.scala-lang.scala-library-2.13.8}/NOTICE (100%) rename distribution/launcher/THIRD-PARTY/{org.scala-lang.scala-library-2.13.7 => org.scala-lang.scala-library-2.13.8}/NOTICES (100%) rename distribution/launcher/THIRD-PARTY/{org.scala-lang.scala-reflect-2.13.7 => org.scala-lang.scala-reflect-2.13.8}/NOTICE (100%) rename distribution/launcher/THIRD-PARTY/{org.scala-lang.scala-reflect-2.13.7 => org.scala-lang.scala-reflect-2.13.8}/NOTICES (100%) rename distribution/{engine/THIRD-PARTY/org.slf4j.slf4j-api-1.7.32 => launcher/THIRD-PARTY/org.slf4j.slf4j-api-1.7.36}/NOTICES (100%) delete mode 100644 distribution/launcher/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/AUTHORS.md create mode 100644 distribution/launcher/THIRD-PARTY/org.typelevel.cats-core_2.13-2.8.0/NOTICES delete mode 100644 distribution/launcher/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/AUTHORS delete mode 100644 distribution/launcher/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/COPYING create mode 100644 distribution/launcher/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.8.0/NOTICES rename distribution/launcher/THIRD-PARTY/{org.typelevel.jawn-parser_2.13-1.1.2 => org.typelevel.jawn-parser_2.13-1.3.2}/LICENSE (100%) delete mode 100644 distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-67.1/NOTICES rename distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/{com.ibm.icu.icu4j-67.1 => com.ibm.icu.icu4j-71.1}/LICENSE (77%) create mode 100644 distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-71.1/NOTICES delete mode 100644 distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazon.redshift.redshift-jdbc42-2.1.0.1/NOTICES delete mode 100644 distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazon.redshift.redshift-jdbc42-2.1.0.1/THIRD_PARTY_LICENSES rename distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/{com.amazon.redshift.redshift-jdbc42-2.1.0.1 => com.amazon.redshift.redshift-jdbc42-2.1.0.9}/LICENSE (100%) create mode 100644 distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazon.redshift.redshift-jdbc42-2.1.0.9/NOTICES delete mode 100644 distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-core-1.12.23/NOTICES create mode 100644 distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-core-1.12.273/NOTICES delete mode 100644 distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-redshift-1.12.23/NOTICES create mode 100644 distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-redshift-1.12.273/NOTICES delete mode 100644 distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-sts-1.12.23/NOTICES create mode 100644 distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-sts-1.12.273/NOTICES delete mode 100644 distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.jmespath-java-1.12.23/NOTICES create mode 100644 distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.jmespath-java-1.12.273/NOTICES delete mode 100644 distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.12.3/NOTICES rename distribution/{project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.13.1 => lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.12.6}/LICENSE (100%) rename tools/legal-review/launcher/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/copyright-add => distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.12.6/LICENSE (100%) rename distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/{com.fasterxml.jackson.core.jackson-core-2.12.3 => com.fasterxml.jackson.core.jackson-core-2.12.6}/NOTICE (100%) rename tools/legal-review/Database/com.fasterxml.jackson.core.jackson-core-2.12.3/copyright-keep => distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.12.6/NOTICES (100%) rename tools/legal-review/project-manager/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/copyright-add => distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.12.6.1/LICENSE (100%) rename distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/{com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.3 => com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.6}/CREDITS-2.x.txt (100%) delete mode 100644 distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/org.postgresql.postgresql-42.3.6/NOTICES rename distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/{org.postgresql.postgresql-42.3.6 => org.postgresql.postgresql-42.4.0}/LICENSE (100%) create mode 100644 distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/org.postgresql.postgresql-42.4.0/NOTICES delete mode 100644 distribution/lib/Standard/Image/0.0.0-dev/THIRD-PARTY/org.openpnp.opencv-4.5.1-0/NOTICES create mode 100644 distribution/lib/Standard/Image/0.0.0-dev/THIRD-PARTY/org.openpnp.opencv-4.5.1-2/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.fasterxml.woodstox.woodstox-core-5.2.1/LICENSE delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.fasterxml.woodstox.woodstox-core-5.2.1/NOTICES rename distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/{com.github.virtuald.curvesapi-1.06 => com.github.virtuald.curvesapi-1.07}/NOTICES (100%) delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-67.1/NOTICES rename distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/{com.ibm.icu.icu4j-67.1 => com.ibm.icu.icu4j-71.1}/LICENSE (77%) create mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-71.1/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.univocity.univocity-parsers-2.9.0/NOTICES create mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.univocity.univocity-parsers-2.9.1/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/commons-io.commons-io-1.3.1/NOTICE.txt create mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/commons-io.commons-io-2.11.0/NOTICE.txt rename tools/legal-review/Table/com.github.virtuald.curvesapi-1.06/copyright-ignore => distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/commons-io.commons-io-2.11.0/NOTICES (100%) delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/de.rototor.pdfbox.graphics2d-0.30/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/licenses/Bouncy_Castle_Licence.txt delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/licenses/MIT delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.commons.commons-compress-1.20/NOTICES rename distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/{org.apache.commons.commons-compress-1.20 => org.apache.commons.commons-compress-1.21}/NOTICE.txt (97%) create mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.commons.commons-compress-1.21/NOTICES rename distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/{org.apache.logging.log4j.log4j-api-2.14.0 => org.apache.logging.log4j.log4j-api-2.17.2}/NOTICE (70%) rename tools/legal-review/Table/commons-io.commons-io-1.3.1/copyright-ignore => distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.logging.log4j.log4j-api-2.17.2/NOTICES (100%) delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.fontbox-2.0.22/LICENSE delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.fontbox-2.0.22/NOTICE delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.fontbox-2.0.22/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.pdfbox-2.0.22/LICENSE delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.pdfbox-2.0.22/NOTICE delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.pdfbox-2.0.22/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.0.0/NOTICES rename distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/{org.apache.poi.poi-5.0.0 => org.apache.poi.poi-5.2.2}/LICENSE (93%) rename distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/{org.apache.poi.poi-5.0.0 => org.apache.poi.poi-5.2.2}/LICENSE.1 (93%) rename distribution/{launcher/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/COPYING => lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/LICENSE.2} (67%) rename distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/{org.apache.poi.poi-5.0.0 => org.apache.poi.poi-5.2.2}/NOTICE (100%) rename distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/{org.apache.poi.poi-5.0.0 => org.apache.poi.poi-5.2.2}/NOTICE.1 (100%) rename distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/{org.apache.poi.poi-ooxml-5.0.0/NOTICE => org.apache.poi.poi-5.2.2/NOTICE.2} (100%) create mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.0.0/NOTICES rename distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/{org.apache.poi.poi-ooxml-5.0.0 => org.apache.poi.poi-ooxml-5.2.2}/LICENSE (93%) create mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/LICENSE.1 create mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/NOTICE create mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/NOTICE.1 create mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-lite-5.0.0/NOTICES rename distribution/{engine/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/COPYING => lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-lite-5.2.2/LICENSE} (67%) create mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-lite-5.2.2/NOTICE create mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-lite-5.2.2/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.santuario.xmlsec-2.2.1/NOTICE delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.santuario.xmlsec-2.2.1/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlbeans.xmlbeans-5.0.1/NOTICE.txt delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlbeans.xmlbeans-5.0.1/NOTICES rename tools/legal-review/Table/org.apache.xmlgraphics.batik-css-1.13/copyright-ignore => distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlbeans.xmlbeans-5.1.0/NOTICES (56%) delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-all-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-anim-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-awt-util-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-bridge-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-codec-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-constants-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-css-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-dom-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-ext-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-extension-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-gui-util-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-gvt-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-i18n-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-parser-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-rasterizer-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-rasterizer-ext-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-script-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-shared-resources-1.13/NOTICE delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-slideshow-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-squiggle-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-squiggle-ext-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-svg-dom-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-svgbrowser-1.13/LICENSE.icons.txt delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-svggen-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-svgpp-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-svgrasterizer-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-swing-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-transcoder-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-ttf2svg-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-util-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.batik-xml-1.13/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlgraphics.xmlgraphics-commons-2.4/NOTICE delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.bouncycastle.bcpkix-jdk15on-1.68/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.bouncycastle.bcprov-jdk15on-1.68/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.codehaus.woodstox.stax2-api-4.2/LICENSE delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.codehaus.woodstox.stax2-api-4.2/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.slf4j.jcl-over-slf4j-1.7.30/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xalan.serializer-2.7.2/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xalan.xalan-2.7.2/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-1.4.01/LICENSE delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-1.4.01/LICENSE.dom-documentation.txt delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-1.4.01/LICENSE.dom-software.txt delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-1.4.01/LICENSE.sac.html delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-1.4.01/LICENSE.sax.txt delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-1.4.01/NOTICE delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-1.4.01/NOTICES delete mode 100644 distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-ext-1.3.04/NOTICES delete mode 100644 distribution/project-manager/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.7/NOTICES rename distribution/{launcher/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.7 => project-manager/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.9}/NOTICES (100%) rename distribution/{launcher/THIRD-PARTY/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/NOTICES => project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.13.3/LICENSE} (99%) delete mode 100644 distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.1/NOTICES rename distribution/project-manager/THIRD-PARTY/{com.fasterxml.jackson.core.jackson-core-2.13.1 => com.fasterxml.jackson.core.jackson-core-2.13.3}/CREDITS-2.x.txt (100%) rename distribution/{lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.12.3 => project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.3}/NOTICE (100%) rename distribution/{engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.1 => project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.3}/NOTICES (100%) delete mode 100644 distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.13.1/NOTICE rename distribution/project-manager/THIRD-PARTY/{com.fasterxml.jackson.core.jackson-databind-2.13.1 => com.fasterxml.jackson.core.jackson-databind-2.13.3}/CREDITS-2.x.txt (100%) rename distribution/project-manager/THIRD-PARTY/{com.fasterxml.jackson.core.jackson-core-2.13.1 => com.fasterxml.jackson.core.jackson-databind-2.13.3}/NOTICE (100%) rename distribution/project-manager/THIRD-PARTY/{com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.1 => com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.3}/CREDITS-2.x.txt (100%) delete mode 100644 distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/NOTICES rename distribution/project-manager/THIRD-PARTY/{com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1 => com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3}/LICENSE (100%) rename distribution/{engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1 => project-manager/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3}/NOTICES (100%) delete mode 100644 distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/NOTICES create mode 100644 distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/NOTICES delete mode 100644 distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.18/NOTICES create mode 100644 distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.19/NOTICES rename distribution/project-manager/THIRD-PARTY/{com.typesafe.akka.akka-http-core_2.13-10.2.7 => com.typesafe.akka.akka-http-core_2.13-10.2.9}/NOTICES (100%) rename distribution/project-manager/THIRD-PARTY/{com.typesafe.akka.akka-http-spray-json_2.13-10.2.7 => com.typesafe.akka.akka-http-spray-json_2.13-10.2.9}/NOTICES (100%) rename distribution/project-manager/THIRD-PARTY/{com.typesafe.akka.akka-http_2.13-10.2.7 => com.typesafe.akka.akka-http_2.13-10.2.9}/NOTICES (100%) rename distribution/project-manager/THIRD-PARTY/{com.typesafe.akka.akka-parsing_2.13-10.2.7 => com.typesafe.akka.akka-parsing_2.13-10.2.9}/NOTICES (100%) rename distribution/project-manager/THIRD-PARTY/{com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18 => com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19}/COPYING.protobuf (100%) rename distribution/project-manager/THIRD-PARTY/{com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18 => com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19}/LICENSE (100%) delete mode 100644 distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.18/NOTICES create mode 100644 distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.19/NOTICES delete mode 100644 distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.18/NOTICES create mode 100644 distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.19/NOTICES delete mode 100644 distribution/project-manager/THIRD-PARTY/com.typesafe.config-1.4.1/NOTICES rename distribution/{engine/THIRD-PARTY/com.typesafe.config-1.4.1 => project-manager/THIRD-PARTY/com.typesafe.config-1.4.2}/NOTICES (100%) rename distribution/project-manager/THIRD-PARTY/{com.typesafe.ssl-config-core_2.13-0.4.2 => com.typesafe.ssl-config-core_2.13-0.4.3}/NOTICES (100%) delete mode 100644 distribution/project-manager/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/LICENSE.argonaut delete mode 100644 distribution/project-manager/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/LICENSE.ephox rename distribution/{engine/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1 => project-manager/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2}/LICENSE.argonaut (100%) rename distribution/{engine/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1 => project-manager/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2}/LICENSE.ephox (100%) rename distribution/project-manager/THIRD-PARTY/{io.circe.circe-core_2.13-0.14.1 => io.circe.circe-core_2.13-0.14.2}/NOTICE (100%) delete mode 100644 distribution/project-manager/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/LICENSE.argonaut delete mode 100644 distribution/project-manager/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/LICENSE.ephox rename distribution/{launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1 => project-manager/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2}/LICENSE.argonaut (100%) rename distribution/{launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1 => project-manager/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2}/LICENSE.ephox (100%) rename distribution/project-manager/THIRD-PARTY/{io.circe.circe-generic_2.13-0.14.1 => io.circe.circe-generic_2.13-0.14.2}/NOTICE (100%) delete mode 100644 distribution/project-manager/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/LICENSE.argonaut delete mode 100644 distribution/project-manager/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/LICENSE.ephox rename distribution/{launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1 => project-manager/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2}/LICENSE.argonaut (100%) rename distribution/{launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1 => project-manager/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2}/LICENSE.ephox (100%) rename distribution/project-manager/THIRD-PARTY/{io.circe.circe-jawn_2.13-0.14.1 => io.circe.circe-jawn_2.13-0.14.2}/NOTICE (100%) delete mode 100644 distribution/project-manager/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.1/LICENSE.argonaut delete mode 100644 distribution/project-manager/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.1/LICENSE.ephox rename distribution/{launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1 => project-manager/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.2}/LICENSE.argonaut (100%) rename distribution/{launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1 => project-manager/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.2}/LICENSE.ephox (100%) rename distribution/project-manager/THIRD-PARTY/{io.circe.circe-literal_2.13-0.14.1 => io.circe.circe-literal_2.13-0.14.2}/NOTICE (100%) delete mode 100644 distribution/project-manager/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/LICENSE.argonaut delete mode 100644 distribution/project-manager/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/LICENSE.ephox rename distribution/{launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1 => project-manager/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2}/LICENSE.argonaut (100%) rename distribution/{launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1 => project-manager/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2}/LICENSE.ephox (100%) rename distribution/project-manager/THIRD-PARTY/{io.circe.circe-numbers_2.13-0.14.1 => io.circe.circe-numbers_2.13-0.14.2}/NOTICE (100%) delete mode 100644 distribution/project-manager/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/LICENSE.argonaut delete mode 100644 distribution/project-manager/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/LICENSE.ephox rename distribution/{launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1 => project-manager/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2}/LICENSE.argonaut (100%) rename distribution/{launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1 => project-manager/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2}/LICENSE.ephox (100%) rename distribution/project-manager/THIRD-PARTY/{io.circe.circe-parser_2.13-0.14.1 => io.circe.circe-parser_2.13-0.14.2}/NOTICE (100%) rename distribution/project-manager/THIRD-PARTY/{org.scala-lang.scala-library-2.13.7 => org.scala-lang.scala-library-2.13.8}/NOTICE (100%) rename distribution/project-manager/THIRD-PARTY/{org.scala-lang.scala-library-2.13.7 => org.scala-lang.scala-library-2.13.8}/NOTICES (100%) rename distribution/project-manager/THIRD-PARTY/{org.scala-lang.scala-reflect-2.13.7 => org.scala-lang.scala-reflect-2.13.8}/NOTICE (100%) rename distribution/project-manager/THIRD-PARTY/{org.scala-lang.scala-reflect-2.13.7 => org.scala-lang.scala-reflect-2.13.8}/NOTICES (100%) delete mode 100644 distribution/project-manager/THIRD-PARTY/org.slf4j.slf4j-api-1.7.32/NOTICES rename distribution/{launcher/THIRD-PARTY/org.slf4j.slf4j-api-1.7.32 => project-manager/THIRD-PARTY/org.slf4j.slf4j-api-1.7.36}/NOTICES (100%) delete mode 100644 distribution/project-manager/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/AUTHORS.md delete mode 100644 distribution/project-manager/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/COPYING create mode 100644 distribution/project-manager/THIRD-PARTY/org.typelevel.cats-core_2.13-2.8.0/NOTICES delete mode 100644 distribution/project-manager/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/COPYING delete mode 100644 distribution/project-manager/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/NOTICES create mode 100644 distribution/project-manager/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.8.0/NOTICES rename distribution/project-manager/THIRD-PARTY/{org.typelevel.jawn-parser_2.13-1.1.2 => org.typelevel.jawn-parser_2.13-1.3.2}/LICENSE (100%) delete mode 100644 distribution/project-manager/THIRD-PARTY/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/NOTICES delete mode 100644 tools/legal-review/Base/com.ibm.icu.icu4j-67.1/copyright-ignore rename tools/legal-review/{Table/com.ibm.icu.icu4j-67.1/copyright-keep => Base/com.ibm.icu.icu4j-71.1/copyright-ignore} (98%) create mode 100644 tools/legal-review/Base/com.ibm.icu.icu4j-71.1/copyright-keep rename tools/legal-review/Base/{com.ibm.icu.icu4j-67.1 => com.ibm.icu.icu4j-71.1}/custom-license (100%) rename tools/legal-review/Base/{com.ibm.icu.icu4j-67.1 => com.ibm.icu.icu4j-71.1}/files-keep (100%) create mode 100644 tools/legal-review/Base/reviewed-licenses/Unicode_ICU_License delete mode 100644 tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/copyright-ignore delete mode 100644 tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/files-add/THIRD_PARTY_LICENSES delete mode 100644 tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/files-keep copy create mode 100644 tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.9/copyright-ignore create mode 100644 tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.9/copyright-keep rename tools/legal-review/Database/{org.postgresql.postgresql-42.3.6 => com.amazon.redshift.redshift-jdbc42-2.1.0.9}/custom-license (100%) rename tools/legal-review/Database/{com.amazon.redshift.redshift-jdbc42-2.1.0.1 => com.amazon.redshift.redshift-jdbc42-2.1.0.9}/files-keep (100%) delete mode 100644 tools/legal-review/Database/com.amazonaws.aws-java-sdk-core-1.12.23/copyright-ignore delete mode 100644 tools/legal-review/Database/com.amazonaws.aws-java-sdk-core-1.12.23/copyright-keep create mode 100644 tools/legal-review/Database/com.amazonaws.aws-java-sdk-core-1.12.273/copyright-ignore create mode 100644 tools/legal-review/Database/com.amazonaws.aws-java-sdk-core-1.12.273/copyright-keep delete mode 100644 tools/legal-review/Database/com.amazonaws.aws-java-sdk-redshift-1.12.23/copyright-keep create mode 100644 tools/legal-review/Database/com.amazonaws.aws-java-sdk-redshift-1.12.273/copyright-keep delete mode 100644 tools/legal-review/Database/com.amazonaws.aws-java-sdk-sts-1.12.23/copyright-keep create mode 100644 tools/legal-review/Database/com.amazonaws.aws-java-sdk-sts-1.12.273/copyright-ignore create mode 100644 tools/legal-review/Database/com.amazonaws.aws-java-sdk-sts-1.12.273/copyright-keep delete mode 100644 tools/legal-review/Database/com.amazonaws.jmespath-java-1.12.23/copyright-keep delete mode 100644 tools/legal-review/Database/com.amazonaws.jmespath-java-1.12.23/copyright-keep-context create mode 100644 tools/legal-review/Database/com.amazonaws.jmespath-java-1.12.273/copyright-keep delete mode 100644 tools/legal-review/Database/com.fasterxml.jackson.core.jackson-annotations-2.12.3/copyright-add delete mode 100644 tools/legal-review/Database/com.fasterxml.jackson.core.jackson-annotations-2.12.3/files-keep rename tools/legal-review/{Table/com.ibm.icu.icu4j-67.1 => Database/com.fasterxml.jackson.core.jackson-annotations-2.12.6}/custom-license (100%) rename tools/legal-review/Database/{org.postgresql.postgresql-42.3.6 => com.fasterxml.jackson.core.jackson-annotations-2.12.6}/files-keep (100%) rename tools/legal-review/{engine/com.fasterxml.jackson.core.jackson-core-2.13.1/copyright-keep-context => Database/com.fasterxml.jackson.core.jackson-core-2.12.6/copyright-keep} (100%) rename tools/legal-review/{Table/org.apache.pdfbox.fontbox-2.0.22 => Database/com.fasterxml.jackson.core.jackson-core-2.12.6}/custom-license (100%) rename tools/legal-review/{Table/org.apache.pdfbox.fontbox-2.0.22 => Database/com.fasterxml.jackson.core.jackson-core-2.12.6}/files-keep (100%) rename tools/legal-review/{Table/org.apache.pdfbox.pdfbox-2.0.22 => Database/com.fasterxml.jackson.core.jackson-databind-2.12.6.1}/custom-license (100%) rename tools/legal-review/Database/{com.fasterxml.jackson.core.jackson-core-2.12.3/files-keep => com.fasterxml.jackson.core.jackson-databind-2.12.6.1/files-ignore} (100%) rename tools/legal-review/{Table/com.fasterxml.woodstox.woodstox-core-5.2.1 => Database/com.fasterxml.jackson.core.jackson-databind-2.12.6.1}/files-keep (100%) rename tools/legal-review/Database/{com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.3 => com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.6}/files-add/CREDITS-2.x.txt (100%) rename tools/legal-review/Database/{com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.3 => com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.6}/files-ignore (100%) delete mode 100644 tools/legal-review/Database/org.postgresql.postgresql-42.3.6/copyright-ignore delete mode 100644 tools/legal-review/Database/org.postgresql.postgresql-42.3.6/copyright-keep rename tools/legal-review/Database/{com.amazon.redshift.redshift-jdbc42-2.1.0.1/copyright-keep => org.postgresql.postgresql-42.4.0/copyright-ignore} (89%) rename tools/legal-review/Database/{org.postgresql.postgresql-42.3.6/copyright-keep-context => org.postgresql.postgresql-42.4.0/copyright-keep} (100%) rename tools/legal-review/{Table/org.apache.poi.poi-5.0.0 => Database/org.postgresql.postgresql-42.4.0}/custom-license (100%) rename tools/legal-review/{Table/org.codehaus.woodstox.stax2-api-4.2 => Database/org.postgresql.postgresql-42.4.0}/files-keep (100%) create mode 100644 tools/legal-review/Database/reviewed-licenses/BSD-2-Clause delete mode 100644 tools/legal-review/Image/org.openpnp.opencv-4.5.1-0/copyright-ignore delete mode 100644 tools/legal-review/Image/org.openpnp.opencv-4.5.1-0/copyright-keep create mode 100644 tools/legal-review/Image/org.openpnp.opencv-4.5.1-2/copyright-ignore create mode 100644 tools/legal-review/Image/org.openpnp.opencv-4.5.1-2/copyright-keep delete mode 100644 tools/legal-review/Table/com.fasterxml.woodstox.woodstox-core-5.2.1/copyright-keep rename tools/legal-review/Table/{org.apache.poi.poi-ooxml-5.0.0 => com.github.virtuald.curvesapi-1.07}/copyright-ignore (100%) rename tools/legal-review/Table/{com.github.virtuald.curvesapi-1.06 => com.github.virtuald.curvesapi-1.07}/copyright-keep (100%) delete mode 100644 tools/legal-review/Table/com.ibm.icu.icu4j-67.1/copyright-ignore rename tools/legal-review/{Base/com.ibm.icu.icu4j-67.1/copyright-keep => Table/com.ibm.icu.icu4j-71.1/copyright-ignore} (98%) create mode 100644 tools/legal-review/Table/com.ibm.icu.icu4j-71.1/copyright-keep rename tools/legal-review/Table/{org.apache.poi.poi-ooxml-5.0.0 => com.ibm.icu.icu4j-71.1}/custom-license (100%) rename tools/legal-review/Table/{com.ibm.icu.icu4j-67.1 => com.ibm.icu.icu4j-71.1}/files-keep (100%) rename tools/legal-review/Table/{com.univocity.univocity-parsers-2.9.0/copyright-keep => com.univocity.univocity-parsers-2.9.1/copyright-ignore} (86%) create mode 100644 tools/legal-review/Table/com.univocity.univocity-parsers-2.9.1/copyright-keep rename tools/legal-review/{engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE130 => Table/commons-io.commons-io-2.11.0}/copyright-ignore (100%) rename tools/legal-review/Table/{org.apache.xmlgraphics.batik-anim-1.13/copyright-ignore => commons-io.commons-io-2.11.0/copyright-keep} (100%) rename tools/legal-review/Table/{commons-io.commons-io-1.3.1 => commons-io.commons-io-2.11.0}/files-ignore (100%) rename tools/legal-review/Table/{commons-io.commons-io-1.3.1 => commons-io.commons-io-2.11.0}/files-keep (100%) delete mode 100644 tools/legal-review/Table/de.rototor.pdfbox.graphics2d-0.30/copyright-keep delete mode 100644 tools/legal-review/Table/org.apache.commons.commons-compress-1.20/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.commons.commons-compress-1.20/copyright-keep create mode 100644 tools/legal-review/Table/org.apache.commons.commons-compress-1.21/copyright-ignore create mode 100644 tools/legal-review/Table/org.apache.commons.commons-compress-1.21/copyright-keep rename tools/legal-review/Table/{org.apache.commons.commons-compress-1.20 => org.apache.commons.commons-compress-1.21}/files-ignore (100%) rename tools/legal-review/Table/{org.apache.commons.commons-compress-1.20 => org.apache.commons.commons-compress-1.21}/files-keep (100%) rename tools/legal-review/Table/{org.apache.logging.log4j.log4j-api-2.14.0 => org.apache.logging.log4j.log4j-api-2.17.2}/copyright-ignore (74%) rename tools/legal-review/Table/{org.apache.xmlgraphics.batik-awt-util-1.13/copyright-ignore => org.apache.logging.log4j.log4j-api-2.17.2/copyright-keep} (100%) rename tools/legal-review/{Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1 => Table/org.apache.logging.log4j.log4j-api-2.17.2}/files-ignore (100%) rename tools/legal-review/{Database/com.fasterxml.jackson.core.jackson-databind-2.12.3 => Table/org.apache.logging.log4j.log4j-api-2.17.2}/files-keep (100%) delete mode 100644 tools/legal-review/Table/org.apache.pdfbox.fontbox-2.0.22/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.pdfbox.fontbox-2.0.22/copyright-keep delete mode 100644 tools/legal-review/Table/org.apache.pdfbox.pdfbox-2.0.22/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.pdfbox.pdfbox-2.0.22/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.pdfbox.pdfbox-2.0.22/copyright-keep delete mode 100644 tools/legal-review/Table/org.apache.pdfbox.pdfbox-2.0.22/files-keep delete mode 100644 tools/legal-review/Table/org.apache.poi.poi-5.0.0/copyright-keep rename tools/legal-review/Table/{org.apache.poi.poi-5.0.0 => org.apache.poi.poi-5.2.2}/copyright-ignore (61%) create mode 100644 tools/legal-review/Table/org.apache.poi.poi-5.2.2/copyright-keep rename tools/legal-review/Table/{org.codehaus.woodstox.stax2-api-4.2 => org.apache.poi.poi-5.2.2}/custom-license (100%) create mode 100644 tools/legal-review/Table/org.apache.poi.poi-5.2.2/files-ignore rename tools/legal-review/Table/{org.apache.poi.poi-5.0.0 => org.apache.poi.poi-5.2.2}/files-keep (100%) delete mode 100644 tools/legal-review/Table/org.apache.poi.poi-ooxml-5.0.0/copyright-keep delete mode 100644 tools/legal-review/Table/org.apache.poi.poi-ooxml-5.0.0/files-keep create mode 100644 tools/legal-review/Table/org.apache.poi.poi-ooxml-5.2.2/copyright-ignore create mode 100644 tools/legal-review/Table/org.apache.poi.poi-ooxml-5.2.2/copyright-keep rename tools/legal-review/Table/{xml-apis.xml-apis-1.4.01 => org.apache.poi.poi-ooxml-5.2.2}/custom-license (100%) create mode 100644 tools/legal-review/Table/org.apache.poi.poi-ooxml-5.2.2/files-ignore rename tools/legal-review/{engine/org.netbeans.api.org-netbeans-api-progress-RELEASE130/files-ignore => Table/org.apache.poi.poi-ooxml-5.2.2/files-keep} (100%) delete mode 100644 tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.0.0/copyright-add rename tools/legal-review/Table/{org.apache.santuario.xmlsec-2.2.1 => org.apache.poi.poi-ooxml-lite-5.2.2}/copyright-ignore (65%) create mode 100644 tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.2.2/copyright-keep rename tools/legal-review/{engine/com.lihaoyi.fansi_2.13-0.3.0 => Table/org.apache.poi.poi-ooxml-lite-5.2.2}/custom-license (100%) create mode 100644 tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.2.2/files-ignore rename tools/legal-review/{engine/org.apache.tika.tika-core-2.2.1 => Table/org.apache.poi.poi-ooxml-lite-5.2.2}/files-keep (100%) delete mode 100644 tools/legal-review/Table/org.apache.santuario.xmlsec-2.2.1/copyright-keep delete mode 100644 tools/legal-review/Table/org.apache.xmlbeans.xmlbeans-5.0.1/files-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlbeans.xmlbeans-5.0.1/files-keep rename tools/legal-review/Table/{org.apache.xmlbeans.xmlbeans-5.0.1/copyright-keep => org.apache.xmlbeans.xmlbeans-5.1.0/copyright-ignore} (100%) rename tools/legal-review/Table/{org.apache.xmlgraphics.batik-constants-1.13/copyright-ignore => org.apache.xmlbeans.xmlbeans-5.1.0/copyright-keep} (57%) delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-all-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-anim-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-awt-util-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-bridge-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-bridge-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-codec-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-codec-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-constants-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-css-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-dom-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-dom-1.13/copyright-keep delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-ext-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-ext-1.13/copyright-keep delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-extension-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-extension-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-gui-util-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-gui-util-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-gvt-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-gvt-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-i18n-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-i18n-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-parser-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-parser-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-rasterizer-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-rasterizer-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-rasterizer-ext-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-script-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-script-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-shared-resources-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-slideshow-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-slideshow-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-squiggle-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-squiggle-ext-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-svg-dom-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-svg-dom-1.13/copyright-keep delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-svgbrowser-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-svgbrowser-1.13/custom-license delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-svgbrowser-1.13/files-keep delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-svggen-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-svggen-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-svgpp-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-svgpp-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-svgrasterizer-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-svgrasterizer-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-swing-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-swing-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-transcoder-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-transcoder-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-ttf2svg-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-ttf2svg-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-util-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-util-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-xml-1.13/copyright-add delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.batik-xml-1.13/copyright-ignore delete mode 100644 tools/legal-review/Table/org.apache.xmlgraphics.xmlgraphics-commons-2.4/copyright-ignore delete mode 100644 tools/legal-review/Table/org.bouncycastle.bcpkix-jdk15on-1.68/copyright-add delete mode 100644 tools/legal-review/Table/org.bouncycastle.bcprov-jdk15on-1.68/copyright-ignore delete mode 100644 tools/legal-review/Table/org.bouncycastle.bcprov-jdk15on-1.68/copyright-keep delete mode 100644 tools/legal-review/Table/org.codehaus.woodstox.stax2-api-4.2/copyright-keep delete mode 100644 tools/legal-review/Table/org.slf4j.jcl-over-slf4j-1.7.30/copyright-keep create mode 100644 tools/legal-review/Table/reviewed-licenses/Unicode_ICU_License delete mode 100644 tools/legal-review/Table/xalan.serializer-2.7.2/copyright-ignore delete mode 100644 tools/legal-review/Table/xalan.serializer-2.7.2/copyright-keep delete mode 100644 tools/legal-review/Table/xalan.xalan-2.7.2/copyright-ignore delete mode 100644 tools/legal-review/Table/xalan.xalan-2.7.2/copyright-keep delete mode 100644 tools/legal-review/Table/xml-apis.xml-apis-1.4.01/copyright-ignore delete mode 100644 tools/legal-review/Table/xml-apis.xml-apis-1.4.01/copyright-keep delete mode 100644 tools/legal-review/Table/xml-apis.xml-apis-1.4.01/files-keep delete mode 100644 tools/legal-review/Table/xml-apis.xml-apis-ext-1.3.04/copyright-add rename tools/legal-review/{project-manager/com.chuusai.shapeless_2.13-2.3.7/copyright-keep => engine/com.chuusai.shapeless_2.13-2.3.9/copyright-ignore} (78%) create mode 100644 tools/legal-review/engine/com.chuusai.shapeless_2.13-2.3.9/copyright-keep rename tools/legal-review/engine/{com.lihaoyi.pprint_2.13-0.7.1 => com.fasterxml.jackson.core.jackson-annotations-2.13.3}/custom-license (100%) rename tools/legal-review/engine/{com.fasterxml.jackson.core.jackson-annotations-2.13.1 => com.fasterxml.jackson.core.jackson-annotations-2.13.3}/files-keep (100%) delete mode 100644 tools/legal-review/engine/com.fasterxml.jackson.core.jackson-core-2.13.1/files-ignore rename tools/legal-review/{project-manager/com.fasterxml.jackson.core.jackson-core-2.13.1/copyright-keep-context => engine/com.fasterxml.jackson.core.jackson-core-2.13.3/copyright-keep} (100%) rename tools/legal-review/engine/{com.fasterxml.jackson.core.jackson-core-2.13.1 => com.fasterxml.jackson.core.jackson-core-2.13.3}/files-add/CREDITS-2.x.txt (100%) rename tools/legal-review/{Database/com.fasterxml.jackson.core.jackson-annotations-2.12.3 => engine/com.fasterxml.jackson.core.jackson-core-2.13.3}/files-ignore (100%) rename tools/legal-review/{Table/org.apache.logging.log4j.log4j-api-2.14.0 => engine/com.fasterxml.jackson.core.jackson-core-2.13.3}/files-keep (100%) delete mode 100644 tools/legal-review/engine/com.fasterxml.jackson.core.jackson-databind-2.13.1/files-ignore rename tools/legal-review/engine/{com.fasterxml.jackson.core.jackson-databind-2.13.1 => com.fasterxml.jackson.core.jackson-databind-2.13.3}/files-add/CREDITS-2.x.txt (100%) rename tools/legal-review/{Database/com.fasterxml.jackson.core.jackson-core-2.12.3 => engine/com.fasterxml.jackson.core.jackson-databind-2.13.3}/files-ignore (100%) rename tools/legal-review/{Table/org.apache.santuario.xmlsec-2.2.1 => engine/com.fasterxml.jackson.core.jackson-databind-2.13.3}/files-keep (100%) rename tools/legal-review/engine/{com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.1 => com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.3}/files-add/CREDITS-2.x.txt (100%) rename tools/legal-review/engine/{com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.1 => com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.3}/files-ignore (100%) create mode 100644 tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/copyright-ignore create mode 100644 tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/copyright-keep rename tools/legal-review/engine/{com.lihaoyi.sourcecode_2.13-0.2.7 => com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3}/custom-license (100%) rename tools/legal-review/engine/{com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1 => com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3}/files-keep (100%) rename tools/legal-review/engine/{com.google.errorprone.error_prone_annotations-2.7.1/copyright-keep-context => com.google.errorprone.error_prone_annotations-2.11.0/copyright-ignore} (80%) create mode 100644 tools/legal-review/engine/com.google.errorprone.error_prone_annotations-2.11.0/copyright-keep delete mode 100644 tools/legal-review/engine/com.google.guava.guava-31.0.1-jre/copyright-keep-context rename tools/legal-review/engine/{com.google.guava.guava-31.0.1-jre/copyright-keep => com.google.guava.guava-31.1-jre/copyright-ignore} (79%) create mode 100644 tools/legal-review/engine/com.google.guava.guava-31.1-jre/copyright-keep rename tools/legal-review/engine/{com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18 => com.lihaoyi.fansi_2.13-0.3.1}/custom-license (100%) rename tools/legal-review/engine/{com.lihaoyi.fansi_2.13-0.3.0 => com.lihaoyi.fansi_2.13-0.3.1}/files-keep (100%) rename tools/legal-review/engine/{eu.timepit.refined_2.13-0.9.27 => com.lihaoyi.pprint_2.13-0.7.3}/custom-license (100%) rename tools/legal-review/engine/{com.lihaoyi.pprint_2.13-0.7.1 => com.lihaoyi.pprint_2.13-0.7.3}/files-keep (100%) rename tools/legal-review/engine/{com.lihaoyi.scalatags_2.13-0.11.0 => com.lihaoyi.scalatags_2.13-0.11.1}/copyright-ignore (51%) create mode 100644 tools/legal-review/engine/com.lihaoyi.scalatags_2.13-0.11.1/copyright-keep rename tools/legal-review/engine/{com.lihaoyi.scalatags_2.13-0.11.0 => com.lihaoyi.scalatags_2.13-0.11.1}/custom-license (100%) rename tools/legal-review/engine/{com.lihaoyi.scalatags_2.13-0.11.0 => com.lihaoyi.scalatags_2.13-0.11.1}/files-add/LICENSE.txt (100%) rename tools/legal-review/engine/{org.apache.tika.tika-core-2.2.1 => com.lihaoyi.sourcecode_2.13-0.2.8}/custom-license (100%) rename tools/legal-review/engine/{com.lihaoyi.sourcecode_2.13-0.2.7 => com.lihaoyi.sourcecode_2.13-0.2.8}/files-keep (100%) rename tools/legal-review/engine/{com.monovore.decline_2.13-2.2.0 => com.monovore.decline_2.13-2.3.0}/copyright-add (100%) delete mode 100644 tools/legal-review/engine/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/copyright-keep create mode 100644 tools/legal-review/engine/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/copyright-ignore create mode 100644 tools/legal-review/engine/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/copyright-keep create mode 100644 tools/legal-review/engine/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-ignore create mode 100644 tools/legal-review/engine/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-keep delete mode 100644 tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-keep rename tools/legal-review/engine/{com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep => com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-ignore} (81%) create mode 100644 tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-keep rename tools/legal-review/{project-manager/com.typesafe.akka.akka-http-spray-json_2.13-10.2.7/copyright-keep => engine/com.typesafe.akka.akka-http-spray-json_2.13-10.2.9/copyright-ignore} (100%) rename tools/legal-review/{project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.7 => engine/com.typesafe.akka.akka-http-spray-json_2.13-10.2.9}/copyright-keep (100%) rename tools/legal-review/engine/{com.typesafe.akka.akka-http_2.13-10.2.7/copyright-keep-context => com.typesafe.akka.akka-http_2.13-10.2.9/copyright-ignore} (85%) create mode 100644 tools/legal-review/engine/com.typesafe.akka.akka-http_2.13-10.2.9/copyright-keep create mode 100644 tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-ignore rename tools/legal-review/engine/{com.typesafe.akka.akka-http-spray-json_2.13-10.2.7/copyright-keep-context => com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-keep} (52%) rename tools/legal-review/engine/{org.typelevel.jawn-parser_2.13-1.1.2 => com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19}/custom-license (100%) rename tools/legal-review/engine/{com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18 => com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19}/files-add/COPYING.protobuf (100%) rename tools/legal-review/engine/{com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18 => com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19}/files-add/LICENSE (100%) create mode 100644 tools/legal-review/engine/com.typesafe.akka.akka-slf4j_2.13-2.6.19/copyright-keep delete mode 100644 tools/legal-review/engine/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep-context create mode 100644 tools/legal-review/engine/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-ignore create mode 100644 tools/legal-review/engine/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-keep rename tools/legal-review/engine/{com.typesafe.config-1.4.1/copyright-keep-context => com.typesafe.config-1.4.2/copyright-ignore} (64%) create mode 100644 tools/legal-review/engine/com.typesafe.config-1.4.2/copyright-keep rename tools/legal-review/engine/{com.typesafe.ssl-config-core_2.13-0.4.2 => com.typesafe.ssl-config-core_2.13-0.4.3}/copyright-keep (100%) delete mode 100644 tools/legal-review/engine/eu.timepit.refined_2.13-0.9.27/files-keep rename tools/legal-review/{Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1 => engine/io.circe.circe-core_2.13-0.14.2}/default-and-custom-license (100%) rename tools/legal-review/{project-manager/io.circe.circe-core_2.13-0.14.1/files-keep => engine/io.circe.circe-core_2.13-0.14.2/files-ignore} (65%) create mode 100644 tools/legal-review/engine/io.circe.circe-core_2.13-0.14.2/files-keep rename tools/legal-review/engine/{io.circe.circe-generic-extras_2.13-0.14.1 => io.circe.circe-generic-extras_2.13-0.14.2}/copyright-add (100%) rename tools/legal-review/engine/{io.circe.circe-generic-extras_2.13-0.14.1 => io.circe.circe-generic-extras_2.13-0.14.2}/files-ignore (100%) rename tools/legal-review/{Table/com.fasterxml.woodstox.woodstox-core-5.2.1 => engine/io.circe.circe-generic_2.13-0.14.2}/default-and-custom-license (100%) rename tools/legal-review/{project-manager/io.circe.circe-generic_2.13-0.14.1/files-keep => engine/io.circe.circe-generic_2.13-0.14.2/files-ignore} (65%) create mode 100644 tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.2/files-keep rename tools/legal-review/{Table/xml-apis.xml-apis-1.4.01 => engine/io.circe.circe-jawn_2.13-0.14.2}/default-and-custom-license (100%) rename tools/legal-review/{project-manager/io.circe.circe-jawn_2.13-0.14.1/files-keep => engine/io.circe.circe-jawn_2.13-0.14.2/files-ignore} (65%) create mode 100644 tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.2/files-keep rename tools/legal-review/engine/{com.fasterxml.jackson.core.jackson-annotations-2.13.1 => io.circe.circe-literal_2.13-0.14.2}/default-and-custom-license (100%) rename tools/legal-review/{project-manager/io.circe.circe-literal_2.13-0.14.1/files-keep => engine/io.circe.circe-literal_2.13-0.14.2/files-ignore} (65%) create mode 100644 tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.2/files-keep rename tools/legal-review/engine/{com.fasterxml.jackson.core.jackson-core-2.13.1 => io.circe.circe-numbers_2.13-0.14.2}/default-and-custom-license (100%) create mode 100644 tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.2/files-ignore create mode 100644 tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.2/files-keep rename tools/legal-review/engine/{com.fasterxml.jackson.core.jackson-databind-2.13.1 => io.circe.circe-parser_2.13-0.14.2}/default-and-custom-license (100%) create mode 100644 tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.2/files-ignore create mode 100644 tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.2/files-keep create mode 100644 tools/legal-review/engine/io.methvin.directory-watcher-0.16.1/copyright-keep create mode 100644 tools/legal-review/engine/net.java.dev.jna.jna-5.12.1/copyright-ignore create mode 100644 tools/legal-review/engine/net.java.dev.jna.jna-5.12.1/copyright-keep delete mode 100644 tools/legal-review/engine/net.java.dev.jna.jna-5.8.0/copyright-add delete mode 100644 tools/legal-review/engine/net.java.dev.jna.jna-5.8.0/copyright-ignore delete mode 100644 tools/legal-review/engine/net.java.dev.jna.jna-5.8.0/copyright-keep rename tools/legal-review/engine/{net.java.dev.jna.jna-5.8.0/copyright-keep-context => net.java.dev.jna.jna-5.9.0/copyright-ignore} (84%) create mode 100644 tools/legal-review/engine/net.java.dev.jna.jna-5.9.0/copyright-keep delete mode 100644 tools/legal-review/engine/org.apache.tika.tika-core-2.2.1/copyright-keep-context rename tools/legal-review/engine/{org.apache.tika.tika-core-2.2.1 => org.apache.tika.tika-core-2.4.1}/copyright-ignore (92%) create mode 100644 tools/legal-review/engine/org.apache.tika.tika-core-2.4.1/copyright-keep rename tools/legal-review/{Database/com.fasterxml.jackson.core.jackson-databind-2.12.3 => engine/org.apache.tika.tika-core-2.4.1}/files-ignore (100%) rename tools/legal-review/{Table/org.apache.xmlgraphics.batik-shared-resources-1.13 => engine/org.apache.tika.tika-core-2.4.1}/files-keep (100%) delete mode 100644 tools/legal-review/engine/org.jline.jline-3.20.0/copyright-keep delete mode 100644 tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-RELEASE130/copyright-ignore delete mode 100644 tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-nb-RELEASE130/files-ignore delete mode 100644 tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-nb-RELEASE130/files-keep delete mode 100644 tools/legal-review/engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE130/files-ignore delete mode 100644 tools/legal-review/engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE130/files-keep rename tools/legal-review/engine/{org.netbeans.api.org-openide-dialogs-RELEASE130/copyright-ignore => org.netbeans.api.org-netbeans-modules-sampler-RELEASE140/copyright-keep} (100%) rename tools/legal-review/{Table/org.apache.logging.log4j.log4j-api-2.14.0 => engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE140}/files-ignore (100%) rename tools/legal-review/{Table/org.apache.xmlgraphics.xmlgraphics-commons-2.4 => engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE140}/files-keep (100%) delete mode 100644 tools/legal-review/engine/org.netbeans.api.org-openide-dialogs-RELEASE130/files-ignore delete mode 100644 tools/legal-review/engine/org.netbeans.api.org-openide-dialogs-RELEASE130/files-keep delete mode 100644 tools/legal-review/engine/org.netbeans.api.org-openide-util-RELEASE130/copyright-ignore delete mode 100644 tools/legal-review/engine/org.netbeans.api.org-openide-util-RELEASE130/files-ignore delete mode 100644 tools/legal-review/engine/org.netbeans.api.org-openide-util-RELEASE130/files-keep delete mode 100644 tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE130/copyright-add delete mode 100644 tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE130/files-ignore delete mode 100644 tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE130/files-keep rename tools/legal-review/engine/{org.netbeans.api.org-openide-util-lookup-RELEASE130 => org.netbeans.api.org-openide-util-lookup-RELEASE140}/copyright-ignore (100%) rename tools/legal-review/{Table/org.apache.santuario.xmlsec-2.2.1 => engine/org.netbeans.api.org-openide-util-lookup-RELEASE140}/files-ignore (100%) rename tools/legal-review/engine/{com.fasterxml.jackson.core.jackson-core-2.13.1 => org.netbeans.api.org-openide-util-lookup-RELEASE140}/files-keep (100%) delete mode 100644 tools/legal-review/engine/org.scala-lang.modules.scala-xml_2.13-1.3.0/copyright-add delete mode 100644 tools/legal-review/engine/org.scala-lang.modules.scala-xml_2.13-1.3.0/copyright-ignore delete mode 100644 tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.7/copyright-keep rename tools/legal-review/engine/{org.scala-lang.scala-compiler-2.13.7 => org.scala-lang.scala-compiler-2.13.8}/copyright-ignore (77%) create mode 100644 tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.8/copyright-keep rename tools/legal-review/engine/{org.scala-lang.scala-compiler-2.13.7 => org.scala-lang.scala-compiler-2.13.8}/files-ignore (100%) rename tools/legal-review/engine/{org.scala-lang.scala-compiler-2.13.7 => org.scala-lang.scala-compiler-2.13.8}/files-keep (100%) rename tools/legal-review/engine/{org.scala-lang.scala-library-2.13.7 => org.scala-lang.scala-library-2.13.8}/copyright-ignore (100%) rename tools/legal-review/engine/{org.scala-lang.scala-library-2.13.7 => org.scala-lang.scala-library-2.13.8}/copyright-keep (100%) rename tools/legal-review/engine/{org.scala-lang.scala-library-2.13.7 => org.scala-lang.scala-library-2.13.8}/files-ignore (100%) rename tools/legal-review/engine/{org.scala-lang.scala-library-2.13.7 => org.scala-lang.scala-library-2.13.8}/files-keep (100%) rename tools/legal-review/{launcher/org.scala-lang.scala-reflect-2.13.7 => engine/org.scala-lang.scala-reflect-2.13.8}/copyright-keep (100%) rename tools/legal-review/engine/{org.scala-lang.scala-reflect-2.13.7 => org.scala-lang.scala-reflect-2.13.8}/files-ignore (100%) rename tools/legal-review/engine/{org.scala-lang.scala-reflect-2.13.7 => org.scala-lang.scala-reflect-2.13.8}/files-keep (100%) rename tools/legal-review/{Table/org.slf4j.slf4j-api-1.7.30 => engine/org.slf4j.slf4j-api-1.7.36}/copyright-keep (100%) delete mode 100644 tools/legal-review/engine/org.typelevel.cats-core_2.13-2.7.0/custom-license delete mode 100644 tools/legal-review/engine/org.typelevel.cats-core_2.13-2.7.0/files-keep create mode 100644 tools/legal-review/engine/org.typelevel.cats-core_2.13-2.8.0/copyright-keep delete mode 100644 tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.7.0/custom-license delete mode 100644 tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.7.0/files-ignore delete mode 100644 tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.7.0/files-keep create mode 100644 tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.8.0/copyright-keep rename tools/legal-review/{launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18 => engine/org.typelevel.jawn-parser_2.13-1.3.2}/custom-license (100%) rename tools/legal-review/engine/{org.typelevel.jawn-parser_2.13-1.1.2 => org.typelevel.jawn-parser_2.13-1.3.2}/files-add/LICENSE (100%) delete mode 100644 tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.7/copyright-ignore rename tools/legal-review/{Database/com.amazonaws.aws-java-sdk-redshift-1.12.23 => launcher/com.chuusai.shapeless_2.13-2.3.9}/copyright-ignore (100%) rename tools/legal-review/{engine/com.chuusai.shapeless_2.13-2.3.7 => launcher/com.chuusai.shapeless_2.13-2.3.9}/copyright-keep (100%) rename tools/legal-review/{engine/com.chuusai.shapeless_2.13-2.3.7 => launcher/com.chuusai.shapeless_2.13-2.3.9}/copyright-keep-context (100%) delete mode 100644 tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep delete mode 100644 tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep-context create mode 100644 tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-ignore create mode 100644 tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-keep rename tools/legal-review/{engine/com.typesafe.akka.akka-http-core_2.13-10.2.7 => launcher/com.typesafe.akka.akka-http-core_2.13-10.2.9}/copyright-add (100%) rename tools/legal-review/launcher/{com.typesafe.akka.akka-http-core_2.13-10.2.7 => com.typesafe.akka.akka-http-core_2.13-10.2.9}/copyright-keep (100%) rename tools/legal-review/launcher/{com.typesafe.akka.akka-http-core_2.13-10.2.7 => com.typesafe.akka.akka-http-core_2.13-10.2.9}/copyright-keep-context (100%) rename tools/legal-review/launcher/{com.typesafe.akka.akka-http_2.13-10.2.7 => com.typesafe.akka.akka-http_2.13-10.2.9}/copyright-keep (100%) rename tools/legal-review/launcher/{com.typesafe.akka.akka-http_2.13-10.2.7 => com.typesafe.akka.akka-http_2.13-10.2.9}/copyright-keep-context (100%) rename tools/legal-review/{engine/com.typesafe.akka.akka-parsing_2.13-10.2.7 => launcher/com.typesafe.akka.akka-parsing_2.13-10.2.9}/copyright-add (100%) rename tools/legal-review/{engine/com.typesafe.akka.akka-parsing_2.13-10.2.7 => launcher/com.typesafe.akka.akka-parsing_2.13-10.2.9}/copyright-ignore (100%) rename tools/legal-review/launcher/{com.typesafe.akka.akka-parsing_2.13-10.2.7 => com.typesafe.akka.akka-parsing_2.13-10.2.9}/copyright-keep (100%) rename tools/legal-review/launcher/{com.typesafe.akka.akka-parsing_2.13-10.2.7 => com.typesafe.akka.akka-parsing_2.13-10.2.9}/copyright-keep-context (100%) rename tools/legal-review/launcher/{io.circe.circe-core_2.13-0.14.1 => com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19}/custom-license (100%) rename tools/legal-review/launcher/{com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18 => com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19}/files-add/COPYING.protobuf (100%) rename tools/legal-review/launcher/{com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18 => com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19}/files-add/LICENSE (100%) delete mode 100644 tools/legal-review/launcher/com.typesafe.akka.akka-slf4j_2.13-2.6.18/copyright-keep-context create mode 100644 tools/legal-review/launcher/com.typesafe.akka.akka-slf4j_2.13-2.6.19/copyright-keep delete mode 100644 tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep delete mode 100644 tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep-context create mode 100644 tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-ignore create mode 100644 tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-keep rename tools/legal-review/{engine/com.typesafe.config-1.4.0 => launcher/com.typesafe.config-1.4.2}/copyright-keep-context (100%) rename tools/legal-review/launcher/{com.typesafe.ssl-config-core_2.13-0.4.2 => com.typesafe.ssl-config-core_2.13-0.4.3}/copyright-keep (100%) rename tools/legal-review/launcher/{io.circe.circe-generic_2.13-0.14.1 => io.circe.circe-core_2.13-0.14.2}/custom-license (100%) rename tools/legal-review/{engine/eu.timepit.refined_2.13-0.9.27 => launcher/io.circe.circe-core_2.13-0.14.2}/files-ignore (100%) rename tools/legal-review/launcher/{io.circe.circe-core_2.13-0.14.1 => io.circe.circe-core_2.13-0.14.2}/files-keep (100%) rename tools/legal-review/launcher/{io.circe.circe-jawn_2.13-0.14.1 => io.circe.circe-generic_2.13-0.14.2}/custom-license (100%) rename tools/legal-review/launcher/{io.circe.circe-core_2.13-0.14.1 => io.circe.circe-generic_2.13-0.14.2}/files-ignore (100%) rename tools/legal-review/launcher/{io.circe.circe-generic_2.13-0.14.1 => io.circe.circe-generic_2.13-0.14.2}/files-keep (100%) rename tools/legal-review/launcher/{io.circe.circe-numbers_2.13-0.14.1 => io.circe.circe-jawn_2.13-0.14.2}/custom-license (100%) rename tools/legal-review/launcher/{io.circe.circe-generic_2.13-0.14.1 => io.circe.circe-jawn_2.13-0.14.2}/files-ignore (100%) rename tools/legal-review/launcher/{io.circe.circe-jawn_2.13-0.14.1 => io.circe.circe-jawn_2.13-0.14.2}/files-keep (100%) rename tools/legal-review/launcher/{io.circe.circe-parser_2.13-0.14.1 => io.circe.circe-numbers_2.13-0.14.2}/custom-license (100%) rename tools/legal-review/launcher/{io.circe.circe-jawn_2.13-0.14.1 => io.circe.circe-numbers_2.13-0.14.2}/files-ignore (100%) rename tools/legal-review/launcher/{io.circe.circe-numbers_2.13-0.14.1 => io.circe.circe-numbers_2.13-0.14.2}/files-keep (100%) rename tools/legal-review/launcher/{org.typelevel.jawn-parser_2.13-1.1.2 => io.circe.circe-parser_2.13-0.14.2}/custom-license (100%) rename tools/legal-review/launcher/{io.circe.circe-numbers_2.13-0.14.1 => io.circe.circe-parser_2.13-0.14.2}/files-ignore (100%) rename tools/legal-review/launcher/{io.circe.circe-parser_2.13-0.14.1 => io.circe.circe-parser_2.13-0.14.2}/files-keep (100%) rename tools/legal-review/launcher/{org.scala-lang.scala-library-2.13.7 => org.scala-lang.scala-library-2.13.8}/copyright-ignore (100%) rename tools/legal-review/launcher/{org.scala-lang.scala-library-2.13.7 => org.scala-lang.scala-library-2.13.8}/copyright-keep (100%) rename tools/legal-review/launcher/{org.scala-lang.scala-library-2.13.7 => org.scala-lang.scala-library-2.13.8}/files-ignore (100%) rename tools/legal-review/launcher/{org.scala-lang.scala-library-2.13.7 => org.scala-lang.scala-library-2.13.8}/files-keep (100%) rename tools/legal-review/{project-manager/org.scala-lang.scala-reflect-2.13.7 => launcher/org.scala-lang.scala-reflect-2.13.8}/copyright-keep (100%) rename tools/legal-review/launcher/{org.scala-lang.scala-reflect-2.13.7 => org.scala-lang.scala-reflect-2.13.8}/files-ignore (100%) rename tools/legal-review/launcher/{org.scala-lang.scala-reflect-2.13.7 => org.scala-lang.scala-reflect-2.13.8}/files-keep (100%) rename tools/legal-review/{engine/org.slf4j.slf4j-api-1.7.32 => launcher/org.slf4j.slf4j-api-1.7.36}/copyright-keep-context (100%) delete mode 100644 tools/legal-review/launcher/org.typelevel.cats-core_2.13-2.7.0/custom-license delete mode 100644 tools/legal-review/launcher/org.typelevel.cats-core_2.13-2.7.0/files-keep create mode 100644 tools/legal-review/launcher/org.typelevel.cats-core_2.13-2.8.0/copyright-keep delete mode 100644 tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.7.0/custom-license delete mode 100644 tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.7.0/files-add/AUTHORS delete mode 100644 tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.7.0/files-ignore delete mode 100644 tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.7.0/files-keep create mode 100644 tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.8.0/copyright-keep rename tools/legal-review/{project-manager/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18 => launcher/org.typelevel.jawn-parser_2.13-1.3.2}/custom-license (100%) rename tools/legal-review/launcher/{org.typelevel.jawn-parser_2.13-1.1.2 => org.typelevel.jawn-parser_2.13-1.3.2}/files-add/LICENSE (100%) delete mode 100644 tools/legal-review/launcher/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/files-ignore create mode 100644 tools/legal-review/license-texts/BSD-2-Clause create mode 100644 tools/legal-review/license-texts/Unicode_ICU_License delete mode 100644 tools/legal-review/project-manager/com.chuusai.shapeless_2.13-2.3.7/copyright-ignore delete mode 100644 tools/legal-review/project-manager/com.chuusai.shapeless_2.13-2.3.7/copyright-keep-context rename tools/legal-review/{engine/com.chuusai.shapeless_2.13-2.3.7 => project-manager/com.chuusai.shapeless_2.13-2.3.9}/copyright-ignore (100%) rename tools/legal-review/{launcher/com.chuusai.shapeless_2.13-2.3.7 => project-manager/com.chuusai.shapeless_2.13-2.3.9}/copyright-keep (100%) rename tools/legal-review/{launcher/com.chuusai.shapeless_2.13-2.3.7 => project-manager/com.chuusai.shapeless_2.13-2.3.9}/copyright-keep-context (100%) rename tools/legal-review/project-manager/{org.typelevel.jawn-parser_2.13-1.1.2 => com.fasterxml.jackson.core.jackson-annotations-2.13.3}/custom-license (100%) rename tools/legal-review/{engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1 => project-manager/com.fasterxml.jackson.core.jackson-annotations-2.13.3}/default-and-custom-license (100%) rename tools/legal-review/project-manager/{com.fasterxml.jackson.core.jackson-annotations-2.13.1 => com.fasterxml.jackson.core.jackson-annotations-2.13.3}/files-keep (100%) delete mode 100644 tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.1/files-ignore delete mode 100644 tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.1/files-keep create mode 100644 tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.3/copyright-keep-context rename tools/legal-review/{engine/io.circe.circe-core_2.13-0.14.1 => project-manager/com.fasterxml.jackson.core.jackson-core-2.13.3}/default-and-custom-license (100%) rename tools/legal-review/project-manager/{com.fasterxml.jackson.core.jackson-core-2.13.1 => com.fasterxml.jackson.core.jackson-core-2.13.3}/files-add/CREDITS-2.x.txt (100%) rename tools/legal-review/{Table/org.apache.xmlgraphics.batik-shared-resources-1.13 => project-manager/com.fasterxml.jackson.core.jackson-core-2.13.3}/files-ignore (100%) rename tools/legal-review/{engine/com.fasterxml.jackson.core.jackson-databind-2.13.1 => project-manager/com.fasterxml.jackson.core.jackson-core-2.13.3}/files-keep (100%) delete mode 100644 tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.1/files-ignore delete mode 100644 tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.1/files-keep rename tools/legal-review/{engine/io.circe.circe-generic_2.13-0.14.1 => project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.3}/default-and-custom-license (100%) rename tools/legal-review/project-manager/{com.fasterxml.jackson.core.jackson-databind-2.13.1 => com.fasterxml.jackson.core.jackson-databind-2.13.3}/files-add/CREDITS-2.x.txt (100%) rename tools/legal-review/{Table/org.apache.xmlgraphics.xmlgraphics-commons-2.4 => project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.3}/files-ignore (100%) rename tools/legal-review/{engine/org.netbeans.api.org-netbeans-api-progress-RELEASE130 => project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.3}/files-keep (100%) delete mode 100644 tools/legal-review/project-manager/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.1/files-ignore rename tools/legal-review/project-manager/{com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.1 => com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.3}/files-add/CREDITS-2.x.txt (100%) rename tools/legal-review/{launcher/io.circe.circe-parser_2.13-0.14.1 => project-manager/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.3}/files-ignore (100%) delete mode 100644 tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/copyright-add delete mode 100644 tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/default-and-custom-license rename tools/legal-review/{engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1 => project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3}/copyright-add (100%) rename tools/legal-review/{engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1 => project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3}/copyright-ignore (100%) rename tools/legal-review/{engine/io.circe.circe-jawn_2.13-0.14.1 => project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3}/default-and-custom-license (100%) rename tools/legal-review/project-manager/{com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1 => com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3}/files-keep (100%) delete mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/copyright-keep delete mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/copyright-keep-context create mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/copyright-ignore create mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/copyright-keep delete mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep delete mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep-context create mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-ignore create mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-keep delete mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-add rename tools/legal-review/{launcher/com.typesafe.akka.akka-http-core_2.13-10.2.7 => project-manager/com.typesafe.akka.akka-http-core_2.13-10.2.9}/copyright-add (100%) rename tools/legal-review/project-manager/{com.typesafe.akka.akka-http-core_2.13-10.2.7 => com.typesafe.akka.akka-http-core_2.13-10.2.9}/copyright-keep (100%) rename tools/legal-review/project-manager/{com.typesafe.akka.akka-http-core_2.13-10.2.7 => com.typesafe.akka.akka-http-core_2.13-10.2.9}/copyright-keep-context (100%) delete mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-http-spray-json_2.13-10.2.7/copyright-keep-context create mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-http-spray-json_2.13-10.2.9/copyright-keep rename tools/legal-review/{engine/com.typesafe.akka.akka-actor_2.13-2.6.18 => project-manager/com.typesafe.akka.akka-http-spray-json_2.13-10.2.9}/copyright-keep-context (100%) rename tools/legal-review/project-manager/{com.typesafe.akka.akka-http_2.13-10.2.7 => com.typesafe.akka.akka-http_2.13-10.2.9}/copyright-keep (100%) rename tools/legal-review/project-manager/{com.typesafe.akka.akka-http_2.13-10.2.7 => com.typesafe.akka.akka-http_2.13-10.2.9}/copyright-keep-context (100%) delete mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-add delete mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-ignore rename tools/legal-review/{launcher/com.typesafe.akka.akka-parsing_2.13-10.2.7 => project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.9}/copyright-add (100%) rename tools/legal-review/{launcher/com.typesafe.akka.akka-parsing_2.13-10.2.7 => project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.9}/copyright-ignore (100%) rename tools/legal-review/{engine/com.typesafe.akka.akka-slf4j_2.13-2.6.18/copyright-keep-context => project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-keep} (100%) rename tools/legal-review/project-manager/{com.typesafe.akka.akka-parsing_2.13-10.2.7 => com.typesafe.akka.akka-parsing_2.13-10.2.9}/copyright-keep-context (100%) rename tools/legal-review/project-manager/{org.scala-lang.scala-library-2.13.7/files-ignore => com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/custom-license} (100%) rename tools/legal-review/project-manager/{com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18 => com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19}/files-add/COPYING.protobuf (100%) rename tools/legal-review/project-manager/{com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18 => com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19}/files-add/LICENSE (100%) delete mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-slf4j_2.13-2.6.18/copyright-keep-context create mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-slf4j_2.13-2.6.19/copyright-keep delete mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep delete mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep-context create mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-ignore create mode 100644 tools/legal-review/project-manager/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-keep delete mode 100644 tools/legal-review/project-manager/com.typesafe.config-1.4.1/copyright-keep-context rename tools/legal-review/{launcher/com.typesafe.config-1.4.1 => project-manager/com.typesafe.config-1.4.2}/copyright-keep-context (100%) rename tools/legal-review/project-manager/{com.typesafe.ssl-config-core_2.13-0.4.2 => com.typesafe.ssl-config-core_2.13-0.4.3}/copyright-keep (100%) delete mode 100644 tools/legal-review/project-manager/io.circe.circe-core_2.13-0.14.1/default-and-custom-license delete mode 100644 tools/legal-review/project-manager/io.circe.circe-core_2.13-0.14.1/files-ignore rename tools/legal-review/{engine/io.circe.circe-literal_2.13-0.14.1 => project-manager/io.circe.circe-core_2.13-0.14.2}/default-and-custom-license (100%) rename tools/legal-review/{engine/io.circe.circe-core_2.13-0.14.1 => project-manager/io.circe.circe-core_2.13-0.14.2}/files-ignore (100%) rename tools/legal-review/{engine/io.circe.circe-core_2.13-0.14.1 => project-manager/io.circe.circe-core_2.13-0.14.2}/files-keep (100%) delete mode 100644 tools/legal-review/project-manager/io.circe.circe-generic_2.13-0.14.1/default-and-custom-license delete mode 100644 tools/legal-review/project-manager/io.circe.circe-generic_2.13-0.14.1/files-ignore rename tools/legal-review/{engine/io.circe.circe-numbers_2.13-0.14.1 => project-manager/io.circe.circe-generic_2.13-0.14.2}/default-and-custom-license (100%) rename tools/legal-review/{engine/io.circe.circe-generic_2.13-0.14.1 => project-manager/io.circe.circe-generic_2.13-0.14.2}/files-ignore (100%) rename tools/legal-review/{engine/io.circe.circe-generic_2.13-0.14.1 => project-manager/io.circe.circe-generic_2.13-0.14.2}/files-keep (100%) delete mode 100644 tools/legal-review/project-manager/io.circe.circe-jawn_2.13-0.14.1/default-and-custom-license delete mode 100644 tools/legal-review/project-manager/io.circe.circe-jawn_2.13-0.14.1/files-ignore rename tools/legal-review/{engine/io.circe.circe-parser_2.13-0.14.1 => project-manager/io.circe.circe-jawn_2.13-0.14.2}/default-and-custom-license (100%) rename tools/legal-review/{engine/io.circe.circe-jawn_2.13-0.14.1 => project-manager/io.circe.circe-jawn_2.13-0.14.2}/files-ignore (100%) rename tools/legal-review/{engine/io.circe.circe-jawn_2.13-0.14.1 => project-manager/io.circe.circe-jawn_2.13-0.14.2}/files-keep (100%) delete mode 100644 tools/legal-review/project-manager/io.circe.circe-literal_2.13-0.14.1/default-and-custom-license delete mode 100644 tools/legal-review/project-manager/io.circe.circe-literal_2.13-0.14.1/files-ignore rename tools/legal-review/project-manager/{com.fasterxml.jackson.core.jackson-annotations-2.13.1 => io.circe.circe-literal_2.13-0.14.2}/default-and-custom-license (100%) rename tools/legal-review/{engine/io.circe.circe-literal_2.13-0.14.1 => project-manager/io.circe.circe-literal_2.13-0.14.2}/files-ignore (100%) rename tools/legal-review/{engine/io.circe.circe-literal_2.13-0.14.1 => project-manager/io.circe.circe-literal_2.13-0.14.2}/files-keep (100%) delete mode 100644 tools/legal-review/project-manager/io.circe.circe-numbers_2.13-0.14.1/default-and-custom-license delete mode 100644 tools/legal-review/project-manager/io.circe.circe-numbers_2.13-0.14.1/files-ignore delete mode 100644 tools/legal-review/project-manager/io.circe.circe-numbers_2.13-0.14.1/files-keep rename tools/legal-review/project-manager/{com.fasterxml.jackson.core.jackson-core-2.13.1 => io.circe.circe-numbers_2.13-0.14.2}/default-and-custom-license (100%) rename tools/legal-review/{engine/io.circe.circe-numbers_2.13-0.14.1 => project-manager/io.circe.circe-numbers_2.13-0.14.2}/files-ignore (100%) rename tools/legal-review/{engine/io.circe.circe-numbers_2.13-0.14.1 => project-manager/io.circe.circe-numbers_2.13-0.14.2}/files-keep (100%) delete mode 100644 tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.1/default-and-custom-license delete mode 100644 tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.1/files-ignore delete mode 100644 tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.1/files-keep rename tools/legal-review/project-manager/{com.fasterxml.jackson.core.jackson-databind-2.13.1 => io.circe.circe-parser_2.13-0.14.2}/default-and-custom-license (100%) rename tools/legal-review/{engine/io.circe.circe-parser_2.13-0.14.1 => project-manager/io.circe.circe-parser_2.13-0.14.2}/files-ignore (100%) rename tools/legal-review/{engine/io.circe.circe-parser_2.13-0.14.1 => project-manager/io.circe.circe-parser_2.13-0.14.2}/files-keep (100%) rename tools/legal-review/project-manager/{org.scala-lang.scala-library-2.13.7 => org.scala-lang.scala-library-2.13.8}/copyright-ignore (100%) rename tools/legal-review/project-manager/{org.scala-lang.scala-library-2.13.7 => org.scala-lang.scala-library-2.13.8}/copyright-keep (100%) rename tools/legal-review/project-manager/{org.scala-lang.scala-reflect-2.13.7 => org.scala-lang.scala-library-2.13.8}/files-ignore (100%) rename tools/legal-review/project-manager/{org.scala-lang.scala-library-2.13.7 => org.scala-lang.scala-library-2.13.8}/files-keep (100%) rename tools/legal-review/{engine/org.scala-lang.scala-reflect-2.13.7 => project-manager/org.scala-lang.scala-reflect-2.13.8}/copyright-keep (100%) create mode 100644 tools/legal-review/project-manager/org.scala-lang.scala-reflect-2.13.8/files-ignore rename tools/legal-review/project-manager/{org.scala-lang.scala-reflect-2.13.7 => org.scala-lang.scala-reflect-2.13.8}/files-keep (100%) delete mode 100644 tools/legal-review/project-manager/org.slf4j.slf4j-api-1.7.32/copyright-keep-context rename tools/legal-review/{launcher/org.slf4j.slf4j-api-1.7.32 => project-manager/org.slf4j.slf4j-api-1.7.36}/copyright-keep-context (100%) delete mode 100644 tools/legal-review/project-manager/org.typelevel.cats-core_2.13-2.7.0/custom-license delete mode 100644 tools/legal-review/project-manager/org.typelevel.cats-core_2.13-2.7.0/files-keep create mode 100644 tools/legal-review/project-manager/org.typelevel.cats-core_2.13-2.8.0/copyright-keep delete mode 100644 tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.7.0/copyright-add delete mode 100644 tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.7.0/custom-license delete mode 100644 tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.7.0/files-ignore delete mode 100644 tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.7.0/files-keep rename tools/legal-review/{engine/org.typelevel.cats-kernel_2.13-2.7.0 => project-manager/org.typelevel.cats-kernel_2.13-2.8.0}/copyright-add (100%) create mode 100644 tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.8.0/copyright-keep create mode 100644 tools/legal-review/project-manager/org.typelevel.jawn-parser_2.13-1.3.2/custom-license rename tools/legal-review/project-manager/{org.typelevel.jawn-parser_2.13-1.1.2 => org.typelevel.jawn-parser_2.13-1.3.2}/files-add/LICENSE (100%) delete mode 100644 tools/legal-review/project-manager/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/files-ignore diff --git a/distribution/engine/THIRD-PARTY/NOTICE b/distribution/engine/THIRD-PARTY/NOTICE index 4ec137907679..832689b1ed4c 100644 --- a/distribution/engine/THIRD-PARTY/NOTICE +++ b/distribution/engine/THIRD-PARTY/NOTICE @@ -18,7 +18,7 @@ Copyright notices related to this dependency can be found in the directory `com. 'shapeless_2.13', licensed under the Apache 2, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.chuusai.shapeless_2.13-2.3.7`. +Copyright notices related to this dependency can be found in the directory `com.chuusai.shapeless_2.13-2.3.9`. 'shapeless_2.13', licensed under the Apache 2, is distributed with the engine. @@ -27,28 +27,28 @@ Copyright notices related to this dependency can be found in the directory `com. 'jackson-annotations', licensed under the The Apache Software License, Version 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.core.jackson-annotations-2.13.1`. +The license information can be found along with the copyright notices. +Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.core.jackson-annotations-2.13.3`. 'jackson-core', licensed under the The Apache Software License, Version 2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.core.jackson-core-2.13.1`. +Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.core.jackson-core-2.13.3`. 'jackson-databind', licensed under the The Apache Software License, Version 2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.core.jackson-databind-2.13.1`. +Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.core.jackson-databind-2.13.3`. 'jackson-dataformat-cbor', licensed under the The Apache Software License, Version 2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.1`. +Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.3`. 'jackson-module-scala_2.13', licensed under the The Apache Software License, Version 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1`. +The license information can be found along with the copyright notices. +Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3`. 'monocle-core_2.13', licensed under the MIT, is distributed with the engine. @@ -63,7 +63,7 @@ Copyright notices related to this dependency can be found in the directory `com. 'error_prone_annotations', licensed under the Apache 2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.google.errorprone.error_prone_annotations-2.7.1`. +Copyright notices related to this dependency can be found in the directory `com.google.errorprone.error_prone_annotations-2.11.0`. 'flatbuffers-java', licensed under the Apache License V2.0, is distributed with the engine. @@ -78,7 +78,7 @@ Copyright notices related to this dependency can be found in the directory `com. 'guava', licensed under the Apache License, Version 2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.google.guava.guava-31.0.1-jre`. +Copyright notices related to this dependency can be found in the directory `com.google.guava.guava-31.1-jre`. 'listenablefuture', licensed under the The Apache Software License, Version 2.0, is distributed with the engine. @@ -93,7 +93,7 @@ Copyright notices related to this dependency can be found in the directory `com. 'fansi_2.13', licensed under the MIT, is distributed with the engine. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `com.lihaoyi.fansi_2.13-0.3.0`. +Copyright notices related to this dependency can be found in the directory `com.lihaoyi.fansi_2.13-0.3.1`. 'geny_2.13', licensed under the MIT, is distributed with the engine. @@ -103,22 +103,22 @@ Copyright notices related to this dependency can be found in the directory `com. 'pprint_2.13', licensed under the MIT, is distributed with the engine. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `com.lihaoyi.pprint_2.13-0.7.1`. +Copyright notices related to this dependency can be found in the directory `com.lihaoyi.pprint_2.13-0.7.3`. 'scalatags_2.13', licensed under the MIT, is distributed with the engine. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `com.lihaoyi.scalatags_2.13-0.11.0`. +Copyright notices related to this dependency can be found in the directory `com.lihaoyi.scalatags_2.13-0.11.1`. 'sourcecode_2.13', licensed under the MIT, is distributed with the engine. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `com.lihaoyi.sourcecode_2.13-0.2.7`. +Copyright notices related to this dependency can be found in the directory `com.lihaoyi.sourcecode_2.13-0.2.8`. 'decline_2.13', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.monovore.decline_2.13-2.2.0`. +Copyright notices related to this dependency can be found in the directory `com.monovore.decline_2.13-2.3.0`. 'paranamer', licensed under the BSD, is distributed with the engine. @@ -128,57 +128,52 @@ Copyright notices related to this dependency can be found in the directory `com. 'akka-actor-typed_2.13', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-actor-typed_2.13-2.6.18`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-actor-typed_2.13-2.6.19`. 'akka-actor_2.13', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-actor_2.13-2.6.18`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-actor_2.13-2.6.19`. 'akka-http-core_2.13', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-http-core_2.13-10.2.7`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-http-core_2.13-10.2.9`. 'akka-http-spray-json_2.13', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-http-spray-json_2.13-10.2.7`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-http-spray-json_2.13-10.2.9`. 'akka-http_2.13', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-http_2.13-10.2.7`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-http_2.13-10.2.9`. 'akka-parsing_2.13', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-parsing_2.13-10.2.7`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-parsing_2.13-10.2.9`. 'akka-protobuf-v3_2.13', licensed under the Apache-2.0, is distributed with the engine. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19`. 'akka-slf4j_2.13', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-slf4j_2.13-2.6.18`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-slf4j_2.13-2.6.19`. 'akka-stream_2.13', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-stream_2.13-2.6.18`. - - -'config', licensed under the Apache-2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.config-1.4.0`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-stream_2.13-2.6.19`. 'config', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.config-1.4.1`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.config-1.4.2`. 'scala-logging_2.13', licensed under the Apache 2.0 License, is distributed with the engine. @@ -193,7 +188,7 @@ Copyright notices related to this dependency can be found in the directory `com. 'ssl-config-core_2.13', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.ssl-config-core_2.13-0.4.2`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.ssl-config-core_2.13-0.4.3`. 'commons-cli', licensed under the Apache License, Version 2.0, is distributed with the engine. @@ -226,44 +221,39 @@ The license file can be found at `licenses/APACHE2.0`. Copyright notices related to this dependency can be found in the directory `dev.zio.zio_2.13-1.0.12`. -'refined_2.13', licensed under the MIT, is distributed with the engine. -The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `eu.timepit.refined_2.13-0.9.27`. - - 'circe-core_2.13', licensed under the Apache 2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.circe.circe-core_2.13-0.14.1`. +Copyright notices related to this dependency can be found in the directory `io.circe.circe-core_2.13-0.14.2`. 'circe-generic-extras_2.13', licensed under the Apache 2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.circe.circe-generic-extras_2.13-0.14.1`. +Copyright notices related to this dependency can be found in the directory `io.circe.circe-generic-extras_2.13-0.14.2`. 'circe-generic_2.13', licensed under the Apache 2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.circe.circe-generic_2.13-0.14.1`. +Copyright notices related to this dependency can be found in the directory `io.circe.circe-generic_2.13-0.14.2`. 'circe-jawn_2.13', licensed under the Apache 2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.circe.circe-jawn_2.13-0.14.1`. +Copyright notices related to this dependency can be found in the directory `io.circe.circe-jawn_2.13-0.14.2`. 'circe-literal_2.13', licensed under the Apache 2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.circe.circe-literal_2.13-0.14.1`. +Copyright notices related to this dependency can be found in the directory `io.circe.circe-literal_2.13-0.14.2`. 'circe-numbers_2.13', licensed under the Apache 2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.circe.circe-numbers_2.13-0.14.1`. +Copyright notices related to this dependency can be found in the directory `io.circe.circe-numbers_2.13-0.14.2`. 'circe-parser_2.13', licensed under the Apache 2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.circe.circe-parser_2.13-0.14.1`. +Copyright notices related to this dependency can be found in the directory `io.circe.circe-parser_2.13-0.14.2`. 'circe-yaml_2.13', licensed under the Apache 2.0, is distributed with the engine. @@ -278,7 +268,7 @@ Copyright notices related to this dependency can be found in the directory `io.e 'directory-watcher', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.methvin.directory-watcher-0.9.10`. +Copyright notices related to this dependency can be found in the directory `io.methvin.directory-watcher-0.16.1`. 'spray-json_2.13', licensed under the Apache 2, is distributed with the engine. @@ -286,9 +276,14 @@ The license file can be found at `licenses/APACHE2.0`. Copyright notices related to this dependency can be found in the directory `io.spray.spray-json_2.13-1.3.6`. -'jna', licensed under the Apache License v2.0, is distributed with the engine. +'jna', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `net.java.dev.jna.jna-5.8.0`. +Copyright notices related to this dependency can be found in the directory `net.java.dev.jna.jna-5.12.1`. + + +'jna', licensed under the Apache-2.0, is distributed with the engine. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `net.java.dev.jna.jna-5.9.0`. 'bump_2.13', licensed under the MIT, is distributed with the engine. @@ -307,8 +302,8 @@ Copyright notices related to this dependency can be found in the directory `org. 'tika-core', licensed under the Apache License, Version 2.0, is distributed with the engine. -The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.apache.tika.tika-core-2.2.1`. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `org.apache.tika.tika-core-2.4.1`. 'bcpkix-jdk15on', licensed under the Bouncy Castle Licence, is distributed with the engine. @@ -331,44 +326,19 @@ The license information can be found along with the copyright notices. Copyright notices related to this dependency can be found in the directory `org.checkerframework.checker-qual-3.12.0`. -'jline', licensed under the The BSD License, is distributed with the engine. -The license file can be found at `licenses/BSD-3-Clause`. -Copyright notices related to this dependency can be found in the directory `org.jline.jline-3.20.0`. - - 'jline', licensed under the The BSD License, is distributed with the engine. The license file can be found at `licenses/BSD-3-Clause`. Copyright notices related to this dependency can be found in the directory `org.jline.jline-3.21.0`. -'org-netbeans-api-progress', licensed under the The Apache Software License, Version 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.netbeans.api.org-netbeans-api-progress-RELEASE130`. - - -'org-netbeans-api-progress-nb', licensed under the The Apache Software License, Version 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.netbeans.api.org-netbeans-api-progress-nb-RELEASE130`. - - 'org-netbeans-modules-sampler', licensed under the The Apache Software License, Version 2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.netbeans.api.org-netbeans-modules-sampler-RELEASE130`. - - -'org-openide-dialogs', licensed under the The Apache Software License, Version 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.netbeans.api.org-openide-dialogs-RELEASE130`. - - -'org-openide-util', licensed under the The Apache Software License, Version 2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.netbeans.api.org-openide-util-RELEASE130`. +Copyright notices related to this dependency can be found in the directory `org.netbeans.api.org-netbeans-modules-sampler-RELEASE140`. 'org-openide-util-lookup', licensed under the The Apache Software License, Version 2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.netbeans.api.org-openide-util-lookup-RELEASE130`. +Copyright notices related to this dependency can be found in the directory `org.netbeans.api.org-openide-util-lookup-RELEASE140`. 'reactive-streams', licensed under the CC0, is distributed with the engine. @@ -391,29 +361,24 @@ The license file can be found at `licenses/APACHE2.0`. Copyright notices related to this dependency can be found in the directory `org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2`. -'scala-xml_2.13', licensed under the Apache-2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.scala-lang.modules.scala-xml_2.13-1.3.0`. - - 'scala-compiler', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.scala-lang.scala-compiler-2.13.7`. +Copyright notices related to this dependency can be found in the directory `org.scala-lang.scala-compiler-2.13.8`. 'scala-library', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.scala-lang.scala-library-2.13.7`. +Copyright notices related to this dependency can be found in the directory `org.scala-lang.scala-library-2.13.8`. 'scala-reflect', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.scala-lang.scala-reflect-2.13.7`. +Copyright notices related to this dependency can be found in the directory `org.scala-lang.scala-reflect-2.13.8`. 'slf4j-api', licensed under the MIT License, is distributed with the engine. The license file can be found at `licenses/MIT`. -Copyright notices related to this dependency can be found in the directory `org.slf4j.slf4j-api-1.7.32`. +Copyright notices related to this dependency can be found in the directory `org.slf4j.slf4j-api-1.7.36`. 'alleycats-core_2.13', licensed under the MIT, is distributed with the engine. @@ -422,8 +387,8 @@ Copyright notices related to this dependency can be found in the directory `org. 'cats-core_2.13', licensed under the MIT, is distributed with the engine. -The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.typelevel.cats-core_2.13-2.7.0`. +The license file can be found at `licenses/MIT`. +Copyright notices related to this dependency can be found in the directory `org.typelevel.cats-core_2.13-2.8.0`. 'cats-free_2.13', licensed under the MIT, is distributed with the engine. @@ -432,8 +397,8 @@ Copyright notices related to this dependency can be found in the directory `org. 'cats-kernel_2.13', licensed under the MIT, is distributed with the engine. -The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.typelevel.cats-kernel_2.13-2.7.0`. +The license file can be found at `licenses/MIT`. +Copyright notices related to this dependency can be found in the directory `org.typelevel.cats-kernel_2.13-2.8.0`. 'cats-macros_2.13', licensed under the MIT, is distributed with the engine. @@ -443,7 +408,7 @@ Copyright notices related to this dependency can be found in the directory `org. 'jawn-parser_2.13', licensed under the MIT, is distributed with the engine. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.typelevel.jawn-parser_2.13-1.1.2`. +Copyright notices related to this dependency can be found in the directory `org.typelevel.jawn-parser_2.13-1.3.2`. 'kittens_2.13', licensed under the Apache 2, is distributed with the engine. diff --git a/distribution/engine/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.9/NOTICES b/distribution/engine/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.9/NOTICES new file mode 100644 index 000000000000..a947e8b0baa5 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.9/NOTICES @@ -0,0 +1,3 @@ +Copyright (c) 2011-13 Miles Sabin + +Copyright (c) 2011-16 Dale Wijnand diff --git a/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.13.1/LICENSE b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.13.3/LICENSE similarity index 100% rename from distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.13.1/LICENSE rename to distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.13.3/LICENSE diff --git a/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.1/CREDITS-2.x.txt b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.3/CREDITS-2.x.txt similarity index 100% rename from distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.1/CREDITS-2.x.txt rename to distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.3/CREDITS-2.x.txt diff --git a/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.1/NOTICE b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.3/NOTICE similarity index 100% rename from distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.1/NOTICE rename to distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.3/NOTICE diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.12.3/NOTICES b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.3/NOTICES similarity index 100% rename from distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.12.3/NOTICES rename to distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.3/NOTICES diff --git a/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.13.1/CREDITS-2.x.txt b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.13.3/CREDITS-2.x.txt similarity index 100% rename from distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.13.1/CREDITS-2.x.txt rename to distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.13.3/CREDITS-2.x.txt diff --git a/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.13.1/NOTICE b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.13.3/NOTICE similarity index 100% rename from distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.13.1/NOTICE rename to distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.13.3/NOTICE diff --git a/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.1/CREDITS-2.x.txt b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.3/CREDITS-2.x.txt similarity index 100% rename from distribution/engine/THIRD-PARTY/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.1/CREDITS-2.x.txt rename to distribution/engine/THIRD-PARTY/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.3/CREDITS-2.x.txt diff --git a/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/LICENSE b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/LICENSE similarity index 100% rename from distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/LICENSE rename to distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/LICENSE diff --git a/tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/copyright-ignore b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/NOTICES similarity index 56% rename from tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/copyright-ignore rename to distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/NOTICES index b5c5695996a8..2aba3b414bd7 100644 --- a/tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/copyright-ignore +++ b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/NOTICES @@ -1,2 +1 @@ -The scalabeans code is covered by the copyright statement that follows. Copyright (c) 2011 ScalaStuff.org (joint venture of Alexander Dvorkovyy and Ruud Diterwich) diff --git a/distribution/engine/THIRD-PARTY/com.google.errorprone.error_prone_annotations-2.11.0/NOTICES b/distribution/engine/THIRD-PARTY/com.google.errorprone.error_prone_annotations-2.11.0/NOTICES new file mode 100644 index 000000000000..67a1e07330ef --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.google.errorprone.error_prone_annotations-2.11.0/NOTICES @@ -0,0 +1 @@ +Copyright 2014 The Error Prone Authors. diff --git a/distribution/engine/THIRD-PARTY/com.google.errorprone.error_prone_annotations-2.7.1/NOTICES b/distribution/engine/THIRD-PARTY/com.google.errorprone.error_prone_annotations-2.7.1/NOTICES deleted file mode 100644 index a1ac483bdaa7..000000000000 --- a/distribution/engine/THIRD-PARTY/com.google.errorprone.error_prone_annotations-2.7.1/NOTICES +++ /dev/null @@ -1,79 +0,0 @@ -/* - * Copyright 2014 The Error Prone Authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * Copyright 2015 The Error Prone Authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * Copyright 2016 The Error Prone Authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * Copyright 2017 The Error Prone Authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * Copyright 2021 The Error Prone Authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ diff --git a/distribution/engine/THIRD-PARTY/com.google.guava.guava-31.0.1-jre/NOTICES b/distribution/engine/THIRD-PARTY/com.google.guava.guava-31.0.1-jre/NOTICES deleted file mode 100644 index 2038227070ab..000000000000 --- a/distribution/engine/THIRD-PARTY/com.google.guava.guava-31.0.1-jre/NOTICES +++ /dev/null @@ -1,61 +0,0 @@ - /* - * This method was rewritten in Java from an intermediate step of the Murmur hash function in - * http://code.google.com/p/smhasher/source/browse/trunk/MurmurHash3.cpp, which contained the - * following header: - * - * MurmurHash3 was written by Austin Appleby, and is placed in the public domain. The author - * hereby disclaims copyright to this source code. - */ - -/* - * Copyright (C) 2005 The Guava Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software distributed under the License - * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express - * or implied. See the License for the specific language governing permissions and limitations under - * the License. - */ - -/* - * MurmurHash3 was written by Austin Appleby, and is placed in the public - * domain. The author hereby disclaims copyright to this source code. - */ - -Copyright (C) 2006 The Guava Authors - -Copyright (C) 2007 The Guava Authors - -Copyright (C) 2008 The Guava Authors - -Copyright (C) 2009 The Guava Authors - -Copyright (C) 2010 The Guava Authors - -Copyright (C) 2011 The Guava Authors - -Copyright (C) 2011 The Guava Authors. - -Copyright (C) 2012 The Guava Authors - -Copyright (C) 2013 The Guava Authors - -Copyright (C) 2014 The Guava Authors - -Copyright (C) 2015 The Guava Authors - -Copyright (C) 2016 The Guava Authors - -Copyright (C) 2017 The Guava Authors - -Copyright (C) 2018 The Guava Authors - -Copyright (C) 2019 The Guava Authors - -Copyright (C) 2020 The Guava Authors - -Copyright (C) 2021 The Guava Authors diff --git a/distribution/engine/THIRD-PARTY/com.google.guava.guava-31.1-jre/NOTICES b/distribution/engine/THIRD-PARTY/com.google.guava.guava-31.1-jre/NOTICES new file mode 100644 index 000000000000..cb125376d5b7 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.google.guava.guava-31.1-jre/NOTICES @@ -0,0 +1 @@ +Copyright (C) 2005 The Guava Authors diff --git a/distribution/engine/THIRD-PARTY/com.lihaoyi.fansi_2.13-0.3.0/LICENSE b/distribution/engine/THIRD-PARTY/com.lihaoyi.fansi_2.13-0.3.1/LICENSE similarity index 100% rename from distribution/engine/THIRD-PARTY/com.lihaoyi.fansi_2.13-0.3.0/LICENSE rename to distribution/engine/THIRD-PARTY/com.lihaoyi.fansi_2.13-0.3.1/LICENSE diff --git a/distribution/engine/THIRD-PARTY/com.lihaoyi.pprint_2.13-0.7.1/LICENSE b/distribution/engine/THIRD-PARTY/com.lihaoyi.pprint_2.13-0.7.3/LICENSE similarity index 100% rename from distribution/engine/THIRD-PARTY/com.lihaoyi.pprint_2.13-0.7.1/LICENSE rename to distribution/engine/THIRD-PARTY/com.lihaoyi.pprint_2.13-0.7.3/LICENSE diff --git a/distribution/engine/THIRD-PARTY/com.lihaoyi.scalatags_2.13-0.11.0/LICENSE.txt b/distribution/engine/THIRD-PARTY/com.lihaoyi.scalatags_2.13-0.11.1/LICENSE.txt similarity index 100% rename from distribution/engine/THIRD-PARTY/com.lihaoyi.scalatags_2.13-0.11.0/LICENSE.txt rename to distribution/engine/THIRD-PARTY/com.lihaoyi.scalatags_2.13-0.11.1/LICENSE.txt diff --git a/distribution/engine/THIRD-PARTY/com.lihaoyi.scalatags_2.13-0.11.1/NOTICES b/distribution/engine/THIRD-PARTY/com.lihaoyi.scalatags_2.13-0.11.1/NOTICES new file mode 100644 index 000000000000..d881ec537678 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.lihaoyi.scalatags_2.13-0.11.1/NOTICES @@ -0,0 +1 @@ +Defines the footer for a page or section. It often contains a copyright diff --git a/distribution/engine/THIRD-PARTY/com.lihaoyi.sourcecode_2.13-0.2.7/LICENSE b/distribution/engine/THIRD-PARTY/com.lihaoyi.sourcecode_2.13-0.2.8/LICENSE similarity index 100% rename from distribution/engine/THIRD-PARTY/com.lihaoyi.sourcecode_2.13-0.2.7/LICENSE rename to distribution/engine/THIRD-PARTY/com.lihaoyi.sourcecode_2.13-0.2.8/LICENSE diff --git a/distribution/engine/THIRD-PARTY/com.monovore.decline_2.13-2.2.0/NOTICES b/distribution/engine/THIRD-PARTY/com.monovore.decline_2.13-2.3.0/NOTICES similarity index 100% rename from distribution/engine/THIRD-PARTY/com.monovore.decline_2.13-2.2.0/NOTICES rename to distribution/engine/THIRD-PARTY/com.monovore.decline_2.13-2.3.0/NOTICES diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/NOTICES deleted file mode 100644 index 27a9b642aa3c..000000000000 --- a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/NOTICES +++ /dev/null @@ -1,15 +0,0 @@ -/* - * Copyright (C) 2009-2021 Lightbend Inc. - */ - -Copyright (C) 2014-2021 Lightbend Inc. - -Copyright (C) 2016-2021 Lightbend Inc. - -Copyright (C) 2017-2021 Lightbend Inc. - -Copyright (C) 2018-2021 Lightbend Inc. - -Copyright (C) 2019-2021 Lightbend Inc. - -Copyright (C) 2020-2021 Lightbend Inc. diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/NOTICES new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/NOTICES @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.18/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.18/NOTICES deleted file mode 100644 index 34eb828a9670..000000000000 --- a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.18/NOTICES +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Copyright (C) 2009-2021 Lightbend Inc. - */ - -Copyright (C) 2014-2021 Lightbend Inc. - -Copyright (C) 2015-2021 Lightbend Inc. - -Copyright (C) 2016-2021 Lightbend Inc. - -Copyright (C) 2017-2021 Lightbend Inc. - -Copyright (C) 2018-2021 Lightbend Inc. - -Copyright (C) 2019-2021 Lightbend Inc. - -Copyright (C) 2020-2021 Lightbend Inc. - -Copyright (C) 2021 Lightbend Inc. diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.19/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.19/NOTICES new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.19/NOTICES @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.7/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.7/NOTICES deleted file mode 100644 index 966adefe3eb8..000000000000 --- a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.7/NOTICES +++ /dev/null @@ -1,114 +0,0 @@ -/* - * Adapted from github.com/twitter/hpack with this license: - * - * Copyright 2014 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * Copyright (C) 2009-2017 Mathias Doenitz, Alexander Myltsev - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * Copyright (C) 2017-2020 Lightbend Inc. - * - * Copied and adapted from akka-remote - * https://github.com/akka/akka/blob/c90121485fcfc44a3cee62a0c638e1982d13d812/akka-remote/src/main/scala/akka/remote/artery/StageLogging.scala - */ - - -/* - * Copyright 2015 Heiko Seeberger - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* sbt -- Simple Build Tool - * Copyright 2011 Mark Harrah, Eugene Yokota - * - * Copied from sbt 0.12 source code - */ - -/** - * A Utf8 -> Utf16 (= Java char) decoder. - * - * This decoder is based on the one of Bjoern Hoehrmann from - * - * http://bjoern.hoehrmann.de/utf-8/decoder/dfa/ - * - * which is licensed under this license: - * - * Copyright (C) 2008-2017 Bjoern Hoehrmann - * - * Permission is hereby granted, free of charge, to any person obtaining a - * copy of this software and associated documentation files (the "Software"), - * to deal in the Software without restriction, including without limitation - * the rights to use, copy, modify, merge, publish, distribute, sublicense, - * and/or sell copies of the Software, and to permit persons to whom the - * Software is furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included - * in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * INTERNAL API - */ - -/** - * Copyright 2009-2020 Lightbend Inc. - */ - -Copyright (C) 2009-2021 Lightbend Inc. - -Copyright (C) 2015-2021 Lightbend Inc. - -Copyright (C) 2016-2021 Lightbend Inc. - -Copyright (C) 2017-2021 Lightbend Inc. - -Copyright (C) 2018-2021 Lightbend Inc. - -Copyright (C) 2019-2021 Lightbend Inc. - -Copyright (C) 2020-2021 Lightbend Inc. - -Copyright (C) 2021 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-keep-context b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.9/NOTICES similarity index 63% rename from tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-keep-context rename to distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.9/NOTICES index d52689a87c58..db53d2f5443b 100644 --- a/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-keep-context +++ b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.9/NOTICES @@ -1,6 +1,9 @@ Copyright (C) 2008-2017 Bjoern Hoehrmann + Copyright (C) 2009-2017 Mathias Doenitz, Alexander Myltsev -Copyright 2009-2020 Lightbend Inc. -Copyright 2015 Heiko Seeberger -Copyright 2011 Mark Harrah, Eugene Yokota + +Copyright (C) 2009-2021 Lightbend Inc. + Copyright 2014 Twitter, Inc. + +Copyright 2015 Heiko Seeberger diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-spray-json_2.13-10.2.7/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-spray-json_2.13-10.2.7/NOTICES deleted file mode 100644 index e548667958f7..000000000000 --- a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-spray-json_2.13-10.2.7/NOTICES +++ /dev/null @@ -1,7 +0,0 @@ -/* - * Copyright (C) 2009-2021 Lightbend Inc. - */ - -/* - * Copyright (C) 2017-2021 Lightbend Inc. - */ diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/copyright-keep-context b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-spray-json_2.13-10.2.9/NOTICES similarity index 100% rename from tools/legal-review/engine/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/copyright-keep-context rename to distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-spray-json_2.13-10.2.9/NOTICES diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.7/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.7/NOTICES deleted file mode 100644 index 7a6d6a75e35d..000000000000 --- a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.7/NOTICES +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (C) 2009-2020 Lightbend Inc. - */ - -/* - * Copyright (C) 2009-2020 Lightbend Inc. - */ - -/* - * Copyright (C) 2009-2021 Lightbend Inc. - */ - -/* - * Copyright (C) 2015-2021 Lightbend Inc. - */ - -/* - * Copyright (C) 2017-2021 Lightbend Inc. - */ - -/* - * Copyright (C) 2018-2021 Lightbend Inc. - */ - -/* - * Copyright (C) 2020-2021 Lightbend Inc. - */ diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.9/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.9/NOTICES new file mode 100644 index 000000000000..e25cd2d998b4 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.9/NOTICES @@ -0,0 +1 @@ +Copyright (C) 2009-2020 Lightbend Inc. diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.7/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.7/NOTICES deleted file mode 100644 index 9606db7b7d5a..000000000000 --- a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.7/NOTICES +++ /dev/null @@ -1,98 +0,0 @@ ----------------- - -akka/parboiled2/util/Base64.java is licensed under the following terms: - * - * Licence (BSD): - * ============== - * - * Copyright (c) 2004, Mikael Grev, MiG InfoCom AB. (base64 @ miginfocom . com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, - * are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright notice, this list - * of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright notice, this - * list of conditions and the following disclaimer in the documentation and/or other - * materials provided with the distribution. - * Neither the name of the MiG InfoCom AB nor the names of its contributors may be - * used to endorse or promote products derived from this software without specific - * prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, - * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY - * OF SUCH DAMAGE. - * - * @version 2.2 - * @author Mikael Grev - * Date: 2004-aug-02 - * Time: 11:31:11 - * - * Adapted in 2009 by Mathias Doenitz. - */ - ----------------- - - -/* - * Copyright (C) 2009-2017 Mathias Doenitz, Alexander Myltsev - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * Copyright (C) 2009-2021 Lightbend Inc. - */ - -/* - * Copyright (C) 2019-2021 Lightbend Inc. - */ - -/* - * Copyright (c) 2011-13 Miles Sabin - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * Copyright (c) 2013-14 Miles Sabin - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-keep-context b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.9/NOTICES similarity index 51% rename from tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-keep-context rename to distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.9/NOTICES index 0d08b861825f..995593313650 100644 --- a/tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-keep-context +++ b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.9/NOTICES @@ -1,5 +1,3 @@ -Copyright (c) 2013-14 Miles Sabin -Copyright (C) 2009-2017 Mathias Doenitz, Alexander Myltsev -Copyright (c) 2011-13 Miles Sabin Copyright (C) 2009-2021 Lightbend Inc. + Copyright (C) 2019-2021 Lightbend Inc. diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/COPYING.protobuf b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/COPYING.protobuf similarity index 100% rename from distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/COPYING.protobuf rename to distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/COPYING.protobuf diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/LICENSE b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/LICENSE similarity index 100% rename from distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/LICENSE rename to distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/LICENSE diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.18/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.18/NOTICES deleted file mode 100644 index 6efe69a3b900..000000000000 --- a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.18/NOTICES +++ /dev/null @@ -1,3 +0,0 @@ -/* - * Copyright (C) 2009-2021 Lightbend Inc. - */ diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.19/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.19/NOTICES new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.19/NOTICES @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.18/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.18/NOTICES deleted file mode 100644 index c4764f200623..000000000000 --- a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.18/NOTICES +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (C) 2009-2021 Lightbend Inc. - */ - -/* - * Copyright (C) 2014-2021 Lightbend Inc. - */ - -/* - * Copyright (C) 2015-2021 Lightbend Inc. - */ - -/* - * Copyright (C) 2016-2021 Lightbend Inc. - */ - -/* - * Copyright (C) 2017-2021 Lightbend Inc. - */ - -/* - * Copyright (C) 2018-2021 Lightbend Inc. - */ - -/* - * Copyright (C) 2019-2021 Lightbend Inc. - */ - -/* - * Copyright (C) 2020-2021 Lightbend Inc. - */ - -/* - * Copyright (C) 2021 Lightbend Inc. - */ diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.19/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.19/NOTICES new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.19/NOTICES @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.config-1.4.2/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.config-1.4.2/NOTICES new file mode 100644 index 000000000000..b0c78be03113 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.config-1.4.2/NOTICES @@ -0,0 +1 @@ +Copyright (C) 2011-2012 Typesafe Inc. diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.ssl-config-core_2.13-0.4.2/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.ssl-config-core_2.13-0.4.3/NOTICES similarity index 100% rename from distribution/engine/THIRD-PARTY/com.typesafe.ssl-config-core_2.13-0.4.2/NOTICES rename to distribution/engine/THIRD-PARTY/com.typesafe.ssl-config-core_2.13-0.4.3/NOTICES diff --git a/distribution/engine/THIRD-PARTY/eu.timepit.refined_2.13-0.9.27/LICENSE b/distribution/engine/THIRD-PARTY/eu.timepit.refined_2.13-0.9.27/LICENSE deleted file mode 100644 index b660072236d7..000000000000 --- a/distribution/engine/THIRD-PARTY/eu.timepit.refined_2.13-0.9.27/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2015-2018 Frank S. Thomas - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/NOTICE b/distribution/engine/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2/NOTICE similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/NOTICE rename to distribution/engine/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2/NOTICE diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-generic-extras_2.13-0.14.1/NOTICES b/distribution/engine/THIRD-PARTY/io.circe.circe-generic-extras_2.13-0.14.2/NOTICES similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-generic-extras_2.13-0.14.1/NOTICES rename to distribution/engine/THIRD-PARTY/io.circe.circe-generic-extras_2.13-0.14.2/NOTICES diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/NOTICE b/distribution/engine/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2/NOTICE similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/NOTICE rename to distribution/engine/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2/NOTICE diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/NOTICE b/distribution/engine/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2/NOTICE similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/NOTICE rename to distribution/engine/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2/NOTICE diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.1/NOTICE b/distribution/engine/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.2/NOTICE similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.1/NOTICE rename to distribution/engine/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.2/NOTICE diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/NOTICE b/distribution/engine/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2/NOTICE similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/NOTICE rename to distribution/engine/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2/NOTICE diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/NOTICE b/distribution/engine/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2/NOTICE similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/NOTICE rename to distribution/engine/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2/NOTICE diff --git a/tools/legal-review/engine/io.methvin.directory-watcher-0.9.10/copyright-keep-context b/distribution/engine/THIRD-PARTY/io.methvin.directory-watcher-0.16.1/NOTICES similarity index 100% rename from tools/legal-review/engine/io.methvin.directory-watcher-0.9.10/copyright-keep-context rename to distribution/engine/THIRD-PARTY/io.methvin.directory-watcher-0.16.1/NOTICES diff --git a/distribution/engine/THIRD-PARTY/io.methvin.directory-watcher-0.9.10/NOTICES b/distribution/engine/THIRD-PARTY/io.methvin.directory-watcher-0.9.10/NOTICES deleted file mode 100644 index a68d29f673f8..000000000000 --- a/distribution/engine/THIRD-PARTY/io.methvin.directory-watcher-0.9.10/NOTICES +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Code adapted from Greenrobot Essentials Murmur3F.java (https://git.io/fAG0Z) - * - * Copyright (C) 2014-2016 Markus Junginger, greenrobot (http://greenrobot.org) - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ diff --git a/distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.12.1/NOTICES b/distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.12.1/NOTICES new file mode 100644 index 000000000000..eec61515f521 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.12.1/NOTICES @@ -0,0 +1,3 @@ +Copyright (c) 2007 Timothy Wall, All Rights Reserved + +Copyright (c) 2007 Wayne Meissner, All Rights Reserved diff --git a/distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.8.0/NOTICES b/distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.8.0/NOTICES deleted file mode 100644 index ecf2813c19d8..000000000000 --- a/distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.8.0/NOTICES +++ /dev/null @@ -1,78 +0,0 @@ -------------- - -/* - * Copyright (c) 2007 Wayne Meissner, All Rights Reserved - * - * The contents of this file is dual-licensed under 2 - * alternative Open Source/Free licenses: LGPL 2.1 or later and - * Apache License 2.0. (starting with JNA version 4.0.0). - * - * You can freely decide which license you want to apply to - * the project. - * - * You may obtain a copy of the LGPL License at: - * - * http://www.gnu.org/licenses/licenses.html - * - * A copy is also included in the downloadable source code package - * containing JNA, in file "LGPL2.1". - * - * You may obtain a copy of the Apache License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing JNA, in file "AL2.0". - */ - -/* Copyright (c) 2007 Wayne Meissner, All Rights Reserved - * Copyright (c) 2007-2013 Timothy Wall, All Rights Reserved - * - * The contents of this file is dual-licensed under 2 - * alternative Open Source/Free licenses: LGPL 2.1 or later and - * Apache License 2.0. (starting with JNA version 4.0.0). - * - * You can freely decide which license you want to apply to - * the project. - * - * You may obtain a copy of the LGPL License at: - * - * http://www.gnu.org/licenses/licenses.html - * - * A copy is also included in the downloadable source code package - * containing JNA, in file "LGPL2.1". - * - * You may obtain a copy of the Apache License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing JNA, in file "AL2.0". - */ - -(We are choosing the Apache license for this component.) - -------------- - - -/* Copyright (c) 2007-2008 Timothy Wall, All Rights Reserved - -/* Copyright (c) 2007-2012 Timothy Wall, All Rights Reserved - -/* Copyright (c) 2007-2015 Timothy Wall, All Rights Reserved - -/* Copyright (c) 2009 Timothy Wall, All Rights Reserved - -/* Copyright (c) 2011 Timothy Wall, All Rights Reserved - -/* Copyright (c) 2012 Timothy Wall, All Rights Reserved - -/* Copyright (c) 2017 Matthias Bläsing, All Rights Reserved - -/* Copyright (c) 2018 Matthias Bläsing - -/* Copyright (c) 2019 Matthias Bläsing, All Rights Reserved - -Copyright (c) 2007 Timothy Wall, All Rights Reserved - -Copyright 2007 Timothy Wall diff --git a/distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.9.0/NOTICES b/distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.9.0/NOTICES new file mode 100644 index 000000000000..eec61515f521 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.9.0/NOTICES @@ -0,0 +1,3 @@ +Copyright (c) 2007 Timothy Wall, All Rights Reserved + +Copyright (c) 2007 Wayne Meissner, All Rights Reserved diff --git a/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-2.2.1/LICENSE b/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-2.2.1/LICENSE deleted file mode 100644 index 21bf8dc0d0d1..000000000000 --- a/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-2.2.1/LICENSE +++ /dev/null @@ -1,260 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -APACHE TIKA SUBCOMPONENTS - -Apache Tika includes a number of subcomponents with separate copyright notices -and license terms. Your use of these subcomponents is subject to the terms and -conditions of the following licenses. - -MIME type information from file-4.26.tar.gz (http://www.darwinsys.com/file/) - - Copyright (c) Ian F. Darwin 1986, 1987, 1989, 1990, 1991, 1992, 1994, 1995. - Software written by Ian F. Darwin and others; - maintained 1994- Christos Zoulas. - - This software is not subject to any export provision of the United States - Department of Commerce, and may be exported to any country or planet. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - 1. Redistributions of source code must retain the above copyright - notice immediately at the beginning of the file, without modification, - this list of conditions, and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - - -IPTC Photo Metadata descriptions are taken from the IPTC Photo Metadata -Standard, July 2010, Copyright 2010 International Press Telecommunications -Council. - - 1. The Specifications and Materials are licensed for use only on the condition that you agree to be bound by the terms of this license. Subject to this and other licensing requirements contained herein, you may, on a non-exclusive basis, use the Specifications and Materials. - 2. The IPTC openly provides the Specifications and Materials for voluntary use by individuals, partnerships, companies, corporations, organizations and any other entity for use at the entity's own risk. This disclaimer, license and release is intended to apply to the IPTC, its officers, directors, agents, representatives, members, contributors, affiliates, contractors, or co-venturers acting jointly or severally. - 3. The Document and translations thereof may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the copyright and license notices and references to the IPTC appearing in the Document and the terms of this Specifications License Agreement are included on all such copies and derivative works. Further, upon the receipt of written permission from the IPTC, the Document may be modified for the purpose of developing applications that use IPTC Specifications or as required to translate the Document into languages other than English. - 4. Any use, duplication, distribution, or exploitation of the Document and Specifications and Materials in any manner is at your own risk. - 5. NO WARRANTY, EXPRESSED OR IMPLIED, IS MADE REGARDING THE ACCURACY, ADEQUACY, COMPLETENESS, LEGALITY, RELIABILITY OR USEFULNESS OF ANY INFORMATION CONTAINED IN THE DOCUMENT OR IN ANY SPECIFICATION OR OTHER PRODUCT OR SERVICE PRODUCED OR SPONSORED BY THE IPTC. THE DOCUMENT AND THE INFORMATION CONTAINED HEREIN AND INCLUDED IN ANY SPECIFICATION OR OTHER PRODUCT OR SERVICE OF THE IPTC IS PROVIDED ON AN "AS IS" BASIS. THE IPTC DISCLAIMS ALL WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, ANY ACTUAL OR ASSERTED WARRANTY OF NON-INFRINGEMENT OF PROPRIETARY RIGHTS, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. NEITHER THE IPTC NOR ITS CONTRIBUTORS SHALL BE HELD LIABLE FOR ANY IMPROPER OR INCORRECT USE OF INFORMATION. NEITHER THE IPTC NOR ITS CONTRIBUTORS ASSUME ANY RESPONSIBILITY FOR ANYONE'S USE OF INFORMATION PROVIDED BY THE IPTC. IN NO EVENT SHALL THE IPTC OR ITS CONTRIBUTORS BE LIABLE TO ANYONE FOR DAMAGES OF ANY KIND, INCLUDING BUT NOT LIMITED TO, COMPENSATORY DAMAGES, LOST PROFITS, LOST DATA OR ANY FORM OF SPECIAL, INCIDENTAL, INDIRECT, CONSEQUENTIAL OR PUNITIVE DAMAGES OF ANY KIND WHETHER BASED ON BREACH OF CONTRACT OR WARRANTY, TORT, PRODUCT LIABILITY OR OTHERWISE. - 6. The IPTC takes no position regarding the validity or scope of any Intellectual Property or other rights that might be claimed to pertain to the implementation or use of the technology described in the Document or the extent to which any license under such rights might or might not be available. The IPTC does not represent that it has made any effort to identify any such rights. Copies of claims of rights made available for publication, assurances of licenses to be made available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementers or users of the Specifications and Materials, can be obtained from the Managing Director of the IPTC. - 7. By using the Specifications and Materials including the Document in any manner or for any purpose, you release the IPTC from all liabilities, claims, causes of action, allegations, losses, injuries, damages, or detriments of any nature arising from or relating to the use of the Specifications, Materials or any portion thereof. You further agree not to file a lawsuit, make a claim, or take any other formal or informal legal action against the IPTC, resulting from your acquisition, use, duplication, distribution, or exploitation of the Specifications, Materials or any portion thereof. Finally, you hereby agree that the IPTC is not liable for any direct, indirect, special or consequential damages arising from or relating to your acquisition, use, duplication, distribution, or exploitation of the Specifications, Materials or any portion thereof. - 8. Specifications and Materials may be downloaded or copied provided that ALL copies retain the ownership, copyright and license notices. - 9. Materials may not be edited, modified, or presented in a context that creates a misleading or false impression or statement as to the positions, actions, or statements of the IPTC. - 10. The name and trademarks of the IPTC may not be used in advertising, publicity, or in relation to products or services and their names without the specific, written prior permission of the IPTC. Any permitted use of the trademarks of the IPTC, whether registered or not, shall be accompanied by an appropriate mark and attribution, as agreed with the IPTC. - 11. Specifications may be extended by both members and non-members to provide additional functionality (Extension Specifications) provided that there is a clear recognition of the IPTC IP and its ownership in the Extension Specifications and the related documentation and provided that the extensions are clearly identified and provided that a perpetual license is granted by the creator of the Extension Specifications for other members and non-members to use the Extension Specifications and to continue extensions of the Extension Specifications. The IPTC does not waive any of its rights in the Specifications and Materials in this context. The Extension Specifications may be considered the intellectual property of their creator. The IPTC expressly disclaims any responsibility for damage caused by an extension to the Specifications. - 12. Specifications and Materials may be included in derivative work of both members and non-members provided that there is a clear recognition of the IPTC IP and its ownership in the derivative work and its related documentation. The IPTC does not waive any of its rights in the Specifications and Materials in this context. Derivative work in its entirety may be considered the intellectual property of the creator of the work .The IPTC expressly disclaims any responsibility for damage caused when its IP is used in a derivative context. - 13. This Specifications License Agreement is perpetual subject to your conformance to the terms of this Agreement. The IPTC may terminate this Specifications License Agreement immediately upon your breach of this Agreement and, upon such termination you will cease all use, duplication, distribution, and/or exploitation in any manner of the Specifications and Materials. - 14. This Specifications License Agreement reflects the entire agreement of the parties regarding the subject matter hereof and supersedes all prior agreements or representations regarding such matters, whether written or oral. To the extent any portion or provision of this Specifications License Agreement is found to be illegal or unenforceable, then the remaining provisions of this Specifications License Agreement will remain in full force and effect and the illegal or unenforceable provision will be construed to give it such effect as it may properly have that is consistent with the intentions of the parties. - 15. This Specifications License Agreement may only be modified in writing signed by an authorized representative of the IPTC. - 16. This Specifications License Agreement is governed by the law of United Kingdom, as such law is applied to contracts made and fully performed in the United Kingdom. Any disputes arising from or relating to this Specifications License Agreement will be resolved in the courts of the United Kingdom. You consent to the jurisdiction of such courts over you and covenant not to assert before such courts any objection to proceeding in such forums. diff --git a/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-2.2.1/NOTICES b/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-2.2.1/NOTICES deleted file mode 100644 index 92ecc3c8cfc8..000000000000 --- a/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-2.2.1/NOTICES +++ /dev/null @@ -1,42 +0,0 @@ - /** - * Contains any necessary copyright notice for claiming the intellectual - * property for this item and should identify the current owner of the - * copyright for the item. Other entities like the creator of the item may - * be added in the corresponding field. Notes on usage rights should be - * provided in "Rights usage terms". - *

- * Copyright ownership can be expressed in a more controlled way using the - * PLUS fields "Copyright Owner", "Copyright Owner ID", - * "Copyright Owner Name" of the IPTC Extension. It is the user's - * responsibility to keep the values of the four fields in sync. - *

- * Note: the XMP property (dc:rights) which stores the value of this IPTC - * Core property is of type Lang Alt. Hence any software agent dealing with - * this property must abide to the processing rules for Lang Alt - * value type as specified by the XMP specifications. - *

- * Maps to this IIM property: 2:116 Copyright Notice - * - * @see DublinCore#RIGHTS - */ - -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * IPTC Metadata Descriptions taken from the IPTC Photo Metadata (July 2010) - * standard. These parts Copyright 2010 International Press Telecommunications - * Council. - */ diff --git a/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-2.2.1/NOTICE b/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-2.4.1/NOTICE similarity index 70% rename from distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-2.2.1/NOTICE rename to distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-2.4.1/NOTICE index e6ef1043a1c1..cb2e5cab6f6d 100644 --- a/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-2.2.1/NOTICE +++ b/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-2.4.1/NOTICE @@ -1,6 +1,6 @@ Apache Tika core -Copyright 2007-1969 The Apache Software Foundation +Copyright 2007-2022 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/). diff --git a/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-2.4.1/NOTICES b/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-2.4.1/NOTICES new file mode 100644 index 000000000000..d7dbb26c09f2 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-2.4.1/NOTICES @@ -0,0 +1,3 @@ +(IPR), Copyright, and various Property Rights. If the Rights element + +Copyright 2016 Norconex Inc. diff --git a/distribution/engine/THIRD-PARTY/org.jline.jline-3.20.0/NOTICES b/distribution/engine/THIRD-PARTY/org.jline.jline-3.20.0/NOTICES deleted file mode 100644 index 8ea2c31e5c4d..000000000000 --- a/distribution/engine/THIRD-PARTY/org.jline.jline-3.20.0/NOTICES +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (C) 2009-2018 the original author(s). - -Copyright (c) 2000-2005 Dieter Wimberger - -Copyright (c) 2002-2016, the original author or authors. - -Copyright (c) 2002-2017, the original author or authors. - -Copyright (c) 2002-2018, the original author or authors. - -Copyright (c) 2002-2019, the original author or authors. - -Copyright (c) 2002-2020, the original author or authors. - -Copyright (c) 2002-2021, the original author or authors. - -regarding copyright ownership. The ASF licenses this file - -this work for additional information regarding copyright ownership. diff --git a/distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-api-progress-RELEASE130/NOTICE b/distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-api-progress-RELEASE130/NOTICE deleted file mode 100644 index e0ce5df5ff1e..000000000000 --- a/distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-api-progress-RELEASE130/NOTICE +++ /dev/null @@ -1,14 +0,0 @@ -Apache NetBeans -Copyright 2017-2021 The Apache Software Foundation - -This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). - -The code is based on NetBeans, that has been kindly donated to the Apache -Software Foundation by Oracle. - -The code was Copyright 1997-2016 Oracle and/or its affiliates. The Initial -Developer of the Original Software was Sun Microsystems, Inc. Portions -Copyright 1997-2006 Sun Microsystems, Inc. - - diff --git a/distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-api-progress-RELEASE130/NOTICE.1 b/distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-api-progress-RELEASE130/NOTICE.1 deleted file mode 100644 index e0ce5df5ff1e..000000000000 --- a/distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-api-progress-RELEASE130/NOTICE.1 +++ /dev/null @@ -1,14 +0,0 @@ -Apache NetBeans -Copyright 2017-2021 The Apache Software Foundation - -This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). - -The code is based on NetBeans, that has been kindly donated to the Apache -Software Foundation by Oracle. - -The code was Copyright 1997-2016 Oracle and/or its affiliates. The Initial -Developer of the Original Software was Sun Microsystems, Inc. Portions -Copyright 1997-2006 Sun Microsystems, Inc. - - diff --git a/distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-modules-sampler-RELEASE130/NOTICE b/distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-modules-sampler-RELEASE130/NOTICE deleted file mode 100644 index e0ce5df5ff1e..000000000000 --- a/distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-modules-sampler-RELEASE130/NOTICE +++ /dev/null @@ -1,14 +0,0 @@ -Apache NetBeans -Copyright 2017-2021 The Apache Software Foundation - -This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). - -The code is based on NetBeans, that has been kindly donated to the Apache -Software Foundation by Oracle. - -The code was Copyright 1997-2016 Oracle and/or its affiliates. The Initial -Developer of the Original Software was Sun Microsystems, Inc. Portions -Copyright 1997-2006 Sun Microsystems, Inc. - - diff --git a/distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-api-progress-nb-RELEASE130/NOTICE b/distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-modules-sampler-RELEASE140/NOTICE similarity index 89% rename from distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-api-progress-nb-RELEASE130/NOTICE rename to distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-modules-sampler-RELEASE140/NOTICE index e0ce5df5ff1e..48bff50c34a8 100644 --- a/distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-api-progress-nb-RELEASE130/NOTICE +++ b/distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-modules-sampler-RELEASE140/NOTICE @@ -1,5 +1,5 @@ Apache NetBeans -Copyright 2017-2021 The Apache Software Foundation +Copyright 2017-2022 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/). diff --git a/tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-nb-RELEASE130/copyright-ignore b/distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-modules-sampler-RELEASE140/NOTICES similarity index 100% rename from tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-nb-RELEASE130/copyright-ignore rename to distribution/engine/THIRD-PARTY/org.netbeans.api.org-netbeans-modules-sampler-RELEASE140/NOTICES diff --git a/distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-RELEASE130/NOTICE b/distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-RELEASE130/NOTICE deleted file mode 100644 index e0ce5df5ff1e..000000000000 --- a/distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-RELEASE130/NOTICE +++ /dev/null @@ -1,14 +0,0 @@ -Apache NetBeans -Copyright 2017-2021 The Apache Software Foundation - -This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). - -The code is based on NetBeans, that has been kindly donated to the Apache -Software Foundation by Oracle. - -The code was Copyright 1997-2016 Oracle and/or its affiliates. The Initial -Developer of the Original Software was Sun Microsystems, Inc. Portions -Copyright 1997-2006 Sun Microsystems, Inc. - - diff --git a/distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-RELEASE130/NOTICE.1 b/distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-RELEASE130/NOTICE.1 deleted file mode 100644 index e0ce5df5ff1e..000000000000 --- a/distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-RELEASE130/NOTICE.1 +++ /dev/null @@ -1,14 +0,0 @@ -Apache NetBeans -Copyright 2017-2021 The Apache Software Foundation - -This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). - -The code is based on NetBeans, that has been kindly donated to the Apache -Software Foundation by Oracle. - -The code was Copyright 1997-2016 Oracle and/or its affiliates. The Initial -Developer of the Original Software was Sun Microsystems, Inc. Portions -Copyright 1997-2006 Sun Microsystems, Inc. - - diff --git a/distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-lookup-RELEASE130/NOTICE b/distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-lookup-RELEASE130/NOTICE deleted file mode 100644 index e0ce5df5ff1e..000000000000 --- a/distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-lookup-RELEASE130/NOTICE +++ /dev/null @@ -1,14 +0,0 @@ -Apache NetBeans -Copyright 2017-2021 The Apache Software Foundation - -This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). - -The code is based on NetBeans, that has been kindly donated to the Apache -Software Foundation by Oracle. - -The code was Copyright 1997-2016 Oracle and/or its affiliates. The Initial -Developer of the Original Software was Sun Microsystems, Inc. Portions -Copyright 1997-2006 Sun Microsystems, Inc. - - diff --git a/distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-lookup-RELEASE130/NOTICES b/distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-lookup-RELEASE130/NOTICES deleted file mode 100644 index bd244d07ab47..000000000000 --- a/distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-lookup-RELEASE130/NOTICES +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - diff --git a/distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-dialogs-RELEASE130/NOTICE b/distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-lookup-RELEASE140/NOTICE similarity index 89% rename from distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-dialogs-RELEASE130/NOTICE rename to distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-lookup-RELEASE140/NOTICE index e0ce5df5ff1e..48bff50c34a8 100644 --- a/distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-dialogs-RELEASE130/NOTICE +++ b/distribution/engine/THIRD-PARTY/org.netbeans.api.org-openide-util-lookup-RELEASE140/NOTICE @@ -1,5 +1,5 @@ Apache NetBeans -Copyright 2017-2021 The Apache Software Foundation +Copyright 2017-2022 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/). diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.modules.scala-xml_2.13-1.3.0/NOTICES b/distribution/engine/THIRD-PARTY/org.scala-lang.modules.scala-xml_2.13-1.3.0/NOTICES deleted file mode 100644 index a7d1b57f2836..000000000000 --- a/distribution/engine/THIRD-PARTY/org.scala-lang.modules.scala-xml_2.13-1.3.0/NOTICES +++ /dev/null @@ -1,10 +0,0 @@ -/* __ *\ -** ________ ___ / / ___ Scala API ** -** / __/ __// _ | / / / _ | (c) 2002-2019, LAMP/EPFL ** -** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ ** -** /____/\___/_/ |_/____/_/ | | ** -** |/ ** -** Copyright 2008 Google Inc. ** -** All Rights Reserved. ** -\* */ - diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.scala-compiler-2.13.7/NOTICES b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-compiler-2.13.7/NOTICES deleted file mode 100644 index 28f3becac42a..000000000000 --- a/distribution/engine/THIRD-PARTY/org.scala-lang.scala-compiler-2.13.7/NOTICES +++ /dev/null @@ -1,11 +0,0 @@ -Copyright 2002-2017 LAMP/EPFL and Lightbend, Inc. - -Copyright 2005-2013 LAMP/EPFL - -Copyright 2005-2017 LAMP/EPFL and Lightbend, Inc - -Copyright 2005-2017 LAMP/EPFL and Lightbend, Inc. - -Copyright EPFL and Lightbend, Inc. - -additional information regarding copyright ownership. diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.scala-compiler-2.13.7/NOTICE b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-compiler-2.13.8/NOTICE similarity index 100% rename from distribution/engine/THIRD-PARTY/org.scala-lang.scala-compiler-2.13.7/NOTICE rename to distribution/engine/THIRD-PARTY/org.scala-lang.scala-compiler-2.13.8/NOTICE diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.scala-compiler-2.13.8/NOTICES b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-compiler-2.13.8/NOTICES new file mode 100644 index 000000000000..2483b7f3bbb0 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-compiler-2.13.8/NOTICES @@ -0,0 +1,3 @@ +Copyright 2002-2017 LAMP/EPFL and Lightbend, Inc. + +Copyright EPFL and Lightbend, Inc. diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.7/NOTICE b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.8/NOTICE similarity index 100% rename from distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.7/NOTICE rename to distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.8/NOTICE diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.7/NOTICES b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.8/NOTICES similarity index 100% rename from distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.7/NOTICES rename to distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.8/NOTICES diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.7/NOTICE b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.8/NOTICE similarity index 100% rename from distribution/engine/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.7/NOTICE rename to distribution/engine/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.8/NOTICE diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.7/NOTICES b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.8/NOTICES similarity index 100% rename from distribution/engine/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.7/NOTICES rename to distribution/engine/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.8/NOTICES diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.slf4j.slf4j-api-1.7.30/NOTICES b/distribution/engine/THIRD-PARTY/org.slf4j.slf4j-api-1.7.36/NOTICES similarity index 100% rename from distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.slf4j.slf4j-api-1.7.30/NOTICES rename to distribution/engine/THIRD-PARTY/org.slf4j.slf4j-api-1.7.36/NOTICES diff --git a/distribution/engine/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/AUTHORS.md b/distribution/engine/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/AUTHORS.md deleted file mode 100644 index 34ea0d8230f8..000000000000 --- a/distribution/engine/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/AUTHORS.md +++ /dev/null @@ -1,324 +0,0 @@ -## Authors - -A successful open-source project relies upon the community to: - -* discuss requirements and possible designs -* submit code and tests -* identify and fix bugs -* create documentation and examples -* provide feedback -* support each other - -This file lists the people whose contributions have made Cats -possible: - - * 3rdLaw - * Aaron Levin - * Adam Fisher - * Adam Rosien - * Adelbert Chang - * Adrian Ramirez Fornell - * Aldo Stracquadanio - * Alejandro Gómez - * Alessandro Lacava - * Alejandro Marín E. - * Alex Simkin - * Alexandru Nedelcu - * Alexander Semenov - * Alexey Levan - * Alissa Pajer - * Alistair Johnson - * Allan Timothy Leong - * Alonso Dominguez - * Amir Mohammad Saied - * Amitay Horwitz - * Andrea Fiore - * Andrea McAts - * Andrew Jones - * Andy Scott - * Angelo Genovese - * Antoine Comte - * Arulselvan Madhavan - * Arya Irani - * Ash Pook - * Aλ - * Barnabás Oláh - * Ben Fradet - * Ben Hutchison - * Ben Kirwin - * Ben Plommer - * Ben Stewart - * Benjamin Thuillier - * Binh Nguyen - * Bjørn Madsen - * Bobby Rauchenberg - * Brendan McAdams - * Brian McKenna - * Brian P. Holt - * Bryan Tan - * Brian Wignall - * Cary Robbins - * Changwoo Park - * Chris Birchall - * Christopher Davenport - * Cody Allen - * Colin Woodbury - * Colt Frederickson - * Connie Chen - * Csongor Kiss - * dadepo - * Dale Wijnand - * Dan Di Spaltro - * Daniel Karch - * Daniel Spiewak - * Daniel Urban - * Daniela Sfregola - * dantb - * Dave Gurnell - * Dave Rostron - * David Allsopp - * David Gregory - * David R. Bild - * Dayyan Lord - * Denis Mikhaylov - * Denis Rosca - * Denis - * Derek Wickern - * Diego Esteban Alonso Blas - * Dmitry Polienko - * Donaldo Salas - * Earl St Sauver - * Edd Steel - * Endre Galaczi - * Enrico Benini - * enzief - * Eric Torreborre - * ericaovo - * Erik Erlandson - * Erik LaBianca - * Erik Osheim - * Eugene Burmako - * Eugene Platonov - * Eugene Yokota - * Fabian Gutierrez - * Fabian Schmitthenner - * Fabio Labella - * fantayeneh - * Feynman Liang - * Filipe Oliveira - * Filippo Mariotti - * Francisco Bermejo - * Francisco Canedo - * Francois Armand - * Frank S. Thomas - * Gabriele Petronella - * Gagandeep Kalra - * Gavin Bisesi - * Georgi Krastev - * Gergő Törcsvári - * Giovanni Ruggiero - * Giulio De Luise - * Giuseppe Cannella - * Greg Pfeil - * Gregor Heine - * Guillaume Massé - * Hamed Nourhani - * Hamish Dickson - * Harrison Houghton - * Ian McIntosh - * Ikrom - * ImLiar - * Ionuț G. Stan - * Israel Pérez González - * Itamar Ravid - * Ivan Klass - * Jack Low - * Jacob Barber - * Jakub Kozłowski - * Jan-Hendrik Zab - * Jasper Moeys - * Jean-Rémi Desjardins - * Jens - * Jens Grassel - * Jichao Ouyang - * Jimin Hsieh - * Jisoo Park - * Joan Goyeau - * João Ferreira - * John Sullivan - * Jon Hanson - * Jose Emilio Labra Gayo - * Joseph Abrahamson - * Josh Marcus - * Juan Pedro Moreno - * Juan Valencia - * Jules Ivanic - * Julien Richard-Foy - * Julien Truffaut - * Jun Tomioka - * jurisk - * Justin Heyes-Jones - * Kailuo Wang - * Kamil Kloch - * kazchimo - * Keir Lawson - * kellen - * Kenji Yoshida - * Kris Kalavantavanich - * Lars Hupel - * Leandro - * Leandro Bolivar - * Leif Battermann - * Lionel Parreaux - * Long Cao - * Luis Angel Vicente Sanchez - * Luís Campos - * Luis Miguel Mejía Suárez - * Luis Sanchez - * Luka Jacobowitz - * Lukáš Voda - * Luke Wyman - * Madder - * Marc Siegel - * Marcin Rzeźnicki - * Marco Battaglia - * Mariot Chauvin - * Mark de Jong - * Markus Appel - * Markus Hauck - * Martijn Hoekstra - * MaT1g3R - * Mateusz Sokół - * Mateusz Wójcik - * mathhun - * Matt Martin - * Matthias Lüneberg - * Max Worgan - * Maxim Davydov - * Merlin Göttlinger - * Michał Gutowski - * Michael Ledin - * Michael Pilquist - * Mike Curry - * Miklós Martin - * Miles Sabin - * Mirco Dotta - * mooi - * msinton - * nigredo-tori - * Nikolay Maksimenko - * n4to4 - * Olivier Blanvillain - * Olli Helenius - * orvi - * Owen Parry - * P. Oscar Boykin - * Paolo G. Giarrusso - * Pascal Voitot - * Paul Chiusano - * Paul Phillips - * Paulo "JCranky" Siqueira - * Pavel Chlupacek - * Pavkin Vladimir - * Paweł Kiersznowski - * Paweł Lipski - * Pepe García - * Pere Villega - * Peter Neyens - * Peter Perhac - * phderome - * Philip Wills - * Piotr Gawryś - * Raas Ahsan - * Rafa Paradela - * Raúl Raja Martínez - * RawToast - * Raymond Tay - * rfigueiredo - * Richard Imaoka - * Richard Miller - * Rintcius Blok - * Rob Norris - * Rohan Shah - * Romain Ruetschi - * Roman Tkalenko - * Ross A. Baker - * rsekulski - * rsoeldner - * Rüdiger Klaehn - * Rutvik Patel - * Ryan Case - * Ryan Mehri - * Sam Ritchie - * Sanjiv Sahayam - * Sarunas Valaskevicius - * Sergei Dolgov - * Shan Sikdar - * Sho Kohara - * Shohei Kamimori - * Shunsuke Otani - * Simeon H. K. Fitch - * Sinisa Louc - * Song Kun - * Stephen Carman - * Stephen Judkins - * Stephen Lazaro - * Steven Scott - * Suhas Gaddam - * sullis - * Sumedh Mungee - * Syed Akber Jafri - * Takayuki Sakai - * Tanaka Takaya - * Taylor Brown - * Tim Spence - * Timothy McCarthy - * Tom Switzer - * Tomas Mikula - * Tongfei Chen - * Torsten Schmits - * Travis Brown - * Trond Bjerkestrand - * Tya - * Valentin Willscher - * Valeriy Avanesov - * Valy Diarrassouba - * Vasileios Lampridis - * Vasilis Nicolaou - * Vasiliy Bondarenko - * ven - * Viktor Dychko - * Viktor Lövgren - * Vitaly Lavrov - * Vladimir Samoylov - * Vladislav Gutov - * Wedens - * Wogan - * Xavier Fernández Salas - * XUWE - * 杨博 (Yang Bo) - * Yannick Heiber - * ybasket - * Yosef Fertel - * Yilin Wei - * Yuki Kitakata - * Yuriy Badalyantc - * Zach Abbott - * zainab-ali - * Zelenya - * zhen - * Ziyang Liu - * λoλcat - -Cats has been heavily inspired by many libraries, including [Scalaz](https://github.com/scalaz/scalaz), -Haskell's [Prelude](https://hackage.haskell.org/package/base-4.9.0.0/docs/Prelude.html), and others. -In particular, some Cats code is only a slightly modified version of code originating in -Scalaz. Therefore, we'd also like to credit and thank all of the -[Scalaz contributors](https://github.com/scalaz/scalaz/graphs/contributors) for -their work. - -We've tried to include everyone, but if you've made a contribution to -Cats and are not listed, please feel free to open an issue or pull -request with your name and contribution. - -Thank you! diff --git a/distribution/engine/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/COPYING b/distribution/engine/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/COPYING deleted file mode 100644 index d5783383b25e..000000000000 --- a/distribution/engine/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/COPYING +++ /dev/null @@ -1,255 +0,0 @@ -Cats Copyright (c) 2015 Cats Contributors. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ------- - -Code in Cats is derived in part from Scalaz. The Scalaz license follows: - -Copyright (c) 2009-2014 Tony Morris, Runar Bjarnason, Tom Adams, -Kristian Domagala, Brad Clow, Ricky Clarkson, Paul Chiusano, Trygve -Laugstøl, Nick Partridge, Jason Zaugg. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ------- - -Code in Cats is derived in part from the Scala standard library. The Scala license follows: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/distribution/engine/THIRD-PARTY/org.typelevel.cats-core_2.13-2.8.0/NOTICES b/distribution/engine/THIRD-PARTY/org.typelevel.cats-core_2.13-2.8.0/NOTICES new file mode 100644 index 000000000000..2cba5ef9c1ef --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.typelevel.cats-core_2.13-2.8.0/NOTICES @@ -0,0 +1,3 @@ +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + +Copyright (c) 2002-2022 EPFL diff --git a/distribution/engine/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/NOTICES b/distribution/engine/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/NOTICES deleted file mode 100644 index 5dc9eaad2b19..000000000000 --- a/distribution/engine/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/NOTICES +++ /dev/null @@ -1,2 +0,0 @@ -See org.typelevel.cats-core_2.13-2.2.0-M3 for notices related to this module. - diff --git a/distribution/engine/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.8.0/NOTICES b/distribution/engine/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.8.0/NOTICES new file mode 100644 index 000000000000..e7fd3c6022fd --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.8.0/NOTICES @@ -0,0 +1,7 @@ +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + +Copyright (c) 2002-2022 EPFL + +Copyright (c) 2011-2022 Lightbend, Inc. + +Copyright EPFL and Lightbend, Inc. diff --git a/distribution/engine/THIRD-PARTY/org.typelevel.jawn-parser_2.13-1.1.2/LICENSE b/distribution/engine/THIRD-PARTY/org.typelevel.jawn-parser_2.13-1.3.2/LICENSE similarity index 100% rename from distribution/engine/THIRD-PARTY/org.typelevel.jawn-parser_2.13-1.1.2/LICENSE rename to distribution/engine/THIRD-PARTY/org.typelevel.jawn-parser_2.13-1.3.2/LICENSE diff --git a/distribution/launcher/THIRD-PARTY/NOTICE b/distribution/launcher/THIRD-PARTY/NOTICE index 0544564ddbec..9346ba29ea2d 100644 --- a/distribution/launcher/THIRD-PARTY/NOTICE +++ b/distribution/launcher/THIRD-PARTY/NOTICE @@ -18,47 +18,47 @@ licensed under the MIT license. Its copyright notice is included in file 'shapeless_2.13', licensed under the Apache 2, is distributed with the launcher. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.chuusai.shapeless_2.13-2.3.7`. +Copyright notices related to this dependency can be found in the directory `com.chuusai.shapeless_2.13-2.3.9`. 'akka-actor_2.13', licensed under the Apache-2.0, is distributed with the launcher. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-actor_2.13-2.6.18`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-actor_2.13-2.6.19`. 'akka-http-core_2.13', licensed under the Apache-2.0, is distributed with the launcher. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-http-core_2.13-10.2.7`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-http-core_2.13-10.2.9`. 'akka-http_2.13', licensed under the Apache-2.0, is distributed with the launcher. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-http_2.13-10.2.7`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-http_2.13-10.2.9`. 'akka-parsing_2.13', licensed under the Apache-2.0, is distributed with the launcher. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-parsing_2.13-10.2.7`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-parsing_2.13-10.2.9`. 'akka-protobuf-v3_2.13', licensed under the Apache-2.0, is distributed with the launcher. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19`. 'akka-slf4j_2.13', licensed under the Apache-2.0, is distributed with the launcher. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-slf4j_2.13-2.6.18`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-slf4j_2.13-2.6.19`. 'akka-stream_2.13', licensed under the Apache-2.0, is distributed with the launcher. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-stream_2.13-2.6.18`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-stream_2.13-2.6.19`. 'config', licensed under the Apache-2.0, is distributed with the launcher. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.config-1.4.1`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.config-1.4.2`. 'scala-logging_2.13', licensed under the Apache 2.0 License, is distributed with the launcher. @@ -68,7 +68,7 @@ Copyright notices related to this dependency can be found in the directory `com. 'ssl-config-core_2.13', licensed under the Apache-2.0, is distributed with the launcher. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.ssl-config-core_2.13-0.4.2`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.ssl-config-core_2.13-0.4.3`. 'commons-io', licensed under the Apache License, Version 2.0, is distributed with the launcher. @@ -78,27 +78,27 @@ Copyright notices related to this dependency can be found in the directory `comm 'circe-core_2.13', licensed under the Apache 2.0, is distributed with the launcher. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `io.circe.circe-core_2.13-0.14.1`. +Copyright notices related to this dependency can be found in the directory `io.circe.circe-core_2.13-0.14.2`. 'circe-generic_2.13', licensed under the Apache 2.0, is distributed with the launcher. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `io.circe.circe-generic_2.13-0.14.1`. +Copyright notices related to this dependency can be found in the directory `io.circe.circe-generic_2.13-0.14.2`. 'circe-jawn_2.13', licensed under the Apache 2.0, is distributed with the launcher. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `io.circe.circe-jawn_2.13-0.14.1`. +Copyright notices related to this dependency can be found in the directory `io.circe.circe-jawn_2.13-0.14.2`. 'circe-numbers_2.13', licensed under the Apache 2.0, is distributed with the launcher. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `io.circe.circe-numbers_2.13-0.14.1`. +Copyright notices related to this dependency can be found in the directory `io.circe.circe-numbers_2.13-0.14.2`. 'circe-parser_2.13', licensed under the Apache 2.0, is distributed with the launcher. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `io.circe.circe-parser_2.13-0.14.1`. +Copyright notices related to this dependency can be found in the directory `io.circe.circe-parser_2.13-0.14.2`. 'circe-yaml_2.13', licensed under the Apache 2.0, is distributed with the launcher. @@ -133,37 +133,32 @@ Copyright notices related to this dependency can be found in the directory `org. 'scala-library', licensed under the Apache-2.0, is distributed with the launcher. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.scala-lang.scala-library-2.13.7`. +Copyright notices related to this dependency can be found in the directory `org.scala-lang.scala-library-2.13.8`. 'scala-reflect', licensed under the Apache-2.0, is distributed with the launcher. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.scala-lang.scala-reflect-2.13.7`. +Copyright notices related to this dependency can be found in the directory `org.scala-lang.scala-reflect-2.13.8`. 'slf4j-api', licensed under the MIT License, is distributed with the launcher. The license file can be found at `licenses/MIT`. -Copyright notices related to this dependency can be found in the directory `org.slf4j.slf4j-api-1.7.32`. +Copyright notices related to this dependency can be found in the directory `org.slf4j.slf4j-api-1.7.36`. 'cats-core_2.13', licensed under the MIT, is distributed with the launcher. -The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.typelevel.cats-core_2.13-2.7.0`. +The license file can be found at `licenses/MIT`. +Copyright notices related to this dependency can be found in the directory `org.typelevel.cats-core_2.13-2.8.0`. 'cats-kernel_2.13', licensed under the MIT, is distributed with the launcher. -The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.typelevel.cats-kernel_2.13-2.7.0`. +The license file can be found at `licenses/MIT`. +Copyright notices related to this dependency can be found in the directory `org.typelevel.cats-kernel_2.13-2.8.0`. 'jawn-parser_2.13', licensed under the MIT, is distributed with the launcher. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.typelevel.jawn-parser_2.13-1.1.2`. - - -'simulacrum-scalafix-annotations_2.13', licensed under the Apache 2.0, is distributed with the launcher. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4`. +Copyright notices related to this dependency can be found in the directory `org.typelevel.jawn-parser_2.13-1.3.2`. 'snakeyaml', licensed under the Apache License, Version 2.0, is distributed with the launcher. diff --git a/distribution/engine/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.7/NOTICES b/distribution/launcher/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.9/NOTICES similarity index 100% rename from distribution/engine/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.7/NOTICES rename to distribution/launcher/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.9/NOTICES diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.18/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.18/NOTICES deleted file mode 100644 index 34eb828a9670..000000000000 --- a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.18/NOTICES +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Copyright (C) 2009-2021 Lightbend Inc. - */ - -Copyright (C) 2014-2021 Lightbend Inc. - -Copyright (C) 2015-2021 Lightbend Inc. - -Copyright (C) 2016-2021 Lightbend Inc. - -Copyright (C) 2017-2021 Lightbend Inc. - -Copyright (C) 2018-2021 Lightbend Inc. - -Copyright (C) 2019-2021 Lightbend Inc. - -Copyright (C) 2020-2021 Lightbend Inc. - -Copyright (C) 2021 Lightbend Inc. diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.19/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.19/NOTICES new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.19/NOTICES @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.7/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.9/NOTICES similarity index 100% rename from distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.7/NOTICES rename to distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.9/NOTICES diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.7/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.9/NOTICES similarity index 100% rename from distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.7/NOTICES rename to distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.9/NOTICES diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.7/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.9/NOTICES similarity index 100% rename from distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.7/NOTICES rename to distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.9/NOTICES diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/COPYING.protobuf b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/COPYING.protobuf similarity index 100% rename from distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/COPYING.protobuf rename to distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/COPYING.protobuf diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/LICENSE b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/LICENSE similarity index 100% rename from distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/LICENSE rename to distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/LICENSE diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.18/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.18/NOTICES deleted file mode 100644 index 6efe69a3b900..000000000000 --- a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.18/NOTICES +++ /dev/null @@ -1,3 +0,0 @@ -/* - * Copyright (C) 2009-2021 Lightbend Inc. - */ diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.19/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.19/NOTICES new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.19/NOTICES @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.18/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.18/NOTICES deleted file mode 100644 index 34eb828a9670..000000000000 --- a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.18/NOTICES +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Copyright (C) 2009-2021 Lightbend Inc. - */ - -Copyright (C) 2014-2021 Lightbend Inc. - -Copyright (C) 2015-2021 Lightbend Inc. - -Copyright (C) 2016-2021 Lightbend Inc. - -Copyright (C) 2017-2021 Lightbend Inc. - -Copyright (C) 2018-2021 Lightbend Inc. - -Copyright (C) 2019-2021 Lightbend Inc. - -Copyright (C) 2020-2021 Lightbend Inc. - -Copyright (C) 2021 Lightbend Inc. diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.19/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.19/NOTICES new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.19/NOTICES @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.config-1.4.1/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.config-1.4.1/NOTICES deleted file mode 100644 index 33fcda9b45ef..000000000000 --- a/distribution/launcher/THIRD-PARTY/com.typesafe.config-1.4.1/NOTICES +++ /dev/null @@ -1,11 +0,0 @@ -/** - * Copyright (C) 2011-2012 Typesafe Inc. - */ - -/** - * Copyright (C) 2014 Typesafe Inc. - */ - -/** - * Copyright (C) 2015 Typesafe Inc. - */ diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.config-1.4.0/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.config-1.4.2/NOTICES similarity index 100% rename from distribution/engine/THIRD-PARTY/com.typesafe.config-1.4.0/NOTICES rename to distribution/launcher/THIRD-PARTY/com.typesafe.config-1.4.2/NOTICES diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.ssl-config-core_2.13-0.4.2/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.ssl-config-core_2.13-0.4.3/NOTICES similarity index 100% rename from distribution/launcher/THIRD-PARTY/com.typesafe.ssl-config-core_2.13-0.4.2/NOTICES rename to distribution/launcher/THIRD-PARTY/com.typesafe.ssl-config-core_2.13-0.4.3/NOTICES diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/LICENSE b/distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2/LICENSE similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/LICENSE rename to distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2/LICENSE diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/LICENSE.argonaut b/distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2/LICENSE.argonaut similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/LICENSE.argonaut rename to distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2/LICENSE.argonaut diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/LICENSE.ephox b/distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2/LICENSE.ephox similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/LICENSE.ephox rename to distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2/LICENSE.ephox diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/NOTICE b/distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2/NOTICE similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/NOTICE rename to distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2/NOTICE diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/LICENSE b/distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2/LICENSE similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/LICENSE rename to distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2/LICENSE diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/LICENSE.argonaut b/distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2/LICENSE.argonaut similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/LICENSE.argonaut rename to distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2/LICENSE.argonaut diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/LICENSE.ephox b/distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2/LICENSE.ephox similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/LICENSE.ephox rename to distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2/LICENSE.ephox diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/NOTICE b/distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2/NOTICE similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/NOTICE rename to distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2/NOTICE diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/LICENSE b/distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2/LICENSE similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/LICENSE rename to distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2/LICENSE diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/LICENSE.argonaut b/distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2/LICENSE.argonaut similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/LICENSE.argonaut rename to distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2/LICENSE.argonaut diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/LICENSE.ephox b/distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2/LICENSE.ephox similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/LICENSE.ephox rename to distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2/LICENSE.ephox diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/NOTICE b/distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2/NOTICE similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/NOTICE rename to distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2/NOTICE diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/LICENSE b/distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2/LICENSE similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/LICENSE rename to distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2/LICENSE diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.1/LICENSE.argonaut b/distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2/LICENSE.argonaut similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.1/LICENSE.argonaut rename to distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2/LICENSE.argonaut diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.1/LICENSE.ephox b/distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2/LICENSE.ephox similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.1/LICENSE.ephox rename to distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2/LICENSE.ephox diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/NOTICE b/distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2/NOTICE similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/NOTICE rename to distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2/NOTICE diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/LICENSE b/distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2/LICENSE similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/LICENSE rename to distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2/LICENSE diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/LICENSE.argonaut b/distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2/LICENSE.argonaut similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/LICENSE.argonaut rename to distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2/LICENSE.argonaut diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/LICENSE.ephox b/distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2/LICENSE.ephox similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/LICENSE.ephox rename to distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2/LICENSE.ephox diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/NOTICE b/distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2/NOTICE similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/NOTICE rename to distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2/NOTICE diff --git a/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.7/NOTICE b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.8/NOTICE similarity index 100% rename from distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.7/NOTICE rename to distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.8/NOTICE diff --git a/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.7/NOTICES b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.8/NOTICES similarity index 100% rename from distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.7/NOTICES rename to distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.8/NOTICES diff --git a/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.7/NOTICE b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.8/NOTICE similarity index 100% rename from distribution/launcher/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.7/NOTICE rename to distribution/launcher/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.8/NOTICE diff --git a/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.7/NOTICES b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.8/NOTICES similarity index 100% rename from distribution/launcher/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.7/NOTICES rename to distribution/launcher/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.8/NOTICES diff --git a/distribution/engine/THIRD-PARTY/org.slf4j.slf4j-api-1.7.32/NOTICES b/distribution/launcher/THIRD-PARTY/org.slf4j.slf4j-api-1.7.36/NOTICES similarity index 100% rename from distribution/engine/THIRD-PARTY/org.slf4j.slf4j-api-1.7.32/NOTICES rename to distribution/launcher/THIRD-PARTY/org.slf4j.slf4j-api-1.7.36/NOTICES diff --git a/distribution/launcher/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/AUTHORS.md b/distribution/launcher/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/AUTHORS.md deleted file mode 100644 index 34ea0d8230f8..000000000000 --- a/distribution/launcher/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/AUTHORS.md +++ /dev/null @@ -1,324 +0,0 @@ -## Authors - -A successful open-source project relies upon the community to: - -* discuss requirements and possible designs -* submit code and tests -* identify and fix bugs -* create documentation and examples -* provide feedback -* support each other - -This file lists the people whose contributions have made Cats -possible: - - * 3rdLaw - * Aaron Levin - * Adam Fisher - * Adam Rosien - * Adelbert Chang - * Adrian Ramirez Fornell - * Aldo Stracquadanio - * Alejandro Gómez - * Alessandro Lacava - * Alejandro Marín E. - * Alex Simkin - * Alexandru Nedelcu - * Alexander Semenov - * Alexey Levan - * Alissa Pajer - * Alistair Johnson - * Allan Timothy Leong - * Alonso Dominguez - * Amir Mohammad Saied - * Amitay Horwitz - * Andrea Fiore - * Andrea McAts - * Andrew Jones - * Andy Scott - * Angelo Genovese - * Antoine Comte - * Arulselvan Madhavan - * Arya Irani - * Ash Pook - * Aλ - * Barnabás Oláh - * Ben Fradet - * Ben Hutchison - * Ben Kirwin - * Ben Plommer - * Ben Stewart - * Benjamin Thuillier - * Binh Nguyen - * Bjørn Madsen - * Bobby Rauchenberg - * Brendan McAdams - * Brian McKenna - * Brian P. Holt - * Bryan Tan - * Brian Wignall - * Cary Robbins - * Changwoo Park - * Chris Birchall - * Christopher Davenport - * Cody Allen - * Colin Woodbury - * Colt Frederickson - * Connie Chen - * Csongor Kiss - * dadepo - * Dale Wijnand - * Dan Di Spaltro - * Daniel Karch - * Daniel Spiewak - * Daniel Urban - * Daniela Sfregola - * dantb - * Dave Gurnell - * Dave Rostron - * David Allsopp - * David Gregory - * David R. Bild - * Dayyan Lord - * Denis Mikhaylov - * Denis Rosca - * Denis - * Derek Wickern - * Diego Esteban Alonso Blas - * Dmitry Polienko - * Donaldo Salas - * Earl St Sauver - * Edd Steel - * Endre Galaczi - * Enrico Benini - * enzief - * Eric Torreborre - * ericaovo - * Erik Erlandson - * Erik LaBianca - * Erik Osheim - * Eugene Burmako - * Eugene Platonov - * Eugene Yokota - * Fabian Gutierrez - * Fabian Schmitthenner - * Fabio Labella - * fantayeneh - * Feynman Liang - * Filipe Oliveira - * Filippo Mariotti - * Francisco Bermejo - * Francisco Canedo - * Francois Armand - * Frank S. Thomas - * Gabriele Petronella - * Gagandeep Kalra - * Gavin Bisesi - * Georgi Krastev - * Gergő Törcsvári - * Giovanni Ruggiero - * Giulio De Luise - * Giuseppe Cannella - * Greg Pfeil - * Gregor Heine - * Guillaume Massé - * Hamed Nourhani - * Hamish Dickson - * Harrison Houghton - * Ian McIntosh - * Ikrom - * ImLiar - * Ionuț G. Stan - * Israel Pérez González - * Itamar Ravid - * Ivan Klass - * Jack Low - * Jacob Barber - * Jakub Kozłowski - * Jan-Hendrik Zab - * Jasper Moeys - * Jean-Rémi Desjardins - * Jens - * Jens Grassel - * Jichao Ouyang - * Jimin Hsieh - * Jisoo Park - * Joan Goyeau - * João Ferreira - * John Sullivan - * Jon Hanson - * Jose Emilio Labra Gayo - * Joseph Abrahamson - * Josh Marcus - * Juan Pedro Moreno - * Juan Valencia - * Jules Ivanic - * Julien Richard-Foy - * Julien Truffaut - * Jun Tomioka - * jurisk - * Justin Heyes-Jones - * Kailuo Wang - * Kamil Kloch - * kazchimo - * Keir Lawson - * kellen - * Kenji Yoshida - * Kris Kalavantavanich - * Lars Hupel - * Leandro - * Leandro Bolivar - * Leif Battermann - * Lionel Parreaux - * Long Cao - * Luis Angel Vicente Sanchez - * Luís Campos - * Luis Miguel Mejía Suárez - * Luis Sanchez - * Luka Jacobowitz - * Lukáš Voda - * Luke Wyman - * Madder - * Marc Siegel - * Marcin Rzeźnicki - * Marco Battaglia - * Mariot Chauvin - * Mark de Jong - * Markus Appel - * Markus Hauck - * Martijn Hoekstra - * MaT1g3R - * Mateusz Sokół - * Mateusz Wójcik - * mathhun - * Matt Martin - * Matthias Lüneberg - * Max Worgan - * Maxim Davydov - * Merlin Göttlinger - * Michał Gutowski - * Michael Ledin - * Michael Pilquist - * Mike Curry - * Miklós Martin - * Miles Sabin - * Mirco Dotta - * mooi - * msinton - * nigredo-tori - * Nikolay Maksimenko - * n4to4 - * Olivier Blanvillain - * Olli Helenius - * orvi - * Owen Parry - * P. Oscar Boykin - * Paolo G. Giarrusso - * Pascal Voitot - * Paul Chiusano - * Paul Phillips - * Paulo "JCranky" Siqueira - * Pavel Chlupacek - * Pavkin Vladimir - * Paweł Kiersznowski - * Paweł Lipski - * Pepe García - * Pere Villega - * Peter Neyens - * Peter Perhac - * phderome - * Philip Wills - * Piotr Gawryś - * Raas Ahsan - * Rafa Paradela - * Raúl Raja Martínez - * RawToast - * Raymond Tay - * rfigueiredo - * Richard Imaoka - * Richard Miller - * Rintcius Blok - * Rob Norris - * Rohan Shah - * Romain Ruetschi - * Roman Tkalenko - * Ross A. Baker - * rsekulski - * rsoeldner - * Rüdiger Klaehn - * Rutvik Patel - * Ryan Case - * Ryan Mehri - * Sam Ritchie - * Sanjiv Sahayam - * Sarunas Valaskevicius - * Sergei Dolgov - * Shan Sikdar - * Sho Kohara - * Shohei Kamimori - * Shunsuke Otani - * Simeon H. K. Fitch - * Sinisa Louc - * Song Kun - * Stephen Carman - * Stephen Judkins - * Stephen Lazaro - * Steven Scott - * Suhas Gaddam - * sullis - * Sumedh Mungee - * Syed Akber Jafri - * Takayuki Sakai - * Tanaka Takaya - * Taylor Brown - * Tim Spence - * Timothy McCarthy - * Tom Switzer - * Tomas Mikula - * Tongfei Chen - * Torsten Schmits - * Travis Brown - * Trond Bjerkestrand - * Tya - * Valentin Willscher - * Valeriy Avanesov - * Valy Diarrassouba - * Vasileios Lampridis - * Vasilis Nicolaou - * Vasiliy Bondarenko - * ven - * Viktor Dychko - * Viktor Lövgren - * Vitaly Lavrov - * Vladimir Samoylov - * Vladislav Gutov - * Wedens - * Wogan - * Xavier Fernández Salas - * XUWE - * 杨博 (Yang Bo) - * Yannick Heiber - * ybasket - * Yosef Fertel - * Yilin Wei - * Yuki Kitakata - * Yuriy Badalyantc - * Zach Abbott - * zainab-ali - * Zelenya - * zhen - * Ziyang Liu - * λoλcat - -Cats has been heavily inspired by many libraries, including [Scalaz](https://github.com/scalaz/scalaz), -Haskell's [Prelude](https://hackage.haskell.org/package/base-4.9.0.0/docs/Prelude.html), and others. -In particular, some Cats code is only a slightly modified version of code originating in -Scalaz. Therefore, we'd also like to credit and thank all of the -[Scalaz contributors](https://github.com/scalaz/scalaz/graphs/contributors) for -their work. - -We've tried to include everyone, but if you've made a contribution to -Cats and are not listed, please feel free to open an issue or pull -request with your name and contribution. - -Thank you! diff --git a/distribution/launcher/THIRD-PARTY/org.typelevel.cats-core_2.13-2.8.0/NOTICES b/distribution/launcher/THIRD-PARTY/org.typelevel.cats-core_2.13-2.8.0/NOTICES new file mode 100644 index 000000000000..2cba5ef9c1ef --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.typelevel.cats-core_2.13-2.8.0/NOTICES @@ -0,0 +1,3 @@ +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + +Copyright (c) 2002-2022 EPFL diff --git a/distribution/launcher/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/AUTHORS b/distribution/launcher/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/AUTHORS deleted file mode 100644 index bcce914f5ac3..000000000000 --- a/distribution/launcher/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/AUTHORS +++ /dev/null @@ -1 +0,0 @@ -Please refer to the file AUTHORS.md in directory org.typelevel.cats-core_2.13-2.2 diff --git a/distribution/launcher/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/COPYING b/distribution/launcher/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/COPYING deleted file mode 100644 index d5783383b25e..000000000000 --- a/distribution/launcher/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/COPYING +++ /dev/null @@ -1,255 +0,0 @@ -Cats Copyright (c) 2015 Cats Contributors. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ------- - -Code in Cats is derived in part from Scalaz. The Scalaz license follows: - -Copyright (c) 2009-2014 Tony Morris, Runar Bjarnason, Tom Adams, -Kristian Domagala, Brad Clow, Ricky Clarkson, Paul Chiusano, Trygve -Laugstøl, Nick Partridge, Jason Zaugg. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ------- - -Code in Cats is derived in part from the Scala standard library. The Scala license follows: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/distribution/launcher/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.8.0/NOTICES b/distribution/launcher/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.8.0/NOTICES new file mode 100644 index 000000000000..e7fd3c6022fd --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.8.0/NOTICES @@ -0,0 +1,7 @@ +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + +Copyright (c) 2002-2022 EPFL + +Copyright (c) 2011-2022 Lightbend, Inc. + +Copyright EPFL and Lightbend, Inc. diff --git a/distribution/launcher/THIRD-PARTY/org.typelevel.jawn-parser_2.13-1.1.2/LICENSE b/distribution/launcher/THIRD-PARTY/org.typelevel.jawn-parser_2.13-1.3.2/LICENSE similarity index 100% rename from distribution/launcher/THIRD-PARTY/org.typelevel.jawn-parser_2.13-1.1.2/LICENSE rename to distribution/launcher/THIRD-PARTY/org.typelevel.jawn-parser_2.13-1.3.2/LICENSE diff --git a/distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/NOTICE b/distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/NOTICE index 1a932d582609..f3c7d7830375 100644 --- a/distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/NOTICE +++ b/distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/NOTICE @@ -3,5 +3,5 @@ Copyright 2020 - 2022 New Byte Order sp. z o. o. 'icu4j', licensed under the Unicode/ICU License, is distributed with the Base. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `com.ibm.icu.icu4j-67.1`. +Copyright notices related to this dependency can be found in the directory `com.ibm.icu.icu4j-71.1`. diff --git a/distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-67.1/NOTICES b/distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-67.1/NOTICES deleted file mode 100644 index 2f3c80450a06..000000000000 --- a/distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-67.1/NOTICES +++ /dev/null @@ -1,405 +0,0 @@ -

Copyright © IBM Corporation 1999. All rights reserved. - -Copyright (C) 1996-2004, International Business Machines Corporation and * - -Copyright (C) 1996-2005, International Business Machines Corporation and * - -Copyright (C) 1996-2007, International Business Machines Corporation and * - -Copyright (C) 1996-2007, International Business Machines Corporation and * - -Copyright (C) 1996-2009, Google, International Business Machines Corporation and * - -Copyright (C) 1996-2009, International Business Machines Corporation and * - -Copyright (C) 1996-2010, International Business Machines Corporation and - -Copyright (C) 1996-2010, International Business Machines Corporation and * - -Copyright (C) 1996-2010, International Business Machines Corporation and * - -Copyright (C) 1996-2011, International Business Machines Corporation and - -Copyright (C) 1996-2011, International Business Machines Corporation and * - -Copyright (C) 1996-2011, International Business Machines Corporation and * - -Copyright (C) 1996-2012, International Business Machines Corporation and * - -Copyright (C) 1996-2013, International Business Machines Corporation and - -Copyright (C) 1996-2013, International Business Machines Corporation and * - -Copyright (C) 1996-2014, International Business Machines Corporation and - -Copyright (C) 1996-2014, International Business Machines Corporation and * - -Copyright (C) 1996-2015, Google, Inc., International Business Machines Corporation and - -Copyright (C) 1996-2015, International Business Machines - -Copyright (C) 1996-2015, International Business Machines Corporation and - -Copyright (C) 1996-2015, International Business Machines Corporation and * - -Copyright (C) 1996-2016, Google, International Business Machines Corporation and - -Copyright (C) 1996-2016, International Business Machines - -Copyright (C) 1996-2016, International Business Machines Corporation and - -Copyright (C) 1996-2016, International Business Machines Corporation and * - -Copyright (C) 1996-2016, International Business Machines Corporation and * - -Copyright (C) 1999-2014, International Business Machines - -Copyright (C) 1999-2015, International Business Machines - -Copyright (C) 2000-2009, International Business Machines Corporation and * - -Copyright (C) 2000-2014, International Business Machines - -Copyright (C) 2000-2014, International Business Machines Corporation and - -Copyright (C) 2000-2016, International Business Machines Corporation and - -Copyright (C) 2001-2004, International Business Machines Corporation and * - -Copyright (C) 2001-2008, International Business Machines - -Copyright (C) 2001-2009, International Business Machines Corporation and * - -Copyright (C) 2001-2010, International Business Machines - -Copyright (C) 2001-2010, International Business Machines Corporation and * - -Copyright (C) 2001-2011, International Business Machines Corporation and * - -Copyright (C) 2001-2012, International Business Machines - -Copyright (C) 2001-2013, International Business Machines Corporation and * - -Copyright (C) 2001-2014, International Business Machines - -Copyright (C) 2001-2015, International Business Machines Corporation and - -Copyright (C) 2001-2016 International Business Machines Corporation and - -Copyright (C) 2001-2016, International Business Machines - -Copyright (C) 2001-2016, International Business Machines Corporation and - -Copyright (C) 2001-2016, International Business Machines Corporation and * - -Copyright (C) 2002-2009 International Business Machines Corporation * - -Copyright (C) 2002-2010, International Business Machines - -Copyright (C) 2002-2010, International Business Machines Corporation and * - -Copyright (C) 2002-2014, International Business Machines Corporation and others. - -Copyright (C) 2002-2016, International Business Machines Corporation and - -Copyright (C) 2003-2010, International Business Machines - -Copyright (C) 2003-2011, International Business Machines Corporation and * - -Copyright (C) 2003-2011, International Business Machines Corporation and * - -Copyright (C) 2003-2014, International Business Machines Corporation and - -Copyright (C) 2003-2014, International Business Machines Corporation and * - -Copyright (C) 2003-2015, International Business Machines Corporation and - -Copyright (C) 2003-2016, Google, International Business Machines Corporation - -Copyright (C) 2003-2016, International Business Machines Corporation and - -Copyright (C) 2003-2016, International Business Machines Corporation and * - -Copyright (C) 2003-2016, International Business Machines Corporation and others. All Rights Reserved. - -Copyright (C) 2004-2006, International Business Machines Corporation and * - -Copyright (C) 2004-2009, International Business Machines Corporation and * - -Copyright (C) 2004-2009, International Business Machines Corporation and * - -Copyright (C) 2004-2010, International Business Machines - -Copyright (C) 2004-2010, International Business Machines Corporation and * - -Copyright (C) 2004-2014, International Business Machines Corporation and - -Copyright (C) 2004-2015, International Business Machines - -Copyright (C) 2004-2016, Google Inc, International Business Machines - -Copyright (C) 2004-2016, International Business Machines Corporation and - -Copyright (C) 2004-2016, International Business Machines Corporation and * - -Copyright (C) 2005 - 2012, International Business Machines Corporation and * - -Copyright (C) 2005 - 2014, International Business Machines Corporation and * - -Copyright (C) 2005-2006, International Business Machines - -Copyright (C) 2005-2010, International Business Machines - -Copyright (C) 2005-2011, International Business Machines Corporation and * - -Copyright (C) 2005-2012, International Business Machines Corporation and * - -Copyright (C) 2005-2012, International Business Machines Corporation and * - -Copyright (C) 2005-2013, International Business Machines Corporation and * - -Copyright (C) 2005-2015, International Business Machines Corporation and - -Copyright (C) 2005-2016 International Business Machines Corporation and - -Copyright (C) 2005-2016, International Business Machines Corporation and - -Copyright (C) 2005-2016, International Business Machines Corporation and * - -Copyright (C) 2006-2009, Google, International Business Machines Corporation * - -Copyright (C) 2006-2015, International Business Machines Corporation and - -Copyright (C) 2006-2016, Google, International Business Machines Corporation - -Copyright (C) 2007, International Business Machines Corporation and * - -Copyright (C) 2007-2008, International Business Machines Corporation and * - -Copyright (C) 2007-2009, International Business Machines Corporation and * - -Copyright (C) 2007-2010, International Business Machines Corporation and * - -Copyright (C) 2007-2010, International Business Machines Corporation and * - -Copyright (C) 2007-2011, International Business Machines Corporation and * - -Copyright (C) 2007-2011, International Business Machines Corporation and others. - -Copyright (C) 2007-2012, International Business Machines Corporation and * - -Copyright (C) 2007-2013, International Business Machines Corporation and * - -Copyright (C) 2007-2014, International Business Machines Corporation and * - -Copyright (C) 2007-2014, International Business Machines Corporation and * - -Copyright (C) 2007-2015, Google Inc, International Business Machines Corporation - -Copyright (C) 2007-2015, International Business Machines Corporation and - -Copyright (C) 2007-2015, International Business Machines Corporation and * - -Copyright (C) 2007-2016, International Business Machines - -Copyright (C) 2007-2016, International Business Machines Corporation and - -Copyright (C) 2007-2016, International Business Machines Corporation and * - -Copyright (C) 2008-2009, Google, International Business Machines - -Copyright (C) 2008-2009, International Business Machines - -Copyright (C) 2008-2014, Google, International Business Machines - -Copyright (C) 2008-2014, International Business Machines Corporation and * - -Copyright (C) 2008-2015, Google, International Business Machines Corporation and - -Copyright (C) 2008-2015, International Business Machines Corporation and - -Copyright (C) 2008-2016 International Business Machines Corporation - -Copyright (C) 2008-2016, Google Inc, International Business Machines Corporation - -Copyright (C) 2008-2016, International Business Machines - -Copyright (C) 2008-2016, International Business Machines Corporation and - -Copyright (C) 2009 , Yahoo! Inc. * - -Copyright (C) 2009, Google, International Business Machines Corporation and * - -Copyright (C) 2009, International Business Machines Corporation and * - -Copyright (C) 2009, International Business Machines Corporation and * - -Copyright (C) 2009,2016 International Business Machines Corporation and - -Copyright (C) 2009-2010, Google, International Business Machines Corporation * - -Copyright (C) 2009-2010, International Business Machines Corporation and * - -Copyright (C) 2009-2011, Google, International Business Machines Corporation - -Copyright (C) 2009-2011, International Business Machines Corporation and * - -Copyright (C) 2009-2012, International Business Machines Corporation and * - -Copyright (C) 2009-2013, International Business Machines Corporation and * - -Copyright (C) 2009-2014, International Business Machines - -Copyright (C) 2009-2014, International Business Machines Corporation and - -Copyright (C) 2009-2014, International Business Machines Corporation and * - -Copyright (C) 2009-2015, Google, International Business Machines Corporation - -Copyright (C) 2009-2015, International Business Machines - -Copyright (C) 2009-2015, International Business Machines Corporation and - -Copyright (C) 2009-2015, International Business Machines Corporation and * - -Copyright (C) 2009-2016, Google, Inc.; International Business Machines Corporation - -Copyright (C) 2009-2016, International Business Machines - -Copyright (C) 2009-2016, International Business Machines Corporation and - -Copyright (C) 2009-2016, International Business Machines Corporation and * - -Copyright (C) 2009-2016, International Business Machines Corporation, - -Copyright (C) 2010, International Business Machines - -Copyright (C) 2010, International Business Machines Corporation and * - -Copyright (C) 2010-2011, Google, International Business Machines * - -Copyright (C) 2010-2013, International Business Machines Corporation and * - -Copyright (C) 2010-2014, Google, International Business Machines Corporation * - -Copyright (C) 2010-2014, International Business Machines - -Copyright (C) 2010-2015, International Business Machines - -Copyright (C) 2010-2016, Google, Inc.; International Business Machines * - -Copyright (C) 2010-2016, International Business Machines - -Copyright (C) 2011, International Business Machines - -Copyright (C) 2011, International Business Machines Corporation and * - -Copyright (C) 2011-2014, International Business Machines - -Copyright (C) 2011-2016, International Business Machines Corporation - -Copyright (C) 2011-2016, International Business Machines Corporation and - -Copyright (C) 2011-2016, International Business Machines Corporation and * - -Copyright (C) 2012, International Business Machines Corporation and * - -Copyright (C) 2012-2014, International Business Machines - -Copyright (C) 2012-2014, International Business Machines Corporation and * - -Copyright (C) 2012-2015, International Business Machines - -Copyright (C) 2012-2015, International Business Machines Corporation and * - -Copyright (C) 2012-2016, Google, International Business Machines Corporation and - -Copyright (C) 2012-2016, International Business Machines - -Copyright (C) 2012-2016, International Business Machines Corporation and - -Copyright (C) 2012-2016, International Business Machines Corporation and * - -Copyright (C) 2013, Google Inc, International Business Machines Corporation and * - -Copyright (C) 2013, International Business Machines Corporation and * - -Copyright (C) 2013-2014, International Business Machines - -Copyright (C) 2013-2014, International Business Machines Corporation and * - -Copyright (C) 2013-2015, International Business Machines - -Copyright (C) 2013-2015, International Business Machines Corporation and - -Copyright (C) 2013-2016, International Business Machines Corporation and - -Copyright (C) 2014, International Business Machines Corporation and - -Copyright (C) 2014, International Business Machines Corporation and * - -Copyright (C) 2014-2015, International Business Machines Corporation and - -Copyright (C) 2014-2016, International Business Machines Corporation and - -Copyright (C) 2015, International Business Machines Corporation and - -Copyright (C) 2015-2016, International Business Machines Corporation and - -Copyright (C) 2016, International Business Machines Corporation and - -Copyright (C) 2016, International Business Machines Corporation and * - -Copyright (c) 2001-2011, International Business Machines - -Copyright (c) 2001-2016, International Business Machines - -Copyright (c) 2001-2016, International Business Machines Corporation and - -Copyright (c) 2002, International Business Machines Corporation - -Copyright (c) 2002-2007, International Business Machines Corporation - -Copyright (c) 2002-2010, International Business Machines - -Copyright (c) 2002-2010, International Business Machines Corporation - -Copyright (c) 2002-2011, International Business Machines Corporation - -Copyright (c) 2002-2014, Google, International Business Machines - -Copyright (c) 2002-2014, International Business Machines Corporation - -Copyright (c) 2002-2015, International Business Machines - -Copyright (c) 2002-2016, International Business Machines - -Copyright (c) 2003-2010, International Business Machines - -Copyright (c) 2003-2011, International Business Machines - -Copyright (c) 2003-2016 International Business Machines - -Copyright (c) 2003-2016, International Business Machines - -Copyright (c) 2004-2010, International Business Machines - -Copyright (c) 2004-2013, International Business Machines - -Copyright (c) 2004-2014, International Business Machines - -Copyright (c) 2004-2015, International Business Machines - -Copyright (c) 2004-2016, International Business Machines - -Copyright (c) 2007-2009 International Business Machines Corporation and * - -Copyright (c) 2007-2015 International Business Machines Corporation and * - -Copyright (c) 2013-2014, International Business Machines - -Copyright IBM Corporation, 1996-2016. All Rights Reserved. */ - -Copyright IBM Corporation, 1997, 2000, 2005, 2007. All Rights Reserved. */ - -copyright=" Copyright (c) IBM Corporation 1996, 2000. All rights reserved. "; diff --git a/distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-67.1/LICENSE b/distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-71.1/LICENSE similarity index 77% rename from distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-67.1/LICENSE rename to distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-71.1/LICENSE index e7f98ed18391..80b587723a67 100644 --- a/distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-67.1/LICENSE +++ b/distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-71.1/LICENSE @@ -1,6 +1,19 @@ -COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE -Copyright © 1991-2020 Unicode, Inc. All rights reserved. +See Terms of Use +for definitions of Unicode Inc.’s Data Files and Software. + +NOTICE TO USER: Carefully read the following legal agreement. +BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S +DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), +YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. +IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE +THE DATA FILES OR SOFTWARE. + +COPYRIGHT AND PERMISSION NOTICE + +Copyright © 1991-2022 Unicode, Inc. All rights reserved. Distributed under the Terms of Use in https://www.unicode.org/copyright.html. Permission is hereby granted, free of charge, to any person obtaining @@ -32,7 +45,7 @@ shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. ---------------------- +---------------------------------------------------------------------- Third-Party Software Licenses @@ -40,7 +53,9 @@ This section contains third-party software notices and/or additional terms for licensed third-party software components included within ICU libraries. -1. ICU License - ICU 1.8.1 to ICU 57.1 +---------------------------------------------------------------------- + +ICU License - ICU 1.8.1 to ICU 57.1 COPYRIGHT AND PERMISSION NOTICE @@ -75,7 +90,9 @@ of the copyright holder. All trademarks and registered trademarks mentioned herein are the property of their respective owners. -2. Chinese/Japanese Word Break Dictionary Data (cjdict.txt) +---------------------------------------------------------------------- + +Chinese/Japanese Word Break Dictionary Data (cjdict.txt) # The Google Chrome software developed by Google is licensed under # the BSD license. Other software included in this distribution is @@ -279,33 +296,33 @@ property of their respective owners. # # ---------------COPYING.ipadic-----END---------------------------------- -3. Lao Word Break Dictionary Data (laodict.txt) +---------------------------------------------------------------------- - # Copyright (c) 2013 International Business Machines Corporation - # and others. All Rights Reserved. +Lao Word Break Dictionary Data (laodict.txt) + + # Copyright (C) 2016 and later: Unicode, Inc. and others. + # License & terms of use: http://www.unicode.org/copyright.html + # Copyright (c) 2015 International Business Machines Corporation + # and others. All Rights Reserved. # - # Project: http://code.google.com/p/lao-dictionary/ - # Dictionary: http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt - # License: http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt - # (copied below) + # Project: https://github.com/rober42539/lao-dictionary + # Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt + # License: https://github.com/rober42539/lao-dictionary/LICENSE.txt + # (copied below) # - # This file is derived from the above dictionary, with slight - # modifications. + # This file is derived from the above dictionary version of Nov 22, 2020 # ---------------------------------------------------------------------- # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. # All rights reserved. # # Redistribution and use in source and binary forms, with or without - # modification, - # are permitted provided that the following conditions are met: - # - # - # Redistributions of source code must retain the above copyright notice, this - # list of conditions and the following disclaimer. Redistributions in - # binary form must reproduce the above copyright notice, this list of - # conditions and the following disclaimer in the documentation and/or - # other materials provided with the distribution. + # modification, are permitted provided that the following conditions are met: # + # Redistributions of source code must retain the above copyright notice, this + # list of conditions and the following disclaimer. Redistributions in binary + # form must reproduce the above copyright notice, this list of conditions and + # the following disclaimer in the documentation and/or other materials + # provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT @@ -321,7 +338,9 @@ property of their respective owners. # OF THE POSSIBILITY OF SUCH DAMAGE. # -------------------------------------------------------------------------- -4. Burmese Word Break Dictionary Data (burmesedict.txt) +---------------------------------------------------------------------- + +Burmese Word Break Dictionary Data (burmesedict.txt) # Copyright (c) 2014 International Business Machines Corporation # and others. All Rights Reserved. @@ -361,7 +380,9 @@ property of their respective owners. # SUCH DAMAGE. # -------------------------------------------------------------------------- -5. Time Zone Database +---------------------------------------------------------------------- + +Time Zone Database ICU uses the public domain data and code derived from Time Zone Database for its time zone support. The ownership of the TZ database @@ -384,7 +405,9 @@ Database section 7. # making a contribution to the database or code waives all rights to # future claims in that contribution or in the TZ Database. -6. Google double-conversion +---------------------------------------------------------------------- + +Google double-conversion Copyright 2006-2011, the V8 project authors. All rights reserved. Redistribution and use in source and binary forms, with or without @@ -412,3 +435,85 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- + +File: aclocal.m4 (only for ICU4C) +Section: pkg.m4 - Macros to locate and utilise pkg-config. + + +Copyright © 2004 Scott James Remnant . +Copyright © 2012-2015 Dan Nicholson + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. + +As a special exception to the GNU General Public License, if you +distribute this file as part of a program that contains a +configuration script generated by Autoconf, you may include it under +the same distribution terms that you use for the rest of that +program. + + +(The condition for the exception is fulfilled because +ICU4C includes a configuration script generated by Autoconf, +namely the `configure` script.) + +---------------------------------------------------------------------- + +File: config.guess (only for ICU4C) + + +This file is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, see . + +As a special exception to the GNU General Public License, if you +distribute this file as part of a program that contains a +configuration script generated by Autoconf, you may include it under +the same distribution terms that you use for the rest of that +program. This Exception is an additional permission under section 7 +of the GNU General Public License, version 3 ("GPLv3"). + + +(The condition for the exception is fulfilled because +ICU4C includes a configuration script generated by Autoconf, +namely the `configure` script.) + +---------------------------------------------------------------------- + +File: install-sh (only for ICU4C) + + +Copyright 1991 by the Massachusetts Institute of Technology + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation, and that the name of M.I.T. not be used in advertising or +publicity pertaining to distribution of the software without specific, +written prior permission. M.I.T. makes no representations about the +suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. diff --git a/distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-71.1/NOTICES b/distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-71.1/NOTICES new file mode 100644 index 000000000000..cd10b6ae8bb2 --- /dev/null +++ b/distribution/lib/Standard/Base/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-71.1/NOTICES @@ -0,0 +1 @@ +Copyright (C) 1996-2004, International Business Machines Corporation and * diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/NOTICE b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/NOTICE index 21558c048d27..8c92e7e49474 100644 --- a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/NOTICE +++ b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/NOTICE @@ -2,48 +2,48 @@ Enso Copyright 2020 - 2022 New Byte Order sp. z o. o. 'redshift-jdbc42', licensed under the Apache License, Version 2.0, is distributed with the Database. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.amazon.redshift.redshift-jdbc42-2.1.0.1`. +The license information can be found along with the copyright notices. +Copyright notices related to this dependency can be found in the directory `com.amazon.redshift.redshift-jdbc42-2.1.0.9`. 'aws-java-sdk-core', licensed under the Apache License, Version 2.0, is distributed with the Database. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.amazonaws.aws-java-sdk-core-1.12.23`. +Copyright notices related to this dependency can be found in the directory `com.amazonaws.aws-java-sdk-core-1.12.273`. 'aws-java-sdk-redshift', licensed under the Apache License, Version 2.0, is distributed with the Database. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.amazonaws.aws-java-sdk-redshift-1.12.23`. +Copyright notices related to this dependency can be found in the directory `com.amazonaws.aws-java-sdk-redshift-1.12.273`. 'aws-java-sdk-sts', licensed under the Apache License, Version 2.0, is distributed with the Database. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.amazonaws.aws-java-sdk-sts-1.12.23`. +Copyright notices related to this dependency can be found in the directory `com.amazonaws.aws-java-sdk-sts-1.12.273`. 'jmespath-java', licensed under the Apache License, Version 2.0, is distributed with the Database. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.amazonaws.jmespath-java-1.12.23`. +Copyright notices related to this dependency can be found in the directory `com.amazonaws.jmespath-java-1.12.273`. 'jackson-annotations', licensed under the The Apache Software License, Version 2.0, is distributed with the Database. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.core.jackson-annotations-2.12.3`. +The license information can be found along with the copyright notices. +Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.core.jackson-annotations-2.12.6`. 'jackson-core', licensed under the The Apache Software License, Version 2.0, is distributed with the Database. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.core.jackson-core-2.12.3`. +The license information can be found along with the copyright notices. +Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.core.jackson-core-2.12.6`. 'jackson-databind', licensed under the The Apache Software License, Version 2.0, is distributed with the Database. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.core.jackson-databind-2.12.3`. +The license information can be found along with the copyright notices. +Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.core.jackson-databind-2.12.6.1`. 'jackson-dataformat-cbor', licensed under the The Apache Software License, Version 2.0, is distributed with the Database. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.3`. +Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.6`. 'commons-codec', licensed under the Apache License, Version 2.0, is distributed with the Database. @@ -78,7 +78,7 @@ Copyright notices related to this dependency can be found in the directory `org. 'postgresql', licensed under the BSD-2-Clause, is distributed with the Database. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.postgresql.postgresql-42.3.6`. +Copyright notices related to this dependency can be found in the directory `org.postgresql.postgresql-42.4.0`. 'sqlite-jdbc', licensed under the The Apache Software License, Version 2.0, is distributed with the Database. diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazon.redshift.redshift-jdbc42-2.1.0.1/NOTICES b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazon.redshift.redshift-jdbc42-2.1.0.1/NOTICES deleted file mode 100644 index dd59caa7a847..000000000000 --- a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazon.redshift.redshift-jdbc42-2.1.0.1/NOTICES +++ /dev/null @@ -1,41 +0,0 @@ -Copyright (C) 2005 - -Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER - -Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. - -Copyright (c) 2003, PostgreSQL Global Development Group - -Copyright (c) 2004, Open Cloud Limited. - -Copyright (c) 2004, PostgreSQL Global Development Group - -Copyright (c) 2004, PostgreSQL Global Development Group. - -Copyright (c) 2005, PostgreSQL Global Development Group - -Copyright (c) 2006, PostgreSQL Global Development Group - -Copyright (c) 2007, PostgreSQL Global Development Group - -Copyright (c) 2008, PostgreSQL Global Development Group - -Copyright (c) 2009, PostgreSQL Global Development Group - -Copyright (c) 2011, PostgreSQL Global Development Group - -Copyright (c) 2012, PostgreSQL Global Development Group - -Copyright (c) 2014, PostgreSQL Global Development Group - -Copyright (c) 2015, PostgreSQL Global Development Group - -Copyright (c) 2016, PostgreSQL Global Development Group - -Copyright (c) 2017, PostgreSQL Global Development Group - -Copyright (c) 2018, PostgreSQL Global Development Group - -Copyright (c) 2019, PostgreSQL Global Development Group - -Copyright (c) 2020, PostgreSQL Global Development Group diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazon.redshift.redshift-jdbc42-2.1.0.1/THIRD_PARTY_LICENSES b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazon.redshift.redshift-jdbc42-2.1.0.1/THIRD_PARTY_LICENSES deleted file mode 100644 index 533bd91c6031..000000000000 --- a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazon.redshift.redshift-jdbc42-2.1.0.1/THIRD_PARTY_LICENSES +++ /dev/null @@ -1,67 +0,0 @@ - --License Start-- - BSD-2-Clause License: - - Copyright (c) 1997, PostgreSQL Global Development Group - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - - --License End-- - -This product includes software that is licensed under the Apache License, -Version 2.0 (listed below). - ---License Start-- -AWS SDK for Java -Copyright © 2015, Amazon Web Services, Inc. or its affiliates. All rights -reserved. - -Apache Commons Codec -Copyright © 2002-2014 The Apache Software Foundation - -Apache Commons Logging -Copyright © 2001-2014 The Apache Software Foundation - -Apache HttpComponents Client -Copyright © 1999-2012 The Apache Software Foundation - -Apache HttpComponents Core -Copyright © 1999-2012 The Apache Software Foundation - -Jackson -Copyright © 2009-2011 FasterXML, LLC - -Joda-Time -Copyright © 2005–2015 Joda.org. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); you may -not use this file except in compliance with the License. You may obtain a -copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -License for the specific language governing permissions and limitations -under the License. ---License End-- \ No newline at end of file diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazon.redshift.redshift-jdbc42-2.1.0.1/LICENSE b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazon.redshift.redshift-jdbc42-2.1.0.9/LICENSE similarity index 100% rename from distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazon.redshift.redshift-jdbc42-2.1.0.1/LICENSE rename to distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazon.redshift.redshift-jdbc42-2.1.0.9/LICENSE diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazon.redshift.redshift-jdbc42-2.1.0.9/NOTICES b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazon.redshift.redshift-jdbc42-2.1.0.9/NOTICES new file mode 100644 index 000000000000..7fe5024e56a9 --- /dev/null +++ b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazon.redshift.redshift-jdbc42-2.1.0.9/NOTICES @@ -0,0 +1,7 @@ +Copyright (C) 2005 + +Copyright (c) 2003, PostgreSQL Global Development Group + +Copyright (c) 2004, Open Cloud Limited. + +Copyright (c) 2004, PostgreSQL Global Development Group diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-core-1.12.23/NOTICES b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-core-1.12.23/NOTICES deleted file mode 100644 index 899aa1d1fa0c..000000000000 --- a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-core-1.12.23/NOTICES +++ /dev/null @@ -1,45 +0,0 @@ -Copyright (c) 2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Copyright (c) 2016-2019. Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Copyright (c) 2016. Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Copyright (c) 2019. Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Copyright 2010-2021 Amazon.com, Inc. or its affiliates. All Rights - -Copyright 2010-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Copyright 2011-2021 Amazon Technologies, Inc. - -Copyright 2011-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Copyright 2012-2021 Amazon Technologies, Inc. - -Copyright 2012-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Copyright 2013-2021 Amazon Technologies, Inc. - -Copyright 2013-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Copyright 2014-2021 Amazon Technologies, Inc. - -Copyright 2014-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Copyright 2015-2021 Amazon Technologies, Inc. - -Copyright 2015-2021 Amazon.com, Inc. or its affiliates. All Rights - -Copyright 2015-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Copyright 2018-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Copyright 2019-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Copyright 2020-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Portions copyright 2006-2009 James Murty. Please see LICENSE.txt diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-core-1.12.273/NOTICES b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-core-1.12.273/NOTICES new file mode 100644 index 000000000000..e97c9444a7d1 --- /dev/null +++ b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-core-1.12.273/NOTICES @@ -0,0 +1,5 @@ +Copyright (c) 2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. + +Portions copyright 2006-2009 James Murty. Please see LICENSE.txt + +this work for additional information regarding copyright ownership. diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-redshift-1.12.23/NOTICES b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-redshift-1.12.23/NOTICES deleted file mode 100644 index a67dfda32356..000000000000 --- a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-redshift-1.12.23/NOTICES +++ /dev/null @@ -1 +0,0 @@ -Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-redshift-1.12.273/NOTICES b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-redshift-1.12.273/NOTICES new file mode 100644 index 000000000000..13a24e25fc40 --- /dev/null +++ b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-redshift-1.12.273/NOTICES @@ -0,0 +1 @@ +Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-sts-1.12.23/NOTICES b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-sts-1.12.23/NOTICES deleted file mode 100644 index f5b827138749..000000000000 --- a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-sts-1.12.23/NOTICES +++ /dev/null @@ -1,13 +0,0 @@ -Copyright 2010-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Copyright 2011-2021 Amazon Technologies, Inc. - -Copyright 2011-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Copyright 2012-2021 Amazon Technologies, Inc. - -Copyright 2013-2021 Amazon Technologies, Inc. - -Copyright 2014-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. - -Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-sts-1.12.273/NOTICES b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-sts-1.12.273/NOTICES new file mode 100644 index 000000000000..5c7022e3d9c0 --- /dev/null +++ b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.aws-java-sdk-sts-1.12.273/NOTICES @@ -0,0 +1 @@ +Copyright 2010-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.jmespath-java-1.12.23/NOTICES b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.jmespath-java-1.12.23/NOTICES deleted file mode 100644 index 0c7e94969c2c..000000000000 --- a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.jmespath-java-1.12.23/NOTICES +++ /dev/null @@ -1,14 +0,0 @@ -/* - * Copyright 2010-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"). - * You may not use this file except in compliance with the License. - * A copy of the License is located at - * - * http://aws.amazon.com/apache2.0 - * - * or in the "license" file accompanying this file. This file is distributed - * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either - * express or implied. See the License for the specific language governing - * permissions and limitations under the License. - */ diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.jmespath-java-1.12.273/NOTICES b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.jmespath-java-1.12.273/NOTICES new file mode 100644 index 000000000000..5c7022e3d9c0 --- /dev/null +++ b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.amazonaws.jmespath-java-1.12.273/NOTICES @@ -0,0 +1 @@ +Copyright 2010-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.12.3/NOTICES b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.12.3/NOTICES deleted file mode 100644 index f8c21f8bcbb0..000000000000 --- a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.12.3/NOTICES +++ /dev/null @@ -1,2 +0,0 @@ -See https://github.com/FasterXML/jackson-annotations for more information - diff --git a/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.13.1/LICENSE b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.12.6/LICENSE similarity index 100% rename from distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.13.1/LICENSE rename to distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.12.6/LICENSE diff --git a/tools/legal-review/launcher/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/copyright-add b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.12.6/LICENSE similarity index 100% rename from tools/legal-review/launcher/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/copyright-add rename to distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.12.6/LICENSE diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.12.3/NOTICE b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.12.6/NOTICE similarity index 100% rename from distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.12.3/NOTICE rename to distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.12.6/NOTICE diff --git a/tools/legal-review/Database/com.fasterxml.jackson.core.jackson-core-2.12.3/copyright-keep b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.12.6/NOTICES similarity index 100% rename from tools/legal-review/Database/com.fasterxml.jackson.core.jackson-core-2.12.3/copyright-keep rename to distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.12.6/NOTICES diff --git a/tools/legal-review/project-manager/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/copyright-add b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.12.6.1/LICENSE similarity index 100% rename from tools/legal-review/project-manager/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/copyright-add rename to distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.12.6.1/LICENSE diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.3/CREDITS-2.x.txt b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.6/CREDITS-2.x.txt similarity index 100% rename from distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.3/CREDITS-2.x.txt rename to distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.6/CREDITS-2.x.txt diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/org.postgresql.postgresql-42.3.6/NOTICES b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/org.postgresql.postgresql-42.3.6/NOTICES deleted file mode 100644 index 7fc4b13f91c7..000000000000 --- a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/org.postgresql.postgresql-42.3.6/NOTICES +++ /dev/null @@ -1,43 +0,0 @@ -# Just Czech translation ;o) -# Copyright (C) 2005 -# This file is distributed under the same license as the PACKAGE package. -# Petr Dittrich , 2005 - -/* - * Copyright (c) 2003, PostgreSQL Global Development Group - * See the LICENSE file in the project root for more information. - */ - -// Copyright (c) 2004, Open Cloud Limited. - -Copyright (c) 2004, PostgreSQL Global Development Group - -Copyright (c) 2005, PostgreSQL Global Development Group - -Copyright (c) 2006, PostgreSQL Global Development Group - -Copyright (c) 2007, PostgreSQL Global Development Group - -Copyright (c) 2008, PostgreSQL Global Development Group - -Copyright (c) 2009, PostgreSQL Global Development Group - -Copyright (c) 2011, PostgreSQL Global Development Group - -Copyright (c) 2012, PostgreSQL Global Development Group - -Copyright (c) 2014, PostgreSQL Global Development Group - -Copyright (c) 2015, PostgreSQL Global Development Group - -Copyright (c) 2016, PostgreSQL Global Development Group - -Copyright (c) 2017, PostgreSQL Global Development Group - -Copyright (c) 2018, PostgreSQL Global Development Group - -Copyright (c) 2019, PostgreSQL Global Development Group - -Copyright (c) 2020, PostgreSQL Global Development Group - -Copyright (c) 2021, PostgreSQL Global Development Group diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/org.postgresql.postgresql-42.3.6/LICENSE b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/org.postgresql.postgresql-42.4.0/LICENSE similarity index 100% rename from distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/org.postgresql.postgresql-42.3.6/LICENSE rename to distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/org.postgresql.postgresql-42.4.0/LICENSE diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/org.postgresql.postgresql-42.4.0/NOTICES b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/org.postgresql.postgresql-42.4.0/NOTICES new file mode 100644 index 000000000000..15503ccf2c2a --- /dev/null +++ b/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/org.postgresql.postgresql-42.4.0/NOTICES @@ -0,0 +1,5 @@ +Copyright (C) 2005 + +Copyright (c) 2003, PostgreSQL Global Development Group + +Copyright (c) 2004, Open Cloud Limited. diff --git a/distribution/lib/Standard/Image/0.0.0-dev/THIRD-PARTY/NOTICE b/distribution/lib/Standard/Image/0.0.0-dev/THIRD-PARTY/NOTICE index 28dddc86a34c..b0d2b75fb506 100644 --- a/distribution/lib/Standard/Image/0.0.0-dev/THIRD-PARTY/NOTICE +++ b/distribution/lib/Standard/Image/0.0.0-dev/THIRD-PARTY/NOTICE @@ -3,5 +3,5 @@ Copyright 2020 - 2022 New Byte Order sp. z o. o. 'opencv', licensed under the BSD License, is distributed with the Image. The license file can be found at `licenses/BSD-3-Clause`. -Copyright notices related to this dependency can be found in the directory `org.openpnp.opencv-4.5.1-0`. +Copyright notices related to this dependency can be found in the directory `org.openpnp.opencv-4.5.1-2`. diff --git a/distribution/lib/Standard/Image/0.0.0-dev/THIRD-PARTY/org.openpnp.opencv-4.5.1-0/NOTICES b/distribution/lib/Standard/Image/0.0.0-dev/THIRD-PARTY/org.openpnp.opencv-4.5.1-0/NOTICES deleted file mode 100644 index d4e9804ae515..000000000000 --- a/distribution/lib/Standard/Image/0.0.0-dev/THIRD-PARTY/org.openpnp.opencv-4.5.1-0/NOTICES +++ /dev/null @@ -1,9 +0,0 @@ -1. Redistributions of source code must retain the above copyright notice, this - -2. Redistributions in binary form must reproduce the above copyright notice, - -Copyright (c) 2015, Advanced Micro Devices, Inc. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND diff --git a/distribution/lib/Standard/Image/0.0.0-dev/THIRD-PARTY/org.openpnp.opencv-4.5.1-2/NOTICES b/distribution/lib/Standard/Image/0.0.0-dev/THIRD-PARTY/org.openpnp.opencv-4.5.1-2/NOTICES new file mode 100644 index 000000000000..989300ad8f4e --- /dev/null +++ b/distribution/lib/Standard/Image/0.0.0-dev/THIRD-PARTY/org.openpnp.opencv-4.5.1-2/NOTICES @@ -0,0 +1,3 @@ +1. Redistributions of source code must retain the above copyright notice, this + +Copyright (c) 2015, Advanced Micro Devices, Inc. diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/NOTICE b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/NOTICE index f9990f91be68..06970576c496 100644 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/NOTICE +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/NOTICE @@ -1,24 +1,19 @@ Enso Copyright 2020 - 2022 New Byte Order sp. z o. o. -'woodstox-core', licensed under the The Apache License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.fasterxml.woodstox.woodstox-core-5.2.1`. - - 'curvesapi', licensed under the BSD License, is distributed with the Table. The license file can be found at `licenses/BSD-3-Clause`. -Copyright notices related to this dependency can be found in the directory `com.github.virtuald.curvesapi-1.06`. +Copyright notices related to this dependency can be found in the directory `com.github.virtuald.curvesapi-1.07`. 'icu4j', licensed under the Unicode/ICU License, is distributed with the Table. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `com.ibm.icu.icu4j-67.1`. +Copyright notices related to this dependency can be found in the directory `com.ibm.icu.icu4j-71.1`. 'univocity-parsers', licensed under the Apache 2, is distributed with the Table. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.univocity.univocity-parsers-2.9.0`. +Copyright notices related to this dependency can be found in the directory `com.univocity.univocity-parsers-2.9.1`. 'SparseBitSet', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. @@ -31,14 +26,9 @@ The license file can be found at `licenses/APACHE2.0`. Copyright notices related to this dependency can be found in the directory `commons-codec.commons-codec-1.15`. -'commons-io', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. +'commons-io', licensed under the Apache License, Version 2.0, is distributed with the Table. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `commons-io.commons-io-1.3.1`. - - -'graphics2d', licensed under the Apache License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `de.rototor.pdfbox.graphics2d-0.30`. +Copyright notices related to this dependency can be found in the directory `commons-io.commons-io-2.11.0`. 'commons-collections4', licensed under the Apache License, Version 2.0, is distributed with the Table. @@ -48,7 +38,7 @@ Copyright notices related to this dependency can be found in the directory `org. 'commons-compress', licensed under the Apache License, Version 2.0, is distributed with the Table. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.commons.commons-compress-1.20`. +Copyright notices related to this dependency can be found in the directory `org.apache.commons.commons-compress-1.21`. 'commons-math3', licensed under the Apache License, Version 2.0, is distributed with the Table. @@ -58,245 +48,25 @@ Copyright notices related to this dependency can be found in the directory `org. 'log4j-api', licensed under the Apache License, Version 2.0, is distributed with the Table. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.logging.log4j.log4j-api-2.14.0`. - - -'fontbox', licensed under the Apache License, Version 2.0, is distributed with the Table. -The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.apache.pdfbox.fontbox-2.0.22`. - - -'pdfbox', licensed under the Apache License, Version 2.0, is distributed with the Table. -The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.apache.pdfbox.pdfbox-2.0.22`. +Copyright notices related to this dependency can be found in the directory `org.apache.logging.log4j.log4j-api-2.17.2`. 'poi', licensed under the Apache License, Version 2.0, is distributed with the Table. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.apache.poi.poi-5.0.0`. +Copyright notices related to this dependency can be found in the directory `org.apache.poi.poi-5.2.2`. 'poi-ooxml', licensed under the Apache License, Version 2.0, is distributed with the Table. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.apache.poi.poi-ooxml-5.0.0`. +Copyright notices related to this dependency can be found in the directory `org.apache.poi.poi-ooxml-5.2.2`. 'poi-ooxml-lite', licensed under the Apache License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.poi.poi-ooxml-lite-5.0.0`. - - -'xmlsec', licensed under the Apache License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.santuario.xmlsec-2.2.1`. - - -'xmlbeans', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlbeans.xmlbeans-5.0.1`. - - -'batik-all', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-all-1.13`. - - -'batik-anim', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-anim-1.13`. - - -'batik-awt-util', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-awt-util-1.13`. - - -'batik-bridge', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-bridge-1.13`. - - -'batik-codec', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-codec-1.13`. - - -'batik-constants', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-constants-1.13`. - - -'batik-css', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-css-1.13`. - - -'batik-dom', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-dom-1.13`. - - -'batik-ext', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-ext-1.13`. - - -'batik-extension', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-extension-1.13`. - - -'batik-gui-util', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-gui-util-1.13`. - - -'batik-gvt', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-gvt-1.13`. - - -'batik-i18n', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-i18n-1.13`. - - -'batik-parser', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-parser-1.13`. - - -'batik-rasterizer', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-rasterizer-1.13`. - - -'batik-rasterizer-ext', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-rasterizer-ext-1.13`. - - -'batik-script', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-script-1.13`. - - -'batik-shared-resources', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-shared-resources-1.13`. - - -'batik-slideshow', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-slideshow-1.13`. - - -'batik-squiggle', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-squiggle-1.13`. - - -'batik-squiggle-ext', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-squiggle-ext-1.13`. - - -'batik-svg-dom', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-svg-dom-1.13`. - - -'batik-svgbrowser', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-svgbrowser-1.13`. - - -'batik-svggen', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-svggen-1.13`. - - -'batik-svgpp', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-svgpp-1.13`. - - -'batik-svgrasterizer', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-svgrasterizer-1.13`. - - -'batik-swing', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-swing-1.13`. - - -'batik-transcoder', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-transcoder-1.13`. - - -'batik-ttf2svg', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-ttf2svg-1.13`. - - -'batik-util', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-util-1.13`. - - -'batik-xml', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.batik-xml-1.13`. - - -'xmlgraphics-commons', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.apache.xmlgraphics.xmlgraphics-commons-2.4`. - - -'bcpkix-jdk15on', licensed under the Bouncy Castle Licence, is distributed with the Table. -The license file can be found at `licenses/Bouncy_Castle_Licence.txt`. -Copyright notices related to this dependency can be found in the directory `org.bouncycastle.bcpkix-jdk15on-1.68`. - - -'bcprov-jdk15on', licensed under the Bouncy Castle Licence, is distributed with the Table. -The license file can be found at `licenses/Bouncy_Castle_Licence.txt`. -Copyright notices related to this dependency can be found in the directory `org.bouncycastle.bcprov-jdk15on-1.68`. - - -'stax2-api', licensed under the The BSD License, is distributed with the Table. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.codehaus.woodstox.stax2-api-4.2`. - - -'jcl-over-slf4j', licensed under the Apache License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.slf4j.jcl-over-slf4j-1.7.30`. +Copyright notices related to this dependency can be found in the directory `org.apache.poi.poi-ooxml-lite-5.2.2`. -'slf4j-api', licensed under the MIT License, is distributed with the Table. -The license file can be found at `licenses/MIT`. -Copyright notices related to this dependency can be found in the directory `org.slf4j.slf4j-api-1.7.30`. - - -'serializer', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `xalan.serializer-2.7.2`. - - -'xalan', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `xalan.xalan-2.7.2`. - - -'xml-apis', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. -The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `xml-apis.xml-apis-1.4.01`. - - -'xml-apis-ext', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. +'xmlbeans', licensed under the The Apache Software License, Version 2.0, is distributed with the Table. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `xml-apis.xml-apis-ext-1.3.04`. +Copyright notices related to this dependency can be found in the directory `org.apache.xmlbeans.xmlbeans-5.1.0`. diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.fasterxml.woodstox.woodstox-core-5.2.1/LICENSE b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.fasterxml.woodstox.woodstox-core-5.2.1/LICENSE deleted file mode 100644 index 6acf75483f9b..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.fasterxml.woodstox.woodstox-core-5.2.1/LICENSE +++ /dev/null @@ -1,8 +0,0 @@ -This copy of Jackson JSON processor databind module is licensed under the -Apache (Software) License, version 2.0 ("the License"). -See the License for details about distribution rights, and the -specific rights regarding derivate works. - -You may obtain a copy of the License at: - -http://www.apache.org/licenses/LICENSE-2.0 diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.fasterxml.woodstox.woodstox-core-5.2.1/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.fasterxml.woodstox.woodstox-core-5.2.1/NOTICES deleted file mode 100644 index d256da56b1b5..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.fasterxml.woodstox.woodstox-core-5.2.1/NOTICES +++ /dev/null @@ -1,5 +0,0 @@ -Copyright (c) 2004 Tatu Saloranta, tatu.saloranta@iki.fi - -Copyright (c) 2004- Tatu Saloranta, tatu.saloranta@iki.fi - -Copyright (c) 2005 Tatu Saloranta, tatu.saloranta@iki.fi diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.github.virtuald.curvesapi-1.06/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.github.virtuald.curvesapi-1.07/NOTICES similarity index 100% rename from distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.github.virtuald.curvesapi-1.06/NOTICES rename to distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.github.virtuald.curvesapi-1.07/NOTICES diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-67.1/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-67.1/NOTICES deleted file mode 100644 index 2f3c80450a06..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-67.1/NOTICES +++ /dev/null @@ -1,405 +0,0 @@ -

Copyright © IBM Corporation 1999. All rights reserved. - -Copyright (C) 1996-2004, International Business Machines Corporation and * - -Copyright (C) 1996-2005, International Business Machines Corporation and * - -Copyright (C) 1996-2007, International Business Machines Corporation and * - -Copyright (C) 1996-2007, International Business Machines Corporation and * - -Copyright (C) 1996-2009, Google, International Business Machines Corporation and * - -Copyright (C) 1996-2009, International Business Machines Corporation and * - -Copyright (C) 1996-2010, International Business Machines Corporation and - -Copyright (C) 1996-2010, International Business Machines Corporation and * - -Copyright (C) 1996-2010, International Business Machines Corporation and * - -Copyright (C) 1996-2011, International Business Machines Corporation and - -Copyright (C) 1996-2011, International Business Machines Corporation and * - -Copyright (C) 1996-2011, International Business Machines Corporation and * - -Copyright (C) 1996-2012, International Business Machines Corporation and * - -Copyright (C) 1996-2013, International Business Machines Corporation and - -Copyright (C) 1996-2013, International Business Machines Corporation and * - -Copyright (C) 1996-2014, International Business Machines Corporation and - -Copyright (C) 1996-2014, International Business Machines Corporation and * - -Copyright (C) 1996-2015, Google, Inc., International Business Machines Corporation and - -Copyright (C) 1996-2015, International Business Machines - -Copyright (C) 1996-2015, International Business Machines Corporation and - -Copyright (C) 1996-2015, International Business Machines Corporation and * - -Copyright (C) 1996-2016, Google, International Business Machines Corporation and - -Copyright (C) 1996-2016, International Business Machines - -Copyright (C) 1996-2016, International Business Machines Corporation and - -Copyright (C) 1996-2016, International Business Machines Corporation and * - -Copyright (C) 1996-2016, International Business Machines Corporation and * - -Copyright (C) 1999-2014, International Business Machines - -Copyright (C) 1999-2015, International Business Machines - -Copyright (C) 2000-2009, International Business Machines Corporation and * - -Copyright (C) 2000-2014, International Business Machines - -Copyright (C) 2000-2014, International Business Machines Corporation and - -Copyright (C) 2000-2016, International Business Machines Corporation and - -Copyright (C) 2001-2004, International Business Machines Corporation and * - -Copyright (C) 2001-2008, International Business Machines - -Copyright (C) 2001-2009, International Business Machines Corporation and * - -Copyright (C) 2001-2010, International Business Machines - -Copyright (C) 2001-2010, International Business Machines Corporation and * - -Copyright (C) 2001-2011, International Business Machines Corporation and * - -Copyright (C) 2001-2012, International Business Machines - -Copyright (C) 2001-2013, International Business Machines Corporation and * - -Copyright (C) 2001-2014, International Business Machines - -Copyright (C) 2001-2015, International Business Machines Corporation and - -Copyright (C) 2001-2016 International Business Machines Corporation and - -Copyright (C) 2001-2016, International Business Machines - -Copyright (C) 2001-2016, International Business Machines Corporation and - -Copyright (C) 2001-2016, International Business Machines Corporation and * - -Copyright (C) 2002-2009 International Business Machines Corporation * - -Copyright (C) 2002-2010, International Business Machines - -Copyright (C) 2002-2010, International Business Machines Corporation and * - -Copyright (C) 2002-2014, International Business Machines Corporation and others. - -Copyright (C) 2002-2016, International Business Machines Corporation and - -Copyright (C) 2003-2010, International Business Machines - -Copyright (C) 2003-2011, International Business Machines Corporation and * - -Copyright (C) 2003-2011, International Business Machines Corporation and * - -Copyright (C) 2003-2014, International Business Machines Corporation and - -Copyright (C) 2003-2014, International Business Machines Corporation and * - -Copyright (C) 2003-2015, International Business Machines Corporation and - -Copyright (C) 2003-2016, Google, International Business Machines Corporation - -Copyright (C) 2003-2016, International Business Machines Corporation and - -Copyright (C) 2003-2016, International Business Machines Corporation and * - -Copyright (C) 2003-2016, International Business Machines Corporation and others. All Rights Reserved. - -Copyright (C) 2004-2006, International Business Machines Corporation and * - -Copyright (C) 2004-2009, International Business Machines Corporation and * - -Copyright (C) 2004-2009, International Business Machines Corporation and * - -Copyright (C) 2004-2010, International Business Machines - -Copyright (C) 2004-2010, International Business Machines Corporation and * - -Copyright (C) 2004-2014, International Business Machines Corporation and - -Copyright (C) 2004-2015, International Business Machines - -Copyright (C) 2004-2016, Google Inc, International Business Machines - -Copyright (C) 2004-2016, International Business Machines Corporation and - -Copyright (C) 2004-2016, International Business Machines Corporation and * - -Copyright (C) 2005 - 2012, International Business Machines Corporation and * - -Copyright (C) 2005 - 2014, International Business Machines Corporation and * - -Copyright (C) 2005-2006, International Business Machines - -Copyright (C) 2005-2010, International Business Machines - -Copyright (C) 2005-2011, International Business Machines Corporation and * - -Copyright (C) 2005-2012, International Business Machines Corporation and * - -Copyright (C) 2005-2012, International Business Machines Corporation and * - -Copyright (C) 2005-2013, International Business Machines Corporation and * - -Copyright (C) 2005-2015, International Business Machines Corporation and - -Copyright (C) 2005-2016 International Business Machines Corporation and - -Copyright (C) 2005-2016, International Business Machines Corporation and - -Copyright (C) 2005-2016, International Business Machines Corporation and * - -Copyright (C) 2006-2009, Google, International Business Machines Corporation * - -Copyright (C) 2006-2015, International Business Machines Corporation and - -Copyright (C) 2006-2016, Google, International Business Machines Corporation - -Copyright (C) 2007, International Business Machines Corporation and * - -Copyright (C) 2007-2008, International Business Machines Corporation and * - -Copyright (C) 2007-2009, International Business Machines Corporation and * - -Copyright (C) 2007-2010, International Business Machines Corporation and * - -Copyright (C) 2007-2010, International Business Machines Corporation and * - -Copyright (C) 2007-2011, International Business Machines Corporation and * - -Copyright (C) 2007-2011, International Business Machines Corporation and others. - -Copyright (C) 2007-2012, International Business Machines Corporation and * - -Copyright (C) 2007-2013, International Business Machines Corporation and * - -Copyright (C) 2007-2014, International Business Machines Corporation and * - -Copyright (C) 2007-2014, International Business Machines Corporation and * - -Copyright (C) 2007-2015, Google Inc, International Business Machines Corporation - -Copyright (C) 2007-2015, International Business Machines Corporation and - -Copyright (C) 2007-2015, International Business Machines Corporation and * - -Copyright (C) 2007-2016, International Business Machines - -Copyright (C) 2007-2016, International Business Machines Corporation and - -Copyright (C) 2007-2016, International Business Machines Corporation and * - -Copyright (C) 2008-2009, Google, International Business Machines - -Copyright (C) 2008-2009, International Business Machines - -Copyright (C) 2008-2014, Google, International Business Machines - -Copyright (C) 2008-2014, International Business Machines Corporation and * - -Copyright (C) 2008-2015, Google, International Business Machines Corporation and - -Copyright (C) 2008-2015, International Business Machines Corporation and - -Copyright (C) 2008-2016 International Business Machines Corporation - -Copyright (C) 2008-2016, Google Inc, International Business Machines Corporation - -Copyright (C) 2008-2016, International Business Machines - -Copyright (C) 2008-2016, International Business Machines Corporation and - -Copyright (C) 2009 , Yahoo! Inc. * - -Copyright (C) 2009, Google, International Business Machines Corporation and * - -Copyright (C) 2009, International Business Machines Corporation and * - -Copyright (C) 2009, International Business Machines Corporation and * - -Copyright (C) 2009,2016 International Business Machines Corporation and - -Copyright (C) 2009-2010, Google, International Business Machines Corporation * - -Copyright (C) 2009-2010, International Business Machines Corporation and * - -Copyright (C) 2009-2011, Google, International Business Machines Corporation - -Copyright (C) 2009-2011, International Business Machines Corporation and * - -Copyright (C) 2009-2012, International Business Machines Corporation and * - -Copyright (C) 2009-2013, International Business Machines Corporation and * - -Copyright (C) 2009-2014, International Business Machines - -Copyright (C) 2009-2014, International Business Machines Corporation and - -Copyright (C) 2009-2014, International Business Machines Corporation and * - -Copyright (C) 2009-2015, Google, International Business Machines Corporation - -Copyright (C) 2009-2015, International Business Machines - -Copyright (C) 2009-2015, International Business Machines Corporation and - -Copyright (C) 2009-2015, International Business Machines Corporation and * - -Copyright (C) 2009-2016, Google, Inc.; International Business Machines Corporation - -Copyright (C) 2009-2016, International Business Machines - -Copyright (C) 2009-2016, International Business Machines Corporation and - -Copyright (C) 2009-2016, International Business Machines Corporation and * - -Copyright (C) 2009-2016, International Business Machines Corporation, - -Copyright (C) 2010, International Business Machines - -Copyright (C) 2010, International Business Machines Corporation and * - -Copyright (C) 2010-2011, Google, International Business Machines * - -Copyright (C) 2010-2013, International Business Machines Corporation and * - -Copyright (C) 2010-2014, Google, International Business Machines Corporation * - -Copyright (C) 2010-2014, International Business Machines - -Copyright (C) 2010-2015, International Business Machines - -Copyright (C) 2010-2016, Google, Inc.; International Business Machines * - -Copyright (C) 2010-2016, International Business Machines - -Copyright (C) 2011, International Business Machines - -Copyright (C) 2011, International Business Machines Corporation and * - -Copyright (C) 2011-2014, International Business Machines - -Copyright (C) 2011-2016, International Business Machines Corporation - -Copyright (C) 2011-2016, International Business Machines Corporation and - -Copyright (C) 2011-2016, International Business Machines Corporation and * - -Copyright (C) 2012, International Business Machines Corporation and * - -Copyright (C) 2012-2014, International Business Machines - -Copyright (C) 2012-2014, International Business Machines Corporation and * - -Copyright (C) 2012-2015, International Business Machines - -Copyright (C) 2012-2015, International Business Machines Corporation and * - -Copyright (C) 2012-2016, Google, International Business Machines Corporation and - -Copyright (C) 2012-2016, International Business Machines - -Copyright (C) 2012-2016, International Business Machines Corporation and - -Copyright (C) 2012-2016, International Business Machines Corporation and * - -Copyright (C) 2013, Google Inc, International Business Machines Corporation and * - -Copyright (C) 2013, International Business Machines Corporation and * - -Copyright (C) 2013-2014, International Business Machines - -Copyright (C) 2013-2014, International Business Machines Corporation and * - -Copyright (C) 2013-2015, International Business Machines - -Copyright (C) 2013-2015, International Business Machines Corporation and - -Copyright (C) 2013-2016, International Business Machines Corporation and - -Copyright (C) 2014, International Business Machines Corporation and - -Copyright (C) 2014, International Business Machines Corporation and * - -Copyright (C) 2014-2015, International Business Machines Corporation and - -Copyright (C) 2014-2016, International Business Machines Corporation and - -Copyright (C) 2015, International Business Machines Corporation and - -Copyright (C) 2015-2016, International Business Machines Corporation and - -Copyright (C) 2016, International Business Machines Corporation and - -Copyright (C) 2016, International Business Machines Corporation and * - -Copyright (c) 2001-2011, International Business Machines - -Copyright (c) 2001-2016, International Business Machines - -Copyright (c) 2001-2016, International Business Machines Corporation and - -Copyright (c) 2002, International Business Machines Corporation - -Copyright (c) 2002-2007, International Business Machines Corporation - -Copyright (c) 2002-2010, International Business Machines - -Copyright (c) 2002-2010, International Business Machines Corporation - -Copyright (c) 2002-2011, International Business Machines Corporation - -Copyright (c) 2002-2014, Google, International Business Machines - -Copyright (c) 2002-2014, International Business Machines Corporation - -Copyright (c) 2002-2015, International Business Machines - -Copyright (c) 2002-2016, International Business Machines - -Copyright (c) 2003-2010, International Business Machines - -Copyright (c) 2003-2011, International Business Machines - -Copyright (c) 2003-2016 International Business Machines - -Copyright (c) 2003-2016, International Business Machines - -Copyright (c) 2004-2010, International Business Machines - -Copyright (c) 2004-2013, International Business Machines - -Copyright (c) 2004-2014, International Business Machines - -Copyright (c) 2004-2015, International Business Machines - -Copyright (c) 2004-2016, International Business Machines - -Copyright (c) 2007-2009 International Business Machines Corporation and * - -Copyright (c) 2007-2015 International Business Machines Corporation and * - -Copyright (c) 2013-2014, International Business Machines - -Copyright IBM Corporation, 1996-2016. All Rights Reserved. */ - -Copyright IBM Corporation, 1997, 2000, 2005, 2007. All Rights Reserved. */ - -copyright=" Copyright (c) IBM Corporation 1996, 2000. All rights reserved. "; diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-67.1/LICENSE b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-71.1/LICENSE similarity index 77% rename from distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-67.1/LICENSE rename to distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-71.1/LICENSE index e7f98ed18391..80b587723a67 100644 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-67.1/LICENSE +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-71.1/LICENSE @@ -1,6 +1,19 @@ -COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE -Copyright © 1991-2020 Unicode, Inc. All rights reserved. +See Terms of Use +for definitions of Unicode Inc.’s Data Files and Software. + +NOTICE TO USER: Carefully read the following legal agreement. +BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S +DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), +YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. +IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE +THE DATA FILES OR SOFTWARE. + +COPYRIGHT AND PERMISSION NOTICE + +Copyright © 1991-2022 Unicode, Inc. All rights reserved. Distributed under the Terms of Use in https://www.unicode.org/copyright.html. Permission is hereby granted, free of charge, to any person obtaining @@ -32,7 +45,7 @@ shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. ---------------------- +---------------------------------------------------------------------- Third-Party Software Licenses @@ -40,7 +53,9 @@ This section contains third-party software notices and/or additional terms for licensed third-party software components included within ICU libraries. -1. ICU License - ICU 1.8.1 to ICU 57.1 +---------------------------------------------------------------------- + +ICU License - ICU 1.8.1 to ICU 57.1 COPYRIGHT AND PERMISSION NOTICE @@ -75,7 +90,9 @@ of the copyright holder. All trademarks and registered trademarks mentioned herein are the property of their respective owners. -2. Chinese/Japanese Word Break Dictionary Data (cjdict.txt) +---------------------------------------------------------------------- + +Chinese/Japanese Word Break Dictionary Data (cjdict.txt) # The Google Chrome software developed by Google is licensed under # the BSD license. Other software included in this distribution is @@ -279,33 +296,33 @@ property of their respective owners. # # ---------------COPYING.ipadic-----END---------------------------------- -3. Lao Word Break Dictionary Data (laodict.txt) +---------------------------------------------------------------------- - # Copyright (c) 2013 International Business Machines Corporation - # and others. All Rights Reserved. +Lao Word Break Dictionary Data (laodict.txt) + + # Copyright (C) 2016 and later: Unicode, Inc. and others. + # License & terms of use: http://www.unicode.org/copyright.html + # Copyright (c) 2015 International Business Machines Corporation + # and others. All Rights Reserved. # - # Project: http://code.google.com/p/lao-dictionary/ - # Dictionary: http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt - # License: http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt - # (copied below) + # Project: https://github.com/rober42539/lao-dictionary + # Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt + # License: https://github.com/rober42539/lao-dictionary/LICENSE.txt + # (copied below) # - # This file is derived from the above dictionary, with slight - # modifications. + # This file is derived from the above dictionary version of Nov 22, 2020 # ---------------------------------------------------------------------- # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. # All rights reserved. # # Redistribution and use in source and binary forms, with or without - # modification, - # are permitted provided that the following conditions are met: - # - # - # Redistributions of source code must retain the above copyright notice, this - # list of conditions and the following disclaimer. Redistributions in - # binary form must reproduce the above copyright notice, this list of - # conditions and the following disclaimer in the documentation and/or - # other materials provided with the distribution. + # modification, are permitted provided that the following conditions are met: # + # Redistributions of source code must retain the above copyright notice, this + # list of conditions and the following disclaimer. Redistributions in binary + # form must reproduce the above copyright notice, this list of conditions and + # the following disclaimer in the documentation and/or other materials + # provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT @@ -321,7 +338,9 @@ property of their respective owners. # OF THE POSSIBILITY OF SUCH DAMAGE. # -------------------------------------------------------------------------- -4. Burmese Word Break Dictionary Data (burmesedict.txt) +---------------------------------------------------------------------- + +Burmese Word Break Dictionary Data (burmesedict.txt) # Copyright (c) 2014 International Business Machines Corporation # and others. All Rights Reserved. @@ -361,7 +380,9 @@ property of their respective owners. # SUCH DAMAGE. # -------------------------------------------------------------------------- -5. Time Zone Database +---------------------------------------------------------------------- + +Time Zone Database ICU uses the public domain data and code derived from Time Zone Database for its time zone support. The ownership of the TZ database @@ -384,7 +405,9 @@ Database section 7. # making a contribution to the database or code waives all rights to # future claims in that contribution or in the TZ Database. -6. Google double-conversion +---------------------------------------------------------------------- + +Google double-conversion Copyright 2006-2011, the V8 project authors. All rights reserved. Redistribution and use in source and binary forms, with or without @@ -412,3 +435,85 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- + +File: aclocal.m4 (only for ICU4C) +Section: pkg.m4 - Macros to locate and utilise pkg-config. + + +Copyright © 2004 Scott James Remnant . +Copyright © 2012-2015 Dan Nicholson + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. + +As a special exception to the GNU General Public License, if you +distribute this file as part of a program that contains a +configuration script generated by Autoconf, you may include it under +the same distribution terms that you use for the rest of that +program. + + +(The condition for the exception is fulfilled because +ICU4C includes a configuration script generated by Autoconf, +namely the `configure` script.) + +---------------------------------------------------------------------- + +File: config.guess (only for ICU4C) + + +This file is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, see . + +As a special exception to the GNU General Public License, if you +distribute this file as part of a program that contains a +configuration script generated by Autoconf, you may include it under +the same distribution terms that you use for the rest of that +program. This Exception is an additional permission under section 7 +of the GNU General Public License, version 3 ("GPLv3"). + + +(The condition for the exception is fulfilled because +ICU4C includes a configuration script generated by Autoconf, +namely the `configure` script.) + +---------------------------------------------------------------------- + +File: install-sh (only for ICU4C) + + +Copyright 1991 by the Massachusetts Institute of Technology + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation, and that the name of M.I.T. not be used in advertising or +publicity pertaining to distribution of the software without specific, +written prior permission. M.I.T. makes no representations about the +suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-71.1/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-71.1/NOTICES new file mode 100644 index 000000000000..0035166ac5c5 --- /dev/null +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.ibm.icu.icu4j-71.1/NOTICES @@ -0,0 +1,3 @@ +Copyright (C) 1996-2004, International Business Machines Corporation and * + +Copyright (C) 2001-2014, International Business Machines diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.univocity.univocity-parsers-2.9.0/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.univocity.univocity-parsers-2.9.0/NOTICES deleted file mode 100644 index 399517437cf1..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.univocity.univocity-parsers-2.9.0/NOTICES +++ /dev/null @@ -1,15 +0,0 @@ -Copyright (c) 2015. Univocity Software Pty Ltd - -Copyright (c) 2018. Univocity Software Pty Ltd - -Copyright 2014 Univocity Software Pty Ltd - -Copyright 2015 Univocity Software Pty Ltd - -Copyright 2016 Univocity Software Pty Ltd - -Copyright 2017 Univocity Software Pty Ltd - -Copyright 2018 Univocity Software Pty Ltd - -Copyright 2019 Univocity Software Pty Ltd diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.univocity.univocity-parsers-2.9.1/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.univocity.univocity-parsers-2.9.1/NOTICES new file mode 100644 index 000000000000..e158288263a4 --- /dev/null +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/com.univocity.univocity-parsers-2.9.1/NOTICES @@ -0,0 +1 @@ +Copyright (c) 2015. Univocity Software Pty Ltd diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/commons-io.commons-io-1.3.1/NOTICE.txt b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/commons-io.commons-io-1.3.1/NOTICE.txt deleted file mode 100644 index ce3b94a0fd27..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/commons-io.commons-io-1.3.1/NOTICE.txt +++ /dev/null @@ -1,6 +0,0 @@ -Apache Jakarta Commons IO -Copyright 2001-2007 The Apache Software Foundation - -This product includes software developed by -The Apache Software Foundation (http://www.apache.org/). - diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/commons-io.commons-io-2.11.0/NOTICE.txt b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/commons-io.commons-io-2.11.0/NOTICE.txt new file mode 100644 index 000000000000..0247f91d211d --- /dev/null +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/commons-io.commons-io-2.11.0/NOTICE.txt @@ -0,0 +1,5 @@ +Apache Commons IO +Copyright 2002-2021 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (https://www.apache.org/). diff --git a/tools/legal-review/Table/com.github.virtuald.curvesapi-1.06/copyright-ignore b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/commons-io.commons-io-2.11.0/NOTICES similarity index 100% rename from tools/legal-review/Table/com.github.virtuald.curvesapi-1.06/copyright-ignore rename to distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/commons-io.commons-io-2.11.0/NOTICES diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/de.rototor.pdfbox.graphics2d-0.30/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/de.rototor.pdfbox.graphics2d-0.30/NOTICES deleted file mode 100644 index eb24c122ab9c..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/de.rototor.pdfbox.graphics2d-0.30/NOTICES +++ /dev/null @@ -1 +0,0 @@ -Copyright 2017 Emmeran Seehuber diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/licenses/Bouncy_Castle_Licence.txt b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/licenses/Bouncy_Castle_Licence.txt deleted file mode 100644 index 060c529ea09e..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/licenses/Bouncy_Castle_Licence.txt +++ /dev/null @@ -1,7 +0,0 @@ -Copyright (c) 2000 - 2020 The Legion of the Bouncy Castle Inc. (https://www.bouncycastle.org) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/licenses/MIT b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/licenses/MIT deleted file mode 100644 index fe45399e37ad..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/licenses/MIT +++ /dev/null @@ -1,6 +0,0 @@ -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.commons.commons-compress-1.20/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.commons.commons-compress-1.20/NOTICES deleted file mode 100644 index 6ab681a5b3bd..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.commons.commons-compress-1.20/NOTICES +++ /dev/null @@ -1 +0,0 @@ -Some portions of this file Copyright (c) 2004-2006 Intel Corportation diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.commons.commons-compress-1.20/NOTICE.txt b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.commons.commons-compress-1.21/NOTICE.txt similarity index 97% rename from distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.commons.commons-compress-1.20/NOTICE.txt rename to distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.commons.commons-compress-1.21/NOTICE.txt index 132b0897babc..3fb47079f2c7 100644 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.commons.commons-compress-1.20/NOTICE.txt +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.commons.commons-compress-1.21/NOTICE.txt @@ -1,5 +1,5 @@ Apache Commons Compress -Copyright 2002-2020 The Apache Software Foundation +Copyright 2002-2021 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (https://www.apache.org/). diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.commons.commons-compress-1.21/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.commons.commons-compress-1.21/NOTICES new file mode 100644 index 000000000000..7224ebef0d6a --- /dev/null +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.commons.commons-compress-1.21/NOTICES @@ -0,0 +1,3 @@ +Some portions of this file Copyright (c) 2004-2006 Intel Corporation + +regarding copyright ownership. The ASF licenses this file diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.logging.log4j.log4j-api-2.14.0/NOTICE b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.logging.log4j.log4j-api-2.17.2/NOTICE similarity index 70% rename from distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.logging.log4j.log4j-api-2.14.0/NOTICE rename to distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.logging.log4j.log4j-api-2.17.2/NOTICE index cc5ef6882aa9..3a0a22d479e7 100644 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.logging.log4j.log4j-api-2.14.0/NOTICE +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.logging.log4j.log4j-api-2.17.2/NOTICE @@ -1,6 +1,6 @@ Apache Log4j API -Copyright 1999-2020 The Apache Software Foundation +Copyright 1999-2022 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/). diff --git a/tools/legal-review/Table/commons-io.commons-io-1.3.1/copyright-ignore b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.logging.log4j.log4j-api-2.17.2/NOTICES similarity index 100% rename from tools/legal-review/Table/commons-io.commons-io-1.3.1/copyright-ignore rename to distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.logging.log4j.log4j-api-2.17.2/NOTICES diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.fontbox-2.0.22/LICENSE b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.fontbox-2.0.22/LICENSE deleted file mode 100644 index c26ce2ec2b7b..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.fontbox-2.0.22/LICENSE +++ /dev/null @@ -1,331 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -CONTRIBUTIONS TO THE ORIGINAL CODEBASE - -Apache FontBox is based on contributions made to the original FontBox project: - - Copyright (c) 2006-2007, www.fontbox.org - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of fontbox; nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -Lohit-Bengali font (https://pagure.io/lohit): - - Copyright 2011-13 Lohit Fonts Project contributors - - - This Font Software is licensed under the SIL Open Font License, Version 1.1. - This license is copied below, and is also available with a FAQ at: - http://scripts.sil.org/OFL - - - ----------------------------------------------------------- - SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 - ----------------------------------------------------------- - - PREAMBLE - The goals of the Open Font License (OFL) are to stimulate worldwide - development of collaborative font projects, to support the font creation - efforts of academic and linguistic communities, and to provide a free and - open framework in which fonts may be shared and improved in partnership - with others. - - The OFL allows the licensed fonts to be used, studied, modified and - redistributed freely as long as they are not sold by themselves. The - fonts, including any derivative works, can be bundled, embedded, - redistributed and/or sold with any software provided that any reserved - names are not used by derivative works. The fonts and derivatives, - however, cannot be released under any other type of license. The - requirement for fonts to remain under this license does not apply - to any document created using the fonts or their derivatives. - - DEFINITIONS - "Font Software" refers to the set of files released by the Copyright - Holder(s) under this license and clearly marked as such. This may - include source files, build scripts and documentation. - - "Reserved Font Name" refers to any names specified as such after the - copyright statement(s). - - "Original Version" refers to the collection of Font Software components as - distributed by the Copyright Holder(s). - - "Modified Version" refers to any derivative made by adding to, deleting, - or substituting -- in part or in whole -- any of the components of the - Original Version, by changing formats or by porting the Font Software to a - new environment. - - "Author" refers to any designer, engineer, programmer, technical - writer or other person who contributed to the Font Software. - - PERMISSION & CONDITIONS - Permission is hereby granted, free of charge, to any person obtaining - a copy of the Font Software, to use, study, copy, merge, embed, modify, - redistribute, and sell modified and unmodified copies of the Font - Software, subject to the following conditions: - - 1) Neither the Font Software nor any of its individual components, - in Original or Modified Versions, may be sold by itself. - - 2) Original or Modified Versions of the Font Software may be bundled, - redistributed and/or sold with any software, provided that each copy - contains the above copyright notice and this license. These can be - included either as stand-alone text files, human-readable headers or - in the appropriate machine-readable metadata fields within text or - binary files as long as those fields can be easily viewed by the user. - - 3) No Modified Version of the Font Software may use the Reserved Font - Name(s) unless explicit written permission is granted by the corresponding - Copyright Holder. This restriction only applies to the primary font name as - presented to the users. - - 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font - Software shall not be used to promote, endorse or advertise any - Modified Version, except to acknowledge the contribution(s) of the - Copyright Holder(s) and the Author(s) or with their explicit written - permission. - - 5) The Font Software, modified or unmodified, in part or in whole, - must be distributed entirely under this license, and must not be - distributed under any other license. The requirement for fonts to - remain under this license does not apply to any document created - using the Font Software. - - TERMINATION - This license becomes null and void if any of the above conditions are - not met. - - DISCLAIMER - THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT - OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE - COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL - DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM - OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.fontbox-2.0.22/NOTICE b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.fontbox-2.0.22/NOTICE deleted file mode 100644 index 52faa1caf0ff..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.fontbox-2.0.22/NOTICE +++ /dev/null @@ -1,13 +0,0 @@ - -Apache FontBox -Copyright 2008-2020 The Apache Software Foundation - -This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). - - -Based on source code contributed to the original FontBox project. -Copyright (c) 2006-2007, www.fontbox.org - -Includes the Script Property (Scripts-10.0.0.txt) -Copyright 2017 Unicode, Inc. diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.fontbox-2.0.22/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.fontbox-2.0.22/NOTICES deleted file mode 100644 index 3ae08bdb41ad..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.fontbox-2.0.22/NOTICES +++ /dev/null @@ -1,11 +0,0 @@ -%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated. - -%%Copyright: Copyright 1990-2010 Adobe Systems Incorporated. - -%%Copyright: Copyright 1990-2015 Adobe Systems Incorporated. - -%%Copyright: Copyright 1990-2019 Adobe. All rights reserved. - -Copyright 2015 The Apache Software Foundation. - -Copyright 2018 The Apache Software Foundation. diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.pdfbox-2.0.22/LICENSE b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.pdfbox-2.0.22/LICENSE deleted file mode 100644 index 4c0433a61a2f..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.pdfbox-2.0.22/LICENSE +++ /dev/null @@ -1,441 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -EXTERNAL COMPONENTS - -Apache PDFBox includes a number of components with separate copyright notices -and license terms. Your use of these components is subject to the terms and -conditions of the following licenses. - -Contributions made to the original PDFBox project: - - Copyright (c) 2002-2007, www.pdfbox.org - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of pdfbox; nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -Adobe Font Metrics (AFM) for PDF Core 14 Fonts - - This file and the 14 PostScript(R) AFM files it accompanies may be used, - copied, and distributed for any purpose and without charge, with or without - modification, provided that all copyright notices are retained; that the - AFM files are not distributed without this file; that all modifications - to this file or any of the AFM files are prominently noted in the modified - file(s); and that this paragraph is not modified. Adobe Systems has no - responsibility or obligation to support the use of the AFM files. - -CMaps for PDF Fonts (http://opensource.adobe.com/wiki/display/cmap/Downloads) - - Copyright 1990-2009 Adobe Systems Incorporated. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - Neither the name of Adobe Systems Incorporated nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF - THE POSSIBILITY OF SUCH DAMAGE. - -Glyphlist (http://www.adobe.com/devnet/opentype/archives/glyph.html) - - Copyright (c) 1997,1998,2002,2007 Adobe Systems Incorporated - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this documentation file to use, copy, publish, distribute, - sublicense, and/or sell copies of the documentation, and to permit - others to do the same, provided that: - - No modification, editing or other alteration of this document is - allowed; and - - The above copyright notice and this permission notice shall be - included in all copies of the documentation. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this documentation file, to create their own derivative works - from the content of this document to use, copy, publish, distribute, - sublicense, and/or sell the derivative works, and to permit others to do - the same, provided that the derived work is not represented as being a - copy or version of this document. - - Adobe shall not be liable to any party for any loss of revenue or profit - or for indirect, incidental, special, consequential, or other similar - damages, whether based on tort (including without limitation negligence - or strict liability), contract or other legal or equitable grounds even - if Adobe has been advised or had reason to know of the possibility of - such damages. The Adobe materials are provided on an "AS IS" basis. - Adobe specifically disclaims all express, statutory, or implied - warranties relating to the Adobe materials, including but not limited to - those concerning merchantability or fitness for a particular purpose or - non-infringement of any third party rights regarding the Adobe - materials. - -Liberation Fonts (https://fedorahosted.org/liberation-fonts) - - Digitized data copyright (c) 2010 Google Corporation - with Reserved Font Arimo, Tinos and Cousine. - Copyright (c) 2012 Red Hat, Inc. - with Reserved Font Name Liberation. - - This Font Software is licensed under the SIL Open Font License, - Version 1.1. - - This license is copied below, and is also available with a FAQ at: - http://scripts.sil.org/OFL - - SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 - - PREAMBLE The goals of the Open Font License (OFL) are to stimulate - worldwide development of collaborative font projects, to support the font - creation efforts of academic and linguistic communities, and to provide - a free and open framework in which fonts may be shared and improved in - partnership with others. - - The OFL allows the licensed fonts to be used, studied, modified and - redistributed freely as long as they are not sold by themselves. - The fonts, including any derivative works, can be bundled, embedded, - redistributed and/or sold with any software provided that any reserved - names are not used by derivative works. The fonts and derivatives, - however, cannot be released under any other type of license. The - requirement for fonts to remain under this license does not apply to - any document created using the fonts or their derivatives. - - DEFINITIONS - "Font Software" refers to the set of files released by the Copyright - Holder(s) under this license and clearly marked as such. - This may include source files, build scripts and documentation. - - "Reserved Font Name" refers to any names specified as such after the - copyright statement(s). - - "Original Version" refers to the collection of Font Software components - as distributed by the Copyright Holder(s). - - "Modified Version" refers to any derivative made by adding to, deleting, - or substituting ? in part or in whole ? - any of the components of the Original Version, by changing formats or - by porting the Font Software to a new environment. - - "Author" refers to any designer, engineer, programmer, technical writer - or other person who contributed to the Font Software. - - PERMISSION & CONDITIONS - - Permission is hereby granted, free of charge, to any person obtaining a - copy of the Font Software, to use, study, copy, merge, embed, modify, - redistribute, and sell modified and unmodified copies of the Font - Software, subject to the following conditions: - - 1) Neither the Font Software nor any of its individual components,in - Original or Modified Versions, may be sold by itself. - - 2) Original or Modified Versions of the Font Software may be bundled, - redistributed and/or sold with any software, provided that each copy - contains the above copyright notice and this license. These can be - included either as stand-alone text files, human-readable headers or - in the appropriate machine-readable metadata fields within text or - binary files as long as those fields can be easily viewed by the user. - - 3) No Modified Version of the Font Software may use the Reserved Font - Name(s) unless explicit written permission is granted by the - corresponding Copyright Holder. This restriction only applies to the - primary font name as presented to the users. - - 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font - Software shall not be used to promote, endorse or advertise any - Modified Version, except to acknowledge the contribution(s) of the - Copyright Holder(s) and the Author(s) or with their explicit written - permission. - - 5) The Font Software, modified or unmodified, in part or in whole, must - be distributed entirely under this license, and must not be distributed - under any other license. The requirement for fonts to remain under - this license does not apply to any document created using the Font - Software. - - TERMINATION - This license becomes null and void if any of the above conditions are not met. - - DISCLAIMER - THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT - OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE - COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL - DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER - DEALINGS IN THE FONT SOFTWARE. - -Twelvemonkeys (https://github.com/haraldk/TwelveMonkeys/) - - Copyright (c) 2008-2016, Harald Kuhr - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - o Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - o Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - o Neither the name "TwelveMonkeys" nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.pdfbox-2.0.22/NOTICE b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.pdfbox-2.0.22/NOTICE deleted file mode 100644 index c4b35c9f4f88..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.pdfbox-2.0.22/NOTICE +++ /dev/null @@ -1,22 +0,0 @@ - -Apache PDFBox -Copyright 2002-2020 The Apache Software Foundation - -This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). - - -Based on source code contributed to the original PDFBox project. -Copyright (c) 2002-2007, www.pdfbox.org - -Includes the Adobe Glyph List -Copyright 1997, 1998, 2002, 2007, 2010 Adobe Systems Incorporated. - -Includes the Zapf Dingbats Glyph List -Copyright 2002, 2010 Adobe Systems Incorporated. - -Includes the Bidi Mirroring Glyph Property (BidiMirroring-8.0.0.txt) -Copyright 1991-2015 Unicode, Inc. - -Includes parts of TwelveMonkeys ImageIO -Copyright 2008-2016 Harald Kuhr diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.pdfbox-2.0.22/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.pdfbox-2.0.22/NOTICES deleted file mode 100644 index 80a179451997..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.pdfbox.pdfbox-2.0.22/NOTICES +++ /dev/null @@ -1,46 +0,0 @@ -Comment Copyright (c) 1985, 1987, 1988, 1989, 1997 Adobe Systems Incorporated. All Rights Reserved. - -Comment Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. - -Comment Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved. - -Comment Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All rights reserved. - -Comment Copyright (c) 1989, 1990, 1991, 1992, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. - -Comment Copyright (c) 1989, 1990, 1991, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. - -Copyright (c) 1991-2015 Unicode, Inc. - -Copyright (c) 2007-2010, basICColor GmbH - -Copyright (c) 2012 Red Hat, Inc.Digitized data copyright (c) 2010 Google Corporation. -Copyright (c) 2012 Red Hat, Inc.Liberation SansLiberation SansRegularRegularAscender - Liberation SansAscender - Liberation SansLiberation SansLiberation SansVersion 2.00.1Version 2.00.1LiberationSansLiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationAscender CorporationSteve MattesonSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial!". Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.Based on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial�. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlhttp://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1Licensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFLhttp://scripts.sil.org/OFL -ISO Coated v2 300% (basICColor) textbasICColor CMYKick v1.2 - Copyright (c) 2006-2007 Color Solutions, All Rights Reserved. - - -Copyright (c) 2012, Harald Kuhr - -Copyright (c) 2013, Harald Kuhr - -Copyright 2014 The Apache Software Foundation. - -Copyright 2015 The Apache Software Foundation. - -Copyright 2016 The Apache Software Foundation. - -Copyright 2017 The Apache Software Foundation. - -Copyright 2018 The Apache Software Foundation. - -Notice Copyright (c) 1985, 1987, 1988, 1989, 1997 Adobe Systems Incorporated. All Rights Reserved.ITC Zapf Dingbats is a registered trademark of International Typeface Corporation. - -Notice Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved.Times is a trademark of Linotype-Hell AG and/or its subsidiaries. - -Notice Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved.Helvetica is a trademark of Linotype-Hell AG and/or its subsidiaries. - -Notice Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All rights reserved. - -Notice Copyright (c) 1989, 1990, 1991, 1992, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. - -Notice Copyright (c) 1989, 1990, 1991, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.0.0/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.0.0/NOTICES deleted file mode 100644 index 4e2345449827..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.0.0/NOTICES +++ /dev/null @@ -1 +0,0 @@ -Copyright (C) 2008-2014 FedICT. diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.0.0/LICENSE b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/LICENSE similarity index 93% rename from distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.0.0/LICENSE rename to distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/LICENSE index 3ce6efe41955..be6c2c65c247 100644 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.0.0/LICENSE +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/LICENSE @@ -285,29 +285,9 @@ CurvesAPI / Curve API NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -SLF4J library (slf4j-api-*.jar) +Log4j 2 library (log4j-api-*.jar) - Copyright (c) 2004-2017 QOS.ch - All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + Apache License Version 2.0 inbot-utils (https://github.com/Inbot/inbot-utils) diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.0.0/LICENSE.1 b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/LICENSE.1 similarity index 93% rename from distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.0.0/LICENSE.1 rename to distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/LICENSE.1 index 3ce6efe41955..be6c2c65c247 100644 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.0.0/LICENSE.1 +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/LICENSE.1 @@ -285,29 +285,9 @@ CurvesAPI / Curve API NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -SLF4J library (slf4j-api-*.jar) +Log4j 2 library (log4j-api-*.jar) - Copyright (c) 2004-2017 QOS.ch - All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + Apache License Version 2.0 inbot-utils (https://github.com/Inbot/inbot-utils) diff --git a/distribution/launcher/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/COPYING b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/LICENSE.2 similarity index 67% rename from distribution/launcher/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/COPYING rename to distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/LICENSE.2 index d5783383b25e..be6c2c65c247 100644 --- a/distribution/launcher/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/COPYING +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/LICENSE.2 @@ -1,56 +1,3 @@ -Cats Copyright (c) 2015 Cats Contributors. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ------- - -Code in Cats is derived in part from Scalaz. The Scalaz license follows: - -Copyright (c) 2009-2014 Tony Morris, Runar Bjarnason, Tom Adams, -Kristian Domagala, Brad Clow, Ricky Clarkson, Paul Chiusano, Trygve -Laugstøl, Nick Partridge, Jason Zaugg. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ------- - -Code in Cats is derived in part from the Scala standard library. The Scala license follows: Apache License Version 2.0, January 2004 @@ -253,3 +200,116 @@ Code in Cats is derived in part from the Scala standard library. The Scala licen WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + + +APACHE POI SUBCOMPONENTS: + +Apache POI includes subcomponents with separate copyright notices and +license terms. Your use of these subcomponents is subject to the terms +and conditions of the following licenses: + + +Office Open XML schemas (poi-ooxml-full-*.jar) + + The Office Open XML schema definitions used by Apache POI are + a part of the Office Open XML ECMA Specification (ECMA-376, [1]). + As defined in section 9.4 of the ECMA bylaws [2], this specification + is available to all interested parties without restriction: + + 9.4 All documents when approved shall be made available to + all interested parties without restriction. + + Furthermore, both Microsoft and Adobe have granted patent licenses + to this work [3,4,5]. + + [1] http://www.ecma-international.org/publications/standards/Ecma-376.htm + [2] http://www.ecma-international.org/memento/Ecmabylaws.htm + [3] http://www.microsoft.com/openspecifications/en/us/programs/osp/default.aspx + [4] http://www.ecma-international.org/publications/files/ECMA-ST/Ecma%20PATENT/ + Patent%20statements%20ok/ECMA-376%20Edition%202%20Microsoft%20Patent%20Declaration.pdf + [5] http://www.ecma-international.org/publications/files/ECMA-ST/Ecma%20PATENT/ + Patent%20statements%20ok/ECMA-376%20Adobe%20Patent%20Declaration.pdf + + +Bouncy Castle library (bcprov-*.jar, bcpg-*.jar, bcpkix-*.jar) + + Copyright (c) 2000 - 2021 The Legion of the Bouncy Castle Inc. + (https://www.bouncycastle.org) + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. + +CurvesAPI / Curve API + + BSD License + + Copyright (c) 2000-2015 www.hamcrest.org + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. Redistributions in + binary form must reproduce the above copyright notice, this list of + conditions and the following disclaimer in the documentation and/or other + materials provided with the distribution. Neither the name of Hamcrest nor + the names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Log4j 2 library (log4j-api-*.jar) + + Apache License Version 2.0 + + +inbot-utils (https://github.com/Inbot/inbot-utils) + + The MIT License (MIT) + + Copyright (c) 2015 Inbot + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. \ No newline at end of file diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.0.0/NOTICE b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/NOTICE similarity index 100% rename from distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.0.0/NOTICE rename to distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/NOTICE diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.0.0/NOTICE.1 b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/NOTICE.1 similarity index 100% rename from distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.0.0/NOTICE.1 rename to distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/NOTICE.1 diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.0.0/NOTICE b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/NOTICE.2 similarity index 100% rename from distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.0.0/NOTICE rename to distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/NOTICE.2 diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/NOTICES new file mode 100644 index 000000000000..05846e7e7cdd --- /dev/null +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-5.2.2/NOTICES @@ -0,0 +1,9 @@ +COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. MICROSOFT WILL NOT BE LIABLE FOR ANY + +Copyright (C) 2000-2002 Microsoft Corporation. All rights reserved. + +Copyright (C) 2008-2014 FedICT. + +Copyright (c) Microsoft Corporation. All rights reserved. Permission to copy, + +Copyright 2001 The Internet Society and W3C (Massachusetts Institute diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.0.0/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.0.0/NOTICES deleted file mode 100644 index 4e2345449827..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.0.0/NOTICES +++ /dev/null @@ -1 +0,0 @@ -Copyright (C) 2008-2014 FedICT. diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.0.0/LICENSE b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/LICENSE similarity index 93% rename from distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.0.0/LICENSE rename to distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/LICENSE index 3ce6efe41955..be6c2c65c247 100644 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.0.0/LICENSE +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/LICENSE @@ -285,29 +285,9 @@ CurvesAPI / Curve API NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -SLF4J library (slf4j-api-*.jar) +Log4j 2 library (log4j-api-*.jar) - Copyright (c) 2004-2017 QOS.ch - All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + Apache License Version 2.0 inbot-utils (https://github.com/Inbot/inbot-utils) diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/LICENSE.1 b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/LICENSE.1 new file mode 100644 index 000000000000..be6c2c65c247 --- /dev/null +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/LICENSE.1 @@ -0,0 +1,315 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +APACHE POI SUBCOMPONENTS: + +Apache POI includes subcomponents with separate copyright notices and +license terms. Your use of these subcomponents is subject to the terms +and conditions of the following licenses: + + +Office Open XML schemas (poi-ooxml-full-*.jar) + + The Office Open XML schema definitions used by Apache POI are + a part of the Office Open XML ECMA Specification (ECMA-376, [1]). + As defined in section 9.4 of the ECMA bylaws [2], this specification + is available to all interested parties without restriction: + + 9.4 All documents when approved shall be made available to + all interested parties without restriction. + + Furthermore, both Microsoft and Adobe have granted patent licenses + to this work [3,4,5]. + + [1] http://www.ecma-international.org/publications/standards/Ecma-376.htm + [2] http://www.ecma-international.org/memento/Ecmabylaws.htm + [3] http://www.microsoft.com/openspecifications/en/us/programs/osp/default.aspx + [4] http://www.ecma-international.org/publications/files/ECMA-ST/Ecma%20PATENT/ + Patent%20statements%20ok/ECMA-376%20Edition%202%20Microsoft%20Patent%20Declaration.pdf + [5] http://www.ecma-international.org/publications/files/ECMA-ST/Ecma%20PATENT/ + Patent%20statements%20ok/ECMA-376%20Adobe%20Patent%20Declaration.pdf + + +Bouncy Castle library (bcprov-*.jar, bcpg-*.jar, bcpkix-*.jar) + + Copyright (c) 2000 - 2021 The Legion of the Bouncy Castle Inc. + (https://www.bouncycastle.org) + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. + +CurvesAPI / Curve API + + BSD License + + Copyright (c) 2000-2015 www.hamcrest.org + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. Redistributions in + binary form must reproduce the above copyright notice, this list of + conditions and the following disclaimer in the documentation and/or other + materials provided with the distribution. Neither the name of Hamcrest nor + the names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Log4j 2 library (log4j-api-*.jar) + + Apache License Version 2.0 + + +inbot-utils (https://github.com/Inbot/inbot-utils) + + The MIT License (MIT) + + Copyright (c) 2015 Inbot + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. \ No newline at end of file diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/NOTICE b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/NOTICE new file mode 100644 index 000000000000..3c2ed7305470 --- /dev/null +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/NOTICE @@ -0,0 +1,24 @@ +Apache POI +Copyright 2003-2021 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (https://www.apache.org/). + +This product contains parts that were originally based on software from BEA. +Copyright (c) 2000-2003, BEA Systems, (dead link), +which was acquired by Oracle Corporation in 2008. + + + +This product contains W3C XML Schema documents. Copyright 2001-2003 (c) +World Wide Web Consortium (Massachusetts Institute of Technology, European +Research Consortium for Informatics and Mathematics, Keio University) + +This product contains the chunks_parse_cmds.tbl file from the vsdump program. +Copyright (C) 2006-2007 Valek Filippov (frob@df.ru) + +This product contains parts of the eID Applet project + and . +Copyright (c) 2009-2018 +FedICT (federal ICT department of Belgium), e-Contract.be BVBA (https://www.e-contract.be), +Bart Hanssens from FedICT diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/NOTICE.1 b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/NOTICE.1 new file mode 100644 index 000000000000..3c2ed7305470 --- /dev/null +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/NOTICE.1 @@ -0,0 +1,24 @@ +Apache POI +Copyright 2003-2021 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (https://www.apache.org/). + +This product contains parts that were originally based on software from BEA. +Copyright (c) 2000-2003, BEA Systems, (dead link), +which was acquired by Oracle Corporation in 2008. + + + +This product contains W3C XML Schema documents. Copyright 2001-2003 (c) +World Wide Web Consortium (Massachusetts Institute of Technology, European +Research Consortium for Informatics and Mathematics, Keio University) + +This product contains the chunks_parse_cmds.tbl file from the vsdump program. +Copyright (C) 2006-2007 Valek Filippov (frob@df.ru) + +This product contains parts of the eID Applet project + and . +Copyright (c) 2009-2018 +FedICT (federal ICT department of Belgium), e-Contract.be BVBA (https://www.e-contract.be), +Bart Hanssens from FedICT diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/NOTICES new file mode 100644 index 000000000000..4e358e6e05e4 --- /dev/null +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-5.2.2/NOTICES @@ -0,0 +1,7 @@ +COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. MICROSOFT WILL NOT BE LIABLE FOR ANY + +Copyright (C) 2000-2002 Microsoft Corporation. All rights reserved. + +Copyright (C) 2008-2014 FedICT. + +Copyright 2001 The Internet Society and W3C (Massachusetts Institute diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-lite-5.0.0/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-lite-5.0.0/NOTICES deleted file mode 100644 index 9ea3a13aa734..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-lite-5.0.0/NOTICES +++ /dev/null @@ -1,2 +0,0 @@ -See org.apache.poi.poi-ooxml-5.0.0 - diff --git a/distribution/engine/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/COPYING b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-lite-5.2.2/LICENSE similarity index 67% rename from distribution/engine/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/COPYING rename to distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-lite-5.2.2/LICENSE index d5783383b25e..be6c2c65c247 100644 --- a/distribution/engine/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/COPYING +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-lite-5.2.2/LICENSE @@ -1,56 +1,3 @@ -Cats Copyright (c) 2015 Cats Contributors. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ------- - -Code in Cats is derived in part from Scalaz. The Scalaz license follows: - -Copyright (c) 2009-2014 Tony Morris, Runar Bjarnason, Tom Adams, -Kristian Domagala, Brad Clow, Ricky Clarkson, Paul Chiusano, Trygve -Laugstøl, Nick Partridge, Jason Zaugg. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ------- - -Code in Cats is derived in part from the Scala standard library. The Scala license follows: Apache License Version 2.0, January 2004 @@ -253,3 +200,116 @@ Code in Cats is derived in part from the Scala standard library. The Scala licen WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + + +APACHE POI SUBCOMPONENTS: + +Apache POI includes subcomponents with separate copyright notices and +license terms. Your use of these subcomponents is subject to the terms +and conditions of the following licenses: + + +Office Open XML schemas (poi-ooxml-full-*.jar) + + The Office Open XML schema definitions used by Apache POI are + a part of the Office Open XML ECMA Specification (ECMA-376, [1]). + As defined in section 9.4 of the ECMA bylaws [2], this specification + is available to all interested parties without restriction: + + 9.4 All documents when approved shall be made available to + all interested parties without restriction. + + Furthermore, both Microsoft and Adobe have granted patent licenses + to this work [3,4,5]. + + [1] http://www.ecma-international.org/publications/standards/Ecma-376.htm + [2] http://www.ecma-international.org/memento/Ecmabylaws.htm + [3] http://www.microsoft.com/openspecifications/en/us/programs/osp/default.aspx + [4] http://www.ecma-international.org/publications/files/ECMA-ST/Ecma%20PATENT/ + Patent%20statements%20ok/ECMA-376%20Edition%202%20Microsoft%20Patent%20Declaration.pdf + [5] http://www.ecma-international.org/publications/files/ECMA-ST/Ecma%20PATENT/ + Patent%20statements%20ok/ECMA-376%20Adobe%20Patent%20Declaration.pdf + + +Bouncy Castle library (bcprov-*.jar, bcpg-*.jar, bcpkix-*.jar) + + Copyright (c) 2000 - 2021 The Legion of the Bouncy Castle Inc. + (https://www.bouncycastle.org) + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. + +CurvesAPI / Curve API + + BSD License + + Copyright (c) 2000-2015 www.hamcrest.org + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. Redistributions in + binary form must reproduce the above copyright notice, this list of + conditions and the following disclaimer in the documentation and/or other + materials provided with the distribution. Neither the name of Hamcrest nor + the names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Log4j 2 library (log4j-api-*.jar) + + Apache License Version 2.0 + + +inbot-utils (https://github.com/Inbot/inbot-utils) + + The MIT License (MIT) + + Copyright (c) 2015 Inbot + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. \ No newline at end of file diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-lite-5.2.2/NOTICE b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-lite-5.2.2/NOTICE new file mode 100644 index 000000000000..3c2ed7305470 --- /dev/null +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-lite-5.2.2/NOTICE @@ -0,0 +1,24 @@ +Apache POI +Copyright 2003-2021 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (https://www.apache.org/). + +This product contains parts that were originally based on software from BEA. +Copyright (c) 2000-2003, BEA Systems, (dead link), +which was acquired by Oracle Corporation in 2008. + + + +This product contains W3C XML Schema documents. Copyright 2001-2003 (c) +World Wide Web Consortium (Massachusetts Institute of Technology, European +Research Consortium for Informatics and Mathematics, Keio University) + +This product contains the chunks_parse_cmds.tbl file from the vsdump program. +Copyright (C) 2006-2007 Valek Filippov (frob@df.ru) + +This product contains parts of the eID Applet project + and . +Copyright (c) 2009-2018 +FedICT (federal ICT department of Belgium), e-Contract.be BVBA (https://www.e-contract.be), +Bart Hanssens from FedICT diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-lite-5.2.2/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-lite-5.2.2/NOTICES new file mode 100644 index 000000000000..91f17e21de48 --- /dev/null +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.poi.poi-ooxml-lite-5.2.2/NOTICES @@ -0,0 +1,7 @@ +COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. MICROSOFT WILL NOT BE LIABLE FOR ANY + +Copyright (C) 2000-2002 Microsoft Corporation. All rights reserved. + +Copyright (c) Microsoft Corporation. All rights reserved. Permission to copy, + +Copyright 2001 The Internet Society and W3C (Massachusetts Institute diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.santuario.xmlsec-2.2.1/NOTICE b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.santuario.xmlsec-2.2.1/NOTICE deleted file mode 100644 index 960688e1487b..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.santuario.xmlsec-2.2.1/NOTICE +++ /dev/null @@ -1,8 +0,0 @@ - -Apache XML Security for Java -Copyright 2000-2020 The Apache Software Foundation - -This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). - - diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.santuario.xmlsec-2.2.1/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.santuario.xmlsec-2.2.1/NOTICES deleted file mode 100644 index e93c7e1f1231..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.santuario.xmlsec-2.2.1/NOTICES +++ /dev/null @@ -1,13 +0,0 @@ -(C) Copyright IBM Corp. 2003 All Rights Reserved. - -Copyright 2001 The Internet Society and W3C (Massachusetts Institute - -Copyright 2002 The Internet Society and W3C (Massachusetts Institute - -Copyright 2005 Sun Microsystems, Inc. All rights reserved. - -Copyright 2008 Sun Microsystems, Inc. All rights reserved. - -Copyright ©[2011] World Wide Web Consortium - -Portions copyright 2005 Sun Microsystems, Inc. All rights reserved. diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlbeans.xmlbeans-5.0.1/NOTICE.txt b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlbeans.xmlbeans-5.0.1/NOTICE.txt deleted file mode 100644 index c6be6a59a5d2..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlbeans.xmlbeans-5.0.1/NOTICE.txt +++ /dev/null @@ -1,24 +0,0 @@ - ========================================================================= - == NOTICE file corresponding to section 4(d) of the Apache License, == - == Version 2.0, in this case for the Apache XmlBeans distribution. == - ========================================================================= - - This product includes software developed at - The Apache Software Foundation (http://www.apache.org/). - - Portions of this software were originally based on the following: - - software copyright (c) 2000-2003, BEA Systems, . - - Aside from contributions to the Apache XMLBeans project, this - software also includes: - - - one or more source files from the Apache Xerces-J and Apache Axis - products, Copyright (c) 1999-2003 Apache Software Foundation - - - W3C XML Schema documents Copyright 2001-2003 (c) World Wide Web - Consortium (Massachusetts Institute of Technology, European Research - Consortium for Informatics and Mathematics, Keio University) - - - resolver.jar from Apache Xml Commons project, - Copyright (c) 2001-2003 Apache Software Foundation - diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlbeans.xmlbeans-5.0.1/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlbeans.xmlbeans-5.0.1/NOTICES deleted file mode 100644 index 479de93bf000..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlbeans.xmlbeans-5.0.1/NOTICES +++ /dev/null @@ -1,7 +0,0 @@ -Copyright 2004 The Apache Software Foundation - -Copyright 2004-2018 The Apache Software Foundation - -Copyright 2017, 2018 The Apache Software Foundation - -Copyright 2019 The Apache Software Foundation diff --git a/tools/legal-review/Table/org.apache.xmlgraphics.batik-css-1.13/copyright-ignore b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlbeans.xmlbeans-5.1.0/NOTICES similarity index 56% rename from tools/legal-review/Table/org.apache.xmlgraphics.batik-css-1.13/copyright-ignore rename to distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlbeans.xmlbeans-5.1.0/NOTICES index 8cd8d66408c4..53cf462a9e15 100644 --- a/tools/legal-review/Table/org.apache.xmlgraphics.batik-css-1.13/copyright-ignore +++ b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/org.apache.xmlbeans.xmlbeans-5.1.0/NOTICES @@ -1 +1,3 @@ + - - - - W3C IPR SOFTWARE NOTICE - - - - - -

W3C IPR SOFTWARE NOTICE

- -

Copyright � 2002 World Wide Web Consortium, (Massachusetts Institute of -Technology, Institut National de Recherche en Informatique et en Automatique, -Keio University). All Rights Reserved.

- -

Note: The original version of the W3C Software Copyright Notice and -License could be found at http://www.w3.org/Consortium/Legal/copyright-software-19980720

- -

Copyright � 1994-2002 World Wide Web -Consortium, (Massachusetts Institute of -Technology, Institut National de Recherche -en Informatique et en Automatique, Keio -University). All Rights Reserved. http://www.w3.org/Consortium/Legal/

- -

This W3C work (including software, documents, or other related items) is -being provided by the copyright holders under the following license. By -obtaining, using and/or copying this work, you (the licensee) agree that you -have read, understood, and will comply with the following terms and -conditions:

- -

Permission to use, copy, and modify this software and its documentation, -with or without modification,� for any purpose and without fee or royalty is -hereby granted, provided that you include the following on ALL copies of the -software and documentation or portions thereof, including modifications, that -you make:

-
    -
  1. The full text of this NOTICE in a location viewable to users of the - redistributed or derivative work.
  2. -
  3. Any pre-existing intellectual property disclaimers, notices, or terms - and conditions. If none exist, a short notice of the following form - (hypertext is preferred, text is permitted) should be used within the body - of any redistributed or derivative code: "Copyright � 2002 - World Wide Web Consortium, (Massachusetts Institute of Technology, - Institut National de Recherche en - Informatique et en Automatique, Keio - University). All Rights Reserved. - http://www.w3.org/Consortium/Legal/"
  4. -
  5. Notice of any changes or modifications to the W3C files, including the - date changes were made. (We recommend you provide URIs to the location - from which the code is derived.)
  6. -
- -

THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS -MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT -LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR -PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY -THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.

- -

COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR -DOCUMENTATION.

- -

The name and trademarks of copyright holders may NOT be used in advertising -or publicity pertaining to the software without specific, written prior -permission. Title to copyright in this software and any associated -documentation will at all times remain with copyright holders.

- - diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-1.4.01/LICENSE.sax.txt b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-1.4.01/LICENSE.sax.txt deleted file mode 100644 index 0738c247ceca..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-1.4.01/LICENSE.sax.txt +++ /dev/null @@ -1,23 +0,0 @@ -xml-commons/java/external/LICENSE.sax.txt $Id: LICENSE.sax.txt 225954 2002-01-31 23:26:48Z curcuru $ - - -This license came from: http://www.megginson.com/SAX/copying.html - However please note future versions of SAX may be covered - under http://saxproject.org/?selected=pd - - -This page is now out of date -- see the new SAX site at -http://www.saxproject.org/ for more up-to-date -releases and other information. Please change your bookmarks. - - -SAX2 is Free! - -I hereby abandon any property rights to SAX 2.0 (the Simple API for -XML), and release all of the SAX 2.0 source code, compiled code, and -documentation contained in this distribution into the Public Domain. -SAX comes with NO WARRANTY or guarantee of fitness for any -purpose. - -David Megginson, david@megginson.com -2000-05-05 \ No newline at end of file diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-1.4.01/NOTICE b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-1.4.01/NOTICE deleted file mode 100644 index 9a05f3cb849d..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-1.4.01/NOTICE +++ /dev/null @@ -1,16 +0,0 @@ - ========================================================================= - == NOTICE file corresponding to section 4(d) of the Apache License, == - == Version 2.0, in this case for the Apache xml-commons xml-apis == - == distribution. == - ========================================================================= - - Apache XML Commons XML APIs - Copyright 1999-2009 The Apache Software Foundation. - - This product includes software developed at - The Apache Software Foundation (http://www.apache.org/). - - Portions of this software were originally based on the following: - - software copyright (c) 1999, IBM Corporation., http://www.ibm.com. - - software copyright (c) 1999, Sun Microsystems., http://www.sun.com. - - software copyright (c) 2000 World Wide Web Consortium, http://www.w3.org diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-1.4.01/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-1.4.01/NOTICES deleted file mode 100644 index 90a564fcc3b2..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-1.4.01/NOTICES +++ /dev/null @@ -1,15 +0,0 @@ -(c) COPYRIGHT 1999 World Wide Web Consortium - -Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of - -Copyright (c) 1999 World Wide Web Consortium - -Copyright (c) 1999 World Wide Web Consortium, - -Copyright (c) 2000 World Wide Web Consortium, - -Copyright (c) 2001 World Wide Web Consortium, - -Copyright (c) 2004 World Wide Web Consortium, - -Copyright (c) 2009 World Wide Web Consortium, diff --git a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-ext-1.3.04/NOTICES b/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-ext-1.3.04/NOTICES deleted file mode 100644 index d5ba8b0e9fb8..000000000000 --- a/distribution/lib/Standard/Table/0.0.0-dev/THIRD-PARTY/xml-apis.xml-apis-ext-1.3.04/NOTICES +++ /dev/null @@ -1,2 +0,0 @@ -See xml-apis.xml-apis-1.4.01 - diff --git a/distribution/project-manager/THIRD-PARTY/NOTICE b/distribution/project-manager/THIRD-PARTY/NOTICE index 1b45b380e5d4..dbe7b0231f26 100644 --- a/distribution/project-manager/THIRD-PARTY/NOTICE +++ b/distribution/project-manager/THIRD-PARTY/NOTICE @@ -33,32 +33,32 @@ Copyright notices related to this dependency can be found in the directory `com. 'shapeless_2.13', licensed under the Apache 2, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.chuusai.shapeless_2.13-2.3.7`. +Copyright notices related to this dependency can be found in the directory `com.chuusai.shapeless_2.13-2.3.9`. 'jackson-annotations', licensed under the The Apache Software License, Version 2.0, is distributed with the project-manager. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.core.jackson-annotations-2.13.1`. +The license information can be found along with the copyright notices. +Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.core.jackson-annotations-2.13.3`. 'jackson-core', licensed under the The Apache Software License, Version 2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.core.jackson-core-2.13.1`. +Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.core.jackson-core-2.13.3`. 'jackson-databind', licensed under the The Apache Software License, Version 2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.core.jackson-databind-2.13.1`. +Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.core.jackson-databind-2.13.3`. 'jackson-dataformat-cbor', licensed under the The Apache Software License, Version 2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.1`. +Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.3`. 'jackson-module-scala_2.13', licensed under the The Apache Software License, Version 2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1`. +Copyright notices related to this dependency can be found in the directory `com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3`. 'pureconfig-core_2.13', licensed under the Mozilla Public License, version 2.0, is distributed with the project-manager. @@ -93,52 +93,52 @@ Copyright notices related to this dependency can be found in the directory `com. 'akka-actor-typed_2.13', licensed under the Apache-2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-actor-typed_2.13-2.6.18`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-actor-typed_2.13-2.6.19`. 'akka-actor_2.13', licensed under the Apache-2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-actor_2.13-2.6.18`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-actor_2.13-2.6.19`. 'akka-http-core_2.13', licensed under the Apache-2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-http-core_2.13-10.2.7`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-http-core_2.13-10.2.9`. 'akka-http-spray-json_2.13', licensed under the Apache-2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-http-spray-json_2.13-10.2.7`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-http-spray-json_2.13-10.2.9`. 'akka-http_2.13', licensed under the Apache-2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-http_2.13-10.2.7`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-http_2.13-10.2.9`. 'akka-parsing_2.13', licensed under the Apache-2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-parsing_2.13-10.2.7`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-parsing_2.13-10.2.9`. 'akka-protobuf-v3_2.13', licensed under the Apache-2.0, is distributed with the project-manager. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19`. 'akka-slf4j_2.13', licensed under the Apache-2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-slf4j_2.13-2.6.18`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-slf4j_2.13-2.6.19`. 'akka-stream_2.13', licensed under the Apache-2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-stream_2.13-2.6.18`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.akka.akka-stream_2.13-2.6.19`. 'config', licensed under the Apache-2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.config-1.4.1`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.config-1.4.2`. 'scala-logging_2.13', licensed under the Apache 2.0 License, is distributed with the project-manager. @@ -148,7 +148,7 @@ Copyright notices related to this dependency can be found in the directory `com. 'ssl-config-core_2.13', licensed under the Apache-2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `com.typesafe.ssl-config-core_2.13-0.4.2`. +Copyright notices related to this dependency can be found in the directory `com.typesafe.ssl-config-core_2.13-0.4.3`. 'commons-cli', licensed under the Apache License, Version 2.0, is distributed with the project-manager. @@ -188,32 +188,32 @@ Copyright notices related to this dependency can be found in the directory `dev. 'circe-core_2.13', licensed under the Apache 2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.circe.circe-core_2.13-0.14.1`. +Copyright notices related to this dependency can be found in the directory `io.circe.circe-core_2.13-0.14.2`. 'circe-generic_2.13', licensed under the Apache 2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.circe.circe-generic_2.13-0.14.1`. +Copyright notices related to this dependency can be found in the directory `io.circe.circe-generic_2.13-0.14.2`. 'circe-jawn_2.13', licensed under the Apache 2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.circe.circe-jawn_2.13-0.14.1`. +Copyright notices related to this dependency can be found in the directory `io.circe.circe-jawn_2.13-0.14.2`. 'circe-literal_2.13', licensed under the Apache 2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.circe.circe-literal_2.13-0.14.1`. +Copyright notices related to this dependency can be found in the directory `io.circe.circe-literal_2.13-0.14.2`. 'circe-numbers_2.13', licensed under the Apache 2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.circe.circe-numbers_2.13-0.14.1`. +Copyright notices related to this dependency can be found in the directory `io.circe.circe-numbers_2.13-0.14.2`. 'circe-parser_2.13', licensed under the Apache 2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.circe.circe-parser_2.13-0.14.1`. +Copyright notices related to this dependency can be found in the directory `io.circe.circe-parser_2.13-0.14.2`. 'circe-yaml_2.13', licensed under the Apache 2.0, is distributed with the project-manager. @@ -273,37 +273,32 @@ Copyright notices related to this dependency can be found in the directory `org. 'scala-library', licensed under the Apache-2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.scala-lang.scala-library-2.13.7`. +Copyright notices related to this dependency can be found in the directory `org.scala-lang.scala-library-2.13.8`. 'scala-reflect', licensed under the Apache-2.0, is distributed with the project-manager. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.scala-lang.scala-reflect-2.13.7`. +Copyright notices related to this dependency can be found in the directory `org.scala-lang.scala-reflect-2.13.8`. 'slf4j-api', licensed under the MIT License, is distributed with the project-manager. The license file can be found at `licenses/MIT`. -Copyright notices related to this dependency can be found in the directory `org.slf4j.slf4j-api-1.7.32`. +Copyright notices related to this dependency can be found in the directory `org.slf4j.slf4j-api-1.7.36`. 'cats-core_2.13', licensed under the MIT, is distributed with the project-manager. -The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.typelevel.cats-core_2.13-2.7.0`. +The license file can be found at `licenses/MIT`. +Copyright notices related to this dependency can be found in the directory `org.typelevel.cats-core_2.13-2.8.0`. 'cats-kernel_2.13', licensed under the MIT, is distributed with the project-manager. -The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.typelevel.cats-kernel_2.13-2.7.0`. +The license file can be found at `licenses/MIT`. +Copyright notices related to this dependency can be found in the directory `org.typelevel.cats-kernel_2.13-2.8.0`. 'jawn-parser_2.13', licensed under the MIT, is distributed with the project-manager. The license information can be found along with the copyright notices. -Copyright notices related to this dependency can be found in the directory `org.typelevel.jawn-parser_2.13-1.1.2`. - - -'simulacrum-scalafix-annotations_2.13', licensed under the Apache 2.0, is distributed with the project-manager. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4`. +Copyright notices related to this dependency can be found in the directory `org.typelevel.jawn-parser_2.13-1.3.2`. 'snakeyaml', licensed under the Apache License, Version 2.0, is distributed with the project-manager. diff --git a/distribution/project-manager/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.7/NOTICES b/distribution/project-manager/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.7/NOTICES deleted file mode 100644 index 3ecb3c972f1c..000000000000 --- a/distribution/project-manager/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.7/NOTICES +++ /dev/null @@ -1,153 +0,0 @@ -/* - * Copyright (c) 2011-13 Miles Sabin - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * Copyright (c) 2011-16 Dale Wijnand - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * Copyright (c) 2012-18 Lars Hupel, Miles Sabin - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * Copyright (c) 2015-9 Alexandre Archambault - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * Copyright (c) 2016 Frank S. Thomas - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * Copyright (c) 2017 Fabio Labella - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * Copyright (c) 2017 Georgi Krastev - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -Copyright (c) 2011-14 Miles Sabin - -Copyright (c) 2011-15 Miles Sabin - -Copyright (c) 2011-16 Miles Sabin - -Copyright (c) 2011-18 Miles Sabin - -Copyright (c) 2012-15 Miles Sabin - -Copyright (c) 2012-18 Miles Sabin - -Copyright (c) 2013 Miles Sabin - -Copyright (c) 2013-14 Lars Hupel, Miles Sabin - -Copyright (c) 2013-14 Miles Sabin - -Copyright (c) 2013-15 Miles Sabin - -Copyright (c) 2013-16 Miles Sabin - -Copyright (c) 2013-18 Miles Sabin - -Copyright (c) 2014 Miles Sabin - -Copyright (c) 2014-15 Miles Sabin - -Copyright (c) 2014-16 Miles Sabin - -Copyright (c) 2015 Miles Sabin - -Copyright (c) 2015-16 Miles Sabin - -Copyright (c) 2015-18 Miles Sabin - -Copyright (c) 2016 Miles Sabin - -Copyright (c) 2016-18 Miles Sabin - -Copyright (c) 2018 Miles Sabin diff --git a/distribution/launcher/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.7/NOTICES b/distribution/project-manager/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.9/NOTICES similarity index 100% rename from distribution/launcher/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.7/NOTICES rename to distribution/project-manager/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.9/NOTICES diff --git a/distribution/launcher/THIRD-PARTY/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/NOTICES b/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.13.3/LICENSE similarity index 99% rename from distribution/launcher/THIRD-PARTY/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/NOTICES rename to distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.13.3/LICENSE index 6b0b1270ff0c..d64569567334 100644 --- a/distribution/launcher/THIRD-PARTY/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/NOTICES +++ b/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.13.3/LICENSE @@ -200,4 +200,3 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - diff --git a/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.1/NOTICES b/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.1/NOTICES deleted file mode 100644 index 08e7398acf33..000000000000 --- a/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.1/NOTICES +++ /dev/null @@ -1,4 +0,0 @@ -/* Jackson JSON-processor. - * - * Copyright (c) 2007- Tatu Saloranta, tatu.saloranta@iki.fi - */ diff --git a/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.1/CREDITS-2.x.txt b/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.3/CREDITS-2.x.txt similarity index 100% rename from distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.1/CREDITS-2.x.txt rename to distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.3/CREDITS-2.x.txt diff --git a/distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.12.3/NOTICE b/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.3/NOTICE similarity index 100% rename from distribution/lib/Standard/Database/0.0.0-dev/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.12.3/NOTICE rename to distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.3/NOTICE diff --git a/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.1/NOTICES b/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.3/NOTICES similarity index 100% rename from distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.1/NOTICES rename to distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.3/NOTICES diff --git a/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.13.1/NOTICE b/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.13.1/NOTICE deleted file mode 100644 index d226e890daa8..000000000000 --- a/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.13.1/NOTICE +++ /dev/null @@ -1,17 +0,0 @@ -# Jackson JSON processor - -Jackson is a high-performance, Free/Open Source JSON processing library. -It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has -been in development since 2007. -It is currently developed by a community of developers. - -## Licensing - -Jackson 2.x core and extension components are licensed under Apache License 2.0 -To find the details that apply to this artifact see the accompanying LICENSE file. - -## Credits - -A list of contributors may be found from CREDITS(-2.x) file, which is included -in some artifacts (usually source distributions); but is always available -from the source code management (SCM) system project uses. diff --git a/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.13.1/CREDITS-2.x.txt b/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.13.3/CREDITS-2.x.txt similarity index 100% rename from distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.13.1/CREDITS-2.x.txt rename to distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.13.3/CREDITS-2.x.txt diff --git a/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.1/NOTICE b/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.13.3/NOTICE similarity index 100% rename from distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.13.1/NOTICE rename to distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.13.3/NOTICE diff --git a/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.1/CREDITS-2.x.txt b/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.3/CREDITS-2.x.txt similarity index 100% rename from distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.1/CREDITS-2.x.txt rename to distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.3/CREDITS-2.x.txt diff --git a/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/NOTICES b/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/NOTICES deleted file mode 100644 index afd6f5786e98..000000000000 --- a/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/NOTICES +++ /dev/null @@ -1,29 +0,0 @@ ------------------------- - -From file com/fasterxml/jackson/module/scala/introspect/BeanIntrospector.scala: - -/* - * Derived from source code of scalabeans: - * https://raw.github.com/scalastuff/scalabeans/62b50c4e2482cbc1f494e0ac5c6c54fadc1bbcdd/src/main/scala/org/scalastuff/scalabeans/BeanIntrospector.scala - * - * The scalabeans code is covered by the copyright statement that follows. - */ - -/* - * Copyright (c) 2011 ScalaStuff.org (joint venture of Alexander Dvorkovyy and Ruud Diterwich) - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - ------------------------- - diff --git a/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/LICENSE b/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/LICENSE similarity index 100% rename from distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/LICENSE rename to distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/LICENSE diff --git a/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/NOTICES b/distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/NOTICES similarity index 100% rename from distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/NOTICES rename to distribution/project-manager/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/NOTICES diff --git a/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/NOTICES b/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/NOTICES deleted file mode 100644 index 27a9b642aa3c..000000000000 --- a/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/NOTICES +++ /dev/null @@ -1,15 +0,0 @@ -/* - * Copyright (C) 2009-2021 Lightbend Inc. - */ - -Copyright (C) 2014-2021 Lightbend Inc. - -Copyright (C) 2016-2021 Lightbend Inc. - -Copyright (C) 2017-2021 Lightbend Inc. - -Copyright (C) 2018-2021 Lightbend Inc. - -Copyright (C) 2019-2021 Lightbend Inc. - -Copyright (C) 2020-2021 Lightbend Inc. diff --git a/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/NOTICES b/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/NOTICES new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/NOTICES @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.18/NOTICES b/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.18/NOTICES deleted file mode 100644 index 34eb828a9670..000000000000 --- a/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.18/NOTICES +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Copyright (C) 2009-2021 Lightbend Inc. - */ - -Copyright (C) 2014-2021 Lightbend Inc. - -Copyright (C) 2015-2021 Lightbend Inc. - -Copyright (C) 2016-2021 Lightbend Inc. - -Copyright (C) 2017-2021 Lightbend Inc. - -Copyright (C) 2018-2021 Lightbend Inc. - -Copyright (C) 2019-2021 Lightbend Inc. - -Copyright (C) 2020-2021 Lightbend Inc. - -Copyright (C) 2021 Lightbend Inc. diff --git a/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.19/NOTICES b/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.19/NOTICES new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.19/NOTICES @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.7/NOTICES b/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.9/NOTICES similarity index 100% rename from distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.7/NOTICES rename to distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.9/NOTICES diff --git a/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-http-spray-json_2.13-10.2.7/NOTICES b/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-http-spray-json_2.13-10.2.9/NOTICES similarity index 100% rename from distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-http-spray-json_2.13-10.2.7/NOTICES rename to distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-http-spray-json_2.13-10.2.9/NOTICES diff --git a/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.7/NOTICES b/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.9/NOTICES similarity index 100% rename from distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.7/NOTICES rename to distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.9/NOTICES diff --git a/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.7/NOTICES b/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.9/NOTICES similarity index 100% rename from distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.7/NOTICES rename to distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.9/NOTICES diff --git a/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/COPYING.protobuf b/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/COPYING.protobuf similarity index 100% rename from distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/COPYING.protobuf rename to distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/COPYING.protobuf diff --git a/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/LICENSE b/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/LICENSE similarity index 100% rename from distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/LICENSE rename to distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/LICENSE diff --git a/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.18/NOTICES b/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.18/NOTICES deleted file mode 100644 index 6efe69a3b900..000000000000 --- a/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.18/NOTICES +++ /dev/null @@ -1,3 +0,0 @@ -/* - * Copyright (C) 2009-2021 Lightbend Inc. - */ diff --git a/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.19/NOTICES b/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.19/NOTICES new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.19/NOTICES @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.18/NOTICES b/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.18/NOTICES deleted file mode 100644 index 34eb828a9670..000000000000 --- a/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.18/NOTICES +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Copyright (C) 2009-2021 Lightbend Inc. - */ - -Copyright (C) 2014-2021 Lightbend Inc. - -Copyright (C) 2015-2021 Lightbend Inc. - -Copyright (C) 2016-2021 Lightbend Inc. - -Copyright (C) 2017-2021 Lightbend Inc. - -Copyright (C) 2018-2021 Lightbend Inc. - -Copyright (C) 2019-2021 Lightbend Inc. - -Copyright (C) 2020-2021 Lightbend Inc. - -Copyright (C) 2021 Lightbend Inc. diff --git a/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.19/NOTICES b/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.19/NOTICES new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/distribution/project-manager/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.19/NOTICES @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/distribution/project-manager/THIRD-PARTY/com.typesafe.config-1.4.1/NOTICES b/distribution/project-manager/THIRD-PARTY/com.typesafe.config-1.4.1/NOTICES deleted file mode 100644 index 33fcda9b45ef..000000000000 --- a/distribution/project-manager/THIRD-PARTY/com.typesafe.config-1.4.1/NOTICES +++ /dev/null @@ -1,11 +0,0 @@ -/** - * Copyright (C) 2011-2012 Typesafe Inc. - */ - -/** - * Copyright (C) 2014 Typesafe Inc. - */ - -/** - * Copyright (C) 2015 Typesafe Inc. - */ diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.config-1.4.1/NOTICES b/distribution/project-manager/THIRD-PARTY/com.typesafe.config-1.4.2/NOTICES similarity index 100% rename from distribution/engine/THIRD-PARTY/com.typesafe.config-1.4.1/NOTICES rename to distribution/project-manager/THIRD-PARTY/com.typesafe.config-1.4.2/NOTICES diff --git a/distribution/project-manager/THIRD-PARTY/com.typesafe.ssl-config-core_2.13-0.4.2/NOTICES b/distribution/project-manager/THIRD-PARTY/com.typesafe.ssl-config-core_2.13-0.4.3/NOTICES similarity index 100% rename from distribution/project-manager/THIRD-PARTY/com.typesafe.ssl-config-core_2.13-0.4.2/NOTICES rename to distribution/project-manager/THIRD-PARTY/com.typesafe.ssl-config-core_2.13-0.4.3/NOTICES diff --git a/distribution/project-manager/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/LICENSE.argonaut b/distribution/project-manager/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/LICENSE.argonaut deleted file mode 100644 index 65c268be5c00..000000000000 --- a/distribution/project-manager/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/LICENSE.argonaut +++ /dev/null @@ -1,24 +0,0 @@ -Copyright (c) 2012, Ephox Pty Ltd, Mark Hibberd, Sean Parsons and other contributors. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/distribution/project-manager/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/LICENSE.ephox b/distribution/project-manager/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/LICENSE.ephox deleted file mode 100644 index 95272ae68c9a..000000000000 --- a/distribution/project-manager/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/LICENSE.ephox +++ /dev/null @@ -1,24 +0,0 @@ -Copyright (c) 2012, Ephox Pty Ltd -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/LICENSE.argonaut b/distribution/project-manager/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2/LICENSE.argonaut similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/LICENSE.argonaut rename to distribution/project-manager/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2/LICENSE.argonaut diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/LICENSE.ephox b/distribution/project-manager/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2/LICENSE.ephox similarity index 100% rename from distribution/engine/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/LICENSE.ephox rename to distribution/project-manager/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2/LICENSE.ephox diff --git a/distribution/project-manager/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/NOTICE b/distribution/project-manager/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2/NOTICE similarity index 100% rename from distribution/project-manager/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/NOTICE rename to distribution/project-manager/THIRD-PARTY/io.circe.circe-core_2.13-0.14.2/NOTICE diff --git a/distribution/project-manager/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/LICENSE.argonaut b/distribution/project-manager/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/LICENSE.argonaut deleted file mode 100644 index 65c268be5c00..000000000000 --- a/distribution/project-manager/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/LICENSE.argonaut +++ /dev/null @@ -1,24 +0,0 @@ -Copyright (c) 2012, Ephox Pty Ltd, Mark Hibberd, Sean Parsons and other contributors. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/distribution/project-manager/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/LICENSE.ephox b/distribution/project-manager/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/LICENSE.ephox deleted file mode 100644 index 95272ae68c9a..000000000000 --- a/distribution/project-manager/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/LICENSE.ephox +++ /dev/null @@ -1,24 +0,0 @@ -Copyright (c) 2012, Ephox Pty Ltd -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/LICENSE.argonaut b/distribution/project-manager/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2/LICENSE.argonaut similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/LICENSE.argonaut rename to distribution/project-manager/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2/LICENSE.argonaut diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/LICENSE.ephox b/distribution/project-manager/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2/LICENSE.ephox similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.1/LICENSE.ephox rename to distribution/project-manager/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2/LICENSE.ephox diff --git a/distribution/project-manager/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/NOTICE b/distribution/project-manager/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2/NOTICE similarity index 100% rename from distribution/project-manager/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/NOTICE rename to distribution/project-manager/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.2/NOTICE diff --git a/distribution/project-manager/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/LICENSE.argonaut b/distribution/project-manager/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/LICENSE.argonaut deleted file mode 100644 index 65c268be5c00..000000000000 --- a/distribution/project-manager/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/LICENSE.argonaut +++ /dev/null @@ -1,24 +0,0 @@ -Copyright (c) 2012, Ephox Pty Ltd, Mark Hibberd, Sean Parsons and other contributors. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/distribution/project-manager/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/LICENSE.ephox b/distribution/project-manager/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/LICENSE.ephox deleted file mode 100644 index 95272ae68c9a..000000000000 --- a/distribution/project-manager/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/LICENSE.ephox +++ /dev/null @@ -1,24 +0,0 @@ -Copyright (c) 2012, Ephox Pty Ltd -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/LICENSE.argonaut b/distribution/project-manager/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2/LICENSE.argonaut similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/LICENSE.argonaut rename to distribution/project-manager/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2/LICENSE.argonaut diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/LICENSE.ephox b/distribution/project-manager/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2/LICENSE.ephox similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.1/LICENSE.ephox rename to distribution/project-manager/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2/LICENSE.ephox diff --git a/distribution/project-manager/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/NOTICE b/distribution/project-manager/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2/NOTICE similarity index 100% rename from distribution/project-manager/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/NOTICE rename to distribution/project-manager/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.2/NOTICE diff --git a/distribution/project-manager/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.1/LICENSE.argonaut b/distribution/project-manager/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.1/LICENSE.argonaut deleted file mode 100644 index 65c268be5c00..000000000000 --- a/distribution/project-manager/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.1/LICENSE.argonaut +++ /dev/null @@ -1,24 +0,0 @@ -Copyright (c) 2012, Ephox Pty Ltd, Mark Hibberd, Sean Parsons and other contributors. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/distribution/project-manager/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.1/LICENSE.ephox b/distribution/project-manager/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.1/LICENSE.ephox deleted file mode 100644 index 95272ae68c9a..000000000000 --- a/distribution/project-manager/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.1/LICENSE.ephox +++ /dev/null @@ -1,24 +0,0 @@ -Copyright (c) 2012, Ephox Pty Ltd -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/LICENSE.argonaut b/distribution/project-manager/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.2/LICENSE.argonaut similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/LICENSE.argonaut rename to distribution/project-manager/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.2/LICENSE.argonaut diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/LICENSE.ephox b/distribution/project-manager/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.2/LICENSE.ephox similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.1/LICENSE.ephox rename to distribution/project-manager/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.2/LICENSE.ephox diff --git a/distribution/project-manager/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.1/NOTICE b/distribution/project-manager/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.2/NOTICE similarity index 100% rename from distribution/project-manager/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.1/NOTICE rename to distribution/project-manager/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.2/NOTICE diff --git a/distribution/project-manager/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/LICENSE.argonaut b/distribution/project-manager/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/LICENSE.argonaut deleted file mode 100644 index 65c268be5c00..000000000000 --- a/distribution/project-manager/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/LICENSE.argonaut +++ /dev/null @@ -1,24 +0,0 @@ -Copyright (c) 2012, Ephox Pty Ltd, Mark Hibberd, Sean Parsons and other contributors. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/distribution/project-manager/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/LICENSE.ephox b/distribution/project-manager/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/LICENSE.ephox deleted file mode 100644 index 95272ae68c9a..000000000000 --- a/distribution/project-manager/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/LICENSE.ephox +++ /dev/null @@ -1,24 +0,0 @@ -Copyright (c) 2012, Ephox Pty Ltd -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/LICENSE.argonaut b/distribution/project-manager/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2/LICENSE.argonaut similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/LICENSE.argonaut rename to distribution/project-manager/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2/LICENSE.argonaut diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/LICENSE.ephox b/distribution/project-manager/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2/LICENSE.ephox similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/LICENSE.ephox rename to distribution/project-manager/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2/LICENSE.ephox diff --git a/distribution/project-manager/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/NOTICE b/distribution/project-manager/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2/NOTICE similarity index 100% rename from distribution/project-manager/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.1/NOTICE rename to distribution/project-manager/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.2/NOTICE diff --git a/distribution/project-manager/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/LICENSE.argonaut b/distribution/project-manager/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/LICENSE.argonaut deleted file mode 100644 index 65c268be5c00..000000000000 --- a/distribution/project-manager/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/LICENSE.argonaut +++ /dev/null @@ -1,24 +0,0 @@ -Copyright (c) 2012, Ephox Pty Ltd, Mark Hibberd, Sean Parsons and other contributors. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/distribution/project-manager/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/LICENSE.ephox b/distribution/project-manager/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/LICENSE.ephox deleted file mode 100644 index 95272ae68c9a..000000000000 --- a/distribution/project-manager/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/LICENSE.ephox +++ /dev/null @@ -1,24 +0,0 @@ -Copyright (c) 2012, Ephox Pty Ltd -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/LICENSE.argonaut b/distribution/project-manager/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2/LICENSE.argonaut similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/LICENSE.argonaut rename to distribution/project-manager/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2/LICENSE.argonaut diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/LICENSE.ephox b/distribution/project-manager/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2/LICENSE.ephox similarity index 100% rename from distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/LICENSE.ephox rename to distribution/project-manager/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2/LICENSE.ephox diff --git a/distribution/project-manager/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/NOTICE b/distribution/project-manager/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2/NOTICE similarity index 100% rename from distribution/project-manager/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.1/NOTICE rename to distribution/project-manager/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.2/NOTICE diff --git a/distribution/project-manager/THIRD-PARTY/org.scala-lang.scala-library-2.13.7/NOTICE b/distribution/project-manager/THIRD-PARTY/org.scala-lang.scala-library-2.13.8/NOTICE similarity index 100% rename from distribution/project-manager/THIRD-PARTY/org.scala-lang.scala-library-2.13.7/NOTICE rename to distribution/project-manager/THIRD-PARTY/org.scala-lang.scala-library-2.13.8/NOTICE diff --git a/distribution/project-manager/THIRD-PARTY/org.scala-lang.scala-library-2.13.7/NOTICES b/distribution/project-manager/THIRD-PARTY/org.scala-lang.scala-library-2.13.8/NOTICES similarity index 100% rename from distribution/project-manager/THIRD-PARTY/org.scala-lang.scala-library-2.13.7/NOTICES rename to distribution/project-manager/THIRD-PARTY/org.scala-lang.scala-library-2.13.8/NOTICES diff --git a/distribution/project-manager/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.7/NOTICE b/distribution/project-manager/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.8/NOTICE similarity index 100% rename from distribution/project-manager/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.7/NOTICE rename to distribution/project-manager/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.8/NOTICE diff --git a/distribution/project-manager/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.7/NOTICES b/distribution/project-manager/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.8/NOTICES similarity index 100% rename from distribution/project-manager/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.7/NOTICES rename to distribution/project-manager/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.8/NOTICES diff --git a/distribution/project-manager/THIRD-PARTY/org.slf4j.slf4j-api-1.7.32/NOTICES b/distribution/project-manager/THIRD-PARTY/org.slf4j.slf4j-api-1.7.32/NOTICES deleted file mode 100644 index aecbef31f75f..000000000000 --- a/distribution/project-manager/THIRD-PARTY/org.slf4j.slf4j-api-1.7.32/NOTICES +++ /dev/null @@ -1,24 +0,0 @@ -/** - * Copyright (c) 2004-2011 QOS.ch - * All rights reserved. - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - */ diff --git a/distribution/launcher/THIRD-PARTY/org.slf4j.slf4j-api-1.7.32/NOTICES b/distribution/project-manager/THIRD-PARTY/org.slf4j.slf4j-api-1.7.36/NOTICES similarity index 100% rename from distribution/launcher/THIRD-PARTY/org.slf4j.slf4j-api-1.7.32/NOTICES rename to distribution/project-manager/THIRD-PARTY/org.slf4j.slf4j-api-1.7.36/NOTICES diff --git a/distribution/project-manager/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/AUTHORS.md b/distribution/project-manager/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/AUTHORS.md deleted file mode 100644 index 34ea0d8230f8..000000000000 --- a/distribution/project-manager/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/AUTHORS.md +++ /dev/null @@ -1,324 +0,0 @@ -## Authors - -A successful open-source project relies upon the community to: - -* discuss requirements and possible designs -* submit code and tests -* identify and fix bugs -* create documentation and examples -* provide feedback -* support each other - -This file lists the people whose contributions have made Cats -possible: - - * 3rdLaw - * Aaron Levin - * Adam Fisher - * Adam Rosien - * Adelbert Chang - * Adrian Ramirez Fornell - * Aldo Stracquadanio - * Alejandro Gómez - * Alessandro Lacava - * Alejandro Marín E. - * Alex Simkin - * Alexandru Nedelcu - * Alexander Semenov - * Alexey Levan - * Alissa Pajer - * Alistair Johnson - * Allan Timothy Leong - * Alonso Dominguez - * Amir Mohammad Saied - * Amitay Horwitz - * Andrea Fiore - * Andrea McAts - * Andrew Jones - * Andy Scott - * Angelo Genovese - * Antoine Comte - * Arulselvan Madhavan - * Arya Irani - * Ash Pook - * Aλ - * Barnabás Oláh - * Ben Fradet - * Ben Hutchison - * Ben Kirwin - * Ben Plommer - * Ben Stewart - * Benjamin Thuillier - * Binh Nguyen - * Bjørn Madsen - * Bobby Rauchenberg - * Brendan McAdams - * Brian McKenna - * Brian P. Holt - * Bryan Tan - * Brian Wignall - * Cary Robbins - * Changwoo Park - * Chris Birchall - * Christopher Davenport - * Cody Allen - * Colin Woodbury - * Colt Frederickson - * Connie Chen - * Csongor Kiss - * dadepo - * Dale Wijnand - * Dan Di Spaltro - * Daniel Karch - * Daniel Spiewak - * Daniel Urban - * Daniela Sfregola - * dantb - * Dave Gurnell - * Dave Rostron - * David Allsopp - * David Gregory - * David R. Bild - * Dayyan Lord - * Denis Mikhaylov - * Denis Rosca - * Denis - * Derek Wickern - * Diego Esteban Alonso Blas - * Dmitry Polienko - * Donaldo Salas - * Earl St Sauver - * Edd Steel - * Endre Galaczi - * Enrico Benini - * enzief - * Eric Torreborre - * ericaovo - * Erik Erlandson - * Erik LaBianca - * Erik Osheim - * Eugene Burmako - * Eugene Platonov - * Eugene Yokota - * Fabian Gutierrez - * Fabian Schmitthenner - * Fabio Labella - * fantayeneh - * Feynman Liang - * Filipe Oliveira - * Filippo Mariotti - * Francisco Bermejo - * Francisco Canedo - * Francois Armand - * Frank S. Thomas - * Gabriele Petronella - * Gagandeep Kalra - * Gavin Bisesi - * Georgi Krastev - * Gergő Törcsvári - * Giovanni Ruggiero - * Giulio De Luise - * Giuseppe Cannella - * Greg Pfeil - * Gregor Heine - * Guillaume Massé - * Hamed Nourhani - * Hamish Dickson - * Harrison Houghton - * Ian McIntosh - * Ikrom - * ImLiar - * Ionuț G. Stan - * Israel Pérez González - * Itamar Ravid - * Ivan Klass - * Jack Low - * Jacob Barber - * Jakub Kozłowski - * Jan-Hendrik Zab - * Jasper Moeys - * Jean-Rémi Desjardins - * Jens - * Jens Grassel - * Jichao Ouyang - * Jimin Hsieh - * Jisoo Park - * Joan Goyeau - * João Ferreira - * John Sullivan - * Jon Hanson - * Jose Emilio Labra Gayo - * Joseph Abrahamson - * Josh Marcus - * Juan Pedro Moreno - * Juan Valencia - * Jules Ivanic - * Julien Richard-Foy - * Julien Truffaut - * Jun Tomioka - * jurisk - * Justin Heyes-Jones - * Kailuo Wang - * Kamil Kloch - * kazchimo - * Keir Lawson - * kellen - * Kenji Yoshida - * Kris Kalavantavanich - * Lars Hupel - * Leandro - * Leandro Bolivar - * Leif Battermann - * Lionel Parreaux - * Long Cao - * Luis Angel Vicente Sanchez - * Luís Campos - * Luis Miguel Mejía Suárez - * Luis Sanchez - * Luka Jacobowitz - * Lukáš Voda - * Luke Wyman - * Madder - * Marc Siegel - * Marcin Rzeźnicki - * Marco Battaglia - * Mariot Chauvin - * Mark de Jong - * Markus Appel - * Markus Hauck - * Martijn Hoekstra - * MaT1g3R - * Mateusz Sokół - * Mateusz Wójcik - * mathhun - * Matt Martin - * Matthias Lüneberg - * Max Worgan - * Maxim Davydov - * Merlin Göttlinger - * Michał Gutowski - * Michael Ledin - * Michael Pilquist - * Mike Curry - * Miklós Martin - * Miles Sabin - * Mirco Dotta - * mooi - * msinton - * nigredo-tori - * Nikolay Maksimenko - * n4to4 - * Olivier Blanvillain - * Olli Helenius - * orvi - * Owen Parry - * P. Oscar Boykin - * Paolo G. Giarrusso - * Pascal Voitot - * Paul Chiusano - * Paul Phillips - * Paulo "JCranky" Siqueira - * Pavel Chlupacek - * Pavkin Vladimir - * Paweł Kiersznowski - * Paweł Lipski - * Pepe García - * Pere Villega - * Peter Neyens - * Peter Perhac - * phderome - * Philip Wills - * Piotr Gawryś - * Raas Ahsan - * Rafa Paradela - * Raúl Raja Martínez - * RawToast - * Raymond Tay - * rfigueiredo - * Richard Imaoka - * Richard Miller - * Rintcius Blok - * Rob Norris - * Rohan Shah - * Romain Ruetschi - * Roman Tkalenko - * Ross A. Baker - * rsekulski - * rsoeldner - * Rüdiger Klaehn - * Rutvik Patel - * Ryan Case - * Ryan Mehri - * Sam Ritchie - * Sanjiv Sahayam - * Sarunas Valaskevicius - * Sergei Dolgov - * Shan Sikdar - * Sho Kohara - * Shohei Kamimori - * Shunsuke Otani - * Simeon H. K. Fitch - * Sinisa Louc - * Song Kun - * Stephen Carman - * Stephen Judkins - * Stephen Lazaro - * Steven Scott - * Suhas Gaddam - * sullis - * Sumedh Mungee - * Syed Akber Jafri - * Takayuki Sakai - * Tanaka Takaya - * Taylor Brown - * Tim Spence - * Timothy McCarthy - * Tom Switzer - * Tomas Mikula - * Tongfei Chen - * Torsten Schmits - * Travis Brown - * Trond Bjerkestrand - * Tya - * Valentin Willscher - * Valeriy Avanesov - * Valy Diarrassouba - * Vasileios Lampridis - * Vasilis Nicolaou - * Vasiliy Bondarenko - * ven - * Viktor Dychko - * Viktor Lövgren - * Vitaly Lavrov - * Vladimir Samoylov - * Vladislav Gutov - * Wedens - * Wogan - * Xavier Fernández Salas - * XUWE - * 杨博 (Yang Bo) - * Yannick Heiber - * ybasket - * Yosef Fertel - * Yilin Wei - * Yuki Kitakata - * Yuriy Badalyantc - * Zach Abbott - * zainab-ali - * Zelenya - * zhen - * Ziyang Liu - * λoλcat - -Cats has been heavily inspired by many libraries, including [Scalaz](https://github.com/scalaz/scalaz), -Haskell's [Prelude](https://hackage.haskell.org/package/base-4.9.0.0/docs/Prelude.html), and others. -In particular, some Cats code is only a slightly modified version of code originating in -Scalaz. Therefore, we'd also like to credit and thank all of the -[Scalaz contributors](https://github.com/scalaz/scalaz/graphs/contributors) for -their work. - -We've tried to include everyone, but if you've made a contribution to -Cats and are not listed, please feel free to open an issue or pull -request with your name and contribution. - -Thank you! diff --git a/distribution/project-manager/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/COPYING b/distribution/project-manager/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/COPYING deleted file mode 100644 index d5783383b25e..000000000000 --- a/distribution/project-manager/THIRD-PARTY/org.typelevel.cats-core_2.13-2.7.0/COPYING +++ /dev/null @@ -1,255 +0,0 @@ -Cats Copyright (c) 2015 Cats Contributors. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ------- - -Code in Cats is derived in part from Scalaz. The Scalaz license follows: - -Copyright (c) 2009-2014 Tony Morris, Runar Bjarnason, Tom Adams, -Kristian Domagala, Brad Clow, Ricky Clarkson, Paul Chiusano, Trygve -Laugstøl, Nick Partridge, Jason Zaugg. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ------- - -Code in Cats is derived in part from the Scala standard library. The Scala license follows: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/distribution/project-manager/THIRD-PARTY/org.typelevel.cats-core_2.13-2.8.0/NOTICES b/distribution/project-manager/THIRD-PARTY/org.typelevel.cats-core_2.13-2.8.0/NOTICES new file mode 100644 index 000000000000..2cba5ef9c1ef --- /dev/null +++ b/distribution/project-manager/THIRD-PARTY/org.typelevel.cats-core_2.13-2.8.0/NOTICES @@ -0,0 +1,3 @@ +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + +Copyright (c) 2002-2022 EPFL diff --git a/distribution/project-manager/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/COPYING b/distribution/project-manager/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/COPYING deleted file mode 100644 index d5783383b25e..000000000000 --- a/distribution/project-manager/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/COPYING +++ /dev/null @@ -1,255 +0,0 @@ -Cats Copyright (c) 2015 Cats Contributors. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ------- - -Code in Cats is derived in part from Scalaz. The Scalaz license follows: - -Copyright (c) 2009-2014 Tony Morris, Runar Bjarnason, Tom Adams, -Kristian Domagala, Brad Clow, Ricky Clarkson, Paul Chiusano, Trygve -Laugstøl, Nick Partridge, Jason Zaugg. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. The name of the author may not be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ------- - -Code in Cats is derived in part from the Scala standard library. The Scala license follows: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/distribution/project-manager/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/NOTICES b/distribution/project-manager/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/NOTICES deleted file mode 100644 index 5dc9eaad2b19..000000000000 --- a/distribution/project-manager/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.7.0/NOTICES +++ /dev/null @@ -1,2 +0,0 @@ -See org.typelevel.cats-core_2.13-2.2.0-M3 for notices related to this module. - diff --git a/distribution/project-manager/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.8.0/NOTICES b/distribution/project-manager/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.8.0/NOTICES new file mode 100644 index 000000000000..56779402ed87 --- /dev/null +++ b/distribution/project-manager/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.8.0/NOTICES @@ -0,0 +1,10 @@ +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + +Copyright (c) 2002-2022 EPFL + +Copyright (c) 2011-2022 Lightbend, Inc. + +Copyright EPFL and Lightbend, Inc. + +See org.typelevel.cats-core_2.13-2.2.0-M3 for notices related to this module. + diff --git a/distribution/project-manager/THIRD-PARTY/org.typelevel.jawn-parser_2.13-1.1.2/LICENSE b/distribution/project-manager/THIRD-PARTY/org.typelevel.jawn-parser_2.13-1.3.2/LICENSE similarity index 100% rename from distribution/project-manager/THIRD-PARTY/org.typelevel.jawn-parser_2.13-1.1.2/LICENSE rename to distribution/project-manager/THIRD-PARTY/org.typelevel.jawn-parser_2.13-1.3.2/LICENSE diff --git a/distribution/project-manager/THIRD-PARTY/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/NOTICES b/distribution/project-manager/THIRD-PARTY/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/NOTICES deleted file mode 100644 index 6b0b1270ff0c..000000000000 --- a/distribution/project-manager/THIRD-PARTY/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/NOTICES +++ /dev/null @@ -1,203 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - diff --git a/tools/legal-review/Base/com.ibm.icu.icu4j-67.1/copyright-ignore b/tools/legal-review/Base/com.ibm.icu.icu4j-67.1/copyright-ignore deleted file mode 100644 index 2111bf851e49..000000000000 --- a/tools/legal-review/Base/com.ibm.icu.icu4j-67.1/copyright-ignore +++ /dev/null @@ -1,4 +0,0 @@ -License & terms of use: http://www.unicode.org/copyright.html#License -Does not write a copyright string. -2000.01.01 1.06 copyright update */ -2000.01.01 copyright update [Y2K has arrived] */ diff --git a/tools/legal-review/Table/com.ibm.icu.icu4j-67.1/copyright-keep b/tools/legal-review/Base/com.ibm.icu.icu4j-71.1/copyright-ignore similarity index 98% rename from tools/legal-review/Table/com.ibm.icu.icu4j-67.1/copyright-keep rename to tools/legal-review/Base/com.ibm.icu.icu4j-71.1/copyright-ignore index 395f6802a743..51025259bc79 100644 --- a/tools/legal-review/Table/com.ibm.icu.icu4j-67.1/copyright-keep +++ b/tools/legal-review/Base/com.ibm.icu.icu4j-71.1/copyright-ignore @@ -1,5 +1,6 @@ +2000.01.01 copyright update [Y2K has arrived] */ +2000.01.01 1.06 copyright update */

Copyright © IBM Corporation 1999. All rights reserved. -Copyright (C) 1996-2004, International Business Machines Corporation and * Copyright (C) 1996-2005, International Business Machines Corporation and * Copyright (C) 1996-2007, International Business Machines Corporation and * Copyright (C) 1996-2007, International Business Machines Corporation and * @@ -21,8 +22,8 @@ Copyright (C) 1996-2015, International Business Machines Copyright (C) 1996-2015, International Business Machines Corporation and Copyright (C) 1996-2015, International Business Machines Corporation and * Copyright (C) 1996-2016, Google, International Business Machines Corporation and -Copyright (C) 1996-2016, International Business Machines Corporation and Copyright (C) 1996-2016, International Business Machines +Copyright (C) 1996-2016, International Business Machines Corporation and Copyright (C) 1996-2016, International Business Machines Corporation and * Copyright (C) 1996-2016, International Business Machines Corporation and * Copyright (C) 1999-2014, International Business Machines @@ -40,8 +41,8 @@ Copyright (C) 2001-2011, International Business Machines Corporation and * Copyright (C) 2001-2012, International Business Machines Copyright (C) 2001-2013, International Business Machines Corporation and * Copyright (C) 2001-2014, International Business Machines -Copyright (C) 2001-2016 International Business Machines Corporation and Copyright (C) 2001-2015, International Business Machines Corporation and +Copyright (C) 2001-2016 International Business Machines Corporation and Copyright (C) 2001-2016, International Business Machines Copyright (C) 2001-2016, International Business Machines Corporation and Copyright (C) 2001-2016, International Business Machines Corporation and * @@ -69,8 +70,8 @@ Copyright (C) 2004-2014, International Business Machines Corporation and Copyright (C) 2004-2015, International Business Machines Copyright (C) 2004-2016, Google Inc, International Business Machines Copyright (C) 2004-2016, International Business Machines Corporation and -Copyright (C) 2005 - 2012, International Business Machines Corporation and * Copyright (C) 2004-2016, International Business Machines Corporation and * +Copyright (C) 2005 - 2012, International Business Machines Corporation and * Copyright (C) 2005 - 2014, International Business Machines Corporation and * Copyright (C) 2005-2006, International Business Machines Copyright (C) 2005-2010, International Business Machines @@ -80,15 +81,6 @@ Copyright (C) 2005-2012, International Business Machines Corporation and * Copyright (C) 2005-2013, International Business Machines Corporation and * Copyright (C) 2005-2015, International Business Machines Corporation and Copyright (C) 2005-2016 International Business Machines Corporation and -copyright=" Copyright (c) IBM Corporation 1996, 2000. All rights reserved. "; -Copyright IBM Corporation, 1997, 2000, 2005, 2007. All Rights Reserved. */ -Copyright IBM Corporation, 1996-2016. All Rights Reserved. */ -Copyright (c) 2013-2014, International Business Machines -Copyright (c) 2007-2015 International Business Machines Corporation and * -Copyright (c) 2007-2009 International Business Machines Corporation and * -Copyright (c) 2004-2016, International Business Machines -Copyright (c) 2004-2014, International Business Machines -Copyright (c) 2004-2015, International Business Machines Copyright (C) 2005-2016, International Business Machines Corporation and Copyright (C) 2005-2016, International Business Machines Corporation and * Copyright (C) 2006-2009, Google, International Business Machines Corporation * @@ -102,28 +94,18 @@ Copyright (C) 2007-2010, International Business Machines Corporation and * Copyright (C) 2007-2011, International Business Machines Corporation and * Copyright (C) 2007-2011, International Business Machines Corporation and others. Copyright (C) 2007-2012, International Business Machines Corporation and * -Copyright (C) 2007-2014, International Business Machines Corporation and * Copyright (C) 2007-2013, International Business Machines Corporation and * +Copyright (C) 2007-2014, International Business Machines Corporation and * Copyright (C) 2007-2014, International Business Machines Corporation and * Copyright (C) 2007-2015, Google Inc, International Business Machines Corporation Copyright (C) 2007-2015, International Business Machines Corporation and -Copyright (C) 2007-2016, International Business Machines Copyright (C) 2007-2015, International Business Machines Corporation and * -Copyright (c) 2004-2010, International Business Machines -Copyright (c) 2004-2013, International Business Machines -Copyright (c) 2003-2016, International Business Machines -Copyright (c) 2003-2016 International Business Machines -Copyright (c) 2003-2011, International Business Machines -Copyright (c) 2003-2010, International Business Machines -Copyright (c) 2002-2016, International Business Machines -Copyright (c) 2002-2015, International Business Machines -Copyright (c) 2002-2014, International Business Machines Corporation +Copyright (C) 2007-2016, International Business Machines Copyright (C) 2007-2016, International Business Machines Corporation and Copyright (C) 2007-2016, International Business Machines Corporation and * Copyright (C) 2008-2009, Google, International Business Machines -Copyright (C) 2008-2014, Google, International Business Machines Copyright (C) 2008-2009, International Business Machines -Copyright (C) 2008-2015, Google, International Business Machines Corporation and +Copyright (C) 2008-2014, Google, International Business Machines Copyright (C) 2008-2014, International Business Machines Corporation and * Copyright (C) 2008-2015, International Business Machines Corporation and Copyright (C) 2008-2016 International Business Machines Corporation @@ -145,10 +127,10 @@ Copyright (C) 2009-2014, International Business Machines Copyright (C) 2009-2014, International Business Machines Corporation and Copyright (C) 2009-2014, International Business Machines Corporation and * Copyright (C) 2009-2015, Google, International Business Machines Corporation -Copyright (C) 2009-2015, International Business Machines Corporation and Copyright (C) 2009-2015, International Business Machines -Copyright (C) 2009-2016, Google, Inc.; International Business Machines Corporation +Copyright (C) 2009-2015, International Business Machines Corporation and Copyright (C) 2009-2015, International Business Machines Corporation and * +Copyright (C) 2009-2016, Google, Inc.; International Business Machines Corporation Copyright (C) 2009-2016, International Business Machines Copyright (C) 2009-2016, International Business Machines Corporation and Copyright (C) 2009-2016, International Business Machines Corporation and * @@ -156,8 +138,8 @@ Copyright (C) 2009-2016, International Business Machines Corporation, Copyright (C) 2010, International Business Machines Copyright (C) 2010, International Business Machines Corporation and * Copyright (C) 2010-2011, Google, International Business Machines * -Copyright (C) 2010-2014, Google, International Business Machines Corporation * Copyright (C) 2010-2013, International Business Machines Corporation and * +Copyright (C) 2010-2014, Google, International Business Machines Corporation * Copyright (C) 2010-2014, International Business Machines Copyright (C) 2010-2015, International Business Machines Copyright (C) 2010-2016, Google, Inc.; International Business Machines * @@ -165,39 +147,58 @@ Copyright (C) 2010-2016, International Business Machines Copyright (C) 2011, International Business Machines Copyright (C) 2011, International Business Machines Corporation and * Copyright (C) 2011-2014, International Business Machines -Copyright (C) 2011-2016, International Business Machines Corporation and Copyright (C) 2011-2016, International Business Machines Corporation +Copyright (C) 2011-2016, International Business Machines Corporation and Copyright (C) 2011-2016, International Business Machines Corporation and * -Copyright (C) 2012-2014, International Business Machines Corporation and * -Copyright (C) 2012-2014, International Business Machines Copyright (C) 2012, International Business Machines Corporation and * +Copyright (C) 2012-2014, International Business Machines +Copyright (C) 2012-2014, International Business Machines Corporation and * Copyright (C) 2012-2015, International Business Machines Copyright (C) 2012-2015, International Business Machines Corporation and * Copyright (C) 2012-2016, Google, International Business Machines Corporation and -Copyright (C) 2012-2016, International Business Machines Corporation and Copyright (C) 2012-2016, International Business Machines +Copyright (C) 2012-2016, International Business Machines Corporation and Copyright (C) 2012-2016, International Business Machines Corporation and * Copyright (C) 2013, Google Inc, International Business Machines Corporation and * -Copyright (C) 2013-2014, International Business Machines Copyright (C) 2013, International Business Machines Corporation and * +Copyright (C) 2013-2014, International Business Machines Copyright (C) 2013-2014, International Business Machines Corporation and * Copyright (C) 2013-2015, International Business Machines -Copyright (C) 2013-2016, International Business Machines Corporation and Copyright (C) 2013-2015, International Business Machines Corporation and +Copyright (C) 2013-2016, International Business Machines Corporation and Copyright (C) 2014, International Business Machines Corporation and -Copyright (C) 2014-2015, International Business Machines Corporation and Copyright (C) 2014, International Business Machines Corporation and * +Copyright (C) 2014-2015, International Business Machines Corporation and Copyright (C) 2014-2016, International Business Machines Corporation and -Copyright (C) 2015-2016, International Business Machines Corporation and Copyright (C) 2015, International Business Machines Corporation and +Copyright (C) 2015-2016, International Business Machines Corporation and Copyright (C) 2016, International Business Machines Corporation and Copyright (C) 2016, International Business Machines Corporation and * -Copyright (c) 2001-2016, International Business Machines Copyright (c) 2001-2011, International Business Machines +Copyright (c) 2001-2016, International Business Machines Copyright (c) 2001-2016, International Business Machines Corporation and -Copyright (c) 2002-2007, International Business Machines Corporation Copyright (c) 2002, International Business Machines Corporation +Copyright (c) 2002-2007, International Business Machines Corporation Copyright (c) 2002-2010, International Business Machines Copyright (c) 2002-2010, International Business Machines Corporation Copyright (c) 2002-2011, International Business Machines Corporation Copyright (c) 2002-2014, Google, International Business Machines +Copyright (c) 2002-2014, International Business Machines Corporation +Copyright (c) 2002-2015, International Business Machines +Copyright (c) 2002-2016, International Business Machines +Copyright (c) 2003-2010, International Business Machines +Copyright (c) 2003-2011, International Business Machines +Copyright (c) 2003-2016 International Business Machines +Copyright (c) 2003-2016, International Business Machines +Copyright (c) 2004-2010, International Business Machines +Copyright (c) 2004-2013, International Business Machines +Copyright (c) 2004-2014, International Business Machines +Copyright (c) 2004-2015, International Business Machines +Copyright (c) 2004-2016, International Business Machines +Copyright (c) 2007-2009 International Business Machines Corporation and * +Copyright (c) 2007-2015 International Business Machines Corporation and * +Copyright (c) 2013-2014, International Business Machines +Copyright IBM Corporation, 1996-2016. All Rights Reserved. */ +Copyright IBM Corporation, 1997, 2000, 2005, 2007. All Rights Reserved. */ +Does not write a copyright string. +copyright=" Copyright (c) IBM Corporation 1996, 2000. All rights reserved. "; diff --git a/tools/legal-review/Base/com.ibm.icu.icu4j-71.1/copyright-keep b/tools/legal-review/Base/com.ibm.icu.icu4j-71.1/copyright-keep new file mode 100644 index 000000000000..cd10b6ae8bb2 --- /dev/null +++ b/tools/legal-review/Base/com.ibm.icu.icu4j-71.1/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 1996-2004, International Business Machines Corporation and * diff --git a/tools/legal-review/Base/com.ibm.icu.icu4j-67.1/custom-license b/tools/legal-review/Base/com.ibm.icu.icu4j-71.1/custom-license similarity index 100% rename from tools/legal-review/Base/com.ibm.icu.icu4j-67.1/custom-license rename to tools/legal-review/Base/com.ibm.icu.icu4j-71.1/custom-license diff --git a/tools/legal-review/Base/com.ibm.icu.icu4j-67.1/files-keep b/tools/legal-review/Base/com.ibm.icu.icu4j-71.1/files-keep similarity index 100% rename from tools/legal-review/Base/com.ibm.icu.icu4j-67.1/files-keep rename to tools/legal-review/Base/com.ibm.icu.icu4j-71.1/files-keep diff --git a/tools/legal-review/Base/report-state b/tools/legal-review/Base/report-state index b769bf66e370..5eac38682aa2 100644 --- a/tools/legal-review/Base/report-state +++ b/tools/legal-review/Base/report-state @@ -1,3 +1,3 @@ -A6E18779610DF3E867FC41918DDDD316AB25020C825D348FB7815AE85DADD94B -0821D9149DE9FCA41D818F820FBC676D3D9767C7BC085F4409E247F0EF5E20F2 +2E31BAAC203253896E596DD20144363C2C54799F303D675D2B2D7E45743CC7F3 +4D6C4A246DC46C5A878347CB17ED2807834D4772D4D1EA813BE7A5D3FC33BB50 0 diff --git a/tools/legal-review/Base/reviewed-licenses/Unicode_ICU_License b/tools/legal-review/Base/reviewed-licenses/Unicode_ICU_License new file mode 100644 index 000000000000..012bad6ea5e6 --- /dev/null +++ b/tools/legal-review/Base/reviewed-licenses/Unicode_ICU_License @@ -0,0 +1 @@ +tools/legal-review/license-texts/Unicode_ICU_License diff --git a/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/copyright-ignore b/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/copyright-ignore deleted file mode 100644 index 8118ede680153a3b0cdcbabd31b9668727234478..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4566 zcmds4?{eG55noWEBqtt?&D5R9bsJQ1I&mE_lr7m-EXkosN@b%z6iG?(gsJ8T94Xi! zKpy~Ebkp}~zw`wtDzR%*FDc;80S;#$>=%VH0lYB zE2p zt+z-YB>k`Gmqw93rjO9xrzNxxb^BDe6^;Lj9s=Lem~V7zQ4^R~^c~uOH5nHDS@*Z; zb9zbIBr+)bfNPov|MA0?J<+4fSWu>zFhx1;);HHqP9B_;XuU7PrVJuC-0UWp%{5xz z_3g-&o75Twp&S(J`&6!OwP+AnzH*%|7TZ^g>6t z6=9u9s#l$0=m(+A@_d>!{M>)!n`4bByDR` zV>s3*sjWs0p+Nk4wX{}|Ds*~|B|=G71`c3bL&{ah zZRtq`v|SEE<#Z!3Y)4LJRF&PR-)D~|91uQo0_Os*90YREbw_O{%(9NrO4xEB)T@b> zwor)WmJ$Q`#?KN`nJpN2Bvs(}-b5-TBD_7PAHnu_lB+VXlry|YjGfjJP3ekr4Fy+q zHxzb-6<#G&{NYGB{nK}n21DVECNj+kD=?5eC+6uot`lacyo-*68%g3d`%21T*>%n& z3A+~*<+)5ZWTK^*#KH0Uv@1gEln#|c5#FX8_@T^f2xxU|?O8>*ZdX{Z^p72kj5V8Of)mH=0;dC`DRhp$*`W>mBoSG07O7+ZBj-}3{Uy5RES)xA(Ef5@SA zEO~{Tp2aaeK66-WWGAre1)qquIC)?*6)S2q4E??m!_!gmQd$V~P9hw!fa;Tl3Svjc zX)Dm{Qk6Y{#CT;{$Ch%uicQ&%T%l^`LxuE*$d1XAb%^!ph=Urq4c~RFQB5gdVd_ic z{q9SwuC}P`y8auaEx##kM=>^uDr{mCA5AlOBQoAffMr z=Mk;wQ5$ZtixM&+W@Ww-jHDm_{_*c%)nA_OpgoLDMEgk$(X?q8b5kZ6c>p(W@^GG; z-1KZNH#bcf&QLBleU;-u()KK97Qg<#eCRCm? zH#3_nd|MECN)=r*rwmMx@XS)GwNSq}MT+MsoV=Mc?tJ(@<_a$g^&D;;#(M_MjZ-1z4ZeZ=#-N39-7x?4H?uqt zZ+*`+AC#6K6Yhm{x76*5<*sEft;x00(n`r*UFvopT1&mv(!(c@9zPO~AM}W>8#KFI zEb))1ZqV)GUadVYpPwZaV&iP3xN1;){ug5sUm;vE+C!l&u#7pTnBbk(R>DxYXnppA zP0r!H12iz7>-Hv5vsGE4^OYq#RfVFaf=&a8 zv9Dz7VCRq3=ao+T)KNCBGvTPi*R6&d^&PL1My}&`Uv^NSr3hq47sR36WxM`|p5=+H zw;47k<1BPN!$*V)g!C$PNz^w`DT}u2Y5@fI6EeTd3jZI%Il2L_Ougwo1k}*bMMn+& zb%5JHLUNhH<11+3Vwux-5P8RHG|n$1zr@bh-wzrMcm==_Qtk=b8nQnp-+iRl6ZCtu z1(+X5@`sC_nl;8+)Bc&}iN9b{N`j)Q<~~B2SJ1|V0G|;^%RQuWe(vh;9!}UoR~#-A zToAba#1GH?9geI4+d`e#J=Cs43d%%B)S(fG%iIR zjo`IFVUh_4p>|#aS2|x6lmNwx3(W9>rRAi)wzPb_t4lPOkv)Peu3{PQmUUs`;>0hZ znDJa3pHTC9(B)<PoP=*?=5SBc9i%P4&1rg2Q8w4cn%#hNWoqsF5+rtk6~_PPOCA2Ey& z-7w=b!N&OJl8x+&j_gI5%kjM&-6vY646FHOGtifg5q$n{a@c_teFid{`^SHLzy9oe v;F_HOaar70MD1EMrDypzZnhhXhwZJUCyQnf3eOg<@5znDkqj1}ZNB#(33;5< diff --git a/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/files-add/THIRD_PARTY_LICENSES b/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/files-add/THIRD_PARTY_LICENSES deleted file mode 100644 index 533bd91c6031..000000000000 --- a/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/files-add/THIRD_PARTY_LICENSES +++ /dev/null @@ -1,67 +0,0 @@ - --License Start-- - BSD-2-Clause License: - - Copyright (c) 1997, PostgreSQL Global Development Group - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - - --License End-- - -This product includes software that is licensed under the Apache License, -Version 2.0 (listed below). - ---License Start-- -AWS SDK for Java -Copyright © 2015, Amazon Web Services, Inc. or its affiliates. All rights -reserved. - -Apache Commons Codec -Copyright © 2002-2014 The Apache Software Foundation - -Apache Commons Logging -Copyright © 2001-2014 The Apache Software Foundation - -Apache HttpComponents Client -Copyright © 1999-2012 The Apache Software Foundation - -Apache HttpComponents Core -Copyright © 1999-2012 The Apache Software Foundation - -Jackson -Copyright © 2009-2011 FasterXML, LLC - -Joda-Time -Copyright © 2005–2015 Joda.org. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); you may -not use this file except in compliance with the License. You may obtain a -copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -License for the specific language governing permissions and limitations -under the License. ---License End-- \ No newline at end of file diff --git a/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/files-keep copy b/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/files-keep copy deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.9/copyright-ignore b/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.9/copyright-ignore new file mode 100644 index 0000000000000000000000000000000000000000..9ae07934a4d0f836c5f433fa97af8a4743c6e3d8 GIT binary patch literal 5578 zcmds4{Zbpr5$_d}z;`ZUE9cbN@g*DLBzAl#5(W%D;7*nVR*XPMGMvjeWV9NjwO70H zegJavLV1Q%>ZMCf5LeX8WPwP6g&FfNf&anli<(}A|iI!ZE` zz7T9$rGzsLJAJ;D2ldVizdMMZx}>!3Fj<&An9^gSr=*#@Aeph16A@E-k% z-jNEBG#Y=NrHGPa1djU8YJ8c>IWS{}5~2LY*80iG(n*dsI?}I8ukYBN+-gO%t##U{ zI_C0WyW=gNcupx~A#6it`o#u>5BHUd19u4g*-NGoPy z{!h(LfY`5Pm!xO7W`B|yCapB;(h?U6^RC)P<=TPaUu6`X{=hXm-D_FBzOV-)oqB)@ z^d$R)pO$H1NsPF>%npSWNaC8kl(Jv2%ri*>3pXn-u!_PJ8(GOl^I+N?stVue(ks^_ zEHkX!p5x201p%vOTV+-hmemr*d$pz;(mj*zf0pA=K1FU%`dqQm_E1S&UiS#k8ei58 zA1kq^f~jCLMj6s`2ir*4NXxXt#ocAhQ15sa|cX zjj{&QvW5atyd_g~Y{$b6^ez{&V*Ao{`jOu&?08=e`QiRU-Ep)@FH9dWaum;bw&)J} zzSD6M~@HN)g&qRRGtsYK~{SZjcr>b)%_Yf*JNJn0bnaIX-M%<|IU&S>80pV>^hjhR;^#KEN z$wIT#Nq}++37s|~?qbB<0__d?kPJxD-ytQS;{n%!JD{^YTTu+9BbCJxBv>|pw6A2? z`baxVZ%HdRs6bWPr8=ZN#N&bgW# zcB9iO_)8IgA2O@7tVT^t22ZU-5RhQbJqFqomt z0krN<2u57?nMltjGH){iH$e2lIZsKRANSpg=o~_O&X7xnob*7TQMM?WCnYf?nWj@>v z<}{j9SEgTSsDCr@iz6HidyYLk9GhL&IrlWkC6wGvjb`IJ6Qwk!LG|vi-|7GUhhFH3 zkB+VDOSz>y;Yv&o@~xK0w+y+sCfDxkk zDjMC(?v}|W2g1*7?%Yp zJbA2|bHCkUPycrh<^pAnpJ=4V<4HIvOLS6n&I*}WfiD9^QO zcNxbnpL+YWhj9h(ZQ%SslRs>fYql6#jp4USCj7>UIT49UO8OAzs|#y<0^_3s=OMQW zejcbVBR(mGI_mj+=98EY{_tVnK32Jg*tqS4P3x+ynv%)kgbn|eahhXC&^>5sR8;4D zFFK38$o9e*k9&Yk17t1G5wMG+XAK97HjJIyn1`;xar7r5EkrHz2>BJDo14%(gdXl$ zW0~buH{g!IKSBq&0Y5x9zLK>Ohcy;W+>*24Uf{>iA>D<}E=CgAsi~F_L^~%nRrv74ow^XkG?;6>072^>a zS8n-hy@q>v$CZtPU46%LTEfyx@=RJzzlU3-uCA-sD6V{x;#G&MQ|djPQg3Zaz4htz o^7$$CmZsGEv;tnKLw?Ho<)^G)e#-jgr>tLo%K9zkKCKQv0i!e}nE(I) literal 0 HcmV?d00001 diff --git a/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.9/copyright-keep b/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.9/copyright-keep new file mode 100644 index 000000000000..f226232bc5d6 --- /dev/null +++ b/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.9/copyright-keep @@ -0,0 +1,4 @@ +Copyright (C) 2005 +Copyright (c) 2003, PostgreSQL Global Development Group +Copyright (c) 2004, Open Cloud Limited. +Copyright (c) 2004, PostgreSQL Global Development Group diff --git a/tools/legal-review/Database/org.postgresql.postgresql-42.3.6/custom-license b/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.9/custom-license similarity index 100% rename from tools/legal-review/Database/org.postgresql.postgresql-42.3.6/custom-license rename to tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.9/custom-license diff --git a/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/files-keep b/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.9/files-keep similarity index 100% rename from tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/files-keep rename to tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.9/files-keep diff --git a/tools/legal-review/Database/com.amazonaws.aws-java-sdk-core-1.12.23/copyright-ignore b/tools/legal-review/Database/com.amazonaws.aws-java-sdk-core-1.12.23/copyright-ignore deleted file mode 100644 index 47f54b72cf57..000000000000 --- a/tools/legal-review/Database/com.amazonaws.aws-java-sdk-core-1.12.23/copyright-ignore +++ /dev/null @@ -1,2 +0,0 @@ -regarding copyright ownership. The ASF licenses this file -this work for additional information regarding copyright ownership. diff --git a/tools/legal-review/Database/com.amazonaws.aws-java-sdk-core-1.12.23/copyright-keep b/tools/legal-review/Database/com.amazonaws.aws-java-sdk-core-1.12.23/copyright-keep deleted file mode 100644 index 8dc93849d18a..000000000000 --- a/tools/legal-review/Database/com.amazonaws.aws-java-sdk-core-1.12.23/copyright-keep +++ /dev/null @@ -1,23 +0,0 @@ -Portions copyright 2006-2009 James Murty. Please see LICENSE.txt -Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. -Copyright 2020-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. -Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. -Copyright 2015-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. -Copyright 2018-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. -Copyright 2019-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. -Copyright 2015-2021 Amazon.com, Inc. or its affiliates. All Rights -Copyright 2015-2021 Amazon Technologies, Inc. -Copyright 2014-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. -Copyright 2014-2021 Amazon Technologies, Inc. -Copyright 2013-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. -Copyright 2013-2021 Amazon Technologies, Inc. -Copyright 2012-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. -Copyright 2012-2021 Amazon Technologies, Inc. -Copyright 2011-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. -Copyright 2011-2021 Amazon Technologies, Inc. -Copyright 2010-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. -Copyright 2010-2021 Amazon.com, Inc. or its affiliates. All Rights -Copyright (c) 2019. Amazon.com, Inc. or its affiliates. All Rights Reserved. -Copyright (c) 2016. Amazon.com, Inc. or its affiliates. All Rights Reserved. -Copyright (c) 2016-2019. Amazon.com, Inc. or its affiliates. All Rights Reserved. -Copyright (c) 2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. diff --git a/tools/legal-review/Database/com.amazonaws.aws-java-sdk-core-1.12.273/copyright-ignore b/tools/legal-review/Database/com.amazonaws.aws-java-sdk-core-1.12.273/copyright-ignore new file mode 100644 index 000000000000..3b9df50ac8fa --- /dev/null +++ b/tools/legal-review/Database/com.amazonaws.aws-java-sdk-core-1.12.273/copyright-ignore @@ -0,0 +1,22 @@ +Copyright (c) 2016-2019. Amazon.com, Inc. or its affiliates. All Rights Reserved. +Copyright (c) 2016. Amazon.com, Inc. or its affiliates. All Rights Reserved. +Copyright (c) 2019. Amazon.com, Inc. or its affiliates. All Rights Reserved. +Copyright 2010-2022 Amazon.com, Inc. or its affiliates. All Rights +Copyright 2010-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. +Copyright 2011-2022 Amazon Technologies, Inc. +Copyright 2011-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. +Copyright 2012-2022 Amazon Technologies, Inc. +Copyright 2012-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. +Copyright 2013-2022 Amazon Technologies, Inc. +Copyright 2013-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. +Copyright 2014-2022 Amazon Technologies, Inc. +Copyright 2014-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. +Copyright 2015-2022 Amazon Technologies, Inc. +Copyright 2015-2022 Amazon.com, Inc. or its affiliates. All Rights +Copyright 2015-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. +Copyright 2016-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. +Copyright 2018-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. +Copyright 2019-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. +Copyright 2020-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. +Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. +regarding copyright ownership. The ASF licenses this file diff --git a/tools/legal-review/Database/com.amazonaws.aws-java-sdk-core-1.12.273/copyright-keep b/tools/legal-review/Database/com.amazonaws.aws-java-sdk-core-1.12.273/copyright-keep new file mode 100644 index 000000000000..8a1815c28847 --- /dev/null +++ b/tools/legal-review/Database/com.amazonaws.aws-java-sdk-core-1.12.273/copyright-keep @@ -0,0 +1,3 @@ +Copyright (c) 2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. +Portions copyright 2006-2009 James Murty. Please see LICENSE.txt +this work for additional information regarding copyright ownership. diff --git a/tools/legal-review/Database/com.amazonaws.aws-java-sdk-redshift-1.12.23/copyright-keep b/tools/legal-review/Database/com.amazonaws.aws-java-sdk-redshift-1.12.23/copyright-keep deleted file mode 100644 index a67dfda32356..000000000000 --- a/tools/legal-review/Database/com.amazonaws.aws-java-sdk-redshift-1.12.23/copyright-keep +++ /dev/null @@ -1 +0,0 @@ -Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. diff --git a/tools/legal-review/Database/com.amazonaws.aws-java-sdk-redshift-1.12.273/copyright-keep b/tools/legal-review/Database/com.amazonaws.aws-java-sdk-redshift-1.12.273/copyright-keep new file mode 100644 index 000000000000..13a24e25fc40 --- /dev/null +++ b/tools/legal-review/Database/com.amazonaws.aws-java-sdk-redshift-1.12.273/copyright-keep @@ -0,0 +1 @@ +Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. diff --git a/tools/legal-review/Database/com.amazonaws.aws-java-sdk-sts-1.12.23/copyright-keep b/tools/legal-review/Database/com.amazonaws.aws-java-sdk-sts-1.12.23/copyright-keep deleted file mode 100644 index 9be2d4877f25..000000000000 --- a/tools/legal-review/Database/com.amazonaws.aws-java-sdk-sts-1.12.23/copyright-keep +++ /dev/null @@ -1,7 +0,0 @@ -Copyright 2010-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. -Copyright 2011-2021 Amazon Technologies, Inc. -Copyright 2011-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. -Copyright 2012-2021 Amazon Technologies, Inc. -Copyright 2013-2021 Amazon Technologies, Inc. -Copyright 2014-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. -Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. diff --git a/tools/legal-review/Database/com.amazonaws.aws-java-sdk-sts-1.12.273/copyright-ignore b/tools/legal-review/Database/com.amazonaws.aws-java-sdk-sts-1.12.273/copyright-ignore new file mode 100644 index 000000000000..b06b2e3e4d8a --- /dev/null +++ b/tools/legal-review/Database/com.amazonaws.aws-java-sdk-sts-1.12.273/copyright-ignore @@ -0,0 +1,6 @@ +Copyright 2011-2022 Amazon Technologies, Inc. +Copyright 2011-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. +Copyright 2012-2022 Amazon Technologies, Inc. +Copyright 2013-2022 Amazon Technologies, Inc. +Copyright 2014-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. +Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. diff --git a/tools/legal-review/Database/com.amazonaws.aws-java-sdk-sts-1.12.273/copyright-keep b/tools/legal-review/Database/com.amazonaws.aws-java-sdk-sts-1.12.273/copyright-keep new file mode 100644 index 000000000000..5c7022e3d9c0 --- /dev/null +++ b/tools/legal-review/Database/com.amazonaws.aws-java-sdk-sts-1.12.273/copyright-keep @@ -0,0 +1 @@ +Copyright 2010-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. diff --git a/tools/legal-review/Database/com.amazonaws.jmespath-java-1.12.23/copyright-keep b/tools/legal-review/Database/com.amazonaws.jmespath-java-1.12.23/copyright-keep deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/tools/legal-review/Database/com.amazonaws.jmespath-java-1.12.23/copyright-keep-context b/tools/legal-review/Database/com.amazonaws.jmespath-java-1.12.23/copyright-keep-context deleted file mode 100644 index 344e9b779625..000000000000 --- a/tools/legal-review/Database/com.amazonaws.jmespath-java-1.12.23/copyright-keep-context +++ /dev/null @@ -1 +0,0 @@ -Copyright 2010-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. diff --git a/tools/legal-review/Database/com.amazonaws.jmespath-java-1.12.273/copyright-keep b/tools/legal-review/Database/com.amazonaws.jmespath-java-1.12.273/copyright-keep new file mode 100644 index 000000000000..5c7022e3d9c0 --- /dev/null +++ b/tools/legal-review/Database/com.amazonaws.jmespath-java-1.12.273/copyright-keep @@ -0,0 +1 @@ +Copyright 2010-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. diff --git a/tools/legal-review/Database/com.fasterxml.jackson.core.jackson-annotations-2.12.3/copyright-add b/tools/legal-review/Database/com.fasterxml.jackson.core.jackson-annotations-2.12.3/copyright-add deleted file mode 100644 index 4fb008321881..000000000000 --- a/tools/legal-review/Database/com.fasterxml.jackson.core.jackson-annotations-2.12.3/copyright-add +++ /dev/null @@ -1 +0,0 @@ -See https://github.com/FasterXML/jackson-annotations for more information diff --git a/tools/legal-review/Database/com.fasterxml.jackson.core.jackson-annotations-2.12.3/files-keep b/tools/legal-review/Database/com.fasterxml.jackson.core.jackson-annotations-2.12.3/files-keep deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/tools/legal-review/Table/com.ibm.icu.icu4j-67.1/custom-license b/tools/legal-review/Database/com.fasterxml.jackson.core.jackson-annotations-2.12.6/custom-license similarity index 100% rename from tools/legal-review/Table/com.ibm.icu.icu4j-67.1/custom-license rename to tools/legal-review/Database/com.fasterxml.jackson.core.jackson-annotations-2.12.6/custom-license diff --git a/tools/legal-review/Database/org.postgresql.postgresql-42.3.6/files-keep b/tools/legal-review/Database/com.fasterxml.jackson.core.jackson-annotations-2.12.6/files-keep similarity index 100% rename from tools/legal-review/Database/org.postgresql.postgresql-42.3.6/files-keep rename to tools/legal-review/Database/com.fasterxml.jackson.core.jackson-annotations-2.12.6/files-keep diff --git a/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-core-2.13.1/copyright-keep-context b/tools/legal-review/Database/com.fasterxml.jackson.core.jackson-core-2.12.6/copyright-keep similarity index 100% rename from tools/legal-review/engine/com.fasterxml.jackson.core.jackson-core-2.13.1/copyright-keep-context rename to tools/legal-review/Database/com.fasterxml.jackson.core.jackson-core-2.12.6/copyright-keep diff --git a/tools/legal-review/Table/org.apache.pdfbox.fontbox-2.0.22/custom-license b/tools/legal-review/Database/com.fasterxml.jackson.core.jackson-core-2.12.6/custom-license similarity index 100% rename from tools/legal-review/Table/org.apache.pdfbox.fontbox-2.0.22/custom-license rename to tools/legal-review/Database/com.fasterxml.jackson.core.jackson-core-2.12.6/custom-license diff --git a/tools/legal-review/Table/org.apache.pdfbox.fontbox-2.0.22/files-keep b/tools/legal-review/Database/com.fasterxml.jackson.core.jackson-core-2.12.6/files-keep similarity index 100% rename from tools/legal-review/Table/org.apache.pdfbox.fontbox-2.0.22/files-keep rename to tools/legal-review/Database/com.fasterxml.jackson.core.jackson-core-2.12.6/files-keep diff --git a/tools/legal-review/Table/org.apache.pdfbox.pdfbox-2.0.22/custom-license b/tools/legal-review/Database/com.fasterxml.jackson.core.jackson-databind-2.12.6.1/custom-license similarity index 100% rename from tools/legal-review/Table/org.apache.pdfbox.pdfbox-2.0.22/custom-license rename to tools/legal-review/Database/com.fasterxml.jackson.core.jackson-databind-2.12.6.1/custom-license diff --git a/tools/legal-review/Database/com.fasterxml.jackson.core.jackson-core-2.12.3/files-keep b/tools/legal-review/Database/com.fasterxml.jackson.core.jackson-databind-2.12.6.1/files-ignore similarity index 100% rename from tools/legal-review/Database/com.fasterxml.jackson.core.jackson-core-2.12.3/files-keep rename to tools/legal-review/Database/com.fasterxml.jackson.core.jackson-databind-2.12.6.1/files-ignore diff --git a/tools/legal-review/Table/com.fasterxml.woodstox.woodstox-core-5.2.1/files-keep b/tools/legal-review/Database/com.fasterxml.jackson.core.jackson-databind-2.12.6.1/files-keep similarity index 100% rename from tools/legal-review/Table/com.fasterxml.woodstox.woodstox-core-5.2.1/files-keep rename to tools/legal-review/Database/com.fasterxml.jackson.core.jackson-databind-2.12.6.1/files-keep diff --git a/tools/legal-review/Database/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.3/files-add/CREDITS-2.x.txt b/tools/legal-review/Database/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.6/files-add/CREDITS-2.x.txt similarity index 100% rename from tools/legal-review/Database/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.3/files-add/CREDITS-2.x.txt rename to tools/legal-review/Database/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.6/files-add/CREDITS-2.x.txt diff --git a/tools/legal-review/Database/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.3/files-ignore b/tools/legal-review/Database/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.6/files-ignore similarity index 100% rename from tools/legal-review/Database/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.3/files-ignore rename to tools/legal-review/Database/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.12.6/files-ignore diff --git a/tools/legal-review/Database/org.postgresql.postgresql-42.3.6/copyright-ignore b/tools/legal-review/Database/org.postgresql.postgresql-42.3.6/copyright-ignore deleted file mode 100644 index f7e73dd04e7c..000000000000 --- a/tools/legal-review/Database/org.postgresql.postgresql-42.3.6/copyright-ignore +++ /dev/null @@ -1,3 +0,0 @@ -Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. -Copyright (c) 2004, PostgreSQL Global Development Group. diff --git a/tools/legal-review/Database/org.postgresql.postgresql-42.3.6/copyright-keep b/tools/legal-review/Database/org.postgresql.postgresql-42.3.6/copyright-keep deleted file mode 100644 index f1e722c6f831..000000000000 --- a/tools/legal-review/Database/org.postgresql.postgresql-42.3.6/copyright-keep +++ /dev/null @@ -1,16 +0,0 @@ -Copyright (c) 2004, PostgreSQL Global Development Group -Copyright (c) 2005, PostgreSQL Global Development Group -Copyright (c) 2006, PostgreSQL Global Development Group -Copyright (c) 2007, PostgreSQL Global Development Group -Copyright (c) 2008, PostgreSQL Global Development Group -Copyright (c) 2009, PostgreSQL Global Development Group -Copyright (c) 2011, PostgreSQL Global Development Group -Copyright (c) 2012, PostgreSQL Global Development Group -Copyright (c) 2014, PostgreSQL Global Development Group -Copyright (c) 2015, PostgreSQL Global Development Group -Copyright (c) 2016, PostgreSQL Global Development Group -Copyright (c) 2017, PostgreSQL Global Development Group -Copyright (c) 2018, PostgreSQL Global Development Group -Copyright (c) 2019, PostgreSQL Global Development Group -Copyright (c) 2020, PostgreSQL Global Development Group -Copyright (c) 2021, PostgreSQL Global Development Group diff --git a/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/copyright-keep b/tools/legal-review/Database/org.postgresql.postgresql-42.4.0/copyright-ignore similarity index 89% rename from tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/copyright-keep rename to tools/legal-review/Database/org.postgresql.postgresql-42.4.0/copyright-ignore index 760abf6ae995..5c2b6839fc20 100644 --- a/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/copyright-keep +++ b/tools/legal-review/Database/org.postgresql.postgresql-42.4.0/copyright-ignore @@ -1,21 +1,19 @@ -Copyright (C) 2005 Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. -Copyright (c) 2003, PostgreSQL Global Development Group -Copyright (c) 2004, Open Cloud Limited. Copyright (c) 2004, PostgreSQL Global Development Group Copyright (c) 2004, PostgreSQL Global Development Group. +Copyright (c) 2005, PostgreSQL Global Development Group Copyright (c) 2006, PostgreSQL Global Development Group Copyright (c) 2007, PostgreSQL Global Development Group -Copyright (c) 2005, PostgreSQL Global Development Group Copyright (c) 2008, PostgreSQL Global Development Group Copyright (c) 2009, PostgreSQL Global Development Group Copyright (c) 2011, PostgreSQL Global Development Group -Copyright (c) 2014, PostgreSQL Global Development Group Copyright (c) 2012, PostgreSQL Global Development Group +Copyright (c) 2014, PostgreSQL Global Development Group Copyright (c) 2015, PostgreSQL Global Development Group Copyright (c) 2016, PostgreSQL Global Development Group Copyright (c) 2017, PostgreSQL Global Development Group Copyright (c) 2018, PostgreSQL Global Development Group Copyright (c) 2019, PostgreSQL Global Development Group Copyright (c) 2020, PostgreSQL Global Development Group +Copyright (c) 2021, PostgreSQL Global Development Group diff --git a/tools/legal-review/Database/org.postgresql.postgresql-42.3.6/copyright-keep-context b/tools/legal-review/Database/org.postgresql.postgresql-42.4.0/copyright-keep similarity index 100% rename from tools/legal-review/Database/org.postgresql.postgresql-42.3.6/copyright-keep-context rename to tools/legal-review/Database/org.postgresql.postgresql-42.4.0/copyright-keep diff --git a/tools/legal-review/Table/org.apache.poi.poi-5.0.0/custom-license b/tools/legal-review/Database/org.postgresql.postgresql-42.4.0/custom-license similarity index 100% rename from tools/legal-review/Table/org.apache.poi.poi-5.0.0/custom-license rename to tools/legal-review/Database/org.postgresql.postgresql-42.4.0/custom-license diff --git a/tools/legal-review/Table/org.codehaus.woodstox.stax2-api-4.2/files-keep b/tools/legal-review/Database/org.postgresql.postgresql-42.4.0/files-keep similarity index 100% rename from tools/legal-review/Table/org.codehaus.woodstox.stax2-api-4.2/files-keep rename to tools/legal-review/Database/org.postgresql.postgresql-42.4.0/files-keep diff --git a/tools/legal-review/Database/report-state b/tools/legal-review/Database/report-state index 3e5ff1c6e8aa..64be9312e2ea 100644 --- a/tools/legal-review/Database/report-state +++ b/tools/legal-review/Database/report-state @@ -1,3 +1,3 @@ -09E39742F3F5DB02254F00E0BE2FFA52D28E8432EF731A37E58F094E33B11E4E -29AEA17C6A4FD419982B17CF7361F23909FB0812810EB61EA66AB314605249BF +87AFCC58BE0E7EE9CF656C3750BE38C23B6DEC25E1918CB469E77287E9F654C0 +FA6CED83FBDF5A14CE6F21E398ECE68EA9AE98FDBF6F92C4B00D9F2CD3159CF8 0 diff --git a/tools/legal-review/Database/reviewed-licenses/BSD-2-Clause b/tools/legal-review/Database/reviewed-licenses/BSD-2-Clause new file mode 100644 index 000000000000..0e3ee3004f8d --- /dev/null +++ b/tools/legal-review/Database/reviewed-licenses/BSD-2-Clause @@ -0,0 +1 @@ +tools/legal-review/license-texts/BSD-2-Clause diff --git a/tools/legal-review/Image/org.openpnp.opencv-4.5.1-0/copyright-ignore b/tools/legal-review/Image/org.openpnp.opencv-4.5.1-0/copyright-ignore deleted file mode 100644 index e06ee8d165a15d73b0c4e9f8c2773b31bcac614a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 201964 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 GKl^{-x~5P7 diff --git a/tools/legal-review/Image/org.openpnp.opencv-4.5.1-0/copyright-keep b/tools/legal-review/Image/org.openpnp.opencv-4.5.1-0/copyright-keep deleted file mode 100644 index c26c2d9f65ba..000000000000 --- a/tools/legal-review/Image/org.openpnp.opencv-4.5.1-0/copyright-keep +++ /dev/null @@ -1,5 +0,0 @@ -1. Redistributions of source code must retain the above copyright notice, this -2. Redistributions in binary form must reproduce the above copyright notice, -Copyright (c) 2015, Advanced Micro Devices, Inc. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND diff --git a/tools/legal-review/Image/org.openpnp.opencv-4.5.1-2/copyright-ignore b/tools/legal-review/Image/org.openpnp.opencv-4.5.1-2/copyright-ignore new file mode 100644 index 0000000000000000000000000000000000000000..4a4a3b859d0b9fe667ff799c341a95e1d2f5550e GIT binary patch literal 109832 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 B{=fhL literal 0 HcmV?d00001 diff --git a/tools/legal-review/Image/org.openpnp.opencv-4.5.1-2/copyright-keep b/tools/legal-review/Image/org.openpnp.opencv-4.5.1-2/copyright-keep new file mode 100644 index 000000000000..0a2d62a7ad6e --- /dev/null +++ b/tools/legal-review/Image/org.openpnp.opencv-4.5.1-2/copyright-keep @@ -0,0 +1,2 @@ +1. Redistributions of source code must retain the above copyright notice, this +Copyright (c) 2015, Advanced Micro Devices, Inc. diff --git a/tools/legal-review/Image/report-state b/tools/legal-review/Image/report-state index 344f05037a72..a7ec298df340 100644 --- a/tools/legal-review/Image/report-state +++ b/tools/legal-review/Image/report-state @@ -1,3 +1,3 @@ -AEBC3A5AF06F4023AE11669B3FE8FFBC625DD1EB7EE969C084A124FEAEF2B068 -9DBC8258A7C7E22BCBB833E63CBFA2326D15C146ED83902C254142A3D223AEA5 +53E78E605D84E066AB36B506248124E1E412C964A67728C6D5CE0180EA3B0AD9 +F45A653DBF23487883EB2314DAA7F86DDC966873E336AEE24DDF213262110D80 0 diff --git a/tools/legal-review/Table/com.fasterxml.woodstox.woodstox-core-5.2.1/copyright-keep b/tools/legal-review/Table/com.fasterxml.woodstox.woodstox-core-5.2.1/copyright-keep deleted file mode 100644 index 498113188b21..000000000000 --- a/tools/legal-review/Table/com.fasterxml.woodstox.woodstox-core-5.2.1/copyright-keep +++ /dev/null @@ -1,3 +0,0 @@ -Copyright (c) 2004 Tatu Saloranta, tatu.saloranta@iki.fi -Copyright (c) 2004- Tatu Saloranta, tatu.saloranta@iki.fi -Copyright (c) 2005 Tatu Saloranta, tatu.saloranta@iki.fi diff --git a/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.0.0/copyright-ignore b/tools/legal-review/Table/com.github.virtuald.curvesapi-1.07/copyright-ignore similarity index 100% rename from tools/legal-review/Table/org.apache.poi.poi-ooxml-5.0.0/copyright-ignore rename to tools/legal-review/Table/com.github.virtuald.curvesapi-1.07/copyright-ignore diff --git a/tools/legal-review/Table/com.github.virtuald.curvesapi-1.06/copyright-keep b/tools/legal-review/Table/com.github.virtuald.curvesapi-1.07/copyright-keep similarity index 100% rename from tools/legal-review/Table/com.github.virtuald.curvesapi-1.06/copyright-keep rename to tools/legal-review/Table/com.github.virtuald.curvesapi-1.07/copyright-keep diff --git a/tools/legal-review/Table/com.ibm.icu.icu4j-67.1/copyright-ignore b/tools/legal-review/Table/com.ibm.icu.icu4j-67.1/copyright-ignore deleted file mode 100644 index 2111bf851e49..000000000000 --- a/tools/legal-review/Table/com.ibm.icu.icu4j-67.1/copyright-ignore +++ /dev/null @@ -1,4 +0,0 @@ -License & terms of use: http://www.unicode.org/copyright.html#License -Does not write a copyright string. -2000.01.01 1.06 copyright update */ -2000.01.01 copyright update [Y2K has arrived] */ diff --git a/tools/legal-review/Base/com.ibm.icu.icu4j-67.1/copyright-keep b/tools/legal-review/Table/com.ibm.icu.icu4j-71.1/copyright-ignore similarity index 98% rename from tools/legal-review/Base/com.ibm.icu.icu4j-67.1/copyright-keep rename to tools/legal-review/Table/com.ibm.icu.icu4j-71.1/copyright-ignore index 395f6802a743..d8c40518228e 100644 --- a/tools/legal-review/Base/com.ibm.icu.icu4j-67.1/copyright-keep +++ b/tools/legal-review/Table/com.ibm.icu.icu4j-71.1/copyright-ignore @@ -1,5 +1,6 @@ +2000.01.01 copyright update [Y2K has arrived] */ +2000.01.01 1.06 copyright update */

Copyright © IBM Corporation 1999. All rights reserved. -Copyright (C) 1996-2004, International Business Machines Corporation and * Copyright (C) 1996-2005, International Business Machines Corporation and * Copyright (C) 1996-2007, International Business Machines Corporation and * Copyright (C) 1996-2007, International Business Machines Corporation and * @@ -21,8 +22,8 @@ Copyright (C) 1996-2015, International Business Machines Copyright (C) 1996-2015, International Business Machines Corporation and Copyright (C) 1996-2015, International Business Machines Corporation and * Copyright (C) 1996-2016, Google, International Business Machines Corporation and -Copyright (C) 1996-2016, International Business Machines Corporation and Copyright (C) 1996-2016, International Business Machines +Copyright (C) 1996-2016, International Business Machines Corporation and Copyright (C) 1996-2016, International Business Machines Corporation and * Copyright (C) 1996-2016, International Business Machines Corporation and * Copyright (C) 1999-2014, International Business Machines @@ -39,9 +40,8 @@ Copyright (C) 2001-2010, International Business Machines Corporation and * Copyright (C) 2001-2011, International Business Machines Corporation and * Copyright (C) 2001-2012, International Business Machines Copyright (C) 2001-2013, International Business Machines Corporation and * -Copyright (C) 2001-2014, International Business Machines -Copyright (C) 2001-2016 International Business Machines Corporation and Copyright (C) 2001-2015, International Business Machines Corporation and +Copyright (C) 2001-2016 International Business Machines Corporation and Copyright (C) 2001-2016, International Business Machines Copyright (C) 2001-2016, International Business Machines Corporation and Copyright (C) 2001-2016, International Business Machines Corporation and * @@ -69,8 +69,8 @@ Copyright (C) 2004-2014, International Business Machines Corporation and Copyright (C) 2004-2015, International Business Machines Copyright (C) 2004-2016, Google Inc, International Business Machines Copyright (C) 2004-2016, International Business Machines Corporation and -Copyright (C) 2005 - 2012, International Business Machines Corporation and * Copyright (C) 2004-2016, International Business Machines Corporation and * +Copyright (C) 2005 - 2012, International Business Machines Corporation and * Copyright (C) 2005 - 2014, International Business Machines Corporation and * Copyright (C) 2005-2006, International Business Machines Copyright (C) 2005-2010, International Business Machines @@ -80,15 +80,6 @@ Copyright (C) 2005-2012, International Business Machines Corporation and * Copyright (C) 2005-2013, International Business Machines Corporation and * Copyright (C) 2005-2015, International Business Machines Corporation and Copyright (C) 2005-2016 International Business Machines Corporation and -copyright=" Copyright (c) IBM Corporation 1996, 2000. All rights reserved. "; -Copyright IBM Corporation, 1997, 2000, 2005, 2007. All Rights Reserved. */ -Copyright IBM Corporation, 1996-2016. All Rights Reserved. */ -Copyright (c) 2013-2014, International Business Machines -Copyright (c) 2007-2015 International Business Machines Corporation and * -Copyright (c) 2007-2009 International Business Machines Corporation and * -Copyright (c) 2004-2016, International Business Machines -Copyright (c) 2004-2014, International Business Machines -Copyright (c) 2004-2015, International Business Machines Copyright (C) 2005-2016, International Business Machines Corporation and Copyright (C) 2005-2016, International Business Machines Corporation and * Copyright (C) 2006-2009, Google, International Business Machines Corporation * @@ -102,28 +93,18 @@ Copyright (C) 2007-2010, International Business Machines Corporation and * Copyright (C) 2007-2011, International Business Machines Corporation and * Copyright (C) 2007-2011, International Business Machines Corporation and others. Copyright (C) 2007-2012, International Business Machines Corporation and * -Copyright (C) 2007-2014, International Business Machines Corporation and * Copyright (C) 2007-2013, International Business Machines Corporation and * +Copyright (C) 2007-2014, International Business Machines Corporation and * Copyright (C) 2007-2014, International Business Machines Corporation and * Copyright (C) 2007-2015, Google Inc, International Business Machines Corporation Copyright (C) 2007-2015, International Business Machines Corporation and -Copyright (C) 2007-2016, International Business Machines Copyright (C) 2007-2015, International Business Machines Corporation and * -Copyright (c) 2004-2010, International Business Machines -Copyright (c) 2004-2013, International Business Machines -Copyright (c) 2003-2016, International Business Machines -Copyright (c) 2003-2016 International Business Machines -Copyright (c) 2003-2011, International Business Machines -Copyright (c) 2003-2010, International Business Machines -Copyright (c) 2002-2016, International Business Machines -Copyright (c) 2002-2015, International Business Machines -Copyright (c) 2002-2014, International Business Machines Corporation +Copyright (C) 2007-2016, International Business Machines Copyright (C) 2007-2016, International Business Machines Corporation and Copyright (C) 2007-2016, International Business Machines Corporation and * Copyright (C) 2008-2009, Google, International Business Machines -Copyright (C) 2008-2014, Google, International Business Machines Copyright (C) 2008-2009, International Business Machines -Copyright (C) 2008-2015, Google, International Business Machines Corporation and +Copyright (C) 2008-2014, Google, International Business Machines Copyright (C) 2008-2014, International Business Machines Corporation and * Copyright (C) 2008-2015, International Business Machines Corporation and Copyright (C) 2008-2016 International Business Machines Corporation @@ -145,10 +126,10 @@ Copyright (C) 2009-2014, International Business Machines Copyright (C) 2009-2014, International Business Machines Corporation and Copyright (C) 2009-2014, International Business Machines Corporation and * Copyright (C) 2009-2015, Google, International Business Machines Corporation -Copyright (C) 2009-2015, International Business Machines Corporation and Copyright (C) 2009-2015, International Business Machines -Copyright (C) 2009-2016, Google, Inc.; International Business Machines Corporation +Copyright (C) 2009-2015, International Business Machines Corporation and Copyright (C) 2009-2015, International Business Machines Corporation and * +Copyright (C) 2009-2016, Google, Inc.; International Business Machines Corporation Copyright (C) 2009-2016, International Business Machines Copyright (C) 2009-2016, International Business Machines Corporation and Copyright (C) 2009-2016, International Business Machines Corporation and * @@ -156,8 +137,8 @@ Copyright (C) 2009-2016, International Business Machines Corporation, Copyright (C) 2010, International Business Machines Copyright (C) 2010, International Business Machines Corporation and * Copyright (C) 2010-2011, Google, International Business Machines * -Copyright (C) 2010-2014, Google, International Business Machines Corporation * Copyright (C) 2010-2013, International Business Machines Corporation and * +Copyright (C) 2010-2014, Google, International Business Machines Corporation * Copyright (C) 2010-2014, International Business Machines Copyright (C) 2010-2015, International Business Machines Copyright (C) 2010-2016, Google, Inc.; International Business Machines * @@ -165,39 +146,58 @@ Copyright (C) 2010-2016, International Business Machines Copyright (C) 2011, International Business Machines Copyright (C) 2011, International Business Machines Corporation and * Copyright (C) 2011-2014, International Business Machines -Copyright (C) 2011-2016, International Business Machines Corporation and Copyright (C) 2011-2016, International Business Machines Corporation +Copyright (C) 2011-2016, International Business Machines Corporation and Copyright (C) 2011-2016, International Business Machines Corporation and * -Copyright (C) 2012-2014, International Business Machines Corporation and * -Copyright (C) 2012-2014, International Business Machines Copyright (C) 2012, International Business Machines Corporation and * +Copyright (C) 2012-2014, International Business Machines +Copyright (C) 2012-2014, International Business Machines Corporation and * Copyright (C) 2012-2015, International Business Machines Copyright (C) 2012-2015, International Business Machines Corporation and * Copyright (C) 2012-2016, Google, International Business Machines Corporation and -Copyright (C) 2012-2016, International Business Machines Corporation and Copyright (C) 2012-2016, International Business Machines +Copyright (C) 2012-2016, International Business Machines Corporation and Copyright (C) 2012-2016, International Business Machines Corporation and * Copyright (C) 2013, Google Inc, International Business Machines Corporation and * -Copyright (C) 2013-2014, International Business Machines Copyright (C) 2013, International Business Machines Corporation and * +Copyright (C) 2013-2014, International Business Machines Copyright (C) 2013-2014, International Business Machines Corporation and * Copyright (C) 2013-2015, International Business Machines -Copyright (C) 2013-2016, International Business Machines Corporation and Copyright (C) 2013-2015, International Business Machines Corporation and +Copyright (C) 2013-2016, International Business Machines Corporation and Copyright (C) 2014, International Business Machines Corporation and -Copyright (C) 2014-2015, International Business Machines Corporation and Copyright (C) 2014, International Business Machines Corporation and * +Copyright (C) 2014-2015, International Business Machines Corporation and Copyright (C) 2014-2016, International Business Machines Corporation and -Copyright (C) 2015-2016, International Business Machines Corporation and Copyright (C) 2015, International Business Machines Corporation and +Copyright (C) 2015-2016, International Business Machines Corporation and Copyright (C) 2016, International Business Machines Corporation and Copyright (C) 2016, International Business Machines Corporation and * -Copyright (c) 2001-2016, International Business Machines Copyright (c) 2001-2011, International Business Machines +Copyright (c) 2001-2016, International Business Machines Copyright (c) 2001-2016, International Business Machines Corporation and -Copyright (c) 2002-2007, International Business Machines Corporation Copyright (c) 2002, International Business Machines Corporation +Copyright (c) 2002-2007, International Business Machines Corporation Copyright (c) 2002-2010, International Business Machines Copyright (c) 2002-2010, International Business Machines Corporation Copyright (c) 2002-2011, International Business Machines Corporation Copyright (c) 2002-2014, Google, International Business Machines +Copyright (c) 2002-2014, International Business Machines Corporation +Copyright (c) 2002-2015, International Business Machines +Copyright (c) 2002-2016, International Business Machines +Copyright (c) 2003-2010, International Business Machines +Copyright (c) 2003-2011, International Business Machines +Copyright (c) 2003-2016 International Business Machines +Copyright (c) 2003-2016, International Business Machines +Copyright (c) 2004-2010, International Business Machines +Copyright (c) 2004-2013, International Business Machines +Copyright (c) 2004-2014, International Business Machines +Copyright (c) 2004-2015, International Business Machines +Copyright (c) 2004-2016, International Business Machines +Copyright (c) 2007-2009 International Business Machines Corporation and * +Copyright (c) 2007-2015 International Business Machines Corporation and * +Copyright (c) 2013-2014, International Business Machines +Copyright IBM Corporation, 1996-2016. All Rights Reserved. */ +Copyright IBM Corporation, 1997, 2000, 2005, 2007. All Rights Reserved. */ +Does not write a copyright string. +copyright=" Copyright (c) IBM Corporation 1996, 2000. All rights reserved. "; diff --git a/tools/legal-review/Table/com.ibm.icu.icu4j-71.1/copyright-keep b/tools/legal-review/Table/com.ibm.icu.icu4j-71.1/copyright-keep new file mode 100644 index 000000000000..f62dec1437f5 --- /dev/null +++ b/tools/legal-review/Table/com.ibm.icu.icu4j-71.1/copyright-keep @@ -0,0 +1,2 @@ +Copyright (C) 1996-2004, International Business Machines Corporation and * +Copyright (C) 2001-2014, International Business Machines diff --git a/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.0.0/custom-license b/tools/legal-review/Table/com.ibm.icu.icu4j-71.1/custom-license similarity index 100% rename from tools/legal-review/Table/org.apache.poi.poi-ooxml-5.0.0/custom-license rename to tools/legal-review/Table/com.ibm.icu.icu4j-71.1/custom-license diff --git a/tools/legal-review/Table/com.ibm.icu.icu4j-67.1/files-keep b/tools/legal-review/Table/com.ibm.icu.icu4j-71.1/files-keep similarity index 100% rename from tools/legal-review/Table/com.ibm.icu.icu4j-67.1/files-keep rename to tools/legal-review/Table/com.ibm.icu.icu4j-71.1/files-keep diff --git a/tools/legal-review/Table/com.univocity.univocity-parsers-2.9.0/copyright-keep b/tools/legal-review/Table/com.univocity.univocity-parsers-2.9.1/copyright-ignore similarity index 86% rename from tools/legal-review/Table/com.univocity.univocity-parsers-2.9.0/copyright-keep rename to tools/legal-review/Table/com.univocity.univocity-parsers-2.9.1/copyright-ignore index 66be0ad97ecf..f833cd20c693 100644 --- a/tools/legal-review/Table/com.univocity.univocity-parsers-2.9.0/copyright-keep +++ b/tools/legal-review/Table/com.univocity.univocity-parsers-2.9.1/copyright-ignore @@ -1,4 +1,3 @@ -Copyright (c) 2015. Univocity Software Pty Ltd Copyright (c) 2018. Univocity Software Pty Ltd Copyright 2014 Univocity Software Pty Ltd Copyright 2015 Univocity Software Pty Ltd diff --git a/tools/legal-review/Table/com.univocity.univocity-parsers-2.9.1/copyright-keep b/tools/legal-review/Table/com.univocity.univocity-parsers-2.9.1/copyright-keep new file mode 100644 index 000000000000..e158288263a4 --- /dev/null +++ b/tools/legal-review/Table/com.univocity.univocity-parsers-2.9.1/copyright-keep @@ -0,0 +1 @@ +Copyright (c) 2015. Univocity Software Pty Ltd diff --git a/tools/legal-review/engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE130/copyright-ignore b/tools/legal-review/Table/commons-io.commons-io-2.11.0/copyright-ignore similarity index 100% rename from tools/legal-review/engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE130/copyright-ignore rename to tools/legal-review/Table/commons-io.commons-io-2.11.0/copyright-ignore diff --git a/tools/legal-review/Table/org.apache.xmlgraphics.batik-anim-1.13/copyright-ignore b/tools/legal-review/Table/commons-io.commons-io-2.11.0/copyright-keep similarity index 100% rename from tools/legal-review/Table/org.apache.xmlgraphics.batik-anim-1.13/copyright-ignore rename to tools/legal-review/Table/commons-io.commons-io-2.11.0/copyright-keep diff --git a/tools/legal-review/Table/commons-io.commons-io-1.3.1/files-ignore b/tools/legal-review/Table/commons-io.commons-io-2.11.0/files-ignore similarity index 100% rename from tools/legal-review/Table/commons-io.commons-io-1.3.1/files-ignore rename to tools/legal-review/Table/commons-io.commons-io-2.11.0/files-ignore diff --git a/tools/legal-review/Table/commons-io.commons-io-1.3.1/files-keep b/tools/legal-review/Table/commons-io.commons-io-2.11.0/files-keep similarity index 100% rename from tools/legal-review/Table/commons-io.commons-io-1.3.1/files-keep rename to tools/legal-review/Table/commons-io.commons-io-2.11.0/files-keep diff --git a/tools/legal-review/Table/de.rototor.pdfbox.graphics2d-0.30/copyright-keep b/tools/legal-review/Table/de.rototor.pdfbox.graphics2d-0.30/copyright-keep deleted file mode 100644 index eb24c122ab9c..000000000000 --- a/tools/legal-review/Table/de.rototor.pdfbox.graphics2d-0.30/copyright-keep +++ /dev/null @@ -1 +0,0 @@ -Copyright 2017 Emmeran Seehuber diff --git a/tools/legal-review/Table/org.apache.commons.commons-compress-1.20/copyright-ignore b/tools/legal-review/Table/org.apache.commons.commons-compress-1.20/copyright-ignore deleted file mode 100644 index 47f54b72cf57..000000000000 --- a/tools/legal-review/Table/org.apache.commons.commons-compress-1.20/copyright-ignore +++ /dev/null @@ -1,2 +0,0 @@ -regarding copyright ownership. The ASF licenses this file -this work for additional information regarding copyright ownership. diff --git a/tools/legal-review/Table/org.apache.commons.commons-compress-1.20/copyright-keep b/tools/legal-review/Table/org.apache.commons.commons-compress-1.20/copyright-keep deleted file mode 100644 index 6ab681a5b3bd..000000000000 --- a/tools/legal-review/Table/org.apache.commons.commons-compress-1.20/copyright-keep +++ /dev/null @@ -1 +0,0 @@ -Some portions of this file Copyright (c) 2004-2006 Intel Corportation diff --git a/tools/legal-review/Table/org.apache.commons.commons-compress-1.21/copyright-ignore b/tools/legal-review/Table/org.apache.commons.commons-compress-1.21/copyright-ignore new file mode 100644 index 000000000000..84ba186a888d --- /dev/null +++ b/tools/legal-review/Table/org.apache.commons.commons-compress-1.21/copyright-ignore @@ -0,0 +1,2 @@ +this work for additional information regarding copyright ownership. +work for additional information regarding copyright ownership. The ASF diff --git a/tools/legal-review/Table/org.apache.commons.commons-compress-1.21/copyright-keep b/tools/legal-review/Table/org.apache.commons.commons-compress-1.21/copyright-keep new file mode 100644 index 000000000000..78401c91d801 --- /dev/null +++ b/tools/legal-review/Table/org.apache.commons.commons-compress-1.21/copyright-keep @@ -0,0 +1,2 @@ +Some portions of this file Copyright (c) 2004-2006 Intel Corporation +regarding copyright ownership. The ASF licenses this file diff --git a/tools/legal-review/Table/org.apache.commons.commons-compress-1.20/files-ignore b/tools/legal-review/Table/org.apache.commons.commons-compress-1.21/files-ignore similarity index 100% rename from tools/legal-review/Table/org.apache.commons.commons-compress-1.20/files-ignore rename to tools/legal-review/Table/org.apache.commons.commons-compress-1.21/files-ignore diff --git a/tools/legal-review/Table/org.apache.commons.commons-compress-1.20/files-keep b/tools/legal-review/Table/org.apache.commons.commons-compress-1.21/files-keep similarity index 100% rename from tools/legal-review/Table/org.apache.commons.commons-compress-1.20/files-keep rename to tools/legal-review/Table/org.apache.commons.commons-compress-1.21/files-keep diff --git a/tools/legal-review/Table/org.apache.logging.log4j.log4j-api-2.14.0/copyright-ignore b/tools/legal-review/Table/org.apache.logging.log4j.log4j-api-2.17.2/copyright-ignore similarity index 74% rename from tools/legal-review/Table/org.apache.logging.log4j.log4j-api-2.14.0/copyright-ignore rename to tools/legal-review/Table/org.apache.logging.log4j.log4j-api-2.17.2/copyright-ignore index 01e112638aca..7b9f7d811931 100644 --- a/tools/legal-review/Table/org.apache.logging.log4j.log4j-api-2.14.0/copyright-ignore +++ b/tools/legal-review/Table/org.apache.logging.log4j.log4j-api-2.17.2/copyright-ignore @@ -1,3 +1,2 @@ Copyright © {inceptionYear}-{currentYear} {organizationName}. All Rights Reserved.
-this work for additional information regarding copyright ownership. ~ this work for additional information regarding copyright ownership. diff --git a/tools/legal-review/Table/org.apache.xmlgraphics.batik-awt-util-1.13/copyright-ignore b/tools/legal-review/Table/org.apache.logging.log4j.log4j-api-2.17.2/copyright-keep similarity index 100% rename from tools/legal-review/Table/org.apache.xmlgraphics.batik-awt-util-1.13/copyright-ignore rename to tools/legal-review/Table/org.apache.logging.log4j.log4j-api-2.17.2/copyright-keep diff --git a/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/files-ignore b/tools/legal-review/Table/org.apache.logging.log4j.log4j-api-2.17.2/files-ignore similarity index 100% rename from tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/files-ignore rename to tools/legal-review/Table/org.apache.logging.log4j.log4j-api-2.17.2/files-ignore diff --git a/tools/legal-review/Database/com.fasterxml.jackson.core.jackson-databind-2.12.3/files-keep b/tools/legal-review/Table/org.apache.logging.log4j.log4j-api-2.17.2/files-keep similarity index 100% rename from tools/legal-review/Database/com.fasterxml.jackson.core.jackson-databind-2.12.3/files-keep rename to tools/legal-review/Table/org.apache.logging.log4j.log4j-api-2.17.2/files-keep diff --git a/tools/legal-review/Table/org.apache.pdfbox.fontbox-2.0.22/copyright-ignore b/tools/legal-review/Table/org.apache.pdfbox.fontbox-2.0.22/copyright-ignore deleted file mode 100644 index 1ae67434bf79..000000000000 --- a/tools/legal-review/Table/org.apache.pdfbox.fontbox-2.0.22/copyright-ignore +++ /dev/null @@ -1,44 +0,0 @@ -! this work for additional information regarding copyright ownership. -"copyright", -"copyright", "trademark", "acute", "dieresis", "notequal", "AE", -%%Copyright: -%%Copyright: ----------------------------------------------------------- -%%Copyright: All rights reserved. -%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, -%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR -%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -%%Copyright: Neither the name of Adobe Systems Incorporated nor the names -%%Copyright: Neither the name of Adobe nor the names of its contributors -%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -%%Copyright: Redistribution and use in source and binary forms, with or -%%Copyright: Redistributions in binary form must reproduce the above -%%Copyright: Redistributions of source code must retain the above -%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -%%Copyright: disclaimer in the documentation and/or other materials -%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND -%%Copyright: copyright notice, this list of conditions and the following -%%Copyright: disclaimer. -%%Copyright: following conditions are met: -%%Copyright: may be used to endorse or promote products derived from -%%Copyright: of its contributors may be used to endorse or promote -%%Copyright: products derived from this software without specific prior -%%Copyright: provided with the distribution. -%%Copyright: without modification, are permitted provided that the -%%Copyright: this software without specific prior written permission. -%%Copyright: written permission. -00A9 ; Common # So COPYRIGHT SIGN -2116..2117 ; Common # So [2] NUMERO SIGN..SOUND RECORDING COPYRIGHT -font.addValueToTopDict("Copyright", getString(topDict, "Copyright")); -public static final int NAME_COPYRIGHT = 0; -regarding copyright ownership. The ASF licenses this file -register(new Key(12, 0), "Copyright"); -this work for additional information regarding copyright ownership. -{0251, "copyright"}, -{170, "copyright"}, diff --git a/tools/legal-review/Table/org.apache.pdfbox.fontbox-2.0.22/copyright-keep b/tools/legal-review/Table/org.apache.pdfbox.fontbox-2.0.22/copyright-keep deleted file mode 100644 index bc7b1ac3c0d2..000000000000 --- a/tools/legal-review/Table/org.apache.pdfbox.fontbox-2.0.22/copyright-keep +++ /dev/null @@ -1,6 +0,0 @@ -%%Copyright: Copyright 1990-2009 Adobe Systems Incorporated. -%%Copyright: Copyright 1990-2010 Adobe Systems Incorporated. -%%Copyright: Copyright 1990-2015 Adobe Systems Incorporated. -%%Copyright: Copyright 1990-2019 Adobe. All rights reserved. -Copyright 2015 The Apache Software Foundation. -Copyright 2018 The Apache Software Foundation. diff --git a/tools/legal-review/Table/org.apache.pdfbox.pdfbox-2.0.22/copyright-add b/tools/legal-review/Table/org.apache.pdfbox.pdfbox-2.0.22/copyright-add deleted file mode 100644 index 5bf2de9c56b4..000000000000 --- a/tools/legal-review/Table/org.apache.pdfbox.pdfbox-2.0.22/copyright-add +++ /dev/null @@ -1,3 +0,0 @@ -Copyright (c) 2012 Red Hat, Inc.Digitized data copyright (c) 2010 Google Corporation. -Copyright (c) 2012 Red Hat, Inc.Liberation SansLiberation SansRegularRegularAscender - Liberation SansAscender - Liberation SansLiberation SansLiberation SansVersion 2.00.1Version 2.00.1LiberationSansLiberationSansLiberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions.Ascender CorporationAscender CorporationSteve MattesonSteve MattesonBased on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial!". Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.Based on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial�. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms.http://www.ascendercorp.com/http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlhttp://www.ascendercorp.com/typedesigners.htmlLicensed under the SIL Open Font License, Version 1.1Licensed under the SIL Open Font License, Version 1.1http://scripts.sil.org/OFLhttp://scripts.sil.org/OFL -ISO Coated v2 300% (basICColor) textbasICColor CMYKick v1.2 - Copyright (c) 2006-2007 Color Solutions, All Rights Reserved. diff --git a/tools/legal-review/Table/org.apache.pdfbox.pdfbox-2.0.22/copyright-ignore b/tools/legal-review/Table/org.apache.pdfbox.pdfbox-2.0.22/copyright-ignore deleted file mode 100644 index 392786a0cb3885eaf1e17b2f0d0a07054a4d6ccc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4486 zcmb_gUr!^u75A-hZ*rnU%`AiLR2JOR6>KoId@TTJ<_!?$^l9>4NH5KMiXqr&!;4=QEn= z%ujyaJ*wAt-#@VqBb_UfWd@BDHIC`QI6p|OuKeEPK6S3|0)->(Nv5eODp_jfsE~6S zDw;Z#9k5u<|9P8CJ8$)H>QxqxR?exK+RC^nW~TkbOg*I&X~*gS3i$~Eg5`W+GCk61 z0N{WsYhHAQt^7nnfjnP3Vrjfip^CH$NO`GCm7PaIKFdmVCIInlx$l`vC2juLz{qqIhI8hK^Nh`-zRuh6f zSkWazLY>S2<-y!}RXCbRUdLfwWlE=qI@cb`STe(0kE72(T{o>NV|nvnpf}nk^loHI zn84)5{=7SzXs>qPUz+^gA=;D&T(=a7*0X_eGD}?a1e3Q{7#OO)@+0Or?D!ghK zT;u$@b#=D$w|euWaX`DTYrB6xz~s^K(fTCou~=wsF0hmF%0J@q{@1$oTFmy+eQMSl zO@cenjr0f9E7L@XTcO2JC}D*Z9`8n!g2Vu$QaCK@p|UaE4WP3SkDwiksmMWLF;wGe zF7eUi8t0A;d=%axU}D zq+U-j-nRLcGsh!uBPPgkIH1JW2k`jVMF8a)b4HBtWUw;)zrnm02YBlNpcFb0co<0D z#RttJr4I1_0*XPPdI+2hs|ODoh4*{fBC!vNBkadUSW)uGf>&aN4Quc|33DWVg&A$o zAPam;^E*ghH#|zEByVM=3W+WX!M5Q;+&du%m5pWimt>I8gY>A*ArhZn8T%u28?iM> zl?~~_pm19Hb!xTCbjqEWgY37ybP2_+sKRsQr{dLrE)CkA=%)h6F`_R4hr56uj~$px zEP939b|<}8&R~220*7UWHTr%hfKp(@2Acsc26YnNnU;cwv!ji%VdNZ&Ip)76m`xHL zhRwjnC?Vk`sHcOnERCIF6rL`~Eg^%z7o(Bi*qk~z7dzZi3wFXu*lX#S1y9V1%n zVZ$zv2dr7fa&NXFpMd9L*fO&0J~_rL$%Zu^8S#uWM5~N2vfyF#vankX+Hb>`DLH_n zR0AHyBnvpXFq?rQ#o5?uG1Q~4bKq_w$A~fNk*|V|Y|E%ifmwvlg~U~XknK8F7Y2R* zM5hy)p`*=|(_{4RG@R3BAP`n%iQb?zFG%+MkV*eAjKygA#jl@tW zTtQN_@^e&R+*rIG;*t|?8jvpYfB);BXsuZfg`RT)LxYYzgC>Aq~Gx-ZHDcp;fN@b2SRfcHK!34p% zG0%J$z6FN6S#3>Y?#9Cf1ouOn8c>;ZT5t~I{(h;POs&CMl}pdP6X&W4(D(3?pTr?P zv+zk^lg(<#e!=-GS$N1H7`?B4Iy{`sW{F&s!4z36fl|EsUvA6c#V)&^9HIj!Vb1~% z^HtG)Ua5tfSeHzE0eUWgv9>QWo+Q{{3@i1a z+3hO~a6(+cUE*|}7&|`fUt>-D24DQafB(pjINE&f2rf$%5a*;h4oZ;N162DsU=zJZ z1JAE@0pd!J@oU6iao$XNxoWv-(XQ3$gE3=7)LMZ{cAyWd^uzCe>v6Lezgvz^Ei9KV zltiQ52OA1;MlVgm&k%p0y`glyOI$yV-CsM)55lXzc%E3T)8*agKk4+DUK&Xg{n_Og mon*aLYu4*+%wsben0y+l_W^Zqt$*a-PaN6= -Copyright (C) 2016-2021 Lightbend Inc. -Copyright (C) 2017-2021 Lightbend Inc. -Copyright (C) 2018-2021 Lightbend Inc. -Copyright (C) 2019-2021 Lightbend Inc. -Copyright (C) 2020-2021 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/copyright-ignore b/tools/legal-review/engine/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/copyright-ignore new file mode 100644 index 000000000000..ad40277caa0d --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/copyright-ignore @@ -0,0 +1,6 @@ +Copyright (C) 2014-2022 Lightbend Inc. +Copyright (C) 2016-2022 Lightbend Inc. +Copyright (C) 2017-2022 Lightbend Inc. +Copyright (C) 2018-2022 Lightbend Inc. +Copyright (C) 2019-2022 Lightbend Inc. +Copyright (C) 2020-2022 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/copyright-keep b/tools/legal-review/engine/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/copyright-keep new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-ignore b/tools/legal-review/engine/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-ignore new file mode 100644 index 000000000000..4c3b3d7f85de --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-ignore @@ -0,0 +1,8 @@ +Copyright (C) 2014-2022 Lightbend Inc. +Copyright (C) 2015-2022 Lightbend Inc. +Copyright (C) 2016-2022 Lightbend Inc. +Copyright (C) 2017-2022 Lightbend Inc. +Copyright (C) 2018-2022 Lightbend Inc. +Copyright (C) 2019-2022 Lightbend Inc. +Copyright (C) 2020-2022 Lightbend Inc. +Copyright (C) 2021-2022 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-keep b/tools/legal-review/engine/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-keep new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-keep b/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-keep deleted file mode 100644 index 36a39e555a86..000000000000 --- a/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-keep +++ /dev/null @@ -1,8 +0,0 @@ -Copyright (C) 2009-2021 Lightbend Inc. -Copyright (C) 2015-2021 Lightbend Inc. -Copyright (C) 2016-2021 Lightbend Inc. -Copyright (C) 2017-2021 Lightbend Inc. -Copyright (C) 2018-2021 Lightbend Inc. -Copyright (C) 2019-2021 Lightbend Inc. -Copyright (C) 2020-2021 Lightbend Inc. -Copyright (C) 2021 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep b/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-ignore similarity index 81% rename from tools/legal-review/engine/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep rename to tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-ignore index 6d396d168b60..a349acd1aeb8 100644 --- a/tools/legal-review/engine/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep +++ b/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-ignore @@ -1,4 +1,3 @@ -Copyright (C) 2014-2021 Lightbend Inc. Copyright (C) 2015-2021 Lightbend Inc. Copyright (C) 2016-2021 Lightbend Inc. Copyright (C) 2017-2021 Lightbend Inc. @@ -6,3 +5,5 @@ Copyright (C) 2018-2021 Lightbend Inc. Copyright (C) 2019-2021 Lightbend Inc. Copyright (C) 2020-2021 Lightbend Inc. Copyright (C) 2021 Lightbend Inc. +Copyright 2009-2020 Lightbend Inc. +Copyright 2011 Mark Harrah, Eugene Yokota diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-keep b/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-keep new file mode 100644 index 000000000000..7b20c5cfa769 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-keep @@ -0,0 +1,5 @@ +Copyright (C) 2008-2017 Bjoern Hoehrmann +Copyright (C) 2009-2017 Mathias Doenitz, Alexander Myltsev +Copyright (C) 2009-2021 Lightbend Inc. +Copyright 2014 Twitter, Inc. +Copyright 2015 Heiko Seeberger diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-http-spray-json_2.13-10.2.7/copyright-keep b/tools/legal-review/engine/com.typesafe.akka.akka-http-spray-json_2.13-10.2.9/copyright-ignore similarity index 100% rename from tools/legal-review/project-manager/com.typesafe.akka.akka-http-spray-json_2.13-10.2.7/copyright-keep rename to tools/legal-review/engine/com.typesafe.akka.akka-http-spray-json_2.13-10.2.9/copyright-ignore diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-keep b/tools/legal-review/engine/com.typesafe.akka.akka-http-spray-json_2.13-10.2.9/copyright-keep similarity index 100% rename from tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-keep rename to tools/legal-review/engine/com.typesafe.akka.akka-http-spray-json_2.13-10.2.9/copyright-keep diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-http_2.13-10.2.7/copyright-keep-context b/tools/legal-review/engine/com.typesafe.akka.akka-http_2.13-10.2.9/copyright-ignore similarity index 85% rename from tools/legal-review/engine/com.typesafe.akka.akka-http_2.13-10.2.7/copyright-keep-context rename to tools/legal-review/engine/com.typesafe.akka.akka-http_2.13-10.2.9/copyright-ignore index f4201b2077df..19b71590f559 100644 --- a/tools/legal-review/engine/com.typesafe.akka.akka-http_2.13-10.2.7/copyright-keep-context +++ b/tools/legal-review/engine/com.typesafe.akka.akka-http_2.13-10.2.9/copyright-ignore @@ -1,4 +1,3 @@ -Copyright (C) 2009-2020 Lightbend Inc. Copyright (C) 2009-2020 Lightbend Inc. Copyright (C) 2009-2021 Lightbend Inc. Copyright (C) 2015-2021 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-http_2.13-10.2.9/copyright-keep b/tools/legal-review/engine/com.typesafe.akka.akka-http_2.13-10.2.9/copyright-keep new file mode 100644 index 000000000000..e25cd2d998b4 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-http_2.13-10.2.9/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2009-2020 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-ignore b/tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-ignore new file mode 100644 index 000000000000..9714bf557ee5 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-ignore @@ -0,0 +1,4 @@ +Copyright (C) 2009-2017 Mathias Doenitz, Alexander Myltsev +Copyright (c) 2004, Mikael Grev, MiG InfoCom AB. (base64 @ miginfocom . com) +Copyright (c) 2011-13 Miles Sabin +Copyright (c) 2013-14 Miles Sabin diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-http-spray-json_2.13-10.2.7/copyright-keep-context b/tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-keep similarity index 52% rename from tools/legal-review/engine/com.typesafe.akka.akka-http-spray-json_2.13-10.2.7/copyright-keep-context rename to tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-keep index 6e69ea300f50..9fb2d5eea243 100644 --- a/tools/legal-review/engine/com.typesafe.akka.akka-http-spray-json_2.13-10.2.7/copyright-keep-context +++ b/tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-keep @@ -1,2 +1,2 @@ Copyright (C) 2009-2021 Lightbend Inc. -Copyright (C) 2017-2021 Lightbend Inc. +Copyright (C) 2019-2021 Lightbend Inc. diff --git a/tools/legal-review/engine/org.typelevel.jawn-parser_2.13-1.1.2/custom-license b/tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/custom-license similarity index 100% rename from tools/legal-review/engine/org.typelevel.jawn-parser_2.13-1.1.2/custom-license rename to tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/custom-license diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/files-add/COPYING.protobuf b/tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/files-add/COPYING.protobuf similarity index 100% rename from tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/files-add/COPYING.protobuf rename to tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/files-add/COPYING.protobuf diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/files-add/LICENSE b/tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/files-add/LICENSE similarity index 100% rename from tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/files-add/LICENSE rename to tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/files-add/LICENSE diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-slf4j_2.13-2.6.19/copyright-keep b/tools/legal-review/engine/com.typesafe.akka.akka-slf4j_2.13-2.6.19/copyright-keep new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-slf4j_2.13-2.6.19/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep-context b/tools/legal-review/engine/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep-context deleted file mode 100644 index 4acf94aff922..000000000000 --- a/tools/legal-review/engine/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep-context +++ /dev/null @@ -1,9 +0,0 @@ -Copyright (C) 2009-2021 Lightbend Inc. -Copyright (C) 2014-2021 Lightbend Inc. -Copyright (C) 2015-2021 Lightbend Inc. -Copyright (C) 2016-2021 Lightbend Inc. -Copyright (C) 2017-2021 Lightbend Inc. -Copyright (C) 2018-2021 Lightbend Inc. -Copyright (C) 2019-2021 Lightbend Inc. -Copyright (C) 2020-2021 Lightbend Inc. -Copyright (C) 2021 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-ignore b/tools/legal-review/engine/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-ignore new file mode 100644 index 000000000000..4c3b3d7f85de --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-ignore @@ -0,0 +1,8 @@ +Copyright (C) 2014-2022 Lightbend Inc. +Copyright (C) 2015-2022 Lightbend Inc. +Copyright (C) 2016-2022 Lightbend Inc. +Copyright (C) 2017-2022 Lightbend Inc. +Copyright (C) 2018-2022 Lightbend Inc. +Copyright (C) 2019-2022 Lightbend Inc. +Copyright (C) 2020-2022 Lightbend Inc. +Copyright (C) 2021-2022 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-keep b/tools/legal-review/engine/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-keep new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.config-1.4.1/copyright-keep-context b/tools/legal-review/engine/com.typesafe.config-1.4.2/copyright-ignore similarity index 64% rename from tools/legal-review/engine/com.typesafe.config-1.4.1/copyright-keep-context rename to tools/legal-review/engine/com.typesafe.config-1.4.2/copyright-ignore index 6d007f558b96..ee133eba8038 100644 --- a/tools/legal-review/engine/com.typesafe.config-1.4.1/copyright-keep-context +++ b/tools/legal-review/engine/com.typesafe.config-1.4.2/copyright-ignore @@ -1,3 +1,2 @@ -Copyright (C) 2011-2012 Typesafe Inc. -Copyright (C) 2015 Typesafe Inc. Copyright (C) 2014 Typesafe Inc. +Copyright (C) 2015 Typesafe Inc. diff --git a/tools/legal-review/engine/com.typesafe.config-1.4.2/copyright-keep b/tools/legal-review/engine/com.typesafe.config-1.4.2/copyright-keep new file mode 100644 index 000000000000..b0c78be03113 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.config-1.4.2/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2011-2012 Typesafe Inc. diff --git a/tools/legal-review/engine/com.typesafe.ssl-config-core_2.13-0.4.2/copyright-keep b/tools/legal-review/engine/com.typesafe.ssl-config-core_2.13-0.4.3/copyright-keep similarity index 100% rename from tools/legal-review/engine/com.typesafe.ssl-config-core_2.13-0.4.2/copyright-keep rename to tools/legal-review/engine/com.typesafe.ssl-config-core_2.13-0.4.3/copyright-keep diff --git a/tools/legal-review/engine/eu.timepit.refined_2.13-0.9.27/files-keep b/tools/legal-review/engine/eu.timepit.refined_2.13-0.9.27/files-keep deleted file mode 100644 index 338c678188b4..000000000000 --- a/tools/legal-review/engine/eu.timepit.refined_2.13-0.9.27/files-keep +++ /dev/null @@ -1 +0,0 @@ -/fthomas/refined/blob/master/LICENSE diff --git a/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/default-and-custom-license b/tools/legal-review/engine/io.circe.circe-core_2.13-0.14.2/default-and-custom-license similarity index 100% rename from tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/default-and-custom-license rename to tools/legal-review/engine/io.circe.circe-core_2.13-0.14.2/default-and-custom-license diff --git a/tools/legal-review/project-manager/io.circe.circe-core_2.13-0.14.1/files-keep b/tools/legal-review/engine/io.circe.circe-core_2.13-0.14.2/files-ignore similarity index 65% rename from tools/legal-review/project-manager/io.circe.circe-core_2.13-0.14.1/files-keep rename to tools/legal-review/engine/io.circe.circe-core_2.13-0.14.2/files-ignore index 3ae56f62e047..e83bd50cc45e 100644 --- a/tools/legal-review/project-manager/io.circe.circe-core_2.13-0.14.1/files-keep +++ b/tools/legal-review/engine/io.circe.circe-core_2.13-0.14.2/files-ignore @@ -1,3 +1,4 @@ +/circe/circe/blob/main/LICENSE /circe/circe/blob/main/LICENSE.argonaut /circe/circe/blob/main/LICENSE.ephox -/circe/circe/blob/main/NOTICE +#license diff --git a/tools/legal-review/engine/io.circe.circe-core_2.13-0.14.2/files-keep b/tools/legal-review/engine/io.circe.circe-core_2.13-0.14.2/files-keep new file mode 100644 index 000000000000..bba94f98ed1b --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-core_2.13-0.14.2/files-keep @@ -0,0 +1 @@ +/circe/circe/blob/main/NOTICE diff --git a/tools/legal-review/engine/io.circe.circe-generic-extras_2.13-0.14.1/copyright-add b/tools/legal-review/engine/io.circe.circe-generic-extras_2.13-0.14.2/copyright-add similarity index 100% rename from tools/legal-review/engine/io.circe.circe-generic-extras_2.13-0.14.1/copyright-add rename to tools/legal-review/engine/io.circe.circe-generic-extras_2.13-0.14.2/copyright-add diff --git a/tools/legal-review/engine/io.circe.circe-generic-extras_2.13-0.14.1/files-ignore b/tools/legal-review/engine/io.circe.circe-generic-extras_2.13-0.14.2/files-ignore similarity index 100% rename from tools/legal-review/engine/io.circe.circe-generic-extras_2.13-0.14.1/files-ignore rename to tools/legal-review/engine/io.circe.circe-generic-extras_2.13-0.14.2/files-ignore diff --git a/tools/legal-review/Table/com.fasterxml.woodstox.woodstox-core-5.2.1/default-and-custom-license b/tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.2/default-and-custom-license similarity index 100% rename from tools/legal-review/Table/com.fasterxml.woodstox.woodstox-core-5.2.1/default-and-custom-license rename to tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.2/default-and-custom-license diff --git a/tools/legal-review/project-manager/io.circe.circe-generic_2.13-0.14.1/files-keep b/tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.2/files-ignore similarity index 65% rename from tools/legal-review/project-manager/io.circe.circe-generic_2.13-0.14.1/files-keep rename to tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.2/files-ignore index 3ae56f62e047..e83bd50cc45e 100644 --- a/tools/legal-review/project-manager/io.circe.circe-generic_2.13-0.14.1/files-keep +++ b/tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.2/files-ignore @@ -1,3 +1,4 @@ +/circe/circe/blob/main/LICENSE /circe/circe/blob/main/LICENSE.argonaut /circe/circe/blob/main/LICENSE.ephox -/circe/circe/blob/main/NOTICE +#license diff --git a/tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.2/files-keep b/tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.2/files-keep new file mode 100644 index 000000000000..bba94f98ed1b --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.2/files-keep @@ -0,0 +1 @@ +/circe/circe/blob/main/NOTICE diff --git a/tools/legal-review/Table/xml-apis.xml-apis-1.4.01/default-and-custom-license b/tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.2/default-and-custom-license similarity index 100% rename from tools/legal-review/Table/xml-apis.xml-apis-1.4.01/default-and-custom-license rename to tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.2/default-and-custom-license diff --git a/tools/legal-review/project-manager/io.circe.circe-jawn_2.13-0.14.1/files-keep b/tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.2/files-ignore similarity index 65% rename from tools/legal-review/project-manager/io.circe.circe-jawn_2.13-0.14.1/files-keep rename to tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.2/files-ignore index 3ae56f62e047..e83bd50cc45e 100644 --- a/tools/legal-review/project-manager/io.circe.circe-jawn_2.13-0.14.1/files-keep +++ b/tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.2/files-ignore @@ -1,3 +1,4 @@ +/circe/circe/blob/main/LICENSE /circe/circe/blob/main/LICENSE.argonaut /circe/circe/blob/main/LICENSE.ephox -/circe/circe/blob/main/NOTICE +#license diff --git a/tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.2/files-keep b/tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.2/files-keep new file mode 100644 index 000000000000..bba94f98ed1b --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.2/files-keep @@ -0,0 +1 @@ +/circe/circe/blob/main/NOTICE diff --git a/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-annotations-2.13.1/default-and-custom-license b/tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.2/default-and-custom-license similarity index 100% rename from tools/legal-review/engine/com.fasterxml.jackson.core.jackson-annotations-2.13.1/default-and-custom-license rename to tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.2/default-and-custom-license diff --git a/tools/legal-review/project-manager/io.circe.circe-literal_2.13-0.14.1/files-keep b/tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.2/files-ignore similarity index 65% rename from tools/legal-review/project-manager/io.circe.circe-literal_2.13-0.14.1/files-keep rename to tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.2/files-ignore index 3ae56f62e047..e83bd50cc45e 100644 --- a/tools/legal-review/project-manager/io.circe.circe-literal_2.13-0.14.1/files-keep +++ b/tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.2/files-ignore @@ -1,3 +1,4 @@ +/circe/circe/blob/main/LICENSE /circe/circe/blob/main/LICENSE.argonaut /circe/circe/blob/main/LICENSE.ephox -/circe/circe/blob/main/NOTICE +#license diff --git a/tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.2/files-keep b/tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.2/files-keep new file mode 100644 index 000000000000..bba94f98ed1b --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.2/files-keep @@ -0,0 +1 @@ +/circe/circe/blob/main/NOTICE diff --git a/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-core-2.13.1/default-and-custom-license b/tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.2/default-and-custom-license similarity index 100% rename from tools/legal-review/engine/com.fasterxml.jackson.core.jackson-core-2.13.1/default-and-custom-license rename to tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.2/default-and-custom-license diff --git a/tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.2/files-ignore b/tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.2/files-ignore new file mode 100644 index 000000000000..e83bd50cc45e --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.2/files-ignore @@ -0,0 +1,4 @@ +/circe/circe/blob/main/LICENSE +/circe/circe/blob/main/LICENSE.argonaut +/circe/circe/blob/main/LICENSE.ephox +#license diff --git a/tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.2/files-keep b/tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.2/files-keep new file mode 100644 index 000000000000..bba94f98ed1b --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.2/files-keep @@ -0,0 +1 @@ +/circe/circe/blob/main/NOTICE diff --git a/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-databind-2.13.1/default-and-custom-license b/tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.2/default-and-custom-license similarity index 100% rename from tools/legal-review/engine/com.fasterxml.jackson.core.jackson-databind-2.13.1/default-and-custom-license rename to tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.2/default-and-custom-license diff --git a/tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.2/files-ignore b/tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.2/files-ignore new file mode 100644 index 000000000000..e83bd50cc45e --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.2/files-ignore @@ -0,0 +1,4 @@ +/circe/circe/blob/main/LICENSE +/circe/circe/blob/main/LICENSE.argonaut +/circe/circe/blob/main/LICENSE.ephox +#license diff --git a/tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.2/files-keep b/tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.2/files-keep new file mode 100644 index 000000000000..bba94f98ed1b --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.2/files-keep @@ -0,0 +1 @@ +/circe/circe/blob/main/NOTICE diff --git a/tools/legal-review/engine/io.methvin.directory-watcher-0.16.1/copyright-keep b/tools/legal-review/engine/io.methvin.directory-watcher-0.16.1/copyright-keep new file mode 100644 index 000000000000..78c5fad1acfc --- /dev/null +++ b/tools/legal-review/engine/io.methvin.directory-watcher-0.16.1/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2014-2016 Markus Junginger, greenrobot (http://greenrobot.org) diff --git a/tools/legal-review/engine/net.java.dev.jna.jna-5.12.1/copyright-ignore b/tools/legal-review/engine/net.java.dev.jna.jna-5.12.1/copyright-ignore new file mode 100644 index 000000000000..37046de5d385 --- /dev/null +++ b/tools/legal-review/engine/net.java.dev.jna.jna-5.12.1/copyright-ignore @@ -0,0 +1,12 @@ +Copyright (c) 2007-2008 Timothy Wall, All Rights Reserved +Copyright (c) 2007-2012 Timothy Wall, All Rights Reserved +Copyright (c) 2007-2013 Timothy Wall, All Rights Reserved +Copyright (c) 2007-2015 Timothy Wall, All Rights Reserved +Copyright (c) 2009 Timothy Wall, All Rights Reserved +Copyright (c) 2011 Timothy Wall, All Rights Reserved +Copyright (c) 2012 Timothy Wall, All Rights Reserved +Copyright (c) 2017 Matthias Bläsing, All Rights Reserved +Copyright (c) 2018 Matthias Bläsing +Copyright (c) 2019 Matthias Bläsing, All Rights Reserved +Copyright (c) 2021, Matthias Bläsing, All Rights Reserved +Copyright 2007 Timothy Wall diff --git a/tools/legal-review/engine/net.java.dev.jna.jna-5.12.1/copyright-keep b/tools/legal-review/engine/net.java.dev.jna.jna-5.12.1/copyright-keep new file mode 100644 index 000000000000..470119fd5afa --- /dev/null +++ b/tools/legal-review/engine/net.java.dev.jna.jna-5.12.1/copyright-keep @@ -0,0 +1,2 @@ +Copyright (c) 2007 Timothy Wall, All Rights Reserved +Copyright (c) 2007 Wayne Meissner, All Rights Reserved diff --git a/tools/legal-review/engine/net.java.dev.jna.jna-5.8.0/copyright-add b/tools/legal-review/engine/net.java.dev.jna.jna-5.8.0/copyright-add deleted file mode 100644 index b4ef2d279723..000000000000 --- a/tools/legal-review/engine/net.java.dev.jna.jna-5.8.0/copyright-add +++ /dev/null @@ -1,55 +0,0 @@ -------------- - -/* - * Copyright (c) 2007 Wayne Meissner, All Rights Reserved - * - * The contents of this file is dual-licensed under 2 - * alternative Open Source/Free licenses: LGPL 2.1 or later and - * Apache License 2.0. (starting with JNA version 4.0.0). - * - * You can freely decide which license you want to apply to - * the project. - * - * You may obtain a copy of the LGPL License at: - * - * http://www.gnu.org/licenses/licenses.html - * - * A copy is also included in the downloadable source code package - * containing JNA, in file "LGPL2.1". - * - * You may obtain a copy of the Apache License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing JNA, in file "AL2.0". - */ - -/* Copyright (c) 2007 Wayne Meissner, All Rights Reserved - * Copyright (c) 2007-2013 Timothy Wall, All Rights Reserved - * - * The contents of this file is dual-licensed under 2 - * alternative Open Source/Free licenses: LGPL 2.1 or later and - * Apache License 2.0. (starting with JNA version 4.0.0). - * - * You can freely decide which license you want to apply to - * the project. - * - * You may obtain a copy of the LGPL License at: - * - * http://www.gnu.org/licenses/licenses.html - * - * A copy is also included in the downloadable source code package - * containing JNA, in file "LGPL2.1". - * - * You may obtain a copy of the Apache License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing JNA, in file "AL2.0". - */ - -(We are choosing the Apache license for this component.) - -------------- diff --git a/tools/legal-review/engine/net.java.dev.jna.jna-5.8.0/copyright-ignore b/tools/legal-review/engine/net.java.dev.jna.jna-5.8.0/copyright-ignore deleted file mode 100644 index db7769510c79..000000000000 --- a/tools/legal-review/engine/net.java.dev.jna.jna-5.8.0/copyright-ignore +++ /dev/null @@ -1,2 +0,0 @@ -Copyright (c) 2007 Wayne Meissner, All Rights Reserved -Copyright (c) 2007-2013 Timothy Wall, All Rights Reserved diff --git a/tools/legal-review/engine/net.java.dev.jna.jna-5.8.0/copyright-keep b/tools/legal-review/engine/net.java.dev.jna.jna-5.8.0/copyright-keep deleted file mode 100644 index 267a0b79d406..000000000000 --- a/tools/legal-review/engine/net.java.dev.jna.jna-5.8.0/copyright-keep +++ /dev/null @@ -1,2 +0,0 @@ -Copyright 2007 Timothy Wall -Copyright (c) 2007 Timothy Wall, All Rights Reserved diff --git a/tools/legal-review/engine/net.java.dev.jna.jna-5.8.0/copyright-keep-context b/tools/legal-review/engine/net.java.dev.jna.jna-5.9.0/copyright-ignore similarity index 84% rename from tools/legal-review/engine/net.java.dev.jna.jna-5.8.0/copyright-keep-context rename to tools/legal-review/engine/net.java.dev.jna.jna-5.9.0/copyright-ignore index 191a5cf31559..ae3b8ac9c15b 100644 --- a/tools/legal-review/engine/net.java.dev.jna.jna-5.8.0/copyright-keep-context +++ b/tools/legal-review/engine/net.java.dev.jna.jna-5.9.0/copyright-ignore @@ -1,5 +1,6 @@ Copyright (c) 2007-2008 Timothy Wall, All Rights Reserved Copyright (c) 2007-2012 Timothy Wall, All Rights Reserved +Copyright (c) 2007-2013 Timothy Wall, All Rights Reserved Copyright (c) 2007-2015 Timothy Wall, All Rights Reserved Copyright (c) 2009 Timothy Wall, All Rights Reserved Copyright (c) 2011 Timothy Wall, All Rights Reserved @@ -7,3 +8,4 @@ Copyright (c) 2012 Timothy Wall, All Rights Reserved Copyright (c) 2017 Matthias Bläsing, All Rights Reserved Copyright (c) 2018 Matthias Bläsing Copyright (c) 2019 Matthias Bläsing, All Rights Reserved +Copyright 2007 Timothy Wall diff --git a/tools/legal-review/engine/net.java.dev.jna.jna-5.9.0/copyright-keep b/tools/legal-review/engine/net.java.dev.jna.jna-5.9.0/copyright-keep new file mode 100644 index 000000000000..470119fd5afa --- /dev/null +++ b/tools/legal-review/engine/net.java.dev.jna.jna-5.9.0/copyright-keep @@ -0,0 +1,2 @@ +Copyright (c) 2007 Timothy Wall, All Rights Reserved +Copyright (c) 2007 Wayne Meissner, All Rights Reserved diff --git a/tools/legal-review/engine/org.apache.tika.tika-core-2.2.1/copyright-keep-context b/tools/legal-review/engine/org.apache.tika.tika-core-2.2.1/copyright-keep-context deleted file mode 100644 index 1a76606a2713..000000000000 --- a/tools/legal-review/engine/org.apache.tika.tika-core-2.2.1/copyright-keep-context +++ /dev/null @@ -1,2 +0,0 @@ -standard. These parts Copyright 2010 International Press Telecommunications -Copyright ownership can be expressed in a more controlled way using the diff --git a/tools/legal-review/engine/org.apache.tika.tika-core-2.2.1/copyright-ignore b/tools/legal-review/engine/org.apache.tika.tika-core-2.4.1/copyright-ignore similarity index 92% rename from tools/legal-review/engine/org.apache.tika.tika-core-2.2.1/copyright-ignore rename to tools/legal-review/engine/org.apache.tika.tika-core-2.4.1/copyright-ignore index 405017d65e78..fdcd3e4d23e8 100644 --- a/tools/legal-review/engine/org.apache.tika.tika-core-2.2.1/copyright-ignore +++ b/tools/legal-review/engine/org.apache.tika.tika-core-2.4.1/copyright-ignore @@ -1,11 +1,10 @@ "The copyright information." -(IPR), Copyright, and various Property Rights. If the Rights element @deprecated use {@link IPTC#COPYRIGHT_OWNER_ID} ARTWORK_OR_OBJECT_DETAIL_COPYRIGHT_NOTICE, ARTWORK_OR_OBJECT_DETAIL_CREATOR, COPYRIGHT_OWNER_ID, COPYRIGHT_OWNER_NAME, IMAGE_CREATOR_ID, IMAGE_CREATOR_NAME, Contains any necessary copyright notice for claiming the intellectual -Copyright 2016 Norconex Inc. Copyright Owner, Image Supplier and Licensor may be the same or different +Copyright ownership can be expressed in a more controlled way using the DATE_CREATED, DESCRIPTION_WRITER, INSTRUCTIONS, JOB_ID, TITLE, COPYRIGHT_NOTICE, Owner or owners of the copyright in the licensed image. PREFIX_IPTC_EXT + TikaCoreProperties.NAMESPACE_PREFIX_DELIMITER + "AOCopyrightNotice"); @@ -27,5 +26,6 @@ current owner of the copyright of this work with associated intellectual in the CopyrightNotice. new Property[]{Property.internalTextBag(IPTC.COPYRIGHT_OWNER_ID_WRONG_CASE)}); regarding copyright ownership. The ASF licenses this file +standard. These parts Copyright 2010 International Press Telecommunications the copyrights of this image other rights properties may be used. this work for additional information regarding copyright ownership. diff --git a/tools/legal-review/engine/org.apache.tika.tika-core-2.4.1/copyright-keep b/tools/legal-review/engine/org.apache.tika.tika-core-2.4.1/copyright-keep new file mode 100644 index 000000000000..cbf030645a66 --- /dev/null +++ b/tools/legal-review/engine/org.apache.tika.tika-core-2.4.1/copyright-keep @@ -0,0 +1,2 @@ +(IPR), Copyright, and various Property Rights. If the Rights element +Copyright 2016 Norconex Inc. diff --git a/tools/legal-review/Database/com.fasterxml.jackson.core.jackson-databind-2.12.3/files-ignore b/tools/legal-review/engine/org.apache.tika.tika-core-2.4.1/files-ignore similarity index 100% rename from tools/legal-review/Database/com.fasterxml.jackson.core.jackson-databind-2.12.3/files-ignore rename to tools/legal-review/engine/org.apache.tika.tika-core-2.4.1/files-ignore diff --git a/tools/legal-review/Table/org.apache.xmlgraphics.batik-shared-resources-1.13/files-keep b/tools/legal-review/engine/org.apache.tika.tika-core-2.4.1/files-keep similarity index 100% rename from tools/legal-review/Table/org.apache.xmlgraphics.batik-shared-resources-1.13/files-keep rename to tools/legal-review/engine/org.apache.tika.tika-core-2.4.1/files-keep diff --git a/tools/legal-review/engine/org.jline.jline-3.20.0/copyright-keep b/tools/legal-review/engine/org.jline.jline-3.20.0/copyright-keep deleted file mode 100644 index a0c6a89dbf6c..000000000000 --- a/tools/legal-review/engine/org.jline.jline-3.20.0/copyright-keep +++ /dev/null @@ -1,10 +0,0 @@ -Copyright (C) 2009-2018 the original author(s). -Copyright (c) 2000-2005 Dieter Wimberger -Copyright (c) 2002-2016, the original author or authors. -Copyright (c) 2002-2017, the original author or authors. -Copyright (c) 2002-2018, the original author or authors. -Copyright (c) 2002-2019, the original author or authors. -Copyright (c) 2002-2020, the original author or authors. -Copyright (c) 2002-2021, the original author or authors. -regarding copyright ownership. The ASF licenses this file -this work for additional information regarding copyright ownership. diff --git a/tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-RELEASE130/copyright-ignore b/tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-RELEASE130/copyright-ignore deleted file mode 100644 index aabdad4aa3ca..000000000000 --- a/tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-RELEASE130/copyright-ignore +++ /dev/null @@ -1,2 +0,0 @@ -regarding copyright ownership. The ASF licenses this file -regarding copyright ownership. The ASF licenses this file diff --git a/tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-nb-RELEASE130/files-ignore b/tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-nb-RELEASE130/files-ignore deleted file mode 100644 index b9005a4d5ae7..000000000000 --- a/tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-nb-RELEASE130/files-ignore +++ /dev/null @@ -1 +0,0 @@ -META-INF/LICENSE diff --git a/tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-nb-RELEASE130/files-keep b/tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-nb-RELEASE130/files-keep deleted file mode 100644 index 0d1c51375183..000000000000 --- a/tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-nb-RELEASE130/files-keep +++ /dev/null @@ -1 +0,0 @@ -META-INF/NOTICE diff --git a/tools/legal-review/engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE130/files-ignore b/tools/legal-review/engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE130/files-ignore deleted file mode 100644 index b9005a4d5ae7..000000000000 --- a/tools/legal-review/engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE130/files-ignore +++ /dev/null @@ -1 +0,0 @@ -META-INF/LICENSE diff --git a/tools/legal-review/engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE130/files-keep b/tools/legal-review/engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE130/files-keep deleted file mode 100644 index 0d1c51375183..000000000000 --- a/tools/legal-review/engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE130/files-keep +++ /dev/null @@ -1 +0,0 @@ -META-INF/NOTICE diff --git a/tools/legal-review/engine/org.netbeans.api.org-openide-dialogs-RELEASE130/copyright-ignore b/tools/legal-review/engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE140/copyright-keep similarity index 100% rename from tools/legal-review/engine/org.netbeans.api.org-openide-dialogs-RELEASE130/copyright-ignore rename to tools/legal-review/engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE140/copyright-keep diff --git a/tools/legal-review/Table/org.apache.logging.log4j.log4j-api-2.14.0/files-ignore b/tools/legal-review/engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE140/files-ignore similarity index 100% rename from tools/legal-review/Table/org.apache.logging.log4j.log4j-api-2.14.0/files-ignore rename to tools/legal-review/engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE140/files-ignore diff --git a/tools/legal-review/Table/org.apache.xmlgraphics.xmlgraphics-commons-2.4/files-keep b/tools/legal-review/engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE140/files-keep similarity index 100% rename from tools/legal-review/Table/org.apache.xmlgraphics.xmlgraphics-commons-2.4/files-keep rename to tools/legal-review/engine/org.netbeans.api.org-netbeans-modules-sampler-RELEASE140/files-keep diff --git a/tools/legal-review/engine/org.netbeans.api.org-openide-dialogs-RELEASE130/files-ignore b/tools/legal-review/engine/org.netbeans.api.org-openide-dialogs-RELEASE130/files-ignore deleted file mode 100644 index b9005a4d5ae7..000000000000 --- a/tools/legal-review/engine/org.netbeans.api.org-openide-dialogs-RELEASE130/files-ignore +++ /dev/null @@ -1 +0,0 @@ -META-INF/LICENSE diff --git a/tools/legal-review/engine/org.netbeans.api.org-openide-dialogs-RELEASE130/files-keep b/tools/legal-review/engine/org.netbeans.api.org-openide-dialogs-RELEASE130/files-keep deleted file mode 100644 index 0d1c51375183..000000000000 --- a/tools/legal-review/engine/org.netbeans.api.org-openide-dialogs-RELEASE130/files-keep +++ /dev/null @@ -1 +0,0 @@ -META-INF/NOTICE diff --git a/tools/legal-review/engine/org.netbeans.api.org-openide-util-RELEASE130/copyright-ignore b/tools/legal-review/engine/org.netbeans.api.org-openide-util-RELEASE130/copyright-ignore deleted file mode 100644 index aabdad4aa3ca..000000000000 --- a/tools/legal-review/engine/org.netbeans.api.org-openide-util-RELEASE130/copyright-ignore +++ /dev/null @@ -1,2 +0,0 @@ -regarding copyright ownership. The ASF licenses this file -regarding copyright ownership. The ASF licenses this file diff --git a/tools/legal-review/engine/org.netbeans.api.org-openide-util-RELEASE130/files-ignore b/tools/legal-review/engine/org.netbeans.api.org-openide-util-RELEASE130/files-ignore deleted file mode 100644 index 758d9ff7c0c7..000000000000 --- a/tools/legal-review/engine/org.netbeans.api.org-openide-util-RELEASE130/files-ignore +++ /dev/null @@ -1,3 +0,0 @@ -META-INF/LICENSE -META-INF/NOTICE -META-INF/LICENSE diff --git a/tools/legal-review/engine/org.netbeans.api.org-openide-util-RELEASE130/files-keep b/tools/legal-review/engine/org.netbeans.api.org-openide-util-RELEASE130/files-keep deleted file mode 100644 index 0d1c51375183..000000000000 --- a/tools/legal-review/engine/org.netbeans.api.org-openide-util-RELEASE130/files-keep +++ /dev/null @@ -1 +0,0 @@ -META-INF/NOTICE diff --git a/tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE130/copyright-add b/tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE130/copyright-add deleted file mode 100644 index 042f3ce1f396..000000000000 --- a/tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE130/copyright-add +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ diff --git a/tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE130/files-ignore b/tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE130/files-ignore deleted file mode 100644 index b9005a4d5ae7..000000000000 --- a/tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE130/files-ignore +++ /dev/null @@ -1 +0,0 @@ -META-INF/LICENSE diff --git a/tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE130/files-keep b/tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE130/files-keep deleted file mode 100644 index 0d1c51375183..000000000000 --- a/tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE130/files-keep +++ /dev/null @@ -1 +0,0 @@ -META-INF/NOTICE diff --git a/tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE130/copyright-ignore b/tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE140/copyright-ignore similarity index 100% rename from tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE130/copyright-ignore rename to tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE140/copyright-ignore diff --git a/tools/legal-review/Table/org.apache.santuario.xmlsec-2.2.1/files-ignore b/tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE140/files-ignore similarity index 100% rename from tools/legal-review/Table/org.apache.santuario.xmlsec-2.2.1/files-ignore rename to tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE140/files-ignore diff --git a/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-core-2.13.1/files-keep b/tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE140/files-keep similarity index 100% rename from tools/legal-review/engine/com.fasterxml.jackson.core.jackson-core-2.13.1/files-keep rename to tools/legal-review/engine/org.netbeans.api.org-openide-util-lookup-RELEASE140/files-keep diff --git a/tools/legal-review/engine/org.scala-lang.modules.scala-xml_2.13-1.3.0/copyright-add b/tools/legal-review/engine/org.scala-lang.modules.scala-xml_2.13-1.3.0/copyright-add deleted file mode 100644 index 7571d39cce7f..000000000000 --- a/tools/legal-review/engine/org.scala-lang.modules.scala-xml_2.13-1.3.0/copyright-add +++ /dev/null @@ -1,9 +0,0 @@ -/* __ *\ -** ________ ___ / / ___ Scala API ** -** / __/ __// _ | / / / _ | (c) 2002-2019, LAMP/EPFL ** -** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ ** -** /____/\___/_/ |_/____/_/ | | ** -** |/ ** -** Copyright 2008 Google Inc. ** -** All Rights Reserved. ** -\* */ diff --git a/tools/legal-review/engine/org.scala-lang.modules.scala-xml_2.13-1.3.0/copyright-ignore b/tools/legal-review/engine/org.scala-lang.modules.scala-xml_2.13-1.3.0/copyright-ignore deleted file mode 100644 index aaa7103203f5..000000000000 --- a/tools/legal-review/engine/org.scala-lang.modules.scala-xml_2.13-1.3.0/copyright-ignore +++ /dev/null @@ -1 +0,0 @@ -Copyright 2008 Google Inc. ** diff --git a/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.7/copyright-keep b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.7/copyright-keep deleted file mode 100644 index 826fec04eaa3..000000000000 --- a/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.7/copyright-keep +++ /dev/null @@ -1,6 +0,0 @@ -Copyright 2002-2017 LAMP/EPFL and Lightbend, Inc. -Copyright 2005-2013 LAMP/EPFL -Copyright 2005-2017 LAMP/EPFL and Lightbend, Inc -Copyright 2005-2017 LAMP/EPFL and Lightbend, Inc. -Copyright EPFL and Lightbend, Inc. -additional information regarding copyright ownership. diff --git a/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.7/copyright-ignore b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.8/copyright-ignore similarity index 77% rename from tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.7/copyright-ignore rename to tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.8/copyright-ignore index 7dd0826cf459..0f31bd16a7f8 100644 --- a/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.7/copyright-ignore +++ b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.8/copyright-ignore @@ -1,6 +1,10 @@ "A footer on every Scaladoc page, by default the EPFL/Lightbend copyright notice. Can be overridden with a custom footer.", +Copyright 2005-2013 LAMP/EPFL +Copyright 2005-2017 LAMP/EPFL and Lightbend, Inc +Copyright 2005-2017 LAMP/EPFL and Lightbend, Inc. Div(id = "footer", elems = Txt("Scala programming documentation. Copyright (c) 2002-2021 ") :: A(href = "https://www.epfl.ch", target = "_top", elems = Txt("EPFL")) :: Txt(" and ") :: A(href = "https://www.lightbend.com", target = "_top", elems = Txt("Lightbend")) :: Txt(".")) Properties.copyrightString +additional information regarding copyright ownership. rem # Copyright EPFL and Lightbend, Inc. rem # additional information regarding copyright ownership. val versionMsg = s"Scaladoc ${Properties.versionString} -- ${Properties.copyrightString}" diff --git a/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.8/copyright-keep b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.8/copyright-keep new file mode 100644 index 000000000000..54fd80497f3b --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.8/copyright-keep @@ -0,0 +1,2 @@ +Copyright 2002-2017 LAMP/EPFL and Lightbend, Inc. +Copyright EPFL and Lightbend, Inc. diff --git a/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.7/files-ignore b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.8/files-ignore similarity index 100% rename from tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.7/files-ignore rename to tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.8/files-ignore diff --git a/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.7/files-keep b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.8/files-keep similarity index 100% rename from tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.7/files-keep rename to tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.8/files-keep diff --git a/tools/legal-review/engine/org.scala-lang.scala-library-2.13.7/copyright-ignore b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.8/copyright-ignore similarity index 100% rename from tools/legal-review/engine/org.scala-lang.scala-library-2.13.7/copyright-ignore rename to tools/legal-review/engine/org.scala-lang.scala-library-2.13.8/copyright-ignore diff --git a/tools/legal-review/engine/org.scala-lang.scala-library-2.13.7/copyright-keep b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.8/copyright-keep similarity index 100% rename from tools/legal-review/engine/org.scala-lang.scala-library-2.13.7/copyright-keep rename to tools/legal-review/engine/org.scala-lang.scala-library-2.13.8/copyright-keep diff --git a/tools/legal-review/engine/org.scala-lang.scala-library-2.13.7/files-ignore b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.8/files-ignore similarity index 100% rename from tools/legal-review/engine/org.scala-lang.scala-library-2.13.7/files-ignore rename to tools/legal-review/engine/org.scala-lang.scala-library-2.13.8/files-ignore diff --git a/tools/legal-review/engine/org.scala-lang.scala-library-2.13.7/files-keep b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.8/files-keep similarity index 100% rename from tools/legal-review/engine/org.scala-lang.scala-library-2.13.7/files-keep rename to tools/legal-review/engine/org.scala-lang.scala-library-2.13.8/files-keep diff --git a/tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.7/copyright-keep b/tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.8/copyright-keep similarity index 100% rename from tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.7/copyright-keep rename to tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.8/copyright-keep diff --git a/tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.7/files-ignore b/tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.8/files-ignore similarity index 100% rename from tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.7/files-ignore rename to tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.8/files-ignore diff --git a/tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.7/files-keep b/tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.8/files-keep similarity index 100% rename from tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.7/files-keep rename to tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.8/files-keep diff --git a/tools/legal-review/Table/org.slf4j.slf4j-api-1.7.30/copyright-keep b/tools/legal-review/engine/org.slf4j.slf4j-api-1.7.36/copyright-keep similarity index 100% rename from tools/legal-review/Table/org.slf4j.slf4j-api-1.7.30/copyright-keep rename to tools/legal-review/engine/org.slf4j.slf4j-api-1.7.36/copyright-keep diff --git a/tools/legal-review/engine/org.typelevel.cats-core_2.13-2.7.0/custom-license b/tools/legal-review/engine/org.typelevel.cats-core_2.13-2.7.0/custom-license deleted file mode 100644 index 5ecd9c64ade2..000000000000 --- a/tools/legal-review/engine/org.typelevel.cats-core_2.13-2.7.0/custom-license +++ /dev/null @@ -1 +0,0 @@ -COPYING diff --git a/tools/legal-review/engine/org.typelevel.cats-core_2.13-2.7.0/files-keep b/tools/legal-review/engine/org.typelevel.cats-core_2.13-2.7.0/files-keep deleted file mode 100644 index 182e996c227d..000000000000 --- a/tools/legal-review/engine/org.typelevel.cats-core_2.13-2.7.0/files-keep +++ /dev/null @@ -1,2 +0,0 @@ -/typelevel/cats/blob/main/COPYING -/typelevel/cats/blob/main/AUTHORS.md diff --git a/tools/legal-review/engine/org.typelevel.cats-core_2.13-2.8.0/copyright-keep b/tools/legal-review/engine/org.typelevel.cats-core_2.13-2.8.0/copyright-keep new file mode 100644 index 000000000000..62959bdbd456 --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.cats-core_2.13-2.8.0/copyright-keep @@ -0,0 +1,2 @@ +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +Copyright (c) 2002-2022 EPFL diff --git a/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.7.0/custom-license b/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.7.0/custom-license deleted file mode 100644 index 5ecd9c64ade2..000000000000 --- a/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.7.0/custom-license +++ /dev/null @@ -1 +0,0 @@ -COPYING diff --git a/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.7.0/files-ignore b/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.7.0/files-ignore deleted file mode 100644 index f520885f91a6..000000000000 --- a/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.7.0/files-ignore +++ /dev/null @@ -1 +0,0 @@ -/typelevel/cats/blob/main/AUTHORS.md diff --git a/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.7.0/files-keep b/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.7.0/files-keep deleted file mode 100644 index 6f304ace9d02..000000000000 --- a/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.7.0/files-keep +++ /dev/null @@ -1 +0,0 @@ -/typelevel/cats/blob/main/COPYING diff --git a/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.8.0/copyright-keep b/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.8.0/copyright-keep new file mode 100644 index 000000000000..3485d859adc2 --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.8.0/copyright-keep @@ -0,0 +1,4 @@ +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +Copyright (c) 2002-2022 EPFL +Copyright (c) 2011-2022 Lightbend, Inc. +Copyright EPFL and Lightbend, Inc. diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/custom-license b/tools/legal-review/engine/org.typelevel.jawn-parser_2.13-1.3.2/custom-license similarity index 100% rename from tools/legal-review/launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/custom-license rename to tools/legal-review/engine/org.typelevel.jawn-parser_2.13-1.3.2/custom-license diff --git a/tools/legal-review/engine/org.typelevel.jawn-parser_2.13-1.1.2/files-add/LICENSE b/tools/legal-review/engine/org.typelevel.jawn-parser_2.13-1.3.2/files-add/LICENSE similarity index 100% rename from tools/legal-review/engine/org.typelevel.jawn-parser_2.13-1.1.2/files-add/LICENSE rename to tools/legal-review/engine/org.typelevel.jawn-parser_2.13-1.3.2/files-add/LICENSE diff --git a/tools/legal-review/engine/report-state b/tools/legal-review/engine/report-state index 46183d097c09..f8e55a408a67 100644 --- a/tools/legal-review/engine/report-state +++ b/tools/legal-review/engine/report-state @@ -1,3 +1,3 @@ -F584041D9C65EE3A64897906C912A288C33868416BDA1C24C9892C3C06E597CD -741A2D55D2B3911B0426A0472585A2966D5B9E381B6938EE1209A68E6F76C5AB +2EC74845DF76AC1EDBC66ED2113B7D2ECC5CF538C9F184C51B1A88B14D8DF068 +F04CDFB8554571A3780EC27CB731B273D4A01ACB90610AAF68869FD69C1A428B 0 diff --git a/tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.7/copyright-ignore b/tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.7/copyright-ignore deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/tools/legal-review/Database/com.amazonaws.aws-java-sdk-redshift-1.12.23/copyright-ignore b/tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.9/copyright-ignore similarity index 100% rename from tools/legal-review/Database/com.amazonaws.aws-java-sdk-redshift-1.12.23/copyright-ignore rename to tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.9/copyright-ignore diff --git a/tools/legal-review/engine/com.chuusai.shapeless_2.13-2.3.7/copyright-keep b/tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.9/copyright-keep similarity index 100% rename from tools/legal-review/engine/com.chuusai.shapeless_2.13-2.3.7/copyright-keep rename to tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.9/copyright-keep diff --git a/tools/legal-review/engine/com.chuusai.shapeless_2.13-2.3.7/copyright-keep-context b/tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.9/copyright-keep-context similarity index 100% rename from tools/legal-review/engine/com.chuusai.shapeless_2.13-2.3.7/copyright-keep-context rename to tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.9/copyright-keep-context diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep b/tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep deleted file mode 100644 index 6d396d168b60..000000000000 --- a/tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep +++ /dev/null @@ -1,8 +0,0 @@ -Copyright (C) 2014-2021 Lightbend Inc. -Copyright (C) 2015-2021 Lightbend Inc. -Copyright (C) 2016-2021 Lightbend Inc. -Copyright (C) 2017-2021 Lightbend Inc. -Copyright (C) 2018-2021 Lightbend Inc. -Copyright (C) 2019-2021 Lightbend Inc. -Copyright (C) 2020-2021 Lightbend Inc. -Copyright (C) 2021 Lightbend Inc. diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep-context b/tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep-context deleted file mode 100644 index 2541ef5c301f..000000000000 --- a/tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep-context +++ /dev/null @@ -1 +0,0 @@ -Copyright (C) 2009-2021 Lightbend Inc. diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-ignore b/tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-ignore new file mode 100644 index 000000000000..4c3b3d7f85de --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-ignore @@ -0,0 +1,8 @@ +Copyright (C) 2014-2022 Lightbend Inc. +Copyright (C) 2015-2022 Lightbend Inc. +Copyright (C) 2016-2022 Lightbend Inc. +Copyright (C) 2017-2022 Lightbend Inc. +Copyright (C) 2018-2022 Lightbend Inc. +Copyright (C) 2019-2022 Lightbend Inc. +Copyright (C) 2020-2022 Lightbend Inc. +Copyright (C) 2021-2022 Lightbend Inc. diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-keep b/tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-keep new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-add b/tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-add similarity index 100% rename from tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-add rename to tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-add diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-keep b/tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-keep similarity index 100% rename from tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-keep rename to tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-keep diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-keep-context b/tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-keep-context similarity index 100% rename from tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-keep-context rename to tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-keep-context diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-http_2.13-10.2.7/copyright-keep b/tools/legal-review/launcher/com.typesafe.akka.akka-http_2.13-10.2.9/copyright-keep similarity index 100% rename from tools/legal-review/launcher/com.typesafe.akka.akka-http_2.13-10.2.7/copyright-keep rename to tools/legal-review/launcher/com.typesafe.akka.akka-http_2.13-10.2.9/copyright-keep diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-http_2.13-10.2.7/copyright-keep-context b/tools/legal-review/launcher/com.typesafe.akka.akka-http_2.13-10.2.9/copyright-keep-context similarity index 100% rename from tools/legal-review/launcher/com.typesafe.akka.akka-http_2.13-10.2.7/copyright-keep-context rename to tools/legal-review/launcher/com.typesafe.akka.akka-http_2.13-10.2.9/copyright-keep-context diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-add b/tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-add similarity index 100% rename from tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-add rename to tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-add diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-ignore b/tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-ignore similarity index 100% rename from tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-ignore rename to tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-ignore diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-keep b/tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-keep similarity index 100% rename from tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-keep rename to tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-keep diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-keep-context b/tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-keep-context similarity index 100% rename from tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-keep-context rename to tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-keep-context diff --git a/tools/legal-review/launcher/io.circe.circe-core_2.13-0.14.1/custom-license b/tools/legal-review/launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/custom-license similarity index 100% rename from tools/legal-review/launcher/io.circe.circe-core_2.13-0.14.1/custom-license rename to tools/legal-review/launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/custom-license diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/files-add/COPYING.protobuf b/tools/legal-review/launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/files-add/COPYING.protobuf similarity index 100% rename from tools/legal-review/launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/files-add/COPYING.protobuf rename to tools/legal-review/launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/files-add/COPYING.protobuf diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/files-add/LICENSE b/tools/legal-review/launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/files-add/LICENSE similarity index 100% rename from tools/legal-review/launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/files-add/LICENSE rename to tools/legal-review/launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/files-add/LICENSE diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-slf4j_2.13-2.6.18/copyright-keep-context b/tools/legal-review/launcher/com.typesafe.akka.akka-slf4j_2.13-2.6.18/copyright-keep-context deleted file mode 100644 index 2541ef5c301f..000000000000 --- a/tools/legal-review/launcher/com.typesafe.akka.akka-slf4j_2.13-2.6.18/copyright-keep-context +++ /dev/null @@ -1 +0,0 @@ -Copyright (C) 2009-2021 Lightbend Inc. diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-slf4j_2.13-2.6.19/copyright-keep b/tools/legal-review/launcher/com.typesafe.akka.akka-slf4j_2.13-2.6.19/copyright-keep new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.akka.akka-slf4j_2.13-2.6.19/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep b/tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep deleted file mode 100644 index 6d396d168b60..000000000000 --- a/tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep +++ /dev/null @@ -1,8 +0,0 @@ -Copyright (C) 2014-2021 Lightbend Inc. -Copyright (C) 2015-2021 Lightbend Inc. -Copyright (C) 2016-2021 Lightbend Inc. -Copyright (C) 2017-2021 Lightbend Inc. -Copyright (C) 2018-2021 Lightbend Inc. -Copyright (C) 2019-2021 Lightbend Inc. -Copyright (C) 2020-2021 Lightbend Inc. -Copyright (C) 2021 Lightbend Inc. diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep-context b/tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep-context deleted file mode 100644 index 2541ef5c301f..000000000000 --- a/tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep-context +++ /dev/null @@ -1 +0,0 @@ -Copyright (C) 2009-2021 Lightbend Inc. diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-ignore b/tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-ignore new file mode 100644 index 000000000000..4c3b3d7f85de --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-ignore @@ -0,0 +1,8 @@ +Copyright (C) 2014-2022 Lightbend Inc. +Copyright (C) 2015-2022 Lightbend Inc. +Copyright (C) 2016-2022 Lightbend Inc. +Copyright (C) 2017-2022 Lightbend Inc. +Copyright (C) 2018-2022 Lightbend Inc. +Copyright (C) 2019-2022 Lightbend Inc. +Copyright (C) 2020-2022 Lightbend Inc. +Copyright (C) 2021-2022 Lightbend Inc. diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-keep b/tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-keep new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.config-1.4.0/copyright-keep-context b/tools/legal-review/launcher/com.typesafe.config-1.4.2/copyright-keep-context similarity index 100% rename from tools/legal-review/engine/com.typesafe.config-1.4.0/copyright-keep-context rename to tools/legal-review/launcher/com.typesafe.config-1.4.2/copyright-keep-context diff --git a/tools/legal-review/launcher/com.typesafe.ssl-config-core_2.13-0.4.2/copyright-keep b/tools/legal-review/launcher/com.typesafe.ssl-config-core_2.13-0.4.3/copyright-keep similarity index 100% rename from tools/legal-review/launcher/com.typesafe.ssl-config-core_2.13-0.4.2/copyright-keep rename to tools/legal-review/launcher/com.typesafe.ssl-config-core_2.13-0.4.3/copyright-keep diff --git a/tools/legal-review/launcher/io.circe.circe-generic_2.13-0.14.1/custom-license b/tools/legal-review/launcher/io.circe.circe-core_2.13-0.14.2/custom-license similarity index 100% rename from tools/legal-review/launcher/io.circe.circe-generic_2.13-0.14.1/custom-license rename to tools/legal-review/launcher/io.circe.circe-core_2.13-0.14.2/custom-license diff --git a/tools/legal-review/engine/eu.timepit.refined_2.13-0.9.27/files-ignore b/tools/legal-review/launcher/io.circe.circe-core_2.13-0.14.2/files-ignore similarity index 100% rename from tools/legal-review/engine/eu.timepit.refined_2.13-0.9.27/files-ignore rename to tools/legal-review/launcher/io.circe.circe-core_2.13-0.14.2/files-ignore diff --git a/tools/legal-review/launcher/io.circe.circe-core_2.13-0.14.1/files-keep b/tools/legal-review/launcher/io.circe.circe-core_2.13-0.14.2/files-keep similarity index 100% rename from tools/legal-review/launcher/io.circe.circe-core_2.13-0.14.1/files-keep rename to tools/legal-review/launcher/io.circe.circe-core_2.13-0.14.2/files-keep diff --git a/tools/legal-review/launcher/io.circe.circe-jawn_2.13-0.14.1/custom-license b/tools/legal-review/launcher/io.circe.circe-generic_2.13-0.14.2/custom-license similarity index 100% rename from tools/legal-review/launcher/io.circe.circe-jawn_2.13-0.14.1/custom-license rename to tools/legal-review/launcher/io.circe.circe-generic_2.13-0.14.2/custom-license diff --git a/tools/legal-review/launcher/io.circe.circe-core_2.13-0.14.1/files-ignore b/tools/legal-review/launcher/io.circe.circe-generic_2.13-0.14.2/files-ignore similarity index 100% rename from tools/legal-review/launcher/io.circe.circe-core_2.13-0.14.1/files-ignore rename to tools/legal-review/launcher/io.circe.circe-generic_2.13-0.14.2/files-ignore diff --git a/tools/legal-review/launcher/io.circe.circe-generic_2.13-0.14.1/files-keep b/tools/legal-review/launcher/io.circe.circe-generic_2.13-0.14.2/files-keep similarity index 100% rename from tools/legal-review/launcher/io.circe.circe-generic_2.13-0.14.1/files-keep rename to tools/legal-review/launcher/io.circe.circe-generic_2.13-0.14.2/files-keep diff --git a/tools/legal-review/launcher/io.circe.circe-numbers_2.13-0.14.1/custom-license b/tools/legal-review/launcher/io.circe.circe-jawn_2.13-0.14.2/custom-license similarity index 100% rename from tools/legal-review/launcher/io.circe.circe-numbers_2.13-0.14.1/custom-license rename to tools/legal-review/launcher/io.circe.circe-jawn_2.13-0.14.2/custom-license diff --git a/tools/legal-review/launcher/io.circe.circe-generic_2.13-0.14.1/files-ignore b/tools/legal-review/launcher/io.circe.circe-jawn_2.13-0.14.2/files-ignore similarity index 100% rename from tools/legal-review/launcher/io.circe.circe-generic_2.13-0.14.1/files-ignore rename to tools/legal-review/launcher/io.circe.circe-jawn_2.13-0.14.2/files-ignore diff --git a/tools/legal-review/launcher/io.circe.circe-jawn_2.13-0.14.1/files-keep b/tools/legal-review/launcher/io.circe.circe-jawn_2.13-0.14.2/files-keep similarity index 100% rename from tools/legal-review/launcher/io.circe.circe-jawn_2.13-0.14.1/files-keep rename to tools/legal-review/launcher/io.circe.circe-jawn_2.13-0.14.2/files-keep diff --git a/tools/legal-review/launcher/io.circe.circe-parser_2.13-0.14.1/custom-license b/tools/legal-review/launcher/io.circe.circe-numbers_2.13-0.14.2/custom-license similarity index 100% rename from tools/legal-review/launcher/io.circe.circe-parser_2.13-0.14.1/custom-license rename to tools/legal-review/launcher/io.circe.circe-numbers_2.13-0.14.2/custom-license diff --git a/tools/legal-review/launcher/io.circe.circe-jawn_2.13-0.14.1/files-ignore b/tools/legal-review/launcher/io.circe.circe-numbers_2.13-0.14.2/files-ignore similarity index 100% rename from tools/legal-review/launcher/io.circe.circe-jawn_2.13-0.14.1/files-ignore rename to tools/legal-review/launcher/io.circe.circe-numbers_2.13-0.14.2/files-ignore diff --git a/tools/legal-review/launcher/io.circe.circe-numbers_2.13-0.14.1/files-keep b/tools/legal-review/launcher/io.circe.circe-numbers_2.13-0.14.2/files-keep similarity index 100% rename from tools/legal-review/launcher/io.circe.circe-numbers_2.13-0.14.1/files-keep rename to tools/legal-review/launcher/io.circe.circe-numbers_2.13-0.14.2/files-keep diff --git a/tools/legal-review/launcher/org.typelevel.jawn-parser_2.13-1.1.2/custom-license b/tools/legal-review/launcher/io.circe.circe-parser_2.13-0.14.2/custom-license similarity index 100% rename from tools/legal-review/launcher/org.typelevel.jawn-parser_2.13-1.1.2/custom-license rename to tools/legal-review/launcher/io.circe.circe-parser_2.13-0.14.2/custom-license diff --git a/tools/legal-review/launcher/io.circe.circe-numbers_2.13-0.14.1/files-ignore b/tools/legal-review/launcher/io.circe.circe-parser_2.13-0.14.2/files-ignore similarity index 100% rename from tools/legal-review/launcher/io.circe.circe-numbers_2.13-0.14.1/files-ignore rename to tools/legal-review/launcher/io.circe.circe-parser_2.13-0.14.2/files-ignore diff --git a/tools/legal-review/launcher/io.circe.circe-parser_2.13-0.14.1/files-keep b/tools/legal-review/launcher/io.circe.circe-parser_2.13-0.14.2/files-keep similarity index 100% rename from tools/legal-review/launcher/io.circe.circe-parser_2.13-0.14.1/files-keep rename to tools/legal-review/launcher/io.circe.circe-parser_2.13-0.14.2/files-keep diff --git a/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.7/copyright-ignore b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.8/copyright-ignore similarity index 100% rename from tools/legal-review/launcher/org.scala-lang.scala-library-2.13.7/copyright-ignore rename to tools/legal-review/launcher/org.scala-lang.scala-library-2.13.8/copyright-ignore diff --git a/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.7/copyright-keep b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.8/copyright-keep similarity index 100% rename from tools/legal-review/launcher/org.scala-lang.scala-library-2.13.7/copyright-keep rename to tools/legal-review/launcher/org.scala-lang.scala-library-2.13.8/copyright-keep diff --git a/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.7/files-ignore b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.8/files-ignore similarity index 100% rename from tools/legal-review/launcher/org.scala-lang.scala-library-2.13.7/files-ignore rename to tools/legal-review/launcher/org.scala-lang.scala-library-2.13.8/files-ignore diff --git a/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.7/files-keep b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.8/files-keep similarity index 100% rename from tools/legal-review/launcher/org.scala-lang.scala-library-2.13.7/files-keep rename to tools/legal-review/launcher/org.scala-lang.scala-library-2.13.8/files-keep diff --git a/tools/legal-review/project-manager/org.scala-lang.scala-reflect-2.13.7/copyright-keep b/tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.8/copyright-keep similarity index 100% rename from tools/legal-review/project-manager/org.scala-lang.scala-reflect-2.13.7/copyright-keep rename to tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.8/copyright-keep diff --git a/tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.7/files-ignore b/tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.8/files-ignore similarity index 100% rename from tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.7/files-ignore rename to tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.8/files-ignore diff --git a/tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.7/files-keep b/tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.8/files-keep similarity index 100% rename from tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.7/files-keep rename to tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.8/files-keep diff --git a/tools/legal-review/engine/org.slf4j.slf4j-api-1.7.32/copyright-keep-context b/tools/legal-review/launcher/org.slf4j.slf4j-api-1.7.36/copyright-keep-context similarity index 100% rename from tools/legal-review/engine/org.slf4j.slf4j-api-1.7.32/copyright-keep-context rename to tools/legal-review/launcher/org.slf4j.slf4j-api-1.7.36/copyright-keep-context diff --git a/tools/legal-review/launcher/org.typelevel.cats-core_2.13-2.7.0/custom-license b/tools/legal-review/launcher/org.typelevel.cats-core_2.13-2.7.0/custom-license deleted file mode 100644 index 5ecd9c64ade2..000000000000 --- a/tools/legal-review/launcher/org.typelevel.cats-core_2.13-2.7.0/custom-license +++ /dev/null @@ -1 +0,0 @@ -COPYING diff --git a/tools/legal-review/launcher/org.typelevel.cats-core_2.13-2.7.0/files-keep b/tools/legal-review/launcher/org.typelevel.cats-core_2.13-2.7.0/files-keep deleted file mode 100644 index 876aa24fc909..000000000000 --- a/tools/legal-review/launcher/org.typelevel.cats-core_2.13-2.7.0/files-keep +++ /dev/null @@ -1,3 +0,0 @@ -/typelevel/cats/blob/main/COPYING -/typelevel/cats/blob/main/AUTHORS.md -/typelevel/cats/blob/main/COPYING diff --git a/tools/legal-review/launcher/org.typelevel.cats-core_2.13-2.8.0/copyright-keep b/tools/legal-review/launcher/org.typelevel.cats-core_2.13-2.8.0/copyright-keep new file mode 100644 index 000000000000..62959bdbd456 --- /dev/null +++ b/tools/legal-review/launcher/org.typelevel.cats-core_2.13-2.8.0/copyright-keep @@ -0,0 +1,2 @@ +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +Copyright (c) 2002-2022 EPFL diff --git a/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.7.0/custom-license b/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.7.0/custom-license deleted file mode 100644 index 5ecd9c64ade2..000000000000 --- a/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.7.0/custom-license +++ /dev/null @@ -1 +0,0 @@ -COPYING diff --git a/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.7.0/files-add/AUTHORS b/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.7.0/files-add/AUTHORS deleted file mode 100644 index bcce914f5ac3..000000000000 --- a/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.7.0/files-add/AUTHORS +++ /dev/null @@ -1 +0,0 @@ -Please refer to the file AUTHORS.md in directory org.typelevel.cats-core_2.13-2.2 diff --git a/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.7.0/files-ignore b/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.7.0/files-ignore deleted file mode 100644 index f520885f91a6..000000000000 --- a/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.7.0/files-ignore +++ /dev/null @@ -1 +0,0 @@ -/typelevel/cats/blob/main/AUTHORS.md diff --git a/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.7.0/files-keep b/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.7.0/files-keep deleted file mode 100644 index 6f304ace9d02..000000000000 --- a/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.7.0/files-keep +++ /dev/null @@ -1 +0,0 @@ -/typelevel/cats/blob/main/COPYING diff --git a/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.8.0/copyright-keep b/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.8.0/copyright-keep new file mode 100644 index 000000000000..3485d859adc2 --- /dev/null +++ b/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.8.0/copyright-keep @@ -0,0 +1,4 @@ +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +Copyright (c) 2002-2022 EPFL +Copyright (c) 2011-2022 Lightbend, Inc. +Copyright EPFL and Lightbend, Inc. diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/custom-license b/tools/legal-review/launcher/org.typelevel.jawn-parser_2.13-1.3.2/custom-license similarity index 100% rename from tools/legal-review/project-manager/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/custom-license rename to tools/legal-review/launcher/org.typelevel.jawn-parser_2.13-1.3.2/custom-license diff --git a/tools/legal-review/launcher/org.typelevel.jawn-parser_2.13-1.1.2/files-add/LICENSE b/tools/legal-review/launcher/org.typelevel.jawn-parser_2.13-1.3.2/files-add/LICENSE similarity index 100% rename from tools/legal-review/launcher/org.typelevel.jawn-parser_2.13-1.1.2/files-add/LICENSE rename to tools/legal-review/launcher/org.typelevel.jawn-parser_2.13-1.3.2/files-add/LICENSE diff --git a/tools/legal-review/launcher/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/files-ignore b/tools/legal-review/launcher/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/files-ignore deleted file mode 100644 index c3349a9e9ede..000000000000 --- a/tools/legal-review/launcher/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/files-ignore +++ /dev/null @@ -1 +0,0 @@ -#license diff --git a/tools/legal-review/launcher/report-state b/tools/legal-review/launcher/report-state index 694046df870c..164f7d728968 100644 --- a/tools/legal-review/launcher/report-state +++ b/tools/legal-review/launcher/report-state @@ -1,3 +1,3 @@ -807B8CAF24F78001A73CDFC31DDFA2CB129CDEA07FFCF907ED994FEC7EC4003C -FCC80E706112594F80CDC45199FDC1B0A90EF165DC5B5AB9171C5C185EC2B9E2 +5CB5929D58A0BB32D644A378015717936213AC7B9E0707646AF26BAC06E2F8C8 +998FFDA63E49DEF4455673C66DD4AA7303CB2855BF23312342F655D106834554 0 diff --git a/tools/legal-review/license-texts/BSD-2-Clause b/tools/legal-review/license-texts/BSD-2-Clause new file mode 100644 index 000000000000..5d3a0018c70c --- /dev/null +++ b/tools/legal-review/license-texts/BSD-2-Clause @@ -0,0 +1,23 @@ +Copyright (c) 1997, PostgreSQL Global Development Group +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/legal-review/license-texts/Unicode_ICU_License b/tools/legal-review/license-texts/Unicode_ICU_License new file mode 100644 index 000000000000..80b587723a67 --- /dev/null +++ b/tools/legal-review/license-texts/Unicode_ICU_License @@ -0,0 +1,519 @@ +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + +See Terms of Use +for definitions of Unicode Inc.’s Data Files and Software. + +NOTICE TO USER: Carefully read the following legal agreement. +BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S +DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), +YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. +IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE +THE DATA FILES OR SOFTWARE. + +COPYRIGHT AND PERMISSION NOTICE + +Copyright © 1991-2022 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in https://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. + +---------------------------------------------------------------------- + +Third-Party Software Licenses + +This section contains third-party software notices and/or additional +terms for licensed third-party software components included within ICU +libraries. + +---------------------------------------------------------------------- + +ICU License - ICU 1.8.1 to ICU 57.1 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1995-2016 International Business Machines Corporation and others +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, and/or sell copies of the Software, and to permit persons +to whom the Software is furnished to do so, provided that the above +copyright notice(s) and this permission notice appear in all copies of +the Software and that both the above copyright notice(s) and this +permission notice appear in supporting documentation. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR +HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY +SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF +CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, use +or other dealings in this Software without prior written authorization +of the copyright holder. + +All trademarks and registered trademarks mentioned herein are the +property of their respective owners. + +---------------------------------------------------------------------- + +Chinese/Japanese Word Break Dictionary Data (cjdict.txt) + + # The Google Chrome software developed by Google is licensed under + # the BSD license. Other software included in this distribution is + # provided under other licenses, as set forth below. + # + # The BSD License + # http://opensource.org/licenses/bsd-license.php + # Copyright (C) 2006-2008, Google Inc. + # + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions are met: + # + # Redistributions of source code must retain the above copyright notice, + # this list of conditions and the following disclaimer. + # Redistributions in binary form must reproduce the above + # copyright notice, this list of conditions and the following + # disclaimer in the documentation and/or other materials provided with + # the distribution. + # Neither the name of Google Inc. nor the names of its + # contributors may be used to endorse or promote products derived from + # this software without specific prior written permission. + # + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + # + # + # The word list in cjdict.txt are generated by combining three word lists + # listed below with further processing for compound word breaking. The + # frequency is generated with an iterative training against Google web + # corpora. + # + # * Libtabe (Chinese) + # - https://sourceforge.net/project/?group_id=1519 + # - Its license terms and conditions are shown below. + # + # * IPADIC (Japanese) + # - http://chasen.aist-nara.ac.jp/chasen/distribution.html + # - Its license terms and conditions are shown below. + # + # ---------COPYING.libtabe ---- BEGIN-------------------- + # + # /* + # * Copyright (c) 1999 TaBE Project. + # * Copyright (c) 1999 Pai-Hsiang Hsiao. + # * All rights reserved. + # * + # * Redistribution and use in source and binary forms, with or without + # * modification, are permitted provided that the following conditions + # * are met: + # * + # * . Redistributions of source code must retain the above copyright + # * notice, this list of conditions and the following disclaimer. + # * . Redistributions in binary form must reproduce the above copyright + # * notice, this list of conditions and the following disclaimer in + # * the documentation and/or other materials provided with the + # * distribution. + # * . Neither the name of the TaBE Project nor the names of its + # * contributors may be used to endorse or promote products derived + # * from this software without specific prior written permission. + # * + # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # * OF THE POSSIBILITY OF SUCH DAMAGE. + # */ + # + # /* + # * Copyright (c) 1999 Computer Systems and Communication Lab, + # * Institute of Information Science, Academia + # * Sinica. All rights reserved. + # * + # * Redistribution and use in source and binary forms, with or without + # * modification, are permitted provided that the following conditions + # * are met: + # * + # * . Redistributions of source code must retain the above copyright + # * notice, this list of conditions and the following disclaimer. + # * . Redistributions in binary form must reproduce the above copyright + # * notice, this list of conditions and the following disclaimer in + # * the documentation and/or other materials provided with the + # * distribution. + # * . Neither the name of the Computer Systems and Communication Lab + # * nor the names of its contributors may be used to endorse or + # * promote products derived from this software without specific + # * prior written permission. + # * + # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # * OF THE POSSIBILITY OF SUCH DAMAGE. + # */ + # + # Copyright 1996 Chih-Hao Tsai @ Beckman Institute, + # University of Illinois + # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 + # + # ---------------COPYING.libtabe-----END-------------------------------- + # + # + # ---------------COPYING.ipadic-----BEGIN------------------------------- + # + # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science + # and Technology. All Rights Reserved. + # + # Use, reproduction, and distribution of this software is permitted. + # Any copy of this software, whether in its original form or modified, + # must include both the above copyright notice and the following + # paragraphs. + # + # Nara Institute of Science and Technology (NAIST), + # the copyright holders, disclaims all warranties with regard to this + # software, including all implied warranties of merchantability and + # fitness, in no event shall NAIST be liable for + # any special, indirect or consequential damages or any damages + # whatsoever resulting from loss of use, data or profits, whether in an + # action of contract, negligence or other tortuous action, arising out + # of or in connection with the use or performance of this software. + # + # A large portion of the dictionary entries + # originate from ICOT Free Software. The following conditions for ICOT + # Free Software applies to the current dictionary as well. + # + # Each User may also freely distribute the Program, whether in its + # original form or modified, to any third party or parties, PROVIDED + # that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear + # on, or be attached to, the Program, which is distributed substantially + # in the same form as set out herein and that such intended + # distribution, if actually made, will neither violate or otherwise + # contravene any of the laws and regulations of the countries having + # jurisdiction over the User or the intended distribution itself. + # + # NO WARRANTY + # + # The program was produced on an experimental basis in the course of the + # research and development conducted during the project and is provided + # to users as so produced on an experimental basis. Accordingly, the + # program is provided without any warranty whatsoever, whether express, + # implied, statutory or otherwise. The term "warranty" used herein + # includes, but is not limited to, any warranty of the quality, + # performance, merchantability and fitness for a particular purpose of + # the program and the nonexistence of any infringement or violation of + # any right of any third party. + # + # Each user of the program will agree and understand, and be deemed to + # have agreed and understood, that there is no warranty whatsoever for + # the program and, accordingly, the entire risk arising from or + # otherwise connected with the program is assumed by the user. + # + # Therefore, neither ICOT, the copyright holder, or any other + # organization that participated in or was otherwise related to the + # development of the program and their respective officials, directors, + # officers and other employees shall be held liable for any and all + # damages, including, without limitation, general, special, incidental + # and consequential damages, arising out of or otherwise in connection + # with the use or inability to use the program or any product, material + # or result produced or otherwise obtained by using the program, + # regardless of whether they have been advised of, or otherwise had + # knowledge of, the possibility of such damages at any time during the + # project or thereafter. Each user will be deemed to have agreed to the + # foregoing by his or her commencement of use of the program. The term + # "use" as used herein includes, but is not limited to, the use, + # modification, copying and distribution of the program and the + # production of secondary products from the program. + # + # In the case where the program, whether in its original form or + # modified, was distributed or delivered to or received by a user from + # any person, organization or entity other than ICOT, unless it makes or + # grants independently of ICOT any specific warranty to the user in + # writing, such person, organization or entity, will also be exempted + # from and not be held liable to the user for any such damages as noted + # above as far as the program is concerned. + # + # ---------------COPYING.ipadic-----END---------------------------------- + +---------------------------------------------------------------------- + +Lao Word Break Dictionary Data (laodict.txt) + + # Copyright (C) 2016 and later: Unicode, Inc. and others. + # License & terms of use: http://www.unicode.org/copyright.html + # Copyright (c) 2015 International Business Machines Corporation + # and others. All Rights Reserved. + # + # Project: https://github.com/rober42539/lao-dictionary + # Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt + # License: https://github.com/rober42539/lao-dictionary/LICENSE.txt + # (copied below) + # + # This file is derived from the above dictionary version of Nov 22, 2020 + # ---------------------------------------------------------------------- + # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions are met: + # + # Redistributions of source code must retain the above copyright notice, this + # list of conditions and the following disclaimer. Redistributions in binary + # form must reproduce the above copyright notice, this list of conditions and + # the following disclaimer in the documentation and/or other materials + # provided with the distribution. + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # OF THE POSSIBILITY OF SUCH DAMAGE. + # -------------------------------------------------------------------------- + +---------------------------------------------------------------------- + +Burmese Word Break Dictionary Data (burmesedict.txt) + + # Copyright (c) 2014 International Business Machines Corporation + # and others. All Rights Reserved. + # + # This list is part of a project hosted at: + # github.com/kanyawtech/myanmar-karen-word-lists + # + # -------------------------------------------------------------------------- + # Copyright (c) 2013, LeRoy Benjamin Sharon + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions + # are met: Redistributions of source code must retain the above + # copyright notice, this list of conditions and the following + # disclaimer. Redistributions in binary form must reproduce the + # above copyright notice, this list of conditions and the following + # disclaimer in the documentation and/or other materials provided + # with the distribution. + # + # Neither the name Myanmar Karen Word Lists, nor the names of its + # contributors may be used to endorse or promote products derived + # from this software without specific prior written permission. + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS + # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + # SUCH DAMAGE. + # -------------------------------------------------------------------------- + +---------------------------------------------------------------------- + +Time Zone Database + + ICU uses the public domain data and code derived from Time Zone +Database for its time zone support. The ownership of the TZ database +is explained in BCP 175: Procedure for Maintaining the Time Zone +Database section 7. + + # 7. Database Ownership + # + # The TZ database itself is not an IETF Contribution or an IETF + # document. Rather it is a pre-existing and regularly updated work + # that is in the public domain, and is intended to remain in the + # public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do + # not apply to the TZ Database or contributions that individuals make + # to it. Should any claims be made and substantiated against the TZ + # Database, the organization that is providing the IANA + # Considerations defined in this RFC, under the memorandum of + # understanding with the IETF, currently ICANN, may act in accordance + # with all competent court orders. No ownership claims will be made + # by ICANN or the IETF Trust on the database or the code. Any person + # making a contribution to the database or code waives all rights to + # future claims in that contribution or in the TZ Database. + +---------------------------------------------------------------------- + +Google double-conversion + +Copyright 2006-2011, the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +---------------------------------------------------------------------- + +File: aclocal.m4 (only for ICU4C) +Section: pkg.m4 - Macros to locate and utilise pkg-config. + + +Copyright © 2004 Scott James Remnant . +Copyright © 2012-2015 Dan Nicholson + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. + +As a special exception to the GNU General Public License, if you +distribute this file as part of a program that contains a +configuration script generated by Autoconf, you may include it under +the same distribution terms that you use for the rest of that +program. + + +(The condition for the exception is fulfilled because +ICU4C includes a configuration script generated by Autoconf, +namely the `configure` script.) + +---------------------------------------------------------------------- + +File: config.guess (only for ICU4C) + + +This file is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, see . + +As a special exception to the GNU General Public License, if you +distribute this file as part of a program that contains a +configuration script generated by Autoconf, you may include it under +the same distribution terms that you use for the rest of that +program. This Exception is an additional permission under section 7 +of the GNU General Public License, version 3 ("GPLv3"). + + +(The condition for the exception is fulfilled because +ICU4C includes a configuration script generated by Autoconf, +namely the `configure` script.) + +---------------------------------------------------------------------- + +File: install-sh (only for ICU4C) + + +Copyright 1991 by the Massachusetts Institute of Technology + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation, and that the name of M.I.T. not be used in advertising or +publicity pertaining to distribution of the software without specific, +written prior permission. M.I.T. makes no representations about the +suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. diff --git a/tools/legal-review/project-manager/com.chuusai.shapeless_2.13-2.3.7/copyright-ignore b/tools/legal-review/project-manager/com.chuusai.shapeless_2.13-2.3.7/copyright-ignore deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/tools/legal-review/project-manager/com.chuusai.shapeless_2.13-2.3.7/copyright-keep-context b/tools/legal-review/project-manager/com.chuusai.shapeless_2.13-2.3.7/copyright-keep-context deleted file mode 100644 index 10a3068411cd..000000000000 --- a/tools/legal-review/project-manager/com.chuusai.shapeless_2.13-2.3.7/copyright-keep-context +++ /dev/null @@ -1,7 +0,0 @@ -Copyright (c) 2011-13 Miles Sabin -Copyright (c) 2011-16 Dale Wijnand -Copyright (c) 2012-18 Lars Hupel, Miles Sabin -Copyright (c) 2016 Frank S. Thomas -Copyright (c) 2017 Fabio Labella -Copyright (c) 2017 Georgi Krastev -Copyright (c) 2015-9 Alexandre Archambault diff --git a/tools/legal-review/engine/com.chuusai.shapeless_2.13-2.3.7/copyright-ignore b/tools/legal-review/project-manager/com.chuusai.shapeless_2.13-2.3.9/copyright-ignore similarity index 100% rename from tools/legal-review/engine/com.chuusai.shapeless_2.13-2.3.7/copyright-ignore rename to tools/legal-review/project-manager/com.chuusai.shapeless_2.13-2.3.9/copyright-ignore diff --git a/tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.7/copyright-keep b/tools/legal-review/project-manager/com.chuusai.shapeless_2.13-2.3.9/copyright-keep similarity index 100% rename from tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.7/copyright-keep rename to tools/legal-review/project-manager/com.chuusai.shapeless_2.13-2.3.9/copyright-keep diff --git a/tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.7/copyright-keep-context b/tools/legal-review/project-manager/com.chuusai.shapeless_2.13-2.3.9/copyright-keep-context similarity index 100% rename from tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.7/copyright-keep-context rename to tools/legal-review/project-manager/com.chuusai.shapeless_2.13-2.3.9/copyright-keep-context diff --git a/tools/legal-review/project-manager/org.typelevel.jawn-parser_2.13-1.1.2/custom-license b/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-annotations-2.13.3/custom-license similarity index 100% rename from tools/legal-review/project-manager/org.typelevel.jawn-parser_2.13-1.1.2/custom-license rename to tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-annotations-2.13.3/custom-license diff --git a/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/default-and-custom-license b/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-annotations-2.13.3/default-and-custom-license similarity index 100% rename from tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/default-and-custom-license rename to tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-annotations-2.13.3/default-and-custom-license diff --git a/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-annotations-2.13.1/files-keep b/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-annotations-2.13.3/files-keep similarity index 100% rename from tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-annotations-2.13.1/files-keep rename to tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-annotations-2.13.3/files-keep diff --git a/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.1/files-ignore b/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.1/files-ignore deleted file mode 100644 index b9005a4d5ae7..000000000000 --- a/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.1/files-ignore +++ /dev/null @@ -1 +0,0 @@ -META-INF/LICENSE diff --git a/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.1/files-keep b/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.1/files-keep deleted file mode 100644 index 0d1c51375183..000000000000 --- a/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.1/files-keep +++ /dev/null @@ -1 +0,0 @@ -META-INF/NOTICE diff --git a/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.3/copyright-keep-context b/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.3/copyright-keep-context new file mode 100644 index 000000000000..19b15f0b67b4 --- /dev/null +++ b/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.3/copyright-keep-context @@ -0,0 +1 @@ +Copyright (c) 2007- Tatu Saloranta, tatu.saloranta@iki.fi diff --git a/tools/legal-review/engine/io.circe.circe-core_2.13-0.14.1/default-and-custom-license b/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.3/default-and-custom-license similarity index 100% rename from tools/legal-review/engine/io.circe.circe-core_2.13-0.14.1/default-and-custom-license rename to tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.3/default-and-custom-license diff --git a/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.1/files-add/CREDITS-2.x.txt b/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.3/files-add/CREDITS-2.x.txt similarity index 100% rename from tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.1/files-add/CREDITS-2.x.txt rename to tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.3/files-add/CREDITS-2.x.txt diff --git a/tools/legal-review/Table/org.apache.xmlgraphics.batik-shared-resources-1.13/files-ignore b/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.3/files-ignore similarity index 100% rename from tools/legal-review/Table/org.apache.xmlgraphics.batik-shared-resources-1.13/files-ignore rename to tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.3/files-ignore diff --git a/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-databind-2.13.1/files-keep b/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.3/files-keep similarity index 100% rename from tools/legal-review/engine/com.fasterxml.jackson.core.jackson-databind-2.13.1/files-keep rename to tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.3/files-keep diff --git a/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.1/files-ignore b/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.1/files-ignore deleted file mode 100644 index b9005a4d5ae7..000000000000 --- a/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.1/files-ignore +++ /dev/null @@ -1 +0,0 @@ -META-INF/LICENSE diff --git a/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.1/files-keep b/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.1/files-keep deleted file mode 100644 index 0d1c51375183..000000000000 --- a/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.1/files-keep +++ /dev/null @@ -1 +0,0 @@ -META-INF/NOTICE diff --git a/tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.1/default-and-custom-license b/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.3/default-and-custom-license similarity index 100% rename from tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.1/default-and-custom-license rename to tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.3/default-and-custom-license diff --git a/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.1/files-add/CREDITS-2.x.txt b/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.3/files-add/CREDITS-2.x.txt similarity index 100% rename from tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.1/files-add/CREDITS-2.x.txt rename to tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.3/files-add/CREDITS-2.x.txt diff --git a/tools/legal-review/Table/org.apache.xmlgraphics.xmlgraphics-commons-2.4/files-ignore b/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.3/files-ignore similarity index 100% rename from tools/legal-review/Table/org.apache.xmlgraphics.xmlgraphics-commons-2.4/files-ignore rename to tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.3/files-ignore diff --git a/tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-RELEASE130/files-keep b/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.3/files-keep similarity index 100% rename from tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-RELEASE130/files-keep rename to tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.3/files-keep diff --git a/tools/legal-review/project-manager/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.1/files-ignore b/tools/legal-review/project-manager/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.1/files-ignore deleted file mode 100644 index c3349a9e9ede..000000000000 --- a/tools/legal-review/project-manager/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.1/files-ignore +++ /dev/null @@ -1 +0,0 @@ -#license diff --git a/tools/legal-review/project-manager/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.1/files-add/CREDITS-2.x.txt b/tools/legal-review/project-manager/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.3/files-add/CREDITS-2.x.txt similarity index 100% rename from tools/legal-review/project-manager/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.1/files-add/CREDITS-2.x.txt rename to tools/legal-review/project-manager/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.3/files-add/CREDITS-2.x.txt diff --git a/tools/legal-review/launcher/io.circe.circe-parser_2.13-0.14.1/files-ignore b/tools/legal-review/project-manager/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.3/files-ignore similarity index 100% rename from tools/legal-review/launcher/io.circe.circe-parser_2.13-0.14.1/files-ignore rename to tools/legal-review/project-manager/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.13.3/files-ignore diff --git a/tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/copyright-add b/tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/copyright-add deleted file mode 100644 index fdb813a69ae3..000000000000 --- a/tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/copyright-add +++ /dev/null @@ -1,28 +0,0 @@ ------------------------- - -From file com/fasterxml/jackson/module/scala/introspect/BeanIntrospector.scala: - -/* - * Derived from source code of scalabeans: - * https://raw.github.com/scalastuff/scalabeans/62b50c4e2482cbc1f494e0ac5c6c54fadc1bbcdd/src/main/scala/org/scalastuff/scalabeans/BeanIntrospector.scala - * - * The scalabeans code is covered by the copyright statement that follows. - */ - -/* - * Copyright (c) 2011 ScalaStuff.org (joint venture of Alexander Dvorkovyy and Ruud Diterwich) - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - ------------------------- diff --git a/tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/default-and-custom-license b/tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/default-and-custom-license deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/copyright-add b/tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/copyright-add similarity index 100% rename from tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/copyright-add rename to tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/copyright-add diff --git a/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/copyright-ignore b/tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/copyright-ignore similarity index 100% rename from tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/copyright-ignore rename to tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/copyright-ignore diff --git a/tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.1/default-and-custom-license b/tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/default-and-custom-license similarity index 100% rename from tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.1/default-and-custom-license rename to tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/default-and-custom-license diff --git a/tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/files-keep b/tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/files-keep similarity index 100% rename from tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.1/files-keep rename to tools/legal-review/project-manager/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.13.3/files-keep diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/copyright-keep b/tools/legal-review/project-manager/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/copyright-keep deleted file mode 100644 index 89219454a4ab..000000000000 --- a/tools/legal-review/project-manager/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/copyright-keep +++ /dev/null @@ -1,6 +0,0 @@ -Copyright (C) 2014-2021 Lightbend Inc. -Copyright (C) 2016-2021 Lightbend Inc. -Copyright (C) 2017-2021 Lightbend Inc. -Copyright (C) 2018-2021 Lightbend Inc. -Copyright (C) 2019-2021 Lightbend Inc. -Copyright (C) 2020-2021 Lightbend Inc. diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/copyright-keep-context b/tools/legal-review/project-manager/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/copyright-keep-context deleted file mode 100644 index 2541ef5c301f..000000000000 --- a/tools/legal-review/project-manager/com.typesafe.akka.akka-actor-typed_2.13-2.6.18/copyright-keep-context +++ /dev/null @@ -1 +0,0 @@ -Copyright (C) 2009-2021 Lightbend Inc. diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/copyright-ignore b/tools/legal-review/project-manager/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/copyright-ignore new file mode 100644 index 000000000000..ad40277caa0d --- /dev/null +++ b/tools/legal-review/project-manager/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/copyright-ignore @@ -0,0 +1,6 @@ +Copyright (C) 2014-2022 Lightbend Inc. +Copyright (C) 2016-2022 Lightbend Inc. +Copyright (C) 2017-2022 Lightbend Inc. +Copyright (C) 2018-2022 Lightbend Inc. +Copyright (C) 2019-2022 Lightbend Inc. +Copyright (C) 2020-2022 Lightbend Inc. diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/copyright-keep b/tools/legal-review/project-manager/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/copyright-keep new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/tools/legal-review/project-manager/com.typesafe.akka.akka-actor-typed_2.13-2.6.19/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep b/tools/legal-review/project-manager/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep deleted file mode 100644 index 6d396d168b60..000000000000 --- a/tools/legal-review/project-manager/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep +++ /dev/null @@ -1,8 +0,0 @@ -Copyright (C) 2014-2021 Lightbend Inc. -Copyright (C) 2015-2021 Lightbend Inc. -Copyright (C) 2016-2021 Lightbend Inc. -Copyright (C) 2017-2021 Lightbend Inc. -Copyright (C) 2018-2021 Lightbend Inc. -Copyright (C) 2019-2021 Lightbend Inc. -Copyright (C) 2020-2021 Lightbend Inc. -Copyright (C) 2021 Lightbend Inc. diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep-context b/tools/legal-review/project-manager/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep-context deleted file mode 100644 index 2541ef5c301f..000000000000 --- a/tools/legal-review/project-manager/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep-context +++ /dev/null @@ -1 +0,0 @@ -Copyright (C) 2009-2021 Lightbend Inc. diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-ignore b/tools/legal-review/project-manager/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-ignore new file mode 100644 index 000000000000..4c3b3d7f85de --- /dev/null +++ b/tools/legal-review/project-manager/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-ignore @@ -0,0 +1,8 @@ +Copyright (C) 2014-2022 Lightbend Inc. +Copyright (C) 2015-2022 Lightbend Inc. +Copyright (C) 2016-2022 Lightbend Inc. +Copyright (C) 2017-2022 Lightbend Inc. +Copyright (C) 2018-2022 Lightbend Inc. +Copyright (C) 2019-2022 Lightbend Inc. +Copyright (C) 2020-2022 Lightbend Inc. +Copyright (C) 2021-2022 Lightbend Inc. diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-keep b/tools/legal-review/project-manager/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-keep new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/tools/legal-review/project-manager/com.typesafe.akka.akka-actor_2.13-2.6.19/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-add b/tools/legal-review/project-manager/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-add deleted file mode 100644 index c7753ae66997..000000000000 --- a/tools/legal-review/project-manager/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-add +++ /dev/null @@ -1,6 +0,0 @@ -/* - * Copyright (C) 2017-2020 Lightbend Inc. - * - * Copied and adapted from akka-remote - * https://github.com/akka/akka/blob/c90121485fcfc44a3cee62a0c638e1982d13d812/akka-remote/src/main/scala/akka/remote/artery/StageLogging.scala - */ diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-add b/tools/legal-review/project-manager/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-add similarity index 100% rename from tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-add rename to tools/legal-review/project-manager/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-add diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-keep b/tools/legal-review/project-manager/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-keep similarity index 100% rename from tools/legal-review/project-manager/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-keep rename to tools/legal-review/project-manager/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-keep diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-keep-context b/tools/legal-review/project-manager/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-keep-context similarity index 100% rename from tools/legal-review/project-manager/com.typesafe.akka.akka-http-core_2.13-10.2.7/copyright-keep-context rename to tools/legal-review/project-manager/com.typesafe.akka.akka-http-core_2.13-10.2.9/copyright-keep-context diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-http-spray-json_2.13-10.2.7/copyright-keep-context b/tools/legal-review/project-manager/com.typesafe.akka.akka-http-spray-json_2.13-10.2.7/copyright-keep-context deleted file mode 100644 index 2541ef5c301f..000000000000 --- a/tools/legal-review/project-manager/com.typesafe.akka.akka-http-spray-json_2.13-10.2.7/copyright-keep-context +++ /dev/null @@ -1 +0,0 @@ -Copyright (C) 2009-2021 Lightbend Inc. diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-http-spray-json_2.13-10.2.9/copyright-keep b/tools/legal-review/project-manager/com.typesafe.akka.akka-http-spray-json_2.13-10.2.9/copyright-keep new file mode 100644 index 000000000000..8f5aedf5d27a --- /dev/null +++ b/tools/legal-review/project-manager/com.typesafe.akka.akka-http-spray-json_2.13-10.2.9/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2017-2021 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep-context b/tools/legal-review/project-manager/com.typesafe.akka.akka-http-spray-json_2.13-10.2.9/copyright-keep-context similarity index 100% rename from tools/legal-review/engine/com.typesafe.akka.akka-actor_2.13-2.6.18/copyright-keep-context rename to tools/legal-review/project-manager/com.typesafe.akka.akka-http-spray-json_2.13-10.2.9/copyright-keep-context diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-http_2.13-10.2.7/copyright-keep b/tools/legal-review/project-manager/com.typesafe.akka.akka-http_2.13-10.2.9/copyright-keep similarity index 100% rename from tools/legal-review/project-manager/com.typesafe.akka.akka-http_2.13-10.2.7/copyright-keep rename to tools/legal-review/project-manager/com.typesafe.akka.akka-http_2.13-10.2.9/copyright-keep diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-http_2.13-10.2.7/copyright-keep-context b/tools/legal-review/project-manager/com.typesafe.akka.akka-http_2.13-10.2.9/copyright-keep-context similarity index 100% rename from tools/legal-review/project-manager/com.typesafe.akka.akka-http_2.13-10.2.7/copyright-keep-context rename to tools/legal-review/project-manager/com.typesafe.akka.akka-http_2.13-10.2.9/copyright-keep-context diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-add b/tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-add deleted file mode 100644 index 42ff2fd055fb..000000000000 --- a/tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-add +++ /dev/null @@ -1,41 +0,0 @@ ----------------- - -akka/parboiled2/util/Base64.java is licensed under the following terms: - * - * Licence (BSD): - * ============== - * - * Copyright (c) 2004, Mikael Grev, MiG InfoCom AB. (base64 @ miginfocom . com) - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, - * are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright notice, this list - * of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright notice, this - * list of conditions and the following disclaimer in the documentation and/or other - * materials provided with the distribution. - * Neither the name of the MiG InfoCom AB nor the names of its contributors may be - * used to endorse or promote products derived from this software without specific - * prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, - * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY - * OF SUCH DAMAGE. - * - * @version 2.2 - * @author Mikael Grev - * Date: 2004-aug-02 - * Time: 11:31:11 - * - * Adapted in 2009 by Mathias Doenitz. - */ - ----------------- diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-ignore b/tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-ignore deleted file mode 100644 index 34525a6f0189..000000000000 --- a/tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-ignore +++ /dev/null @@ -1 +0,0 @@ -Copyright (c) 2004, Mikael Grev, MiG InfoCom AB. (base64 @ miginfocom . com) diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-add b/tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-add similarity index 100% rename from tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-add rename to tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-add diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-ignore b/tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-ignore similarity index 100% rename from tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-ignore rename to tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-ignore diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-slf4j_2.13-2.6.18/copyright-keep-context b/tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-keep similarity index 100% rename from tools/legal-review/engine/com.typesafe.akka.akka-slf4j_2.13-2.6.18/copyright-keep-context rename to tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-keep diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-keep-context b/tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-keep-context similarity index 100% rename from tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.7/copyright-keep-context rename to tools/legal-review/project-manager/com.typesafe.akka.akka-parsing_2.13-10.2.9/copyright-keep-context diff --git a/tools/legal-review/project-manager/org.scala-lang.scala-library-2.13.7/files-ignore b/tools/legal-review/project-manager/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/custom-license similarity index 100% rename from tools/legal-review/project-manager/org.scala-lang.scala-library-2.13.7/files-ignore rename to tools/legal-review/project-manager/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/custom-license diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/files-add/COPYING.protobuf b/tools/legal-review/project-manager/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/files-add/COPYING.protobuf similarity index 100% rename from tools/legal-review/project-manager/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/files-add/COPYING.protobuf rename to tools/legal-review/project-manager/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/files-add/COPYING.protobuf diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/files-add/LICENSE b/tools/legal-review/project-manager/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/files-add/LICENSE similarity index 100% rename from tools/legal-review/project-manager/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.18/files-add/LICENSE rename to tools/legal-review/project-manager/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.19/files-add/LICENSE diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-slf4j_2.13-2.6.18/copyright-keep-context b/tools/legal-review/project-manager/com.typesafe.akka.akka-slf4j_2.13-2.6.18/copyright-keep-context deleted file mode 100644 index 2541ef5c301f..000000000000 --- a/tools/legal-review/project-manager/com.typesafe.akka.akka-slf4j_2.13-2.6.18/copyright-keep-context +++ /dev/null @@ -1 +0,0 @@ -Copyright (C) 2009-2021 Lightbend Inc. diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-slf4j_2.13-2.6.19/copyright-keep b/tools/legal-review/project-manager/com.typesafe.akka.akka-slf4j_2.13-2.6.19/copyright-keep new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/tools/legal-review/project-manager/com.typesafe.akka.akka-slf4j_2.13-2.6.19/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep b/tools/legal-review/project-manager/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep deleted file mode 100644 index 6d396d168b60..000000000000 --- a/tools/legal-review/project-manager/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep +++ /dev/null @@ -1,8 +0,0 @@ -Copyright (C) 2014-2021 Lightbend Inc. -Copyright (C) 2015-2021 Lightbend Inc. -Copyright (C) 2016-2021 Lightbend Inc. -Copyright (C) 2017-2021 Lightbend Inc. -Copyright (C) 2018-2021 Lightbend Inc. -Copyright (C) 2019-2021 Lightbend Inc. -Copyright (C) 2020-2021 Lightbend Inc. -Copyright (C) 2021 Lightbend Inc. diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep-context b/tools/legal-review/project-manager/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep-context deleted file mode 100644 index 2541ef5c301f..000000000000 --- a/tools/legal-review/project-manager/com.typesafe.akka.akka-stream_2.13-2.6.18/copyright-keep-context +++ /dev/null @@ -1 +0,0 @@ -Copyright (C) 2009-2021 Lightbend Inc. diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-ignore b/tools/legal-review/project-manager/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-ignore new file mode 100644 index 000000000000..4c3b3d7f85de --- /dev/null +++ b/tools/legal-review/project-manager/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-ignore @@ -0,0 +1,8 @@ +Copyright (C) 2014-2022 Lightbend Inc. +Copyright (C) 2015-2022 Lightbend Inc. +Copyright (C) 2016-2022 Lightbend Inc. +Copyright (C) 2017-2022 Lightbend Inc. +Copyright (C) 2018-2022 Lightbend Inc. +Copyright (C) 2019-2022 Lightbend Inc. +Copyright (C) 2020-2022 Lightbend Inc. +Copyright (C) 2021-2022 Lightbend Inc. diff --git a/tools/legal-review/project-manager/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-keep b/tools/legal-review/project-manager/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-keep new file mode 100644 index 000000000000..524d999be2a0 --- /dev/null +++ b/tools/legal-review/project-manager/com.typesafe.akka.akka-stream_2.13-2.6.19/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2009-2022 Lightbend Inc. diff --git a/tools/legal-review/project-manager/com.typesafe.config-1.4.1/copyright-keep-context b/tools/legal-review/project-manager/com.typesafe.config-1.4.1/copyright-keep-context deleted file mode 100644 index 77674fa31387..000000000000 --- a/tools/legal-review/project-manager/com.typesafe.config-1.4.1/copyright-keep-context +++ /dev/null @@ -1,3 +0,0 @@ -Copyright (C) 2011-2012 Typesafe Inc. -Copyright (C) 2014 Typesafe Inc. -Copyright (C) 2015 Typesafe Inc. diff --git a/tools/legal-review/launcher/com.typesafe.config-1.4.1/copyright-keep-context b/tools/legal-review/project-manager/com.typesafe.config-1.4.2/copyright-keep-context similarity index 100% rename from tools/legal-review/launcher/com.typesafe.config-1.4.1/copyright-keep-context rename to tools/legal-review/project-manager/com.typesafe.config-1.4.2/copyright-keep-context diff --git a/tools/legal-review/project-manager/com.typesafe.ssl-config-core_2.13-0.4.2/copyright-keep b/tools/legal-review/project-manager/com.typesafe.ssl-config-core_2.13-0.4.3/copyright-keep similarity index 100% rename from tools/legal-review/project-manager/com.typesafe.ssl-config-core_2.13-0.4.2/copyright-keep rename to tools/legal-review/project-manager/com.typesafe.ssl-config-core_2.13-0.4.3/copyright-keep diff --git a/tools/legal-review/project-manager/io.circe.circe-core_2.13-0.14.1/default-and-custom-license b/tools/legal-review/project-manager/io.circe.circe-core_2.13-0.14.1/default-and-custom-license deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/tools/legal-review/project-manager/io.circe.circe-core_2.13-0.14.1/files-ignore b/tools/legal-review/project-manager/io.circe.circe-core_2.13-0.14.1/files-ignore deleted file mode 100644 index d1a0a26cf4e2..000000000000 --- a/tools/legal-review/project-manager/io.circe.circe-core_2.13-0.14.1/files-ignore +++ /dev/null @@ -1,2 +0,0 @@ -#license -/circe/circe/blob/main/LICENSE diff --git a/tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.1/default-and-custom-license b/tools/legal-review/project-manager/io.circe.circe-core_2.13-0.14.2/default-and-custom-license similarity index 100% rename from tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.1/default-and-custom-license rename to tools/legal-review/project-manager/io.circe.circe-core_2.13-0.14.2/default-and-custom-license diff --git a/tools/legal-review/engine/io.circe.circe-core_2.13-0.14.1/files-ignore b/tools/legal-review/project-manager/io.circe.circe-core_2.13-0.14.2/files-ignore similarity index 100% rename from tools/legal-review/engine/io.circe.circe-core_2.13-0.14.1/files-ignore rename to tools/legal-review/project-manager/io.circe.circe-core_2.13-0.14.2/files-ignore diff --git a/tools/legal-review/engine/io.circe.circe-core_2.13-0.14.1/files-keep b/tools/legal-review/project-manager/io.circe.circe-core_2.13-0.14.2/files-keep similarity index 100% rename from tools/legal-review/engine/io.circe.circe-core_2.13-0.14.1/files-keep rename to tools/legal-review/project-manager/io.circe.circe-core_2.13-0.14.2/files-keep diff --git a/tools/legal-review/project-manager/io.circe.circe-generic_2.13-0.14.1/default-and-custom-license b/tools/legal-review/project-manager/io.circe.circe-generic_2.13-0.14.1/default-and-custom-license deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/tools/legal-review/project-manager/io.circe.circe-generic_2.13-0.14.1/files-ignore b/tools/legal-review/project-manager/io.circe.circe-generic_2.13-0.14.1/files-ignore deleted file mode 100644 index d1a0a26cf4e2..000000000000 --- a/tools/legal-review/project-manager/io.circe.circe-generic_2.13-0.14.1/files-ignore +++ /dev/null @@ -1,2 +0,0 @@ -#license -/circe/circe/blob/main/LICENSE diff --git a/tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.1/default-and-custom-license b/tools/legal-review/project-manager/io.circe.circe-generic_2.13-0.14.2/default-and-custom-license similarity index 100% rename from tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.1/default-and-custom-license rename to tools/legal-review/project-manager/io.circe.circe-generic_2.13-0.14.2/default-and-custom-license diff --git a/tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.1/files-ignore b/tools/legal-review/project-manager/io.circe.circe-generic_2.13-0.14.2/files-ignore similarity index 100% rename from tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.1/files-ignore rename to tools/legal-review/project-manager/io.circe.circe-generic_2.13-0.14.2/files-ignore diff --git a/tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.1/files-keep b/tools/legal-review/project-manager/io.circe.circe-generic_2.13-0.14.2/files-keep similarity index 100% rename from tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.1/files-keep rename to tools/legal-review/project-manager/io.circe.circe-generic_2.13-0.14.2/files-keep diff --git a/tools/legal-review/project-manager/io.circe.circe-jawn_2.13-0.14.1/default-and-custom-license b/tools/legal-review/project-manager/io.circe.circe-jawn_2.13-0.14.1/default-and-custom-license deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/tools/legal-review/project-manager/io.circe.circe-jawn_2.13-0.14.1/files-ignore b/tools/legal-review/project-manager/io.circe.circe-jawn_2.13-0.14.1/files-ignore deleted file mode 100644 index d1a0a26cf4e2..000000000000 --- a/tools/legal-review/project-manager/io.circe.circe-jawn_2.13-0.14.1/files-ignore +++ /dev/null @@ -1,2 +0,0 @@ -#license -/circe/circe/blob/main/LICENSE diff --git a/tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.1/default-and-custom-license b/tools/legal-review/project-manager/io.circe.circe-jawn_2.13-0.14.2/default-and-custom-license similarity index 100% rename from tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.1/default-and-custom-license rename to tools/legal-review/project-manager/io.circe.circe-jawn_2.13-0.14.2/default-and-custom-license diff --git a/tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.1/files-ignore b/tools/legal-review/project-manager/io.circe.circe-jawn_2.13-0.14.2/files-ignore similarity index 100% rename from tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.1/files-ignore rename to tools/legal-review/project-manager/io.circe.circe-jawn_2.13-0.14.2/files-ignore diff --git a/tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.1/files-keep b/tools/legal-review/project-manager/io.circe.circe-jawn_2.13-0.14.2/files-keep similarity index 100% rename from tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.1/files-keep rename to tools/legal-review/project-manager/io.circe.circe-jawn_2.13-0.14.2/files-keep diff --git a/tools/legal-review/project-manager/io.circe.circe-literal_2.13-0.14.1/default-and-custom-license b/tools/legal-review/project-manager/io.circe.circe-literal_2.13-0.14.1/default-and-custom-license deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/tools/legal-review/project-manager/io.circe.circe-literal_2.13-0.14.1/files-ignore b/tools/legal-review/project-manager/io.circe.circe-literal_2.13-0.14.1/files-ignore deleted file mode 100644 index d1a0a26cf4e2..000000000000 --- a/tools/legal-review/project-manager/io.circe.circe-literal_2.13-0.14.1/files-ignore +++ /dev/null @@ -1,2 +0,0 @@ -#license -/circe/circe/blob/main/LICENSE diff --git a/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-annotations-2.13.1/default-and-custom-license b/tools/legal-review/project-manager/io.circe.circe-literal_2.13-0.14.2/default-and-custom-license similarity index 100% rename from tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-annotations-2.13.1/default-and-custom-license rename to tools/legal-review/project-manager/io.circe.circe-literal_2.13-0.14.2/default-and-custom-license diff --git a/tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.1/files-ignore b/tools/legal-review/project-manager/io.circe.circe-literal_2.13-0.14.2/files-ignore similarity index 100% rename from tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.1/files-ignore rename to tools/legal-review/project-manager/io.circe.circe-literal_2.13-0.14.2/files-ignore diff --git a/tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.1/files-keep b/tools/legal-review/project-manager/io.circe.circe-literal_2.13-0.14.2/files-keep similarity index 100% rename from tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.1/files-keep rename to tools/legal-review/project-manager/io.circe.circe-literal_2.13-0.14.2/files-keep diff --git a/tools/legal-review/project-manager/io.circe.circe-numbers_2.13-0.14.1/default-and-custom-license b/tools/legal-review/project-manager/io.circe.circe-numbers_2.13-0.14.1/default-and-custom-license deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/tools/legal-review/project-manager/io.circe.circe-numbers_2.13-0.14.1/files-ignore b/tools/legal-review/project-manager/io.circe.circe-numbers_2.13-0.14.1/files-ignore deleted file mode 100644 index d1a0a26cf4e2..000000000000 --- a/tools/legal-review/project-manager/io.circe.circe-numbers_2.13-0.14.1/files-ignore +++ /dev/null @@ -1,2 +0,0 @@ -#license -/circe/circe/blob/main/LICENSE diff --git a/tools/legal-review/project-manager/io.circe.circe-numbers_2.13-0.14.1/files-keep b/tools/legal-review/project-manager/io.circe.circe-numbers_2.13-0.14.1/files-keep deleted file mode 100644 index 3ae56f62e047..000000000000 --- a/tools/legal-review/project-manager/io.circe.circe-numbers_2.13-0.14.1/files-keep +++ /dev/null @@ -1,3 +0,0 @@ -/circe/circe/blob/main/LICENSE.argonaut -/circe/circe/blob/main/LICENSE.ephox -/circe/circe/blob/main/NOTICE diff --git a/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.1/default-and-custom-license b/tools/legal-review/project-manager/io.circe.circe-numbers_2.13-0.14.2/default-and-custom-license similarity index 100% rename from tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-core-2.13.1/default-and-custom-license rename to tools/legal-review/project-manager/io.circe.circe-numbers_2.13-0.14.2/default-and-custom-license diff --git a/tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.1/files-ignore b/tools/legal-review/project-manager/io.circe.circe-numbers_2.13-0.14.2/files-ignore similarity index 100% rename from tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.1/files-ignore rename to tools/legal-review/project-manager/io.circe.circe-numbers_2.13-0.14.2/files-ignore diff --git a/tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.1/files-keep b/tools/legal-review/project-manager/io.circe.circe-numbers_2.13-0.14.2/files-keep similarity index 100% rename from tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.1/files-keep rename to tools/legal-review/project-manager/io.circe.circe-numbers_2.13-0.14.2/files-keep diff --git a/tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.1/default-and-custom-license b/tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.1/default-and-custom-license deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.1/files-ignore b/tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.1/files-ignore deleted file mode 100644 index d1a0a26cf4e2..000000000000 --- a/tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.1/files-ignore +++ /dev/null @@ -1,2 +0,0 @@ -#license -/circe/circe/blob/main/LICENSE diff --git a/tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.1/files-keep b/tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.1/files-keep deleted file mode 100644 index 3ae56f62e047..000000000000 --- a/tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.1/files-keep +++ /dev/null @@ -1,3 +0,0 @@ -/circe/circe/blob/main/LICENSE.argonaut -/circe/circe/blob/main/LICENSE.ephox -/circe/circe/blob/main/NOTICE diff --git a/tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.1/default-and-custom-license b/tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.2/default-and-custom-license similarity index 100% rename from tools/legal-review/project-manager/com.fasterxml.jackson.core.jackson-databind-2.13.1/default-and-custom-license rename to tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.2/default-and-custom-license diff --git a/tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.1/files-ignore b/tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.2/files-ignore similarity index 100% rename from tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.1/files-ignore rename to tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.2/files-ignore diff --git a/tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.1/files-keep b/tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.2/files-keep similarity index 100% rename from tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.1/files-keep rename to tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.2/files-keep diff --git a/tools/legal-review/project-manager/org.scala-lang.scala-library-2.13.7/copyright-ignore b/tools/legal-review/project-manager/org.scala-lang.scala-library-2.13.8/copyright-ignore similarity index 100% rename from tools/legal-review/project-manager/org.scala-lang.scala-library-2.13.7/copyright-ignore rename to tools/legal-review/project-manager/org.scala-lang.scala-library-2.13.8/copyright-ignore diff --git a/tools/legal-review/project-manager/org.scala-lang.scala-library-2.13.7/copyright-keep b/tools/legal-review/project-manager/org.scala-lang.scala-library-2.13.8/copyright-keep similarity index 100% rename from tools/legal-review/project-manager/org.scala-lang.scala-library-2.13.7/copyright-keep rename to tools/legal-review/project-manager/org.scala-lang.scala-library-2.13.8/copyright-keep diff --git a/tools/legal-review/project-manager/org.scala-lang.scala-reflect-2.13.7/files-ignore b/tools/legal-review/project-manager/org.scala-lang.scala-library-2.13.8/files-ignore similarity index 100% rename from tools/legal-review/project-manager/org.scala-lang.scala-reflect-2.13.7/files-ignore rename to tools/legal-review/project-manager/org.scala-lang.scala-library-2.13.8/files-ignore diff --git a/tools/legal-review/project-manager/org.scala-lang.scala-library-2.13.7/files-keep b/tools/legal-review/project-manager/org.scala-lang.scala-library-2.13.8/files-keep similarity index 100% rename from tools/legal-review/project-manager/org.scala-lang.scala-library-2.13.7/files-keep rename to tools/legal-review/project-manager/org.scala-lang.scala-library-2.13.8/files-keep diff --git a/tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.7/copyright-keep b/tools/legal-review/project-manager/org.scala-lang.scala-reflect-2.13.8/copyright-keep similarity index 100% rename from tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.7/copyright-keep rename to tools/legal-review/project-manager/org.scala-lang.scala-reflect-2.13.8/copyright-keep index 81428754fb74..39867f52eb46 100644 --- a/tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.7/copyright-keep +++ b/tools/legal-review/project-manager/org.scala-lang.scala-reflect-2.13.8/copyright-keep @@ -1,2 +1,2 @@ -Copyright EPFL and Lightbend, Inc. Copyright 2005-2013 LAMP/EPFL +Copyright EPFL and Lightbend, Inc. diff --git a/tools/legal-review/project-manager/org.scala-lang.scala-reflect-2.13.8/files-ignore b/tools/legal-review/project-manager/org.scala-lang.scala-reflect-2.13.8/files-ignore new file mode 100644 index 000000000000..6b1d0bfabc3c --- /dev/null +++ b/tools/legal-review/project-manager/org.scala-lang.scala-reflect-2.13.8/files-ignore @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/project-manager/org.scala-lang.scala-reflect-2.13.7/files-keep b/tools/legal-review/project-manager/org.scala-lang.scala-reflect-2.13.8/files-keep similarity index 100% rename from tools/legal-review/project-manager/org.scala-lang.scala-reflect-2.13.7/files-keep rename to tools/legal-review/project-manager/org.scala-lang.scala-reflect-2.13.8/files-keep diff --git a/tools/legal-review/project-manager/org.slf4j.slf4j-api-1.7.32/copyright-keep-context b/tools/legal-review/project-manager/org.slf4j.slf4j-api-1.7.32/copyright-keep-context deleted file mode 100644 index 7383b9c6d63d..000000000000 --- a/tools/legal-review/project-manager/org.slf4j.slf4j-api-1.7.32/copyright-keep-context +++ /dev/null @@ -1 +0,0 @@ -Copyright (c) 2004-2011 QOS.ch diff --git a/tools/legal-review/launcher/org.slf4j.slf4j-api-1.7.32/copyright-keep-context b/tools/legal-review/project-manager/org.slf4j.slf4j-api-1.7.36/copyright-keep-context similarity index 100% rename from tools/legal-review/launcher/org.slf4j.slf4j-api-1.7.32/copyright-keep-context rename to tools/legal-review/project-manager/org.slf4j.slf4j-api-1.7.36/copyright-keep-context diff --git a/tools/legal-review/project-manager/org.typelevel.cats-core_2.13-2.7.0/custom-license b/tools/legal-review/project-manager/org.typelevel.cats-core_2.13-2.7.0/custom-license deleted file mode 100644 index 5ecd9c64ade2..000000000000 --- a/tools/legal-review/project-manager/org.typelevel.cats-core_2.13-2.7.0/custom-license +++ /dev/null @@ -1 +0,0 @@ -COPYING diff --git a/tools/legal-review/project-manager/org.typelevel.cats-core_2.13-2.7.0/files-keep b/tools/legal-review/project-manager/org.typelevel.cats-core_2.13-2.7.0/files-keep deleted file mode 100644 index 182e996c227d..000000000000 --- a/tools/legal-review/project-manager/org.typelevel.cats-core_2.13-2.7.0/files-keep +++ /dev/null @@ -1,2 +0,0 @@ -/typelevel/cats/blob/main/COPYING -/typelevel/cats/blob/main/AUTHORS.md diff --git a/tools/legal-review/project-manager/org.typelevel.cats-core_2.13-2.8.0/copyright-keep b/tools/legal-review/project-manager/org.typelevel.cats-core_2.13-2.8.0/copyright-keep new file mode 100644 index 000000000000..62959bdbd456 --- /dev/null +++ b/tools/legal-review/project-manager/org.typelevel.cats-core_2.13-2.8.0/copyright-keep @@ -0,0 +1,2 @@ +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +Copyright (c) 2002-2022 EPFL diff --git a/tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.7.0/copyright-add b/tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.7.0/copyright-add deleted file mode 100644 index 1c247d9f8f95..000000000000 --- a/tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.7.0/copyright-add +++ /dev/null @@ -1 +0,0 @@ -See org.typelevel.cats-core_2.13-2.2.0-M3 for notices related to this module. diff --git a/tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.7.0/custom-license b/tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.7.0/custom-license deleted file mode 100644 index 5ecd9c64ade2..000000000000 --- a/tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.7.0/custom-license +++ /dev/null @@ -1 +0,0 @@ -COPYING diff --git a/tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.7.0/files-ignore b/tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.7.0/files-ignore deleted file mode 100644 index f520885f91a6..000000000000 --- a/tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.7.0/files-ignore +++ /dev/null @@ -1 +0,0 @@ -/typelevel/cats/blob/main/AUTHORS.md diff --git a/tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.7.0/files-keep b/tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.7.0/files-keep deleted file mode 100644 index 6f304ace9d02..000000000000 --- a/tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.7.0/files-keep +++ /dev/null @@ -1 +0,0 @@ -/typelevel/cats/blob/main/COPYING diff --git a/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.7.0/copyright-add b/tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.8.0/copyright-add similarity index 100% rename from tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.7.0/copyright-add rename to tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.8.0/copyright-add diff --git a/tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.8.0/copyright-keep b/tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.8.0/copyright-keep new file mode 100644 index 000000000000..3485d859adc2 --- /dev/null +++ b/tools/legal-review/project-manager/org.typelevel.cats-kernel_2.13-2.8.0/copyright-keep @@ -0,0 +1,4 @@ +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +Copyright (c) 2002-2022 EPFL +Copyright (c) 2011-2022 Lightbend, Inc. +Copyright EPFL and Lightbend, Inc. diff --git a/tools/legal-review/project-manager/org.typelevel.jawn-parser_2.13-1.3.2/custom-license b/tools/legal-review/project-manager/org.typelevel.jawn-parser_2.13-1.3.2/custom-license new file mode 100644 index 000000000000..6b1d0bfabc3c --- /dev/null +++ b/tools/legal-review/project-manager/org.typelevel.jawn-parser_2.13-1.3.2/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/project-manager/org.typelevel.jawn-parser_2.13-1.1.2/files-add/LICENSE b/tools/legal-review/project-manager/org.typelevel.jawn-parser_2.13-1.3.2/files-add/LICENSE similarity index 100% rename from tools/legal-review/project-manager/org.typelevel.jawn-parser_2.13-1.1.2/files-add/LICENSE rename to tools/legal-review/project-manager/org.typelevel.jawn-parser_2.13-1.3.2/files-add/LICENSE diff --git a/tools/legal-review/project-manager/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/files-ignore b/tools/legal-review/project-manager/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/files-ignore deleted file mode 100644 index c3349a9e9ede..000000000000 --- a/tools/legal-review/project-manager/org.typelevel.simulacrum-scalafix-annotations_2.13-0.5.4/files-ignore +++ /dev/null @@ -1 +0,0 @@ -#license diff --git a/tools/legal-review/project-manager/report-state b/tools/legal-review/project-manager/report-state index 04470c1c900f..65f96b6a4ee9 100644 --- a/tools/legal-review/project-manager/report-state +++ b/tools/legal-review/project-manager/report-state @@ -1,3 +1,3 @@ -E8BCE903881AE1141DA4E2CAAC72D673680955BDA2AF64B822C62A5AF46DBFE8 -0758086E9F188E70B4D212BD957A2DC12AB1D51A56E68F042BC94919B3F2E163 +27E62459A95B059D0BA10416285FF20C38FEB28E12343177457C5A7912BB22CD +721D5B4932A40AAB51DFDEA16A4BA4A96B98B356E90DDE8B7056E89B1884616C 0 From 10dd0e04aa68e9f6df6edf783a8b8b0c1c2c3429 Mon Sep 17 00:00:00 2001 From: Dmitry Bushev Date: Fri, 5 Aug 2022 11:41:24 +0300 Subject: [PATCH 08/10] misc: downgrade directory watcher --- build.sbt | 2 +- distribution/engine/THIRD-PARTY/NOTICE | 7 +------ .../NOTICES | 0 .../THIRD-PARTY/net.java.dev.jna.jna-5.12.1/NOTICES | 3 --- .../copyright-keep | 0 .../net.java.dev.jna.jna-5.12.1/copyright-ignore | 12 ------------ .../net.java.dev.jna.jna-5.12.1/copyright-keep | 2 -- tools/legal-review/engine/report-state | 4 ++-- 8 files changed, 4 insertions(+), 26 deletions(-) rename distribution/engine/THIRD-PARTY/{io.methvin.directory-watcher-0.16.1 => io.methvin.directory-watcher-0.9.10}/NOTICES (100%) delete mode 100644 distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.12.1/NOTICES rename tools/legal-review/engine/{io.methvin.directory-watcher-0.16.1 => io.methvin.directory-watcher-0.9.10}/copyright-keep (100%) delete mode 100644 tools/legal-review/engine/net.java.dev.jna.jna-5.12.1/copyright-ignore delete mode 100644 tools/legal-review/engine/net.java.dev.jna.jna-5.12.1/copyright-keep diff --git a/build.sbt b/build.sbt index 263fc434fd8e..a93b634ee680 100644 --- a/build.sbt +++ b/build.sbt @@ -450,7 +450,7 @@ val zio = Seq( val bcpkixJdk15Version = "1.70" val bumpVersion = "0.1.3" val declineVersion = "2.3.0" -val directoryWatcherVersion = "0.16.1" +val directoryWatcherVersion = "0.9.10" val flatbuffersVersion = "1.12.0" val guavaVersion = "31.1-jre" val jlineVersion = "3.21.0" diff --git a/distribution/engine/THIRD-PARTY/NOTICE b/distribution/engine/THIRD-PARTY/NOTICE index 832689b1ed4c..93c87fa701ff 100644 --- a/distribution/engine/THIRD-PARTY/NOTICE +++ b/distribution/engine/THIRD-PARTY/NOTICE @@ -268,7 +268,7 @@ Copyright notices related to this dependency can be found in the directory `io.e 'directory-watcher', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `io.methvin.directory-watcher-0.16.1`. +Copyright notices related to this dependency can be found in the directory `io.methvin.directory-watcher-0.9.10`. 'spray-json_2.13', licensed under the Apache 2, is distributed with the engine. @@ -276,11 +276,6 @@ The license file can be found at `licenses/APACHE2.0`. Copyright notices related to this dependency can be found in the directory `io.spray.spray-json_2.13-1.3.6`. -'jna', licensed under the Apache-2.0, is distributed with the engine. -The license file can be found at `licenses/APACHE2.0`. -Copyright notices related to this dependency can be found in the directory `net.java.dev.jna.jna-5.12.1`. - - 'jna', licensed under the Apache-2.0, is distributed with the engine. The license file can be found at `licenses/APACHE2.0`. Copyright notices related to this dependency can be found in the directory `net.java.dev.jna.jna-5.9.0`. diff --git a/distribution/engine/THIRD-PARTY/io.methvin.directory-watcher-0.16.1/NOTICES b/distribution/engine/THIRD-PARTY/io.methvin.directory-watcher-0.9.10/NOTICES similarity index 100% rename from distribution/engine/THIRD-PARTY/io.methvin.directory-watcher-0.16.1/NOTICES rename to distribution/engine/THIRD-PARTY/io.methvin.directory-watcher-0.9.10/NOTICES diff --git a/distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.12.1/NOTICES b/distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.12.1/NOTICES deleted file mode 100644 index eec61515f521..000000000000 --- a/distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.12.1/NOTICES +++ /dev/null @@ -1,3 +0,0 @@ -Copyright (c) 2007 Timothy Wall, All Rights Reserved - -Copyright (c) 2007 Wayne Meissner, All Rights Reserved diff --git a/tools/legal-review/engine/io.methvin.directory-watcher-0.16.1/copyright-keep b/tools/legal-review/engine/io.methvin.directory-watcher-0.9.10/copyright-keep similarity index 100% rename from tools/legal-review/engine/io.methvin.directory-watcher-0.16.1/copyright-keep rename to tools/legal-review/engine/io.methvin.directory-watcher-0.9.10/copyright-keep diff --git a/tools/legal-review/engine/net.java.dev.jna.jna-5.12.1/copyright-ignore b/tools/legal-review/engine/net.java.dev.jna.jna-5.12.1/copyright-ignore deleted file mode 100644 index 37046de5d385..000000000000 --- a/tools/legal-review/engine/net.java.dev.jna.jna-5.12.1/copyright-ignore +++ /dev/null @@ -1,12 +0,0 @@ -Copyright (c) 2007-2008 Timothy Wall, All Rights Reserved -Copyright (c) 2007-2012 Timothy Wall, All Rights Reserved -Copyright (c) 2007-2013 Timothy Wall, All Rights Reserved -Copyright (c) 2007-2015 Timothy Wall, All Rights Reserved -Copyright (c) 2009 Timothy Wall, All Rights Reserved -Copyright (c) 2011 Timothy Wall, All Rights Reserved -Copyright (c) 2012 Timothy Wall, All Rights Reserved -Copyright (c) 2017 Matthias Bläsing, All Rights Reserved -Copyright (c) 2018 Matthias Bläsing -Copyright (c) 2019 Matthias Bläsing, All Rights Reserved -Copyright (c) 2021, Matthias Bläsing, All Rights Reserved -Copyright 2007 Timothy Wall diff --git a/tools/legal-review/engine/net.java.dev.jna.jna-5.12.1/copyright-keep b/tools/legal-review/engine/net.java.dev.jna.jna-5.12.1/copyright-keep deleted file mode 100644 index 470119fd5afa..000000000000 --- a/tools/legal-review/engine/net.java.dev.jna.jna-5.12.1/copyright-keep +++ /dev/null @@ -1,2 +0,0 @@ -Copyright (c) 2007 Timothy Wall, All Rights Reserved -Copyright (c) 2007 Wayne Meissner, All Rights Reserved diff --git a/tools/legal-review/engine/report-state b/tools/legal-review/engine/report-state index f8e55a408a67..5c749e18edd9 100644 --- a/tools/legal-review/engine/report-state +++ b/tools/legal-review/engine/report-state @@ -1,3 +1,3 @@ -2EC74845DF76AC1EDBC66ED2113B7D2ECC5CF538C9F184C51B1A88B14D8DF068 -F04CDFB8554571A3780EC27CB731B273D4A01ACB90610AAF68869FD69C1A428B +E951A62D37778393A6A044EA28424281246EA519B1A997CBA59E9DDBFF3E31C6 +D73D5AB93B21F09A394805E5A456D4EF768C61A7D4DC0E89902B12176D70E767 0 From f443a211f3293b961b80e1ca9fc1c55d120d6a01 Mon Sep 17 00:00:00 2001 From: Dmitry Bushev Date: Mon, 8 Aug 2022 16:28:39 +0300 Subject: [PATCH 09/10] update: plugins --- build.sbt | 2 +- project/plugins.sbt | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index a93b634ee680..4966cd79bc24 100644 --- a/build.sbt +++ b/build.sbt @@ -455,7 +455,7 @@ val flatbuffersVersion = "1.12.0" val guavaVersion = "31.1-jre" val jlineVersion = "3.21.0" val kindProjectorVersion = "0.13.2" -val mockitoScalaVersion = "1.17.7" +val mockitoScalaVersion = "1.17.12" val newtypeVersion = "0.4.4" val pprintVersion = "0.7.3" val pureconfigVersion = "0.17.1" diff --git a/project/plugins.sbt b/project/plugins.sbt index cb30fa2b3e65..6463dc1c4b9e 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,7 +1,7 @@ addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.1.0") -addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.4.11") -addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.1.0") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.8.0") +addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.3") +addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.1") addSbtPlugin("com.typesafe.sbt" % "sbt-license-report" % "1.2.0") addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.7.0") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6") From ed54e65c55deb0f26a652f8dce04c9ed94612a61 Mon Sep 17 00:00:00 2001 From: Dmitry Bushev Date: Mon, 8 Aug 2022 19:33:25 +0300 Subject: [PATCH 10/10] fix: scalaJS --- build.sbt | 4 +- .../project-manager/THIRD-PARTY/NOTICE | 2 +- .../LICENSE | 362 ------------------ .../Mozilla Public License, version 2.0.html | 144 +++++++ .../custom-license | 1 - .../files-ignore | 1 + .../files-keep | 1 - .../files-ignore | 2 +- .../legal-review/project-manager/report-state | 2 +- .../Mozilla_Public_License__version_2.0 | 1 + 10 files changed, 152 insertions(+), 368 deletions(-) delete mode 100644 distribution/project-manager/THIRD-PARTY/com.github.pureconfig.pureconfig_2.13-0.17.1/LICENSE create mode 100644 distribution/project-manager/THIRD-PARTY/licenses/Mozilla Public License, version 2.0.html delete mode 100644 tools/legal-review/project-manager/com.github.pureconfig.pureconfig_2.13-0.17.1/custom-license create mode 100644 tools/legal-review/project-manager/reviewed-licenses/Mozilla_Public_License__version_2.0 diff --git a/build.sbt b/build.sbt index 4966cd79bc24..5ca37076fe38 100644 --- a/build.sbt +++ b/build.sbt @@ -570,7 +570,9 @@ lazy val syntax = crossProject(JVMPlatform, JSPlatform) scalaJSUseMainModuleInitializer := false, scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind.ESModule) }, testFrameworks := List(new TestFramework("org.scalatest.tools.Framework")), - Compile / fullOptJS / artifactPath := file("target/scala-parser.js") + Compile / fullOptJS / artifactPath := file("target/scala-parser.js"), + libraryDependencies += + "org.scala-js" %%% "scalajs-java-securerandom" % "1.0.0" ) lazy val `lexer-bench` = diff --git a/distribution/project-manager/THIRD-PARTY/NOTICE b/distribution/project-manager/THIRD-PARTY/NOTICE index dbe7b0231f26..448851c35cc2 100644 --- a/distribution/project-manager/THIRD-PARTY/NOTICE +++ b/distribution/project-manager/THIRD-PARTY/NOTICE @@ -77,7 +77,7 @@ Copyright notices related to this dependency can be found in the directory `com. 'pureconfig_2.13', licensed under the Mozilla Public License, version 2.0, is distributed with the project-manager. -The license information can be found along with the copyright notices. +The license file can be found at `licenses/Mozilla Public License, version 2.0.html`. Copyright notices related to this dependency can be found in the directory `com.github.pureconfig.pureconfig_2.13-0.17.1`. diff --git a/distribution/project-manager/THIRD-PARTY/com.github.pureconfig.pureconfig_2.13-0.17.1/LICENSE b/distribution/project-manager/THIRD-PARTY/com.github.pureconfig.pureconfig_2.13-0.17.1/LICENSE deleted file mode 100644 index be2cc4dfb609..000000000000 --- a/distribution/project-manager/THIRD-PARTY/com.github.pureconfig.pureconfig_2.13-0.17.1/LICENSE +++ /dev/null @@ -1,362 +0,0 @@ -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. "Contributor" - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. "Contributor Version" - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the terms of - a Secondary License. - -1.6. "Executable Form" - - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - - means a work that combines Covered Software with other material, in a - separate file or files, that is not Covered Software. - -1.8. "License" - - means this document. - -1.9. "Licensable" - - means having the right to grant, to the maximum extent possible, whether - at the time of the initial grant or subsequently, any and all of the - rights conveyed by this License. - -1.10. "Modifications" - - means any of the following: - - a. any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. "Patent Claims" of a Contributor - - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the License, - by the making, using, selling, offering for sale, having made, import, - or transfer of either its Contributions or its Contributor Version. - -1.12. "Secondary License" - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. "Source Code Form" - - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, "control" means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution - become effective for each Contribution on the date the Contributor first - distributes such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under - this License. No additional rights or licenses will be implied from the - distribution or licensing of Covered Software under this License. - Notwithstanding Section 2.1(b) above, no patent license is granted by a - Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of - its Contributions. - - This License does not grant any rights in the trademarks, service marks, - or logos of any Contributor (except as may be necessary to comply with - the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this - License (see Section 10.2) or under the terms of a Secondary License (if - permitted under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its - Contributions are its original creation(s) or it has sufficient rights to - grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under - applicable copyright doctrines of fair use, fair dealing, or other - equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under - the terms of this License. You must inform recipients that the Source - Code Form of the Covered Software is governed by the terms of this - License, and how they can obtain a copy of this License. You may not - attempt to alter or restrict the recipients' rights in the Source Code - Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter the - recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for - the Covered Software. If the Larger Work is a combination of Covered - Software with a work governed by one or more Secondary Licenses, and the - Covered Software is not Incompatible With Secondary Licenses, this - License permits You to additionally distribute such Covered Software - under the terms of such Secondary License(s), so that the recipient of - the Larger Work may, at their option, further distribute the Covered - Software under the terms of either this License or such Secondary - License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices - (including copyright notices, patent notices, disclaimers of warranty, or - limitations of liability) contained within the Source Code Form of the - Covered Software, except that You may alter any license notices to the - extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on - behalf of any Contributor. You must make it absolutely clear that any - such warranty, support, indemnity, or liability obligation is offered by - You alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, - judicial order, or regulation then You must: (a) comply with the terms of - this License to the maximum extent possible; and (b) describe the - limitations and the code they affect. Such description must be placed in a - text file included with all distributions of the Covered Software under - this License. Except to the extent prohibited by statute or regulation, - such description must be sufficiently detailed for a recipient of ordinary - skill to be able to understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing - basis, if such Contributor fails to notify You of the non-compliance by - some reasonable means prior to 60 days after You have come back into - compliance. Moreover, Your grants from a particular Contributor are - reinstated on an ongoing basis if such Contributor notifies You of the - non-compliance by some reasonable means, this is the first time You have - received notice of non-compliance with this License from such - Contributor, and You become compliant prior to 30 days after Your receipt - of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, - counter-claims, and cross-claims) alleging that a Contributor Version - directly or indirectly infringes any patent, then the rights granted to - You by any and all Contributors for the Covered Software under Section - 2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an "as is" basis, - without warranty of any kind, either expressed, implied, or statutory, - including, without limitation, warranties that the Covered Software is free - of defects, merchantable, fit for a particular purpose or non-infringing. - The entire risk as to the quality and performance of the Covered Software - is with You. Should any Covered Software prove defective in any respect, - You (not any Contributor) assume the cost of any necessary servicing, - repair, or correction. This disclaimer of warranty constitutes an essential - part of this License. No use of any Covered Software is authorized under - this License except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from - such party's negligence to the extent applicable law prohibits such - limitation. Some jurisdictions do not allow the exclusion or limitation of - incidental or consequential damages, so this exclusion and limitation may - not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts - of a jurisdiction where the defendant maintains its principal place of - business and such litigation shall be governed by laws of that - jurisdiction, without reference to its conflict-of-law provisions. Nothing - in this Section shall prevent a party's ability to bring cross-claims or - counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. Any law or regulation which provides that - the language of a contract shall be construed against the drafter shall not - be used to construe this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version - of the License under which You originally received the Covered Software, - or under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a - modified version of this License if you rename the license and remove - any references to the name of the license steward (except to note that - such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary - Licenses If You choose to distribute Source Code Form that is - Incompatible With Secondary Licenses under the terms of this version of - the License, the notice described in Exhibit B of this License must be - attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, -then You may include the notice in a location (such as a LICENSE file in a -relevant directory) where a recipient would be likely to look for such a -notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice - - This Source Code Form is "Incompatible - With Secondary Licenses", as defined by - the Mozilla Public License, v. 2.0. diff --git a/distribution/project-manager/THIRD-PARTY/licenses/Mozilla Public License, version 2.0.html b/distribution/project-manager/THIRD-PARTY/licenses/Mozilla Public License, version 2.0.html new file mode 100644 index 000000000000..46d9b144822b --- /dev/null +++ b/distribution/project-manager/THIRD-PARTY/licenses/Mozilla Public License, version 2.0.html @@ -0,0 +1,144 @@ + + + + + + Mozilla Public License, version 2.0 + + + + + + + +

Mozilla Public License
Version 2.0

+

1. Definitions

+
+
1.1. “Contributor”
+

means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software.

+
+
1.2. “Contributor Version”
+

means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor’s Contribution.

+
+
1.3. “Contribution”
+

means Covered Software of a particular Contributor.

+
+
1.4. “Covered Software”
+

means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof.

+
+
1.5. “Incompatible With Secondary Licenses”
+

means

+
    +
  1. that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or

  2. +
  3. that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License.

  4. +
+
+
1.6. “Executable Form”
+

means any form of the work other than Source Code Form.

+
+
1.7. “Larger Work”
+

means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software.

+
+
1.8. “License”
+

means this document.

+
+
1.9. “Licensable”
+

means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License.

+
+
1.10. “Modifications”
+

means any of the following:

+
    +
  1. any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or

  2. +
  3. any new file in Source Code Form that contains any Covered Software.

  4. +
+
+
1.11. “Patent Claims” of a Contributor
+

means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version.

+
+
1.12. “Secondary License”
+

means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses.

+
+
1.13. “Source Code Form”
+

means the form of the work preferred for making modifications.

+
+
1.14. “You” (or “Your”)
+

means an individual or a legal entity exercising rights under this License. For legal entities, “You” includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.

+
+
+

2. License Grants and Conditions

+

2.1. Grants

+

Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license:

+
    +
  1. under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and

  2. +
  3. under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version.

  4. +
+

2.2. Effective Date

+

The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution.

+

2.3. Limitations on Grant Scope

+

The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor:

+
    +
  1. for any code that a Contributor has removed from Covered Software; or

  2. +
  3. for infringements caused by: (i) Your and any other third party’s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or

  4. +
  5. under Patent Claims infringed by Covered Software in the absence of its Contributions.

  6. +
+

This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4).

+

2.4. Subsequent Licenses

+

No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3).

+

2.5. Representation

+

Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License.

+

2.6. Fair Use

+

This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents.

+

2.7. Conditions

+

Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1.

+

3. Responsibilities

+

3.1. Distribution of Source Form

+

All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients’ rights in the Source Code Form.

+

3.2. Distribution of Executable Form

+

If You distribute Covered Software in Executable Form then:

+
    +
  1. such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and

  2. +
  3. You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients’ rights in the Source Code Form under this License.

  4. +
+

3.3. Distribution of a Larger Work

+

You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s).

+

3.4. Notices

+

You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies.

+

3.5. Application of Additional Terms

+

You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction.

+

4. Inability to Comply Due to Statute or Regulation

+

If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.

+

5. Termination

+

5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice.

+

5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate.

+

5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination.

+

6. Disclaimer of Warranty

+

Covered Software is provided under this License on an “as is” basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer.

+

7. Limitation of Liability

+

Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party’s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You.

+

8. Litigation

+

Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party’s ability to bring cross-claims or counter-claims.

+

9. Miscellaneous

+

This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor.

+

10. Versions of the License

+

10.1. New Versions

+

Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number.

+

10.2. Effect of New Versions

+

You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward.

+

10.3. Modified Versions

+

If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License).

+

10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses

+

If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached.

+

Exhibit A - Source Code Form License Notice

+
+

This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.

+
+

If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice.

+

You may add additional accurate notices of copyright ownership.

+

Exhibit B - “Incompatible With Secondary Licenses” Notice

+
+

This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0.

+
+ + \ No newline at end of file diff --git a/tools/legal-review/project-manager/com.github.pureconfig.pureconfig_2.13-0.17.1/custom-license b/tools/legal-review/project-manager/com.github.pureconfig.pureconfig_2.13-0.17.1/custom-license deleted file mode 100644 index 6b1d0bfabc3c..000000000000 --- a/tools/legal-review/project-manager/com.github.pureconfig.pureconfig_2.13-0.17.1/custom-license +++ /dev/null @@ -1 +0,0 @@ -LICENSE diff --git a/tools/legal-review/project-manager/com.github.pureconfig.pureconfig_2.13-0.17.1/files-ignore b/tools/legal-review/project-manager/com.github.pureconfig.pureconfig_2.13-0.17.1/files-ignore index c3349a9e9ede..35fd8ccafa5d 100644 --- a/tools/legal-review/project-manager/com.github.pureconfig.pureconfig_2.13-0.17.1/files-ignore +++ b/tools/legal-review/project-manager/com.github.pureconfig.pureconfig_2.13-0.17.1/files-ignore @@ -1 +1,2 @@ #license +/pureconfig/pureconfig/blob/master/LICENSE diff --git a/tools/legal-review/project-manager/com.github.pureconfig.pureconfig_2.13-0.17.1/files-keep b/tools/legal-review/project-manager/com.github.pureconfig.pureconfig_2.13-0.17.1/files-keep index 10ab619d327f..2a3ff4cb8497 100644 --- a/tools/legal-review/project-manager/com.github.pureconfig.pureconfig_2.13-0.17.1/files-keep +++ b/tools/legal-review/project-manager/com.github.pureconfig.pureconfig_2.13-0.17.1/files-keep @@ -1,2 +1 @@ /pureconfig/pureconfig/blob/master/AUTHORS -/pureconfig/pureconfig/blob/master/LICENSE diff --git a/tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.2/files-ignore b/tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.2/files-ignore index d1a0a26cf4e2..bf0ff5134173 100644 --- a/tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.2/files-ignore +++ b/tools/legal-review/project-manager/io.circe.circe-parser_2.13-0.14.2/files-ignore @@ -1,2 +1,2 @@ -#license /circe/circe/blob/main/LICENSE +#license diff --git a/tools/legal-review/project-manager/report-state b/tools/legal-review/project-manager/report-state index 65f96b6a4ee9..e1f5f17899ab 100644 --- a/tools/legal-review/project-manager/report-state +++ b/tools/legal-review/project-manager/report-state @@ -1,3 +1,3 @@ 27E62459A95B059D0BA10416285FF20C38FEB28E12343177457C5A7912BB22CD -721D5B4932A40AAB51DFDEA16A4BA4A96B98B356E90DDE8B7056E89B1884616C +335F824601067BC288173D6B1966D50F544270CC023625A27C103BB1ABBFAAB9 0 diff --git a/tools/legal-review/project-manager/reviewed-licenses/Mozilla_Public_License__version_2.0 b/tools/legal-review/project-manager/reviewed-licenses/Mozilla_Public_License__version_2.0 new file mode 100644 index 000000000000..86da46023cc4 --- /dev/null +++ b/tools/legal-review/project-manager/reviewed-licenses/Mozilla_Public_License__version_2.0 @@ -0,0 +1 @@ +tools/legal-review/license-texts/Mozilla Public License, version 2.0.html