diff --git a/CHANGELOG.md b/CHANGELOG.md index ba4c6b150688..e3bbf74f6c57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -302,6 +302,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] - [Support importing module methods][3633] [3227]: https://github.com/enso-org/enso/pull/3227 @@ -339,6 +340,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 [3633]: https://github.com/enso-org/enso/pull/3633 # Enso 2.0.0-alpha.18 (2021-10-12) diff --git a/build.sbt b/build.sbt index 5bb3fb90a24c..5ca37076fe38 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,10 +364,10 @@ 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" +val circeGenericExtrasVersion = "0.14.2" val circe = Seq("circe-core", "circe-generic", "circe-parser") .map("io.circe" %% _ % circeVersion) @@ -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,30 @@ val zio = Seq( val bcpkixJdk15Version = "1.70" val bumpVersion = "0.1.3" -val declineVersion = "2.2.0" +val declineVersion = "2.3.0" val directoryWatcherVersion = "0.9.10" 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.12" 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" +val netbeansApiVersion = "RELEASE140" // ============================================================================ // === Internal Libraries ===================================================== @@ -494,7 +495,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, @@ -569,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` = @@ -659,9 +662,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( @@ -707,15 +710,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 +985,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" % netbeansApiVersion, "com.google.guava" % "guava" % guavaVersion exclude ("com.google.code.findbugs", "jsr305") ) ) @@ -1249,8 +1251,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 +1758,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 +1785,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 +1833,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.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", + "com.amazonaws" % "aws-java-sdk-sts" % "1.12.273" ), Compile / packageBin := Def.task { val result = (Compile / packageBin).value diff --git a/distribution/engine/THIRD-PARTY/NOTICE b/distribution/engine/THIRD-PARTY/NOTICE index 4ec137907679..93c87fa701ff 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`. +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.0`. - - -'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. @@ -286,9 +276,9 @@ 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.9.0`. 'bump_2.13', licensed under the MIT, is distributed with the engine. @@ -307,8 +297,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 +321,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 +356,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 +382,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 +392,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 +403,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/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 index a68d29f673f8..78c5fad1acfc 100644 --- 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 @@ -1,17 +1 @@ -/* - * 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. - */ +Copyright (C) 2014-2016 Markus Junginger, greenrobot (http://greenrobot.org) 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..448851c35cc2 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. @@ -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`. @@ -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.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/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/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/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/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" } 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/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") 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. 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 8118ede68015..000000000000 Binary files a/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.1/copyright-ignore and /dev/null differ 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 000000000000..9ae07934a4d0 Binary files /dev/null and b/tools/legal-review/Database/com.amazon.redshift.redshift-jdbc42-2.1.0.9/copyright-ignore differ 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 e06ee8d165a1..000000000000 Binary files a/tools/legal-review/Image/org.openpnp.opencv-4.5.1-0/copyright-ignore and /dev/null differ 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 000000000000..4a4a3b859d0b Binary files /dev/null and b/tools/legal-review/Image/org.openpnp.opencv-4.5.1-2/copyright-ignore differ 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 392786a0cb38..000000000000 Binary files a/tools/legal-review/Table/org.apache.pdfbox.pdfbox-2.0.22/copyright-ignore and /dev/null differ diff --git a/tools/legal-review/Table/org.apache.pdfbox.pdfbox-2.0.22/copyright-keep b/tools/legal-review/Table/org.apache.pdfbox.pdfbox-2.0.22/copyright-keep deleted file mode 100644 index 7700b47219c3..000000000000 --- a/tools/legal-review/Table/org.apache.pdfbox.pdfbox-2.0.22/copyright-keep +++ /dev/null @@ -1,21 +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, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. -Comment Copyright (c) 1989, 1990, 1991, 1992, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. -Copyright (c) 1991-2015 Unicode, Inc. -Copyright (c) 2007-2010, basICColor GmbH -Copyright (c) 2012, Harald Kuhr -Copyright (c) 2013, Harald Kuhr -Copyright 2014 The Apache Software Foundation. -Copyright 2017 The Apache Software Foundation. -Copyright 2016 The Apache Software Foundation. -Copyright 2015 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/tools/legal-review/Table/org.apache.pdfbox.pdfbox-2.0.22/files-keep b/tools/legal-review/Table/org.apache.pdfbox.pdfbox-2.0.22/files-keep deleted file mode 100644 index 32cb3cdcef69..000000000000 --- a/tools/legal-review/Table/org.apache.pdfbox.pdfbox-2.0.22/files-keep +++ /dev/null @@ -1,2 +0,0 @@ -META-INF/LICENSE -META-INF/NOTICE diff --git a/tools/legal-review/Table/org.apache.poi.poi-5.0.0/copyright-keep b/tools/legal-review/Table/org.apache.poi.poi-5.0.0/copyright-keep deleted file mode 100644 index 4e2345449827..000000000000 --- a/tools/legal-review/Table/org.apache.poi.poi-5.0.0/copyright-keep +++ /dev/null @@ -1 +0,0 @@ -Copyright (C) 2008-2014 FedICT. diff --git a/tools/legal-review/Table/org.apache.poi.poi-5.0.0/copyright-ignore b/tools/legal-review/Table/org.apache.poi.poi-5.2.2/copyright-ignore similarity index 61% rename from tools/legal-review/Table/org.apache.poi.poi-5.0.0/copyright-ignore rename to tools/legal-review/Table/org.apache.poi.poi-5.2.2/copyright-ignore index 16a118ed02eb..76623b060928 100644 --- a/tools/legal-review/Table/org.apache.poi.poi-5.0.0/copyright-ignore +++ b/tools/legal-review/Table/org.apache.poi.poi-5.2.2/copyright-ignore @@ -1,5 +1,8 @@ 169, // 0xf0d3 copyrightserif 169, // 0xf0e3 copyrightsans +[1] http://www.w3.org/Consortium/Legal/copyright-software-19980720 contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. this work for additional information regarding copyright ownership. this work for additional information regarding copyright ownership. +this work for additional information regarding copyright ownership. +without specific, written prior permission. Title to copyright in the diff --git a/tools/legal-review/Table/org.apache.poi.poi-5.2.2/copyright-keep b/tools/legal-review/Table/org.apache.poi.poi-5.2.2/copyright-keep new file mode 100644 index 000000000000..055f58f81f11 --- /dev/null +++ b/tools/legal-review/Table/org.apache.poi.poi-5.2.2/copyright-keep @@ -0,0 +1,5 @@ +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/tools/legal-review/Table/org.codehaus.woodstox.stax2-api-4.2/custom-license b/tools/legal-review/Table/org.apache.poi.poi-5.2.2/custom-license similarity index 100% rename from tools/legal-review/Table/org.codehaus.woodstox.stax2-api-4.2/custom-license rename to tools/legal-review/Table/org.apache.poi.poi-5.2.2/custom-license diff --git a/tools/legal-review/Table/org.apache.poi.poi-5.2.2/files-ignore b/tools/legal-review/Table/org.apache.poi.poi-5.2.2/files-ignore new file mode 100644 index 000000000000..67ae779bbb6b --- /dev/null +++ b/tools/legal-review/Table/org.apache.poi.poi-5.2.2/files-ignore @@ -0,0 +1,15 @@ +org/apache/poi/schemas/ooxml/type/http_3A_2F_2Furi_2Eetsi_2Eorg_2F01903_2Fv1_2E3_2E2_23/NoticeReferenceType.xsb +org/apache/poi/schemas/ooxml/type/http_3A_2F_2Furi_2Eetsi_2Eorg_2F01903_2Fv1_2E3_2E2_23/SPUserNoticeType.xsb +org/apache/poi/schemas/ooxml/type/URI_SHA_1_640FACC0F3ED2458258952465E2A4DCFAE01C1D6/CT_5FAuthors.xsb +org/apache/poi/schemas/ooxml/javaname/org/openxmlformats/schemas/spreadsheetml/x2006/main/CTAuthors.xsb +org/apache/poi/schemas/ooxml/javaname/org/etsi/uri/x01903/v13/SPUserNoticeDocument.xsb +org/apache/poi/schemas/ooxml/javaname/org/etsi/uri/x01903/v13/NoticeReferenceType.xsb +org/apache/poi/schemas/ooxml/javaname/org/etsi/uri/x01903/v13/SPUserNoticeType.xsb +org/apache/poi/schemas/ooxml/element/http_3A_2F_2Furi_2Eetsi_2Eorg_2F01903_2Fv1_2E3_2E2_23/SPUserNotice.xsb +org/apache/poi/schemas/ooxml/system/ooxml/spusernotice0ee4doctype.xsb +org/apache/poi/schemas/ooxml/system/ooxml/spusernoticeelement.xsb +org/apache/poi/schemas/ooxml/system/ooxml/noticereferencetype286ftype.xsb +org/apache/poi/schemas/ooxml/system/ooxml/ctauthorsb8a7type.xsb +org/apache/poi/schemas/ooxml/system/ooxml/spusernoticetypefd2etype.xsb +META-INF/NOTICE +META-INF/LICENSE diff --git a/tools/legal-review/Table/org.apache.poi.poi-5.0.0/files-keep b/tools/legal-review/Table/org.apache.poi.poi-5.2.2/files-keep similarity index 100% rename from tools/legal-review/Table/org.apache.poi.poi-5.0.0/files-keep rename to tools/legal-review/Table/org.apache.poi.poi-5.2.2/files-keep diff --git a/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.0.0/copyright-keep b/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.0.0/copyright-keep deleted file mode 100644 index 4e2345449827..000000000000 --- a/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.0.0/copyright-keep +++ /dev/null @@ -1 +0,0 @@ -Copyright (C) 2008-2014 FedICT. diff --git a/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.0.0/files-keep b/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.0.0/files-keep deleted file mode 100644 index 32cb3cdcef69..000000000000 --- a/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.0.0/files-keep +++ /dev/null @@ -1,2 +0,0 @@ -META-INF/LICENSE -META-INF/NOTICE diff --git a/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.2.2/copyright-ignore b/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.2.2/copyright-ignore new file mode 100644 index 000000000000..bc0ffb47e51a --- /dev/null +++ b/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.2.2/copyright-ignore @@ -0,0 +1,5 @@ +Copyright (c) Microsoft Corporation. All rights reserved. Permission to copy, +[1] http://www.w3.org/Consortium/Legal/copyright-software-19980720 +this work for additional information regarding copyright ownership. +this work for additional information regarding copyright ownership. +without specific, written prior permission. Title to copyright in the diff --git a/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.2.2/copyright-keep b/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.2.2/copyright-keep new file mode 100644 index 000000000000..76bbc64ca7c6 --- /dev/null +++ b/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.2.2/copyright-keep @@ -0,0 +1,4 @@ +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/tools/legal-review/Table/xml-apis.xml-apis-1.4.01/custom-license b/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.2.2/custom-license similarity index 100% rename from tools/legal-review/Table/xml-apis.xml-apis-1.4.01/custom-license rename to tools/legal-review/Table/org.apache.poi.poi-ooxml-5.2.2/custom-license diff --git a/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.2.2/files-ignore b/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.2.2/files-ignore new file mode 100644 index 000000000000..f4df5504ab52 --- /dev/null +++ b/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.2.2/files-ignore @@ -0,0 +1,14 @@ +org/apache/poi/schemas/ooxml/type/http_3A_2F_2Furi_2Eetsi_2Eorg_2F01903_2Fv1_2E3_2E2_23/NoticeReferenceType.xsb +org/apache/poi/schemas/ooxml/type/http_3A_2F_2Furi_2Eetsi_2Eorg_2F01903_2Fv1_2E3_2E2_23/SPUserNoticeType.xsb +org/apache/poi/schemas/ooxml/type/URI_SHA_1_640FACC0F3ED2458258952465E2A4DCFAE01C1D6/CT_5FAuthors.xsb +org/apache/poi/schemas/ooxml/javaname/org/openxmlformats/schemas/spreadsheetml/x2006/main/CTAuthors.xsb +org/apache/poi/schemas/ooxml/javaname/org/etsi/uri/x01903/v13/SPUserNoticeDocument.xsb +org/apache/poi/schemas/ooxml/javaname/org/etsi/uri/x01903/v13/NoticeReferenceType.xsb +org/apache/poi/schemas/ooxml/javaname/org/etsi/uri/x01903/v13/SPUserNoticeType.xsb +org/apache/poi/schemas/ooxml/element/http_3A_2F_2Furi_2Eetsi_2Eorg_2F01903_2Fv1_2E3_2E2_23/SPUserNotice.xsb +org/apache/poi/schemas/ooxml/system/ooxml/spusernotice0ee4doctype.xsb +org/apache/poi/schemas/ooxml/system/ooxml/spusernoticeelement.xsb +org/apache/poi/schemas/ooxml/system/ooxml/noticereferencetype286ftype.xsb +org/apache/poi/schemas/ooxml/system/ooxml/ctauthorsb8a7type.xsb +org/apache/poi/schemas/ooxml/system/ooxml/spusernoticetypefd2etype.xsb +META-INF/NOTICE diff --git a/tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-RELEASE130/files-ignore b/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.2.2/files-keep similarity index 100% rename from tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-RELEASE130/files-ignore rename to tools/legal-review/Table/org.apache.poi.poi-ooxml-5.2.2/files-keep index 758d9ff7c0c7..8cffdc007553 100644 --- a/tools/legal-review/engine/org.netbeans.api.org-netbeans-api-progress-RELEASE130/files-ignore +++ b/tools/legal-review/Table/org.apache.poi.poi-ooxml-5.2.2/files-keep @@ -1,3 +1,3 @@ -META-INF/LICENSE META-INF/NOTICE META-INF/LICENSE +META-INF/LICENSE diff --git a/tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.0.0/copyright-add b/tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.0.0/copyright-add deleted file mode 100644 index 99dbc242940e..000000000000 --- a/tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.0.0/copyright-add +++ /dev/null @@ -1 +0,0 @@ -See org.apache.poi.poi-ooxml-5.0.0 diff --git a/tools/legal-review/Table/org.apache.santuario.xmlsec-2.2.1/copyright-ignore b/tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.2.2/copyright-ignore similarity index 65% rename from tools/legal-review/Table/org.apache.santuario.xmlsec-2.2.1/copyright-ignore rename to tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.2.2/copyright-ignore index 8f0bc9a153b0..59bb82fd0cc7 100644 --- a/tools/legal-review/Table/org.apache.santuario.xmlsec-2.2.1/copyright-ignore +++ b/tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.2.2/copyright-ignore @@ -1,3 +1,3 @@ [1] http://www.w3.org/Consortium/Legal/copyright-software-19980720 -regarding copyright ownership. The ASF licenses this file this work for additional information regarding copyright ownership. +without specific, written prior permission. Title to copyright in the diff --git a/tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.2.2/copyright-keep b/tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.2.2/copyright-keep new file mode 100644 index 000000000000..d8a47566d26a --- /dev/null +++ b/tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.2.2/copyright-keep @@ -0,0 +1,4 @@ +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/tools/legal-review/engine/com.lihaoyi.fansi_2.13-0.3.0/custom-license b/tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.2.2/custom-license similarity index 100% rename from tools/legal-review/engine/com.lihaoyi.fansi_2.13-0.3.0/custom-license rename to tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.2.2/custom-license diff --git a/tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.2.2/files-ignore b/tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.2.2/files-ignore new file mode 100644 index 000000000000..8f942e1e3eab --- /dev/null +++ b/tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.2.2/files-ignore @@ -0,0 +1,13 @@ +org/apache/poi/schemas/ooxml/type/http_3A_2F_2Furi_2Eetsi_2Eorg_2F01903_2Fv1_2E3_2E2_23/NoticeReferenceType.xsb +org/apache/poi/schemas/ooxml/type/http_3A_2F_2Furi_2Eetsi_2Eorg_2F01903_2Fv1_2E3_2E2_23/SPUserNoticeType.xsb +org/apache/poi/schemas/ooxml/type/URI_SHA_1_640FACC0F3ED2458258952465E2A4DCFAE01C1D6/CT_5FAuthors.xsb +org/apache/poi/schemas/ooxml/javaname/org/openxmlformats/schemas/spreadsheetml/x2006/main/CTAuthors.xsb +org/apache/poi/schemas/ooxml/javaname/org/etsi/uri/x01903/v13/SPUserNoticeDocument.xsb +org/apache/poi/schemas/ooxml/javaname/org/etsi/uri/x01903/v13/NoticeReferenceType.xsb +org/apache/poi/schemas/ooxml/javaname/org/etsi/uri/x01903/v13/SPUserNoticeType.xsb +org/apache/poi/schemas/ooxml/element/http_3A_2F_2Furi_2Eetsi_2Eorg_2F01903_2Fv1_2E3_2E2_23/SPUserNotice.xsb +org/apache/poi/schemas/ooxml/system/ooxml/spusernotice0ee4doctype.xsb +org/apache/poi/schemas/ooxml/system/ooxml/spusernoticeelement.xsb +org/apache/poi/schemas/ooxml/system/ooxml/noticereferencetype286ftype.xsb +org/apache/poi/schemas/ooxml/system/ooxml/ctauthorsb8a7type.xsb +org/apache/poi/schemas/ooxml/system/ooxml/spusernoticetypefd2etype.xsb diff --git a/tools/legal-review/engine/org.apache.tika.tika-core-2.2.1/files-keep b/tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.2.2/files-keep similarity index 100% rename from tools/legal-review/engine/org.apache.tika.tika-core-2.2.1/files-keep rename to tools/legal-review/Table/org.apache.poi.poi-ooxml-lite-5.2.2/files-keep diff --git a/tools/legal-review/Table/org.apache.santuario.xmlsec-2.2.1/copyright-keep b/tools/legal-review/Table/org.apache.santuario.xmlsec-2.2.1/copyright-keep deleted file mode 100644 index 5ffe5101d216..000000000000 --- a/tools/legal-review/Table/org.apache.santuario.xmlsec-2.2.1/copyright-keep +++ /dev/null @@ -1,7 +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/tools/legal-review/Table/org.apache.xmlbeans.xmlbeans-5.0.1/files-ignore b/tools/legal-review/Table/org.apache.xmlbeans.xmlbeans-5.0.1/files-ignore deleted file mode 100644 index 35252fda76e8..000000000000 --- a/tools/legal-review/Table/org.apache.xmlbeans.xmlbeans-5.0.1/files-ignore +++ /dev/null @@ -1 +0,0 @@ -LICENSE.txt diff --git a/tools/legal-review/Table/org.apache.xmlbeans.xmlbeans-5.0.1/files-keep b/tools/legal-review/Table/org.apache.xmlbeans.xmlbeans-5.0.1/files-keep deleted file mode 100644 index d89f79f6214b..000000000000 --- a/tools/legal-review/Table/org.apache.xmlbeans.xmlbeans-5.0.1/files-keep +++ /dev/null @@ -1 +0,0 @@ -NOTICE.txt diff --git a/tools/legal-review/Table/org.apache.xmlbeans.xmlbeans-5.0.1/copyright-keep b/tools/legal-review/Table/org.apache.xmlbeans.xmlbeans-5.1.0/copyright-ignore similarity index 100% rename from tools/legal-review/Table/org.apache.xmlbeans.xmlbeans-5.0.1/copyright-keep rename to tools/legal-review/Table/org.apache.xmlbeans.xmlbeans-5.1.0/copyright-ignore diff --git a/tools/legal-review/Table/org.apache.xmlgraphics.batik-constants-1.13/copyright-ignore b/tools/legal-review/Table/org.apache.xmlbeans.xmlbeans-5.1.0/copyright-keep similarity index 57% rename from tools/legal-review/Table/org.apache.xmlgraphics.batik-constants-1.13/copyright-ignore rename to tools/legal-review/Table/org.apache.xmlbeans.xmlbeans-5.1.0/copyright-keep index 8cd8d66408c4..d8810f827eaf 100644 --- a/tools/legal-review/Table/org.apache.xmlgraphics.batik-constants-1.13/copyright-ignore +++ b/tools/legal-review/Table/org.apache.xmlbeans.xmlbeans-5.1.0/copyright-keep @@ -1 +1,2 @@ +