diff --git a/.github/workflows/legal-review.yml b/.github/workflows/legal-review.yml new file mode 100644 index 0000000000..2534f668da --- /dev/null +++ b/.github/workflows/legal-review.yml @@ -0,0 +1,89 @@ +name: Legal Review + +on: + push: + branches: [main, "release/*"] + pull_request: + branches: ["*"] + +env: + # Please ensure that this is in sync with graalVersion in build.sbt + graalVersion: 20.2.0 + # Please ensure that this is in sync with javaVersion in build.sbt + javaVersion: 11 + # Please ensure that this is in sync with project/build.properties + sbtVersion: 1.3.13 + # Please ensure that this is in sync with rustVersion in build.sbt + rustToolchain: nightly-2019-11-04 + excludedPaths: | + .github/PULL_REQUEST_TEMPLATE.md + .github/CODEOWNERS + .github/ISSUE_TEMPLATE/* + /doc/* + .gitignore + .scalafmt.conf + CODE_OF_CONDUCT.md + CONTRIBUTING.md + LICENSE + README.md + +jobs: + verify-review: + name: Verify Notice Package + runs-on: ubuntu-latest + timeout-minutes: 45 + strategy: + fail-fast: false + steps: + - uses: actions/checkout@v2 + - name: Disable TCP/UDP Offloading (macOS) + if: runner.os == 'macOS' + shell: bash + run: | + sudo sysctl -w net.link.generic.system.hwcksum_tx=0 + sudo sysctl -w net.link.generic.system.hwcksum_rx=0 + - name: Disable TCP/UDP Offloading (Linux) + if: runner.os == 'Linux' + shell: bash + run: sudo ethtool -K eth0 tx off rx off + - name: Disable TCP/UDP Offloading (Windows) + if: runner.os == 'Windows' + shell: powershell + run: > + Disable-NetAdapterChecksumOffload -Name * -TcpIPv4 -UdpIPv4 -TcpIPv6 + -UdpIPv6 + # TODO [RW] Rust will be needed by #1187 + # - name: Install Rust + # uses: actions-rs/toolchain@v1 + # with: + # toolchain: ${{ env.rustToolchain }} + # override: true + + - name: Setup GraalVM Environment + uses: ayltai/setup-graalvm@v1 + with: + graalvm-version: ${{ env.graalVersion }} + java-version: ${{ env.javaVersion }} + native-image: true + - name: Set Up SBT + run: | + curl --retry 4 --retry-connrefused -fsSL -o sbt.tgz https://github.com/sbt/sbt/releases/download/v${{env.sbtVersion}}/sbt-${{env.sbtVersion}}.tgz + tar -xzf sbt.tgz + echo ::add-path::$GITHUB_WORKSPACE/sbt/bin/ + + # Caches + - name: Cache SBT + uses: actions/cache@v2 + with: + path: | + ~/.sbt + ~/.ivy2/cache + ~/.cache + key: ${{ runner.os }}-sbt-${{ hashFiles('**build.sbt') }} + restore-keys: ${{ runner.os }}-sbt- + + # Verify + - name: Verify Packages + run: | + sleep 1 + sbt --no-colors verifyLicensePackages diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b925dfd029..af5754099d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -91,7 +91,7 @@ jobs: key: ${{ runner.os }}-sbt-${{ hashFiles('**build.sbt') }} restore-keys: ${{ runner.os }}-sbt- - # Build Artifacts + # Bootstrap - name: Enable Release Mode run: echo ::set-env name=ENSO_RELEASE_MODE::true - name: Bootstrap the Project @@ -99,6 +99,16 @@ jobs: run: | sleep 1 sbt --no-colors bootstrap + + # Verify Legal Review + - name: Verify Packages + if: runner.os != 'Windows' # TODO [RW] CRLF handling in licenses task + working-directory: repo + run: | + sleep 1 + sbt --no-colors verifyLicensePackages + + # Build Artifacts - name: Build the Runtime Uberjar working-directory: repo run: | @@ -171,8 +181,7 @@ jobs: mkdir ${{ env.LAUNCHER_DIST_DIR }}/runtime cp distribution/launcher/.enso.portable ${{ env.LAUNCHER_DIST_DIR }} cp distribution/launcher/README.md ${{ env.LAUNCHER_DIST_DIR }} - cp distribution/launcher/NOTICE ${{ env.LAUNCHER_DIST_DIR }} - cp -r distribution/launcher/components-licences ${{ env.LAUNCHER_DIST_DIR }} + cp -r distribution/launcher/THIRD-PARTY ${{ env.LAUNCHER_DIST_DIR }} - name: Prepare Launcher Distribution (Unix) working-directory: repo @@ -189,6 +198,7 @@ jobs: cp enso.exe ${{ env.LAUNCHER_DIST_DIR }}/bin/ - name: Build Base Java Extensions + working-directory: repo shell: bash run: | sleep 1 @@ -213,6 +223,7 @@ jobs: mv project-manager.jar $ENGINE_DIST_DIR/component cp -r distribution/std-lib $ENGINE_DIST_DIR/std-lib cp -r distribution/bin $ENGINE_DIST_DIR/bin + cp -r distribution/engine/THIRD-PARTY $ENGINE_DIST_DIR/THIRD-PARTY cp manifest.yaml $ENGINE_DIST_DIR # Ensure that the versions encoded in the binary and in the release match diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml index f22243e40c..8435f02432 100644 --- a/.github/workflows/scala.yml +++ b/.github/workflows/scala.yml @@ -209,8 +209,7 @@ jobs: mkdir ${{ env.LAUNCHER_DIST_DIR }}/runtime cp distribution/launcher/.enso.portable ${{ env.LAUNCHER_DIST_DIR }} cp distribution/launcher/README.md ${{ env.LAUNCHER_DIST_DIR }} - cp distribution/launcher/NOTICE ${{ env.LAUNCHER_DIST_DIR }} - cp -r distribution/launcher/components-licences ${{ env.LAUNCHER_DIST_DIR }} + cp -r distribution/launcher/THIRD-PARTY ${{ env.LAUNCHER_DIST_DIR }} - name: Prepare Launcher Distribution (Unix) if: runner.os != 'Windows' @@ -242,6 +241,7 @@ jobs: mv project-manager.jar $ENGINE_DIST_DIR/component cp -r distribution/std-lib $ENGINE_DIST_DIR/std-lib cp -r distribution/bin $ENGINE_DIST_DIR/bin + cp -r distribution/engine/THIRD-PARTY $ENGINE_DIST_DIR/THIRD-PARTY cp manifest.yaml $ENGINE_DIST_DIR # Test Distribution diff --git a/build.sbt b/build.sbt index cd660c065f..05a23a5e6e 100644 --- a/build.sbt +++ b/build.sbt @@ -31,6 +31,12 @@ scalaVersion in ThisBuild := scalacVersion lazy val gatherLicenses = taskKey[Unit]("Gathers licensing information for relevant dependencies") gatherLicenses := GatherLicenses.run.value +lazy val verifyLicensePackages = + taskKey[Unit]( + "Verifies if the license package has been generated, " + + "has no warnings and is up-to-date with dependencies." + ) +verifyLicensePackages := GatherLicenses.verifyReports.value GatherLicenses.distributions := Seq( Distribution( "launcher", @@ -66,6 +72,9 @@ openLegalReviewReport := { GatherLicenses.runReportServer() } +lazy val analyzeDependency = inputKey[Unit]("...") +analyzeDependency := GatherLicenses.analyzeDependency.evaluated + Global / onChangedBuildSource := ReloadOnSourceChanges // ============================================================================ @@ -382,7 +391,7 @@ lazy val flexer = crossProject(JVMPlatform, JSPlatform) version := "0.1", resolvers += Resolver.sonatypeRepo("releases"), libraryDependencies ++= scalaCompiler ++ Seq( - "com.google.guava" % "guava" % guavaVersion, + "com.google.guava" % "guava" % guavaVersion exclude ("com.google.code.findbugs", "jsr305"), "org.typelevel" %%% "cats-core" % catsVersion, "org.typelevel" %%% "kittens" % kittensVersion ) @@ -757,7 +766,7 @@ lazy val searcher = project lazy val `interpreter-dsl` = (project in file("lib/scala/interpreter-dsl")) .settings( version := "0.1", - libraryDependencies += "com.google.auto.service" % "auto-service" % "1.0-rc7" + libraryDependencies += "com.google.auto.service" % "auto-service" % "1.0-rc7" exclude ("com.google.code.findbugs", "jsr305") ) // ============================================================================ @@ -942,7 +951,7 @@ lazy val runtime = (project in file("engine/runtime")) .value ) .settings( - (Test / compile) := (Test / compile) + (Runtime / compile) := (Runtime / compile) .dependsOn(`std-bits` / Compile / packageBin) .value ) @@ -982,7 +991,7 @@ lazy val runtime = (project in file("engine/runtime")) .dependsOn(`polyglot-api`) .dependsOn(`text-buffer`) .dependsOn(searcher) - .dependsOn(testkit) + .dependsOn(testkit % Test) /* Note [Unmanaged Classpath] * ~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/distribution/engine/THIRD-PARTY/NOTICE b/distribution/engine/THIRD-PARTY/NOTICE new file mode 100644 index 0000000000..bf07405c67 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/NOTICE @@ -0,0 +1,492 @@ +Enso +Copyright 2020 New Byte Order sp. z o. o. + +'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`. + + +'pureconfig-core_2.13', licensed under the Mozilla Public 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 `com.github.pureconfig.pureconfig-core_2.13-0.13.0`. + + +'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.1`. + + +'zio-interop-cats_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 `dev.zio.zio-interop-cats_2.13-2.1.4.0`. + + +'checker-qual', licensed under the The MIT License, 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.checkerframework.checker-qual-2.11.1`. + + +'newtype_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 `io.estatico.newtype_2.13-0.4.4`. + + +'paranamer', licensed under the BSD, 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.thoughtworks.paranamer.paranamer-2.8`. + + +'izumi-reflect_2.13', licensed under the BSD-style, 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 `dev.zio.izumi-reflect_2.13-1.0.0-M5`. + + +'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.11.1`. + + +'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.3`. + + +'jline', licensed under the The BSD License, 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.jline.jline-3.15.0`. + + +'sqlite-jdbc', licensed under the The Apache Software 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.xerial.sqlite-jdbc-3.31.1`. + + +'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.3`. + + +'auto-service', 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.auto.service.auto-service-1.0-rc7`. + + +'commons-lang3', 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.commons.commons-lang3-3.10`. + + +'geny_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.geny_2.13-0.6.0`. + + +'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.6`. + + +'enumeratum-macros_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.beachape.enumeratum-macros_2.13-1.6.1`. + + +'auto-common', 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.auto.auto-common-0.10`. + + +'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.13.0`. + + +'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.2.9`. + + +'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.6`. + + +'pureconfig-generic-base_2.13', licensed under the Mozilla Public 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 `com.github.pureconfig.pureconfig-generic-base_2.13-0.13.0`. + + +'commons-io', 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 `commons-io.commons-io-2.7`. + + +'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.11.1`. + + +'config', 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.typesafe.config-1.3.2`. + + +'zio_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 `dev.zio.zio_2.13-1.0.1`. + + +'snakeyaml', 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 `org.yaml.snakeyaml-1.26`. + + +'slick_2.13', licensed under the Two-clause BSD-style license, 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.slick.slick_2.13-3.3.2`. + + +'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.4.0-M1`. + + +'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.0-M1`. + + +'bcpkix-jdk15on', licensed under the Bouncy Castle Licence, is distributed with the engine. +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.65`. + + +'jackson-module-paranamer', 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-paranamer-2.11.1`. + + +'jna', licensed under the Apache License v2.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.5.0`. + + +'kittens_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 `org.typelevel.kittens_2.13-2.1.0`. + + +'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.3.4`. + + +'reactive-streams', licensed under the CC0, is distributed with the engine. +The license file can be found at `licenses/CC0`. +Copyright notices related to this dependency can be found in the directory `org.reactivestreams.reactive-streams-1.0.2`. + + +'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-29.0-jre`. + + +'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.6`. + + +'pureconfig-generic_2.13', licensed under the Mozilla Public 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 `com.github.pureconfig.pureconfig-generic_2.13-0.13.0`. + + +'cats-free_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-free_2.13-2.1.1`. + + +'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.0-RC1`. + + +'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.0-RC1`. + + +'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.0.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.0`. + + +'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.0-M1`. + + +'directory-watcher', licensed under the Apache-2.0, is distributed with the engine. +The license file can be found at `licenses/APACHE2.0`. +Copyright notices related to this dependency can be found in the directory `io.methvin.directory-watcher-0.9.10`. + + +'listenablefuture', 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.google.guava.listenablefuture-9999.0-empty-to-avoid-conflict-with-guava`. + + +'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.0-RC1`. + + +'izumi-reflect-thirdparty-boopickle-shaded_2.13', licensed under the BSD-style, 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 `dev.zio.izumi-reflect-thirdparty-boopickle-shaded_2.13-1.0.0-M5`. + + +'auto-service-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.auto.service.auto-service-annotations-1.0-rc7`. + + +'logback-classic', licensed under the GNU Lesser General Public License, 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 `ch.qos.logback.logback-classic-1.2.3`. + + +'scala-collection-compat_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-collection-compat_2.13-2.0.0`. + + +'scala-logging_2.13', licensed under the Apache 2.0 License, 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.scala-logging.scala-logging_2.13-3.9.2`. + + +'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.25`. + + +'commons-cli', 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 `commons-cli.commons-cli-1.4`. + + +'jna', licensed under the Apache License v2.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.3.1`. + + +'spray-json_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 `io.spray.spray-json_2.13-1.3.5`. + + +'scala-java8-compat_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-java8-compat_2.13-0.9.0`. + + +'zio-stacktracer_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 `dev.zio.zio-stacktracer_2.13-1.0.1`. + + +'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.2.0-M3`. + + +'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.30`. + + +'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-1.2.0`. + + +'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.6`. + + +'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.11.1`. + + +'bump_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 `nl.gn0s1s.bump_2.13-0.1.3`. + + +'alleycats-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.alleycats-core_2.13-2.1.1`. + + +'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.11.1`. + + +'monocle-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 `com.github.julien-truffaut.monocle-core_2.13-2.0.5`. + + +'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.0-M1`. + + +'bcprov-jdk15on', licensed under the Bouncy Castle Licence, is distributed with the engine. +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.65`. + + +'pureconfig-macros_2.13', licensed under the Mozilla Public 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 `com.github.pureconfig.pureconfig-macros_2.13-0.13.0`. + + +'circe-yaml_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 `io.circe.circe-yaml_2.13-0.13.1`. + + +'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.0-M1`. + + +'flatbuffers-java', licensed under the Apache License V2.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.flatbuffers.flatbuffers-java-1.12.0`. + + +'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.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.11.1`. + + +'failureaccess', 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.google.guava.failureaccess-1.0.1`. + + +'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.0-M1`. + + +'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.1`. + + +'cats-macros_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-macros_2.13-2.1.1`. + + +'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.5.9`. + + +'j2objc-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.google.j2objc.j2objc-annotations-1.3`. + + +'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.3`. + + +'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.14`. + + +'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-1.24.1`. + + +'monocle-macro_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.github.julien-truffaut.monocle-macro_2.13-2.0.5`. + + +'reactive-streams', licensed under the CC0, is distributed with the engine. +The license file can be found at `licenses/CC0`. +Copyright notices related to this dependency can be found in the directory `org.reactivestreams.reactive-streams-1.0.3`. + + +'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.0-RC1`. + + +'scala-parser-combinators_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-parser-combinators_2.13-1.1.2`. + + +'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.9.1`. + + +'enumeratum_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.beachape.enumeratum_2.13-1.6.1`. + + +'logback-core', licensed under the GNU Lesser General Public License, 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 `ch.qos.logback.logback-core-1.2.3`. + + +'pureconfig_2.13', licensed under the Mozilla Public 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 `com.github.pureconfig.pureconfig_2.13-0.13.0`. + + +'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.2.0-M3`. + + +'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.6`. + + +'enumeratum-circe_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.beachape.enumeratum-circe_2.13-1.6.1`. + + +'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.0-M1`. + diff --git a/distribution/engine/THIRD-PARTY/ch.qos.logback.logback-classic-1.2.3/Eclipse Public License - Version 1.0.html b/distribution/engine/THIRD-PARTY/ch.qos.logback.logback-classic-1.2.3/Eclipse Public License - Version 1.0.html new file mode 100644 index 0000000000..4c7c9b7ba5 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/ch.qos.logback.logback-classic-1.2.3/Eclipse Public License - Version 1.0.html @@ -0,0 +1,259 @@ + + + + +Eclipse Public License - Version 1.0 + + + + + + +

Eclipse Public License - v 1.0

+ +

THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE +PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR +DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS +AGREEMENT.

+ +

1. DEFINITIONS

+ +

"Contribution" means:

+ +

a) in the case of the initial Contributor, the initial +code and documentation distributed under this Agreement, and

+

b) in the case of each subsequent Contributor:

+

i) changes to the Program, and

+

ii) additions to the Program;

+

where such changes and/or additions to the Program +originate from and are distributed by that particular Contributor. A +Contribution 'originates' from a Contributor if it was added to the +Program by such Contributor itself or anyone acting on such +Contributor's behalf. Contributions do not include additions to the +Program which: (i) are separate modules of software distributed in +conjunction with the Program under their own license agreement, and (ii) +are not derivative works of the Program.

+ +

"Contributor" means any person or entity that distributes +the Program.

+ +

"Licensed Patents" mean patent claims licensable by a +Contributor which are necessarily infringed by the use or sale of its +Contribution alone or when combined with the Program.

+ +

"Program" means the Contributions distributed in accordance +with this Agreement.

+ +

"Recipient" means anyone who receives the Program under +this Agreement, including all Contributors.

+ +

2. GRANT OF RIGHTS

+ +

a) Subject to the terms of this Agreement, each +Contributor hereby grants Recipient a non-exclusive, worldwide, +royalty-free copyright license to reproduce, prepare derivative works +of, publicly display, publicly perform, distribute and sublicense the +Contribution of such Contributor, if any, and such derivative works, in +source code and object code form.

+ +

b) Subject to the terms of this Agreement, each +Contributor hereby grants Recipient a non-exclusive, worldwide, +royalty-free patent license under Licensed Patents to make, use, sell, +offer to sell, import and otherwise transfer the Contribution of such +Contributor, if any, in source code and object code form. This patent +license shall apply to the combination of the Contribution and the +Program if, at the time the Contribution is added by the Contributor, +such addition of the Contribution causes such combination to be covered +by the Licensed Patents. The patent license shall not apply to any other +combinations which include the Contribution. No hardware per se is +licensed hereunder.

+ +

c) Recipient understands that although each Contributor +grants the licenses to its Contributions set forth herein, no assurances +are provided by any Contributor that the Program does not infringe the +patent or other intellectual property rights of any other entity. Each +Contributor disclaims any liability to Recipient for claims brought by +any other entity based on infringement of intellectual property rights +or otherwise. As a condition to exercising the rights and licenses +granted hereunder, each Recipient hereby assumes sole responsibility to +secure any other intellectual property rights needed, if any. For +example, if a third party patent license is required to allow Recipient +to distribute the Program, it is Recipient's responsibility to acquire +that license before distributing the Program.

+ +

d) Each Contributor represents that to its knowledge it +has sufficient copyright rights in its Contribution, if any, to grant +the copyright license set forth in this Agreement.

+ +

3. REQUIREMENTS

+ +

A Contributor may choose to distribute the Program in object code +form under its own license agreement, provided that:

+ +

a) it complies with the terms and conditions of this +Agreement; and

+ +

b) its license agreement:

+ +

i) effectively disclaims on behalf of all Contributors +all warranties and conditions, express and implied, including warranties +or conditions of title and non-infringement, and implied warranties or +conditions of merchantability and fitness for a particular purpose;

+ +

ii) effectively excludes on behalf of all Contributors +all liability for damages, including direct, indirect, special, +incidental and consequential damages, such as lost profits;

+ +

iii) states that any provisions which differ from this +Agreement are offered by that Contributor alone and not by any other +party; and

+ +

iv) states that source code for the Program is available +from such Contributor, and informs licensees how to obtain it in a +reasonable manner on or through a medium customarily used for software +exchange.

+ +

When the Program is made available in source code form:

+ +

a) it must be made available under this Agreement; and

+ +

b) a copy of this Agreement must be included with each +copy of the Program.

+ +

Contributors may not remove or alter any copyright notices contained +within the Program.

+ +

Each Contributor must identify itself as the originator of its +Contribution, if any, in a manner that reasonably allows subsequent +Recipients to identify the originator of the Contribution.

+ +

4. COMMERCIAL DISTRIBUTION

+ +

Commercial distributors of software may accept certain +responsibilities with respect to end users, business partners and the +like. While this license is intended to facilitate the commercial use of +the Program, the Contributor who includes the Program in a commercial +product offering should do so in a manner which does not create +potential liability for other Contributors. Therefore, if a Contributor +includes the Program in a commercial product offering, such Contributor +("Commercial Contributor") hereby agrees to defend and +indemnify every other Contributor ("Indemnified Contributor") +against any losses, damages and costs (collectively "Losses") +arising from claims, lawsuits and other legal actions brought by a third +party against the Indemnified Contributor to the extent caused by the +acts or omissions of such Commercial Contributor in connection with its +distribution of the Program in a commercial product offering. The +obligations in this section do not apply to any claims or Losses +relating to any actual or alleged intellectual property infringement. In +order to qualify, an Indemnified Contributor must: a) promptly notify +the Commercial Contributor in writing of such claim, and b) allow the +Commercial Contributor to control, and cooperate with the Commercial +Contributor in, the defense and any related settlement negotiations. The +Indemnified Contributor may participate in any such claim at its own +expense.

+ +

For example, a Contributor might include the Program in a commercial +product offering, Product X. That Contributor is then a Commercial +Contributor. If that Commercial Contributor then makes performance +claims, or offers warranties related to Product X, those performance +claims and warranties are such Commercial Contributor's responsibility +alone. Under this section, the Commercial Contributor would have to +defend claims against the other Contributors related to those +performance claims and warranties, and if a court requires any other +Contributor to pay any damages as a result, the Commercial Contributor +must pay those damages.

+ +

5. NO WARRANTY

+ +

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS +PROVIDED 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. Each Recipient is solely +responsible for determining the appropriateness of using and +distributing the Program and assumes all risks associated with its +exercise of rights under this Agreement , including but not limited to +the risks and costs of program errors, compliance with applicable laws, +damage to or loss of data, programs or equipment, and unavailability or +interruption of operations.

+ +

6. DISCLAIMER OF LIABILITY

+ +

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT +NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING +WITHOUT LIMITATION LOST PROFITS), 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 OR +DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED +HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

+ +

7. GENERAL

+ +

If any provision of this Agreement is invalid or unenforceable under +applicable law, it shall not affect the validity or enforceability of +the remainder of the terms of this Agreement, and without further action +by the parties hereto, such provision shall be reformed to the minimum +extent necessary to make such provision valid and enforceable.

+ +

If Recipient institutes patent litigation against any entity +(including a cross-claim or counterclaim in a lawsuit) alleging that the +Program itself (excluding combinations of the Program with other +software or hardware) infringes such Recipient's patent(s), then such +Recipient's rights granted under Section 2(b) shall terminate as of the +date such litigation is filed.

+ +

All Recipient's rights under this Agreement shall terminate if it +fails to comply with any of the material terms or conditions of this +Agreement and does not cure such failure in a reasonable period of time +after becoming aware of such noncompliance. If all Recipient's rights +under this Agreement terminate, Recipient agrees to cease use and +distribution of the Program as soon as reasonably practicable. However, +Recipient's obligations under this Agreement and any licenses granted by +Recipient relating to the Program shall continue and survive.

+ +

Everyone is permitted to copy and distribute copies of this +Agreement, but in order to avoid inconsistency the Agreement is +copyrighted and may only be modified in the following manner. The +Agreement Steward reserves the right to publish new versions (including +revisions) of this Agreement from time to time. No one other than the +Agreement Steward has the right to modify this Agreement. The Eclipse +Foundation is the initial Agreement Steward. The Eclipse Foundation may +assign the responsibility to serve as the Agreement Steward to a +suitable separate entity. Each new version of the Agreement will be +given a distinguishing version number. The Program (including +Contributions) may always be distributed subject to the version of the +Agreement under which it was received. In addition, after a new version +of the Agreement is published, Contributor may elect to distribute the +Program (including its Contributions) under the new version. Except as +expressly stated in Sections 2(a) and 2(b) above, Recipient receives no +rights or licenses to the intellectual property of any Contributor under +this Agreement, whether expressly, by implication, estoppel or +otherwise. All rights in the Program not expressly granted under this +Agreement are reserved.

+ +

This Agreement is governed by the laws of the State of New York and +the intellectual property laws of the United States of America. No party +to this Agreement will bring a legal action under this Agreement more +than one year after the cause of action arose. Each party waives its +rights to a jury trial in any resulting litigation.

+ + + + \ No newline at end of file diff --git a/distribution/engine/THIRD-PARTY/ch.qos.logback.logback-classic-1.2.3/NOTICE b/distribution/engine/THIRD-PARTY/ch.qos.logback.logback-classic-1.2.3/NOTICE new file mode 100644 index 0000000000..a6e00043e4 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/ch.qos.logback.logback-classic-1.2.3/NOTICE @@ -0,0 +1,16 @@ +Logback: the reliable, generic, fast and flexible logging framework. +Copyright (C) 1999-2017, QOS.ch. All rights reserved. + +This program and the accompanying materials are dual-licensed under +either the terms of the Eclipse Public License v1.0 as published by +the Eclipse Foundation + + or (per the licensee's choosing) + +under the terms of the GNU Lesser General Public License version 2.1 +as published by the Free Software Foundation. + + +------------------ + +We have chosen EPL in this project. diff --git a/distribution/engine/THIRD-PARTY/ch.qos.logback.logback-core-1.2.3/NOTICE b/distribution/engine/THIRD-PARTY/ch.qos.logback.logback-core-1.2.3/NOTICE new file mode 100644 index 0000000000..299dc2f69f --- /dev/null +++ b/distribution/engine/THIRD-PARTY/ch.qos.logback.logback-core-1.2.3/NOTICE @@ -0,0 +1 @@ +Please see ch.qos.logback.logback-classic-1.2 for notices related to logback. diff --git a/distribution/engine/THIRD-PARTY/com.beachape.enumeratum-circe_2.13-1.6.1/NOTICES b/distribution/engine/THIRD-PARTY/com.beachape.enumeratum-circe_2.13-1.6.1/NOTICES new file mode 100644 index 0000000000..53a811c227 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.beachape.enumeratum-circe_2.13-1.6.1/NOTICES @@ -0,0 +1,8 @@ +/** + * Created by Lloyd on 4/14/16. + * + * Copyright 2016 + */ + +See com.beachape.enumeratum-macros_2.13-1.6.1 for the license. + diff --git a/distribution/engine/THIRD-PARTY/com.beachape.enumeratum-macros_2.13-1.6.1/LICENSE b/distribution/engine/THIRD-PARTY/com.beachape.enumeratum-macros_2.13-1.6.1/LICENSE new file mode 100644 index 0000000000..c5db1df2d4 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.beachape.enumeratum-macros_2.13-1.6.1/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2016 by Lloyd Chan + +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/com.beachape.enumeratum_2.13-1.6.1/NOTICES b/distribution/engine/THIRD-PARTY/com.beachape.enumeratum_2.13-1.6.1/NOTICES new file mode 100644 index 0000000000..583060a131 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.beachape.enumeratum_2.13-1.6.1/NOTICES @@ -0,0 +1,8 @@ +/** + * Created by Lloyd on 4/11/16. + * + * Copyright 2016 + */ + +See com.beachape.enumeratum-macros_2.13-1.6.1 for the license. + diff --git a/distribution/engine/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.3/NOTICES b/distribution/engine/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.3/NOTICES new file mode 100644 index 0000000000..9d461da89d --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.3/NOTICES @@ -0,0 +1,141 @@ +/* + * 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-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) 2013 Miles Sabin + +Copyright (c) 2012-18 Miles Sabin + +Copyright (c) 2014-15 Miles Sabin + +Copyright (c) 2015 Miles Sabin + +Copyright (c) 2015-6 Alexandre Archambault + +/* + * 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) 2014 Miles Sabin + +Copyright (c) 2018 Miles Sabin + +Copyright (c) 2013-18 Miles Sabin + +/* + * 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) 2015-16 Miles Sabin + +Copyright (c) 2011-16 Miles Sabin + +Copyright (c) 2013-16 Miles Sabin + +Copyright (c) 2012-15 Miles Sabin + +Copyright (c) 2015-18 Miles Sabin + +/* + * 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) 2013-14 Miles Sabin + +Copyright (c) 2016-18 Miles Sabin + +Copyright (c) 2014-16 Miles Sabin + +Copyright (c) 2011-14 Miles Sabin + +Copyright (c) 2013-14 Lars Hupel, Miles Sabin + +Copyright (c) 2013-17 Miles Sabin + +/* + * 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) 2013-15 Miles Sabin + +Copyright (c) 2011-18 Miles Sabin + +Copyright (c) 2011-15 Miles Sabin + +Copyright (c) 2016 Miles Sabin diff --git a/distribution/engine/THIRD-PARTY/com.chuusai.shapeless_2.13-2.4.0-M1/NOTICES b/distribution/engine/THIRD-PARTY/com.chuusai.shapeless_2.13-2.4.0-M1/NOTICES new file mode 100644 index 0000000000..6d4f14896c --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.chuusai.shapeless_2.13-2.4.0-M1/NOTICES @@ -0,0 +1,169 @@ +/* + * 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) 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-20 Miles Sabin + +/* + * 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) 2013 Miles Sabin + +Copyright (c) 2012-18 Miles Sabin + +Copyright (c) 2014-15 Miles Sabin + +Copyright (c) 2015 Miles Sabin + +/* + * 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) 2014 Miles Sabin + +Copyright (c) 2018 Miles Sabin + +Copyright (c) 2013-18 Miles Sabin + +/* + * 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) 2015-16 Miles Sabin + +Copyright (c) 2011-16 Miles Sabin + +Copyright (c) 2013-16 Miles Sabin + +Copyright (c) 2012-15 Miles Sabin + +Copyright (c) 2015-18 Miles Sabin + +/* + * 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) 2013-14 Miles Sabin + +Copyright (c) 2016-18 Miles Sabin + +Copyright (c) 2014-16 Miles Sabin + +Copyright (c) 2011-14 Miles Sabin + +/* + * Copyright (c) 2013-14 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) 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) 2013-15 Miles Sabin + +Copyright (c) 2011-18 Miles Sabin + +Copyright (c) 2011-15 Miles Sabin + +Copyright (c) 2016 Miles Sabin diff --git a/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.11.1/LICENSE b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.11.1/LICENSE new file mode 100644 index 0000000000..ff94ef8c45 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-annotations-2.11.1/LICENSE @@ -0,0 +1,8 @@ +This copy of Jackson JSON processor annotations 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/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.11.1/CREDITS-2.x.txt b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.11.1/CREDITS-2.x.txt new file mode 100644 index 0000000000..ed5c9ef5a1 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.11.1/CREDITS-2.x.txt @@ -0,0 +1,246 @@ +Here are people who have contributed to the development of Jackson JSON processor +core component, version 2.x +(version numbers in brackets indicate release in which the problem was fixed) + +(note: for older credits, check out release notes for 1.x versions) + +Tatu Saloranta, tatu.saloranta@iki.fi: author + +Pascal G�linas: + * Reported [JACKSON-827]: 2.0.0 was accidentally requiring JDK 1.6 + (should still be 1.5) + (2.0.1) + +Ben Gertzfield (bgertzfield@github): + * Contributed [Issue#49]: Improvements to VersionUtil to more efficiently + read dynamically generated/embedded version information, to improve + Android startup time + (2.2.0) + +Klaus Brunner (KlausBrunner@github) + * Reported [Issue#48]: Problem with URLs, spaces + +Eugene Brevdo (ebrevdo@github) + * Contributed #84: Support 'Infinity' as alternative (no leading plus) + (2.2.3) + +Marcin Zukowski (eruure@github) + * Reported #115: JsonGenerator writeRawValue problem with surrogate UTF-8 characters + (2.3.0) + +Steve van Loben Sels + * Reported #116: WriterBasedJsonGenerator produces truncated Unicode escape sequences + (2.3.0) + +Shay Banon + * Reported #145: NPE at BytesToNameCanonicalizer + (2.4.2) + +rjmac@github + * Reported #146: Error while parsing negative floats at the end of the input buffer + (2.4.2) + * Reported #148: BytesToNameCanonicalizer can mishandle leading null byte(s). + (2.5.0) + +Alex Soto: (lordofthejars@github) + * Reported #173: An exception is thrown for a valid JsonPointer expression + (2.4.5) + +Aaron Digulla: + * Contributed #166: Allow to configure line endings and indentation + (2.5.0) + +Derek Clarkson (drekka@github) + * Reported #184: WRITE_NUMBERS_AS_STRINGS disables WRITE_BIGDECIMAL_AS_PLAIN + (2.4.6 / 2.5.2) + +Masaru Hasegawa (masaruh@github): + * Reported, contributed fix for#182: Inconsistent TextBuffer#getTextBuffer behavior + (2.6.0) + +Ruediger Moeller (RuedigerMoeller@github) + * Requested #195: Add `JsonGenerator.getOutputBuffered()` to find out amount of content buffered, + not yet flushed. + (2.6.0) + +Florian Schoppmann (fschopp@github@github) + * Reported #207: `ArrayIndexOutOfBoundsException` in `ByteQuadsCanonicalizer` + (2.6.1) + +Iskren Ivov Chernev (ichernev@github) + * Reported #213: Parser is sometimes wrong when using CANONICALIZE_FIELD_NAMES + (2.6.2) + +Michael Lehenbauer (mikelehen@github) + * Reported #37: JsonParser.getTokenLocation() doesn't update after field names + (2.7.0) + +Lokesh Kumar N (LokeshN@github) + * Contributed #209: Make use of `_allowMultipleMatches` in `FilteringParserDelegate` + (2.7.4) + * Contributed fix for #117: Support for missing values (non-compliant JSON) + (2.8.0) + * Contributed implementation for #86: Allow inclusion of request body for JsonParseException + (2.8.0) + * Contributed implementation for #285: Allow inclusion of request body for JsonParseException + (2.8.0) + +Tanguy Leroux (tlrx@github) + * Reported, contributed fix for #280: FilteringGeneratorDelegate.writeUTF8String() + should delegate to writeUTF8String() + (2.7.5) + +Mike Naseef (mtnaseef@github) + * Reported #307: JsonGenerationException: Split surrogate on writeRaw() input thrown for + input of a certain size + (2.7.7) + +Allar Haav (haav@github) + * Reportef #317: ArrayIndexOutOfBoundsException: 200 on floating point number with exactly + 200-length decimal part + (2.7.8) + +Mikael Staldal (mikaelstaldal@github) + * Contributed fix for #265: `JsonStringEncoder` should allow passing `CharSequence` + (2.8.0) + +Kevin Gallardo (newkek@github) + * Reported #296: JsonParserSequence skips a token on a switched Parser + (2.8.0) + +Alessio Soldano (asoldano@github) + * Contributed #322: Trim tokens in error messages to 256 byte to prevent attacks + (2.8.6) + +Arnaud Roger (arnaudroger@github) + * Contributed #359: FilteringGeneratorDelegate does not override writeStartObject(Object forValue) + (2.8.8) + * Reported, contributed fix for #580: FilteringGeneratorDelegate writeRawValue delegate + to `writeRaw()` instead of `writeRawValue()` + (2.10.2) + + +Emily Selwood (emilyselwood@github) + * Reported #382: ArrayIndexOutOfBoundsException from UTF32Reader.read on invalid input + (2.8.9) + * Reported #578: Array index out of bounds in hex lookup + (2.10.1) + +Alex Yursha (AlexYursha@github) + * Contributed #312: Add `JsonProcessingException.clearLocation()` to allow clearing + possibly security-sensitive information + (2.9.0) + +Brad Hess (bdhess@github) + * Contributed #323: Add `JsonParser.ALLOW_TRAILING_COMMA` to work for Arrays and Objects + (2.9.0) + * Reported #325: `DataInput` backed parser should handle `EOFException` at end of doc + (2.9.0) + +Logan Widick (uhhhh2@github) + * Contributed #17: Add 'JsonGenerator.writeString(Reader r, int charLength)' + (2.9.0) + +Michael Sims (MichaelSims@github) + * Reported, contributed fix for #372: JsonParserSequence#skipChildren() throws exception + when current delegate is TokenBuffer.Parser with "incomplete" JSON + (2.9.0) + +Rafal Foltynski (rfoltyns@github) + * Contributed #374: Minimal and DefaultPrettyPrinter with configurable separators + (2.9.0) + * Contributed#208: Make use of `_matchCount` in `FilteringParserDelegate` + (2.9.0) + +Jeroen Borgers (jborgers@github) + * Reported, contributed impl for #400: Add mechanism for forcing `BufferRecycler` released + (to call on shutdown) + (2.9.6) + +Doug Roper (htmldoug@github) + * Suggested #463: Ensure that `skipChildren()` of non-blocking `JsonParser` will throw + exception if not enough input + (2.9.6) + * Reported, Contributed test for #563: Async parser does not keep track of Array context properly + (2.10.0) + +Alexander Eyers-Taylor (aeyerstaylor@github) + * Reported #510: Fix ArrayIndexOutofBoundsException found by LGTM.com + (2.9.9) + +Henrik Gustafsson (gsson@github) + * Reported #516: _inputPtr off-by-one in UTF8StreamJsonParser._parseNumber2() + (2.9.9) + +Alex Rebert (alpire@github) + * Reported #540, suggested fix: UTF8StreamJsonParser: fix byte to int conversion for + malformed escapes + (2.9.10) + * Reported #547: `CharsToNameCanonicalizer`: Internal error on `SymbolTable.rehash()` with high + number of hash collisions + (2.10.0) + * Reported #548: ByteQuadsCanonicalizer: ArrayIndexOutOfBoundsException in addName + (2.10.0) + +Sam Smith (Oracle Security Researcher) + * Reported #540 (concurrently with Alex R, before fix was included) + (2.9.10) + +Philippe Marschall (marschall@github) + * Requested #480: `SerializableString` value can not directly render to Writer + (2.10.0) + +David Nault (dnault@github) + * Reported #531: Non-blocking parser reports incorrect locations when fed with + non-zero offset + (2.10.0) + +Fabien Renaud (fabienrenaud@github) + * Reported, contributed fix for #533: UTF-8 BOM not accounted for in + `JsonLocation.getByteOffset()` + (2.10.0) + * Reported, contributed fix for #603: 'JsonParser.getCurrentLocation()` + byte/char offset update incorrectly for big payloads + (2.10.3) + +Todd O'Bryan (toddobryan@github) + * Contributed fix fox #455: Jackson reports wrong locations for JsonEOFException + (2.10.1) + +Scott Leberknight (sleberknight@github) + * Reported, contributed fix for #592: DataFormatMatcher#getMatchedFormatName throws NPE + when no match exists + (2.10.3) + +Valery (valery1707@github) + * Contributed #565: Synchronize variants of `JsonGenerator#writeNumberField` + with `JsonGenerator#writeNumber` + (2.11.0) + +Volkan Yazıcı (vy@github) + * Contributed #587: Add JsonGenerator#writeNumber(char[], int, int) method + (2.11.0) + * Reported #609: (partial fix) `FilteringGeneratorDelegate` does not handle + `writeString(Reader, int)` + (2.10.4 [partial], 2.11.0 [full fix]) + +Justin Liu (jusliu@github) + * Reported #616: Parsing JSON with `ALLOW_MISSING_VALUE` enabled results in endless stream + of `VALUE_NULL` tokens + (2.10.5) + +Michel Feinstein (feinstein@github) + * Requested #504: Add a String Array write method in the Streaming API + (2.11.0) + +Oleksandr Poslavskyi (alevskyi@github) + * Contributed implementation of #504: Add a String Array write method in the Streaming API + (2.11.0) + +James Agnew (jamesagnew@github) + * Contributed implementation of #611: Optionally allow leading decimal in float tokens + (2.11.0) + +Jendrik Johannes (jjohannes@github) + * Contributed #618: Publish Gradle Module Metadata + (2.12.0) diff --git a/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.11.1/LICENSE b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.11.1/LICENSE new file mode 100644 index 0000000000..f5f45d26a4 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.11.1/LICENSE @@ -0,0 +1,8 @@ +This copy of Jackson JSON processor streaming parser/generator 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/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.11.1/NOTICE b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.11.1/NOTICE new file mode 100644 index 0000000000..4c976b7b4c --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.11.1/NOTICE @@ -0,0 +1,20 @@ +# 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, as well as supported +commercially by FasterXML.com. + +## Licensing + +Jackson core and extension components may licensed under different licenses. +To find the details that apply to this artifact see the accompanying LICENSE file. +For more information, including possible other licensing options, contact +FasterXML.com (http://fasterxml.com). + +## Credits + +A list of contributors may be found from CREDITS 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/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.11.1/NOTICES b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.11.1/NOTICES new file mode 100644 index 0000000000..08e7398acf --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-core-2.11.1/NOTICES @@ -0,0 +1,4 @@ +/* Jackson JSON-processor. + * + * Copyright (c) 2007- Tatu Saloranta, tatu.saloranta@iki.fi + */ diff --git a/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.11.1/CREDITS-2.x.txt b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.11.1/CREDITS-2.x.txt new file mode 100644 index 0000000000..7ff59fa3a1 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.11.1/CREDITS-2.x.txt @@ -0,0 +1,1227 @@ +Here are people who have contributed to the development of Jackson JSON processor +databind core component, version 2.x +(version numbers in brackets indicate release in which the problem was fixed) + +(note: for older credits, check out release notes for 1.x versions) + +Tatu Saloranta, tatu.saloranta@iki.fi: author + +Pascal GŽlinas: + * Contributed fixes to 'MappingIterator' handling (Pull#58 and Pull#59) + (2.1.0) + * Reported #220: ContainerNode missing 'createNumber(BigInteger)' + (2.2.2) + +Joern Huxhorn: (huxi@github) + * Suggested [JACKSON-636]: Add 'SerializationFeature.ORDER_MAP_ENTRIES_BY_KEYS' to allow + forced sorting of Maps during serialization + (2.0.0) + * Reported #479: NPE on trying to deserialize a `String[]` that contains null + (2.4.1) + * Reported #1411: MapSerializer._orderEntries should check for null keys + (2.7.9) + +James Roper: + * Requested [JACKSON-732]: Allow 'AnnotationIntrospector.findContentDeserializer()' + (and similar) to return instance, not just Class for instance + (2.0.0) + * Suggested [JACKSON-800]: Adding a method for letting modules register + DeserializationProblemHandlers + (2.0.0) + +Casey Lucas: + * Reported [JACKSON-798]: Problem with external type id, creators + (2.0.0) + +Tammo van Lessen: + * Reported [JACKSON-811]: Problems with @JsonIdentityInfo, abstract types + (2.0.0) + * Reported [JACKSON-814]: Parsing RFC822/RFC1123 dates failes on non-US locales + (2.0.0) + +Raymond Myers: + * Suggested [JACKSON-810]: Deserialization Feature: Allow unknown Enum values via + 'DeserializationFeature.READ_UNKNOWN_ENUM_VALUES_AS_NULL' + (2.0.0) + +Ryan Gardner: + * Contributed #5 -- Add support for maps with java.util.Locale keys + to the set of StdKeyDeserializers + (2.0.1) + +Razvan Dragut: + * Suggested [JACKSON-850]: Allow use of zero-arg factory methods as "default creator" + (2.1.0) + +Duncan Atkinson: + * Reported [JACKSON-851]: State corruption with ObjectWriter, DefaultPrettyPrinter + (2.1.0) + +Mark Wolfe: + * Suggested #45: Add `@JsonNaming()` for per-class naming strategy overrides + (2.1.0) + +Dmitry Katsubo: + * Contributed patch for #65: Add getters to `ObjectMapper`, DeserializationContext, + DeserializationFactory. + (2.1.0) + +Francis Galiegue: + * Reported #93 (and suggested fix): bug in `ObjectMapper.setAll(...)' + implementation + (2.1.1) + * Reported #433: `ObjectMapper`'s `.valueToTree()` wraps `JsonSerializable` objects + into a POJONode + (2.3.3) + * Contributed #434: Ensure that DecimalNodes with mathematically equal values are equal + (2.4.0) + +kelaneren@github: + * Reported #157, contributed unit test: NPE when registering same module twice. + (2.1.4) + +Eric Tschetter (cheddar@github): + * Reported issues #166, #167, #170 (regressions from 1.9.x to 2.x) + (2.1.4) + +Thierry D (thierryd@github) + * Reported #214: Problem with LICENSE, NOTICE, Android packaging + (2.2.2) + +Luke G-H (lukegh@github) + * Reported #223: Duplicated nulls with @JsonFormat(shape=Shape.ARRAY) + (2.2.2) + +Karl Moore (karldmoore@github) + * Reported #217: JsonProcessingExceptions not all wrapped as expected + (2.2.2) + +David Phillips: + * Requested #308: Improve serialization and deserialization speed of `java.util.UUID` + (2.3.0) + +Seth Pellegrino (jivesoft): + * Contributed #317: Fix `JsonNode` support for nulls bound to `ObjectNode`, `ArrayNode` + (2.3.0) + +Florian Schoppmann (fschopp@github) + * Reported #357: StackOverflowError with contentConverter that returns array type + (2.7.0) + * Reported #358: `IterableSerializer` ignoring annotated content serializer + (2.3.1) + * Reported #359: Converted object not using explicitly annotated serializer + (2.4.0) + +Martin Traverso: + * Reported #406: Cannot use external type id + @JsonTypeIdResolver + (2.3.2) + +Matthew Morrissette: + * Contributed #381: Allow inlining/unwrapping of value from single-component JSON array + (2.4.0) + +Will Palmeri: (wpalmeri@github) + * Contributed #407: Make array and Collection serializers use configured value null handler + (2.4.0) + +Cemalettin Koc: (cemo@github) + * Reported #353: Problems with polymorphic types, `JsonNode` (related to #88) + (2.4.0) + +Ben Fagin: (UnquietCode@github) + * Suggested #442: Make `@JsonUnwrapped` indicate property inclusion + (2.4.0) + * Contributed #81/#455: Allow use of @JsonUnwrapped with typed (@JsonTypeInfo) classes, + provided that (new) feature `SerializationFeature.FAIL_ON_UNWRAPPED_TYPE_IDENTIFIERS` + is disabled + (2.4.0) + +Chris Cleveland: + * Suggested #463: Add 'JsonNode.asText(String defaultValue)` + (2.4.0) + +Benson Margulies: + * Reported #467: Unwanted POJO's embedded in tree via serialization to tree + (2.4.0) + * Reported #601: ClassCastException for a custom serializer for enum key in `EnumMap` + (2.4.4) + * Contributed 944: Failure to use custom deserializer for key deserializer + (2.6.3) + * Reported #1120: String value omitted from weirdStringException + (2.6.6) + * Reported, fixed #1235: `java.nio.file.Path` support incomplete + (2.8.0) + * Reported #1270: Generic type returned from type id resolver seems to be ignored + (2.8.0) + +Steve Sanbeg: (sanbeg@github) + * Contributed #482: Make date parsing error behavior consistent with JDK + (2.4.1) + +Ian Barfield: (tea-dragon@github) + * Reported #580: delegate deserializers choke on a (single) abstract/polymorphic parameter + (2.4.4) + * Reported #844: Using JsonCreator still causes invalid path references in JsonMappingException + (2.5.5) + +Eugene Lukash + * Reported #592: Wrong `TokenBuffer` delegate deserialization using `@JsonCreator` + (2.4.4) + +Fernando Otero (zeitos@github) + * Contributed fix for #610: Problem with forward reference in hierarchies + (2.4.4) + +Lovro Pandžić (lpandzic@github) + * Reported #421: @JsonCreator not used in case of multiple creators with parameter names + (2.5.0) + * Requested #1498: Allow handling of single-arg constructor as property based by default + (2.12.0) + +Adam Stroud (adstro@github) + * Contributed #576: Add fluent API for adding mixins + (2.5.0) + +David Fleeman (fleebytes@github) + * Contributed #528 implementation: Add support for `JsonType.As.EXISTING_PROPERTY` + (2.5.0) + +Aurélien Leboulanger (herau@github) + * Contributed improvement for #597: Improve error messaging for cases where JSON Creator + returns null (which is illegal) + (2.5.0) + +Michael Spiegel (mspiegel@githib) + * Contributed #636: `ClassNotFoundException` for classes not (yet) needed during serialization + (2.5.0) + +Michael Ressler (mressler@github) + * Contributed #566: Add support for case-insensitive deserialization + (`MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES`) + (2.5.0) + +Konstantin Labun (kulabun@github) + * Reported #647: Deserialization fails when @JsonUnwrapped property contains an object with same property name + (2.5.0) + +Christopher Smith (chrylis@github) + * Reported #594: `@JsonValue` on enum not used when enum value is a Map key + (2.5.0) + +Alexandre Santana Campelo (alexqi200@github): + * Contributed #671: Adding `java.util.Currency` deserialization support for maps + (2.5.1) + +Zoltan Farkas (zolyfarkas@github) + * Reported #674: Spring CGLIB proxies not handled as intended + (2.5.1) + +Ludevik@github: + * Reported #682: Class-valued Map keys not serialized properly + (2.5.1) + +Antibrumm@github: + * Reported #691: Jackson 2.5.0. NullSerializer for MapProperty failing + (2.5.2) + * Reported #984: JsonStreamContexts are not build the same way for write.. and convert methods + (2.6.4) + +Shumpei Akai (flexfrank@github) + * Reported #703: Multiple calls to ObjectMapper#canSerialize(Object.class) returns different values + (2.5.2) + +Francisco A. Lozano (flozano@github) + * Contributed fix for #703 (see above) + (2.5.2) + +Dylan Scott (dylanscott@github) + * Reported #738: #738: @JsonTypeInfo non-deterministically ignored in 2.5.1 (concurrency + issue) + (2.5.2) + +Alain Gilbert (agilbert314@github) + * Reporter, contributed #766: Fix Infinite recursion (StackOverflowError) when + serializing a SOAP object + (2.5.3) + +Alexey Gavrilov (Alexey1Gavrilov@github) + * Reported, contributed fix for #761: Builder deserializer: in-compatible type exception + when return type is super type + (2.5.3) + +Dmitry Spikhalskiy (Spikhalskiy@github) + * Reported #731, suggested the way to fix it: XmlAdapter result marshaling error in + case of ValueType=Object + (2.5.3) + * Reported #1456: `TypeFactory` type resolution broken in 2.7 for generic types + when using `constructType` with context + (2.7.9 / 2.8.6) + +John Meyer (jpmeyer@github) + * Reported, contributed fix for #745: EnumDeserializer.deserializerForCreator() fails + when used to deserialize a Map key + (2.5.3) + +Andrew Duckett (andrewduckett@github) + * Reported #771: Annotation bundles ignored when added to Mixin + (2.5.4) + +Charles Allen: + * Contributed #785: Add handlings for classes which are available in + `Thread.currentThread().getContextClassLoader()` + (2.5.4) + +Andrew Goodale (newyankeecodeshop@github) + * Contributed #816: Allow date-only ISO strings to have no time zone + (2.5.4) + +Kamil Benedykciński (Kamil-Benedykcinski@github) + * Contributed #801: Using `@JsonCreator` cause generating invalid path reference + in `JsonMappingException` + (2.5.4) + +Chi Kim (chikim79@github) + * Reported #878: serializeWithType on BeanSerializer does not setCurrentValue + (2.5.5 / 2.6.1) + +Charles Allen (drcrallen@github): + * Reported #696: Copy constructor does not preserve `_injectableValues` + (2.6.0) + +Chris Pimlott (pimlottc@github): + * Suggested #348: ObjectMapper.valueToTree does not work with @JsonRawValue + (2.6.0) + +Laird Nelson (ljnelson@github) + * Suggested #688: Provide a means for an ObjectMapper to discover mixin annotation + classes on demand + (2.6.0) + * Reported #1088: NPE possibility in SimpleMixinResolver + (2.6.6) + +Derk Norton (derknorton@github) + * Suggested #689: Add `ObjectMapper.setDefaultPrettyPrinter(PrettyPrinter)` + (2.6.0) + +Michal Letynski (mletynski@github) + * Suggested #296: Serialization of transient fields with public getters (add + MapperFeature.PROPAGATE_TRANSIENT_MARKER) + (2.6.0) + +Jeff Schnitzer (stickfigure@github) + * Suggested #504: Add `DeserializationFeature.USE_LONG_FOR_INTS` + (2.6.0) + +Jerry Yang (islanderman@github) + * Contributed #820: Add new method for `ObjectReader`, to bind from JSON Pointer position + (2.6.0) + +Lars Pfannenschmidt (larsp@github) + * Contributed #826: Replaced synchronized HashMap with ConcurrentHashMap in + TypeDeserializerBase._findDeserializer + (2.6.0) + +Stephen A. Goss (thezerobit@github) + * Contributed #828: Respect DeserializationFeatures.WRAP_EXCEPTIONS in CollectionDeserializer + (2.6.0) + +Andy Wilkinson (wilkinsona@github) + * Reported #889: Configuring an ObjectMapper's DateFormat changes time zone + (2.6.1) + +lufe66@github: + * Reported 894: When using withFactory on ObjectMapper, the created Factory has a TypeParser + which still has the original Factory + (2.6.2) + +Daniel Walker (dsw2127@github) + * Reported, contributed fix for #913: `ObjectMapper.copy()` does not preserve + `MappingJsonFactory` features + (2.6.2) + +Sadayuki Furuhashi (frsyuki@github) + * Reported #941: Deserialization from "{}" to ObjectNode field causes + "out of END_OBJECT token" error + (2.6.3) + * Reported #2077: `JsonTypeInfo` with a subtype having `JsonFormat.Shape.ARRAY` + and no fields generates `{}` not `[]` + (2.10.0) + +David Haraburda (dharaburda@github) + * Contributed #918: Add `MapperFeature.ALLOW_EXPLICIT_PROPERTY_RENAMING` + (2.7.0) + +Sergio Mira (Sergio-Mira@github) + * Contributed #940: Add missing `hashCode()` implementations for `JsonNode` types that did not have them + (2.6.3) + +Andreas Pieber (anpieber@github) + * Reported #939: Regression: DateConversionError in 2.6.x + (2.6.3) + +Jesse Wilson (swankjesse@github) + * Contributed #948: Support leap seconds, any number of millisecond digits for ISO-8601 Dates. + (2.6.3) + * Contributed #949: Report the offending substring when number parsing fails + (2.6.3) + +Warren Bloomer (stormboy@github) + * Reported #942: Handle null type id for polymorphic values that use external type id + (2.6.3) + +Ievgen Pianov (pyanoveugen@github) + * Reported #989: Deserialization from "{}" to java.lang.Object causes "out of END_OBJECT token" error + (2.6.3) + +Jayson Minard (apatrida@github) + * Reported #1005: Synthetic constructors confusing Jackson data binding + (2.6.4) + * Reported #1438: `ACCEPT_CASE_INSENSITIVE_PROPERTIES` is not respected for creator properties + (2.8.5) + +David Bakin (david-bakin@github) +* Reported #1013: `@JsonUnwrapped` is not treated as assuming `@JsonProperty("")` + (2.6.4) + * Suggested #1011: Change ObjectWriter::withAttributes() to take a Map with some kind of wildcard types + (2.7.0) + * Reported #962: `@JsonInject` fails on trying to find deserializer even if inject-only + (2.11.0) + +Dmitry Romantsov (DmRomantsov@github) + * Reported #1036: Problem with case-insensitive deserialization + (2.6.4) + +Daniel Norberg (danielnorberg@github) + * Contributed #1099: Fix custom comparator container node traversal + (2.6.6) + +Miles Kaufmann (milesk-amzn@github) + * Reported #432: `StdValueInstantiator` unwraps exceptions, losing context + (2.7.0) + +Thomas Mortagne (tmortagne@github) + * Suggested #857: Add support for java.beans.Transient + (2.7.0) + +Jonas Konrad (yawkat@github) + * Suggested #905: Add support for `@ConstructorProperties` + (2.7.0) + +Jirka Kremser (Jiri-Kremser@github) + * Suggested #924: SequenceWriter.writeAll() could accept Iterable + (2.7.0) + +Daniel Mischler (danielmischler@github) + * Requested #963: Add PropertyNameStrategy `KEBAB_CASE` + (2.7.0) + +Shumpei Akai (flexfrank@github) + * Reported #978: ObjectMapper#canSerialize(Object.class) returns false even though + FAIL_ON_EMPTY_BEANS is disabled + (2.7.0) + +Hugo Wood (hgwood@github) + * Contributed #1010: Support for array delegator + (2.7.0) + +Julian Hyde (julianhyde@github) + * Reported #1083: Field in base class is not recognized, when using `@JsonType.defaultImpl` + (2.7.1) + +Thibault Kruse (tkruse@github) + * Reported #1102: Handling of deprecated `SimpleType.construct()` too minimalistic + (2.7.1) + +Aleks Seovic (aseovic@github) + * Reported #1109: @JsonFormat is ignored by the DateSerializer unless either a custom pattern + or a timezone are specified + (2.7.1) + +Timur Shakurov (saladinkzn@github) + * Reported #1134: Jackson 2.7 doesn't work with jdk6 due to use of `Collections.emptyIterator()` + (2.7.2) + +Jiri Mikulasek (pirkogdc@github) + * Reported #1124: JsonAnyGetter ignores JsonSerialize(contentUsing=...) + (2.7.2) + +Xavi Torrens (xavitorrens@github) + * Reported #1150: Problem with Object id handling, explicit `null` token + (2.7.3) + +Yoann Rodière (fenrhil@github) + * Reported #1154: @JsonFormat.pattern on dates is now ignored if shape is not + explicitely provided + (2.7.3) + +Mark Woon (markwoon@github) + * Reported #1178: `@JsonSerialize(contentAs=superType)` behavior disallowed in 2.7 + (2.7.4) + * Reported #1231: `@JsonSerialize(as=superType)` behavior disallowed in 2.7.4 + (2.7.5) + * Suggested #507: Support for default `@JsonView` for a class + (2.9.0) + +Tom Mack (tommack@github) + * Reported #1208: treeToValue doesn't handle POJONodes that contain exactly + the requested value type + (2.7.4) + +William Headrick (headw01@github) + * Reported#1223: `BasicClassIntrospector.forSerialization(...).findProperties` should + respect MapperFeature.AUTO_DETECT_GETTERS/SETTERS? + (2.7.5) + +Nick Babcock (nickbabcock) + * Reported #1225: `JsonMappingException` should override getProcessor() + (2.7.5) + * Suggested #1356: Differentiate between input and code exceptions on deserialization + (2.9.0) + +Andrew Joseph (apjoseph@github) + * Reported #1248: `Annotated` returns raw type in place of Generic Type in 2.7.x + (2.7.5) + +Erich Schubert (kno10@github) + * Reported #1260: `NullPointerException` in `JsonNodeDeserializer`, provided fix + (2.7.5) + +Brian Pontarelli (voidmain@github) + * Reported #1301: Problem with `JavaType.toString()` for recursive (self-referential) types + (2.7.6) + +Max Drobotov (fizmax@github) + * Reported, contributed fix for #1332: `ArrayIndexOutOfBoundException` for enum by index deser + (2.7.7) + +Stuart Douglas (stuartwdouglas@github) + * Reported #1363: The static field ClassUtil.sCached can cause a class loader leak + (2.7.8) + +Josh Caplan (jecaplan@github) + * Reported, suggested fix for #1368: Problem serializing `JsonMappingException` due to addition + of non-ignored `processor` property (added in 2.7) + (2.7.8) + +Diego de Estrada (diegode@github) + * Contributed fix for #1367: No Object Id found for an instance when using `@ConstructorProperties` + (2.7.9) + +Kevin Hogeland (khogeland@github) + * Reported #1501: `ArrayIndexOutOfBoundsException` on non-static inner class constructor + (2.7.9) + +xiexq (xiexq@knownsec.com) + * Reported #2389: Block one more gadget type (CVE-2019-14361) + (2.7.9.6) + +Artur Jonkisz (ajonkisz@github) + * Reported #960: `@JsonCreator` not working on a factory with no arguments for ae enum type + (2.8.0) + +Mikhail Kokho (mkokho@github) + * Contributed impl for #990: Allow failing on `null` values for creator (add + `DeserializationFeature.FAIL_ON_NULL_CREATOR_PROPERTIES`) + (2.8.0) + +Aleksandr Oksenenko (oleksandr-oksenenko@github) + * Reported #999: External property is not deserialized + (2.8.0) + +Lokesh Kumar (LokeshN@github) + * Contributed impl for #1082: Can not use static Creator factory methods for `Enum`s, + with JsonCreator.Mode.PROPERTIES + (2.8.0) + * Reported #1217: `@JsonIgnoreProperties` on Pojo fields not working for deserialization + (2.8.0) + +Ross Goldberg + * Reported #1165, provided fix for: `CoreXMLDeserializers` does not handle + time-only `XMLGregorianCalendar`s + (2.8.0) + +Maarten Billemont (lhunath@github) + * Suggested #1184: Allow overriding of `transient` with explicit inclusion with `@JsonProperty` + (2.8.0) + +Vladimir Kulev (lightoze@github) + * Reported #1028: Ignore USE_BIG_DECIMAL_FOR_FLOATS for NaN/Infinity + (2.8.0) + +Ari Fogel (arifogel@github) + * Reported #1261, contributed fix for: `@JsonIdentityInfo` deserialization fails with + combination of forward references, `@JsonCreator` + (2.8.0) + +Andriy Plokhotnyuk (plokhotnyuk@github) + * Requested #1277: Add caching of resolved generic types for `TypeFactory` + (2.8.0) + +Arek Gabiga (arekgabiga@github) + * Reported #1297: Deserialization of generic type with Map.class + (2.8.1) + +Chris Jester-Young (cky@github) + * Contributed #1335: Unconditionally call `TypeIdResolver.getDescForKnownTypeIds` + (2.8.2) + +Andrew Snare (asnare@github) + * Reported #1315: Binding numeric values can BigDecimal lose precision + (2.8.2) + +Gili Tzabari (cowwoc@github) + * Reported #1351: `@JsonInclude(NON_DEFAULT)` doesn't omit null fields + (2.8.3) + +Oleg Zhukov (OlegZhukov@github) + * Reported #1384: `@JsonDeserialize(keyUsing = ...)` does not work correctly + together with `DefaultTyping.NON_FINAL` + (2.8.4) + +Pavel Popov (tolkonepiu@github) + * Contributed fix #1389: Problem with handling of multi-argument creator with Enums + (2.8.4) + +Josh Gruenberg (joshng@github) + * Reported #1403: Reference-chain hints use incorrect class-name for inner classes + (2.8.4) + +Kevin Donnelly (kpdonn@github) + * Reported #1432: Off by 1 bug in PropertyValueBuffer + (2.8.5) + +Nathanial Ofiesh (ofiesh@github) + * Reported #1441: Failure with custom Enum key deserializer, polymorphic types + (2.8.5) + +Frédéric Camblor (fcamblor@github) + * Reported #1451: Type parameter not passed by `ObjectWriter` if serializer pre-fetch disabled + (2.8.6) + +Stephan Schroevers (Stephan202@github) + * Reported #1505: @JsonEnumDefaultValue should take precedence over FAIL_ON_NUMBERS_FOR_ENUMS + (2.8.7) + +Alex Panchenko (panchenko@github) + * Reported #1543: JsonFormat.Shape.NUMBER_INT does not work when defined on enum type in 2.8 + (2.8.8) + +Joshua Jones + * Reported #1573, contributed fix: Missing properties when deserializing using a builder class + with a non-default constructor and a mutator annotated with `@JsonUnwrapped` + (2.8.8) + +Ivo Studens (istudens@redhat.com) + * Contributed #1585: Invoke ServiceLoader.load() inside of a privileged block + when loading modules using `ObjectMapper.findModules()` + (2.8.9) + * Contributed fix for #2482: `JSONMappingException` `Location` column number + is one line Behind the actual location + (2.10.3) + +Javy Luo (AnywnYu@github) + * Reported #1595: `JsonIgnoreProperties.allowSetters` is not working in Jackson 2.8 + (2.8.9) + +Marco Catania (catanm@github.com) + * Contributed #1597: Escape JSONP breaking characters + (2.8.9) + +Andrew Joseph (apjoseph@github) + * Reported #1629 `FromStringDeserializer` ignores registered `DeserializationProblemHandler` + for `java.util.UUID` + (2.8.9) + +Joe Littlejohn (joelittlejohn@github) + * Contributed #1642: Support `READ_UNKNOWN_ENUM_VALUES_AS_NULL` with `@JsonCreator` + (2.8.9) + +Slobodan Pejic (slobo-showbie@github) + * Reported #1647, contributed fix: Missing properties from base class when recursive + types are involved + (2.8.9) + +Bertrand Renuart (brenuart@github) + * Reported #1648: `DateTimeSerializerBase` ignores configured date format when creating contextual + (2.8.9) + * Reported #1651: `StdDateFormat` fails to parse 'zulu' date when TimeZone other than UTC + (2.8.9) + * Suggested #1745: StdDateFormat: accept and truncate millis larger than 3 digits + (2.9.1) + * Contributed #1749: StdDateFormat: performance improvement of '_format(..)' method + (2.9.1) + * Contributed #1759: Reuse `Calendar` instance during parsing by `StdDateFormat` + (2.9.1) + +Kevin Gallardo (newkek@github) + * Reported #1658: Infinite recursion when deserializing a class extending a Map, + with a recursive value type + (2.8.10) + * Reported #1729: Integer bounds verification when calling `TokenBuffer.getIntValue()` + (2.9.4) + +Lukas Euler + * Reported #1735: Missing type checks when using polymorphic type ids + +Guixiong Wu (吴桂雄) + * Reported #2032: Blacklist another serialization gadget (ibatis) + (2.8.11.2) + +svarzee@github + * Reported #2109, suggested fix: Canonical string for reference type is built incorrectly + (2.8.11.3 / 2.9.7) + +Connor Kuhn (ckuhn@github) + * Contributed #1341: FAIL_ON_MISSING_EXTERNAL_TYPE_ID_PROPERTY + (2.9.0) + +Jan Lolling (jlolling@github) + * Contributed #1319: Add `ObjectNode.put(String, BigInteger)` + (2.9.0) + +Michael R Fairhurst (MichaelRFairhurst@github) + * Reported #1035: `@JsonAnySetter` assumes key of `String`, does not consider declared type. + (2.9.0) + +Fabrizio Cucci (fabriziocucci@github) + * Reported #1406: `ObjectMapper.readTree()` methods do not return `null` on end-of-input + (2.9.0) + +Emiliano Clariá (emilianogc@github) + * Contributed #1434: Explicitly pass null on invoke calls with no arguments + (2.9.0) + +Ana Eliza Barbosa (AnaEliza@github) + * Contributed #1520: Case insensitive enum deserialization feature. + (2.9.0) + +Lyor Goldstein (lgoldstein@github) + * Reported #1544: `EnumMapDeserializer` assumes a pure `EnumMap` and does not support + derived classes + (2.9.0) + +Harleen Sahni (harleensahni@github) + * Reported #403: Make FAIL_ON_NULL_FOR_PRIMITIVES apply to primitive arrays and other + types that wrap primitives + (2.9.0) + +Jared Jacobs (2is10@github) + * Requested #1605: Allow serialization of `InetAddress` as simple numeric host address + (2.9.0) + +Patrick Gunia (pgunia@github) + * Reported #1440: Wrong `JsonStreamContext` in `DeserializationProblemHandler` when reading + `TokenBuffer` content + (2.9.0) + +Carsten Wickner (CarstenWickner@github) + * Contributed #1522: Global `@JsonInclude(Include.NON_NULL)` for all properties with a specific type + (2.9.0) + +Chris Plummer (strmer15@github) + * Reported #1637: `ObjectReader.at()` with `JsonPointer` stops after first collection + (2.9.0) + +Christian Basler (Dissem@github) + * Reported #1688: Deserialization fails for `java.nio.file.Path` implementations when + default typing enabled + (2.9.0) + +Tim Bartley (tbartley@github) + * Reported, suggested fix for #1705: Non-generic interface method hides type resolution info + from generic base class + (2.9.1) + +Luís Cleto (luiscleto@github) + * Suggested 1768: Improve `TypeFactory.constructFromCanonical()` to work with + `java.lang.reflect.Type.getTypeName()` format + (2.9.2) + +Vincent Demay (vdemay@github) + * Reported #1793: `java.lang.NullPointerException` in `ObjectArraySerializer.acceptJsonFormatVisitor()` + for array value with `@JsonValue` + (2.9.2) + +Peter Jurkovic (peterjurkovic@github) + * Reported #1823: ClassNameIdResolver doesn't handle resolve Collections$SingletonMap, + Collections$SingletonSet + (2.9.3) + +alinakovalenko@github: + * Reported #1844: Map "deep" merge only adds new items, but not override existing values + (2.9.3) + +Pier-Luc Whissell (pwhissell@github): + * Reported #1673: Serialising generic value classes via Reference Types (like Optional) fails + to include type information + (2.9.4) + +Alexander Skvortcov (askvortcov@github) + * Reported #1853: Deserialise from Object (using Creator methods) returns field name + instead of value + (2.9.4) + +Joe Schafer (jschaf@github) + * Reported #1906: Add string format specifier for error message in `PropertyValueBuffer` + (2.9.4) + * Reported #1907: Remove `getClass()` from `_valueType` argument for error reporting + (2.9.4) + +Deblock Thomas (deblockt@github) + * Reported, contributed fix for #1912: `BeanDeserializerModifier.updateBuilder()` does not + work to set custom deserializer on a property (since 2.9.0) + (2.9.5) + * Reported, suggested fix for #2280: JsonMerge not work with constructor args + (2.10.0) + +lilei@venusgroup.com.cn: + * Reported #1931: Two more `c3p0` gadgets to exploit default typing issue + (2.9.5) + +Aniruddha Maru (maroux@github) + * Reported #1940: `Float` values with integer value beyond `int` lose precision if + bound to `long` + (2.9.5) + +Timur Shakurov (saladinkzn@github) + * Reported #1947: `MapperFeature.AUTO_DETECT_XXX` do not work if all disabled + (2.9.5) + +roeltje25@github + * Reported #1978: Using @JsonUnwrapped annotation in builderdeserializer hangs in + infinite loop + (2.9.5) + +Freddy Boucher (freddyboucher@github) + * Reported #1990: MixIn `@JsonProperty` for `Object.hashCode()` is ignored + (2.9.6) + +Ondrej Zizka (OndraZizk@github) + * Reported #1999: "Duplicate property" issue should mention which class it complains about + (2.9.6) + +Jakub Skierbiszewski (jskierbi@github) + * Reported, contributed fix for #2001: Deserialization issue with `@JsonIgnore` and + `@JsonCreator` + `@JsonProperty` for same property name + (2.9.6) + +Carter Kozak (cakofony@github) + * Reported #2016: Delegating JsonCreator disregards JsonDeserialize info + (2.9.6) + +Reinhard Prechtl (dnno@github) + * Reported #2034: Serialization problem with type specialization of nested generic types + (2.9.6) + +Chetan Narsude (243826@github) + * Reported #2038: JDK Serializing and using Deserialized `ObjectMapper` loses linkage + back from `JsonParser.getCodec()` + (2.9.6) + +Petar Tahchiev (ptahchiev@github) + * Reported #2060: `UnwrappingBeanPropertyWriter` incorrectly assumes the found + serializer is of type `UnwrappingBeanSerializer` + (2.9.6) + +Brandon Krieger (bkrieger@github) + * Reported #2064: Cannot set custom format for `SqlDateSerializer` globally + (2.9.7) + +Thibaut Robert (trobert@github) + * Requested #2059: Remove `final` modifier for `TypeFactory` + (2.10.0) + +Christopher Smith (chrylis@github) + * Suggested #2115: Support naive deserialization of `Serializable` values as "untyped", + same as `java.lang.Object` + (2.10.0) + +Édouard Mercier (edouardmercier@github) + * Requested #2116: Make NumberSerializers.Base public and its inherited classes not final + (2.9.6) + +Semyon Levin (remal@github) + * Contributed #2120: `NioPathDeserializer` improvement + (2.9.7) + * Contributed #2133: Improve `DeserializationProblemHandler.handleUnexpectedToken()` + to allow handling of Collection problems + (2.10.0) + +Pavel Nikitin (morj@github) + * Requested #2181: Don't re-use dynamic serializers for property-updating copy constructors + (2.9.8) + +Thomas Krieger (ThomasKrieger@github) + * Reported #1408: Call to `TypeVariable.getBounds()` without synchronization unsafe on + some platforms + (2.9.9) + +René Kschamer (flawi@github) + * Reported #2197: Illegal reflective access operation warning when using `java.lang.Void` + as value type + (2.9.8) + +Joffrey Bion (joffrey-bion@github) + * Reported #2265: Inconsistent handling of Collections$UnmodifiableList vs + Collections$UnmodifiableRandomAccessList + (2.9.9) + +Christoph Fiehe (cfiehe@github.com) + * Contributed #2299: Fix for using jackson-databind in an OSGi environment under Android + (2.9.9) + +Cyril Martin (mcoolive@github.com) + * Reported #2303: Deserialize null, when java type is "TypeRef of TypeRef of T", + does not provide "Type(Type(null))" + (2.9.9) + +Daniil Barvitsky (dbarvitsky@github) + * Reported #2324: `StringCollectionDeserializer` fails with custom collection + (2.9.9) + +Edgar Asatryan (nstdio@github) + * Reported #2374: `ObjectMapper. getRegisteredModuleIds()` throws NPE if no modules registered + (2.9.9.1) + +Michael Simons (michael-simons@github) + * Reported #2395: `NullPointerException` from `ResolvedRecursiveType` (regression due to + fix for #2331) + (2.9.9.3) + +Joe Barnett (josephlbarnett@github) + * Reported, contributed fix for #2404: FAIL_ON_MISSING_EXTERNAL_TYPE_ID_PROPERTY setting + ignored when creator properties are buffered + (2.9.10) + +Kaki King (kingkk9279@g) + * Reported #2449: Block one more gadget type (cve CVE-2019-14540) + (2.9.10) + +Jon Anderson (Jon901@github) + * Reported #2544: java.lang.NoClassDefFoundError Thrown for compact profile1 + (2.9.10.2) + +Zihui Ren (renzihui@github) + * Suggested #2129: Add `SerializationFeature.WRITE_ENUM_KEYS_USING_INDEX`, separate from value setting + (2.10.0) + +Yiqiu Huang (huangyq23@github + * Reported #2164: `FactoryBasedEnumDeserializer` does not respect + `DeserializationFeature.WRAP_EXCEPTIONS` + (2.10.0) + +Alexander Saites (saites@github) + * Reported #2189: `TreeTraversingParser` does not check int bounds + (2.10.0) + +Christoph Breitkopf (bokesan@github) + * Reported #2217: Suboptimal memory allocation in `TextNode.getBinaryValue()` + (2.10.0) + +Pavel Chervakov (pacher@github) + * Reported #2230: `WRITE_BIGDECIMAL_AS_PLAIN` is ignored if `@JsonFormat` is used + (2.10.0) + +Ben Anderson (andersonbd1@github) + * Reported, suggested fix for #2309: READ_ENUMS_USING_TO_STRING doesn't support null values + (2.10.0) + +Manuel Hegner (manuel-hegner@github) + * Suggested #2311: Unnecessary MultiView creation for property writers + (2.10.0) + +Chris Mercer (cmercer@github) + * Reported #2331: `JsonMappingException` through nested getter with generic wildcard return type + (2.10.0) + +Robert Greig (rgreig@github) + * Reported #2336: `MapDeserializer` can not merge `Map`s with polymorphic values + (2.10.0) + +Victor Noël (victornoel@github) + * Reported #2338: Suboptimal return type for `JsonNode.withArray()` + (2.10.0) + * Reported #2339: Suboptimal return type for `ObjectNode.set()` + (2.10.0) + +David Harris (toadzky@github) + * Reported #2378: `@JsonAlias` doesn't work with AutoValue + (2.10.0) + +Sam Smith (Oracle Security Researcher) + * Suggested #2398: Replace recursion in `TokenBuffer.copyCurrentStructure()` with iteration + +Vladimir Tsanev (tsachev@github) + * Contributed #2415: Builder-based POJO deserializer should pass builder instance, not type, + to `handleUnknownVanilla()` to fix earlier #822 + (2.10.0) + +Marcos Passos (marcospassos@github( + * Contributed #2432: Add support for module bundles + (2.10.0) + * Reported #2795: Cannot detect creator arguments of mixins for JDK types + (2.11.3) + +David Becker (dsbecker@github) + * Suggested #2433: Improve `NullNode.equals()` + (2.10.0) + +Hesham Massoud (heshamMassoud@github) + * Reported, contributed fix for #2442: `ArrayNode.addAll()` adds raw `null` values + which cause NPE on `deepCopy()` + (2.10.0) + +David Connelly (dconnelly@github) + * Reported #2446: Java 11: Unable to load JDK7 types (annotations, java.nio.file.Path): + no Java7 support added + (2.10.0) + +Wahey (KevynBct@github) + * Reported #2466: Didn't find class "java.nio.file.Path" below Android api 26 + (2.10.0) + +Martín Coll (colltoaction@github) + * Contributed #2467: Accept `JsonTypeInfo.As.WRAPPER_ARRAY` with no second argument to + deserialize as "null value" + (2.10.0) + +Andrey Kulikov (ankulikov@github) + * Reported #2457: Extended enum values are not handled as enums when used as Map keys + (2.10.1) + +João Guerra (joca-bt@github) + * Reported #2473: Array index missing in path of `JsonMappingException` for `Collection`, + with custom deserializer + (2.10.1) + * Reported #2567: Incorrect target type for arrays when providing nulls and nulls are disabled + (2.10.2) + * Reported #2635: JsonParser cannot getText() for input stream on MismatchedInputException + (2.11.0) + * Reported #2770: JsonParser from MismatchedInputException cannot getText() for + floating-point value + (2.11.1) + +Ryan Bohn (bohnman@github) + * Reported #2475: `StringCollectionSerializer` calls `JsonGenerator.setCurrentValue(value)`, + which messes up current value for sibling properties + (2.10.1) + +Johan Haleby (johanhaleby@github) + * Reported #2513: BigDecimalAsStringSerializer in NumberSerializer throws IllegalStateException + in 2.10 + (2.10.1) + +Richard Wise (Woodz@github) + * Reported #2519: Serializing `BigDecimal` values inside containers ignores shape override + (2.10.1) + +Mark Schäfer (mark--@github) + * Reported #2520: Sub-optimal exception message when failing to deserialize non-static inner classes + (2.10.1) + +Ruud Welling (WellingR@github) + * Contributed fix for #2102: `FAIL_ON_NULL_FOR_PRIMITIVES` failure does not indicate + field name in exception message + (2.10.2) + +Fabian Lange (CodingFabian@github) + * Reported #2556: Contention in `TypeNameIdResolver.idFromClass()` + (2.10.2) + +Stefan Wendt (stewe@github) + * Reported #2560: Check `WRAP_EXCEPTIONS` in `CollectionDeserializer.handleNonArray()` + (2.10.2) + +Greg Arakelian (arakelian@github) + * Reported #2566: `MissingNode.toString()` returns `null` (4 character token) instead + of empty string + (2.10.2) + +Kamal Aslam (aslamkam@github) + * Reported #2482: `JSONMappingException` `Location` column number is one line + Behind the actual location + (2.10.3) + +Tobias Preuss (johnjohndoe@github) + * Reported #2599: NoClassDefFoundError at DeserializationContext. on Android 4.1.2 + and Jackson 2.10.0 + (2.10.3) + +Eduard Tudenhöfner (nastra@github) + * Reported #2602, contributed fix for: ByteBufferSerializer produces unexpected results with + a duplicated ByteBuffer and a position > 0 + (2.10.3) + +Alexander Shilov (ashlanderr@github) + * Reported, suggested fix for #2610: `EXTERNAL_PROPERTY` doesn't work with `@JsonIgnoreProperties` + (2.10.3) + +Endre Stølsvik (stolsvik@github) + * Reported #2679: `ObjectMapper.readValue("123", Void.TYPE)` throws "should never occur" + (2.10.4) + +Denis Kostousov (kostousov-ds@github) + * Reported #2787 (partial fix): NPE after add mixin for enum + (2.10.5) + +Máté Rédecsi (rmatesz@github) + * Reported #953: i-I case convertion problem in Turkish locale with case-insensitive deserialization + (2.11.0) + +Ville Koskela (vjkoskela@github) + * Contributed #2487: BeanDeserializerBuilder Protected Factory Method for Extension + (2.11.0) + * Reported #2486: Builder Deserialization with JsonCreator Value vs Array + (2.11.1) + * Contributed fix for #792: Deserialization Not Working Right with Generic Types and Builders + (2.12.0) + +Fitz (Joongsoo.Park) (joongsoo@github) + * Contributed #2511: Add `SerializationFeature.WRITE_SELF_REFERENCES_AS_NULL` + (2.11.0) + +Antonio Petrelli (apetrelli@github) + * Reported #2049: TreeTraversingParser and UTF8StreamJsonParser create contexts differently + (2.11.0) + +Robert Diebels (RobertDiebels@github) + * Contributed #2352: Support use of `@JsonAlias` for enum values + (2.11.0) + +Joseph Koshakow (jkosh44@github) + * Contributed fix for #2515: `ObjectMapper.registerSubtypes(NamedType...)` doesn't allow registering + the same POJO for two different type ids + (2.11.0) + +Haowei Wen (yushijinhun@github) + * Reported #2565: Java 8 `Optional` not working with `@JsonUnwrapped` on unwrappable type + (2.11.0) + +Bartosz Baranowski (baranowb@github) + * Reported #2589: `DOMDeserializer`: setExpandEntityReferences(false) may not prevent + external entity expansion in all cases + (2.11.0) + +Oleksii Khomchenko (gagoman@github) + * Reported, contributed fix for #2592: `ObjectMapper.setSerializationInclusion()` is + ignored for `JsonAnyGetter` + (2.11.0) + +Oleksandr Poslavskyi (alevskyi@github) + * Contributed fix for #1983: Polymorphic deserialization should handle case-insensitive Type Id + property name if `MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES` is enabled + (2.11.0) + +Simone D'Avico (simonedavico@github) + * Reported #2632: Failure to resolve generic type parameters on serialization + (2.11.0) + +Robin Roos (robinroos@github) + * Contributed #2636: ObjectReader readValue lacks Class argument + (2.11.0) + +Michael Cramer (BigMichi1@github) + * Reported #2725: JsonCreator on static method in Enum and Enum used as key in map + fails randomly + (2.11.1) + +Frank Schmager (fschmager@github) + * Reported #2757: "Conflicting setter definitions for property" exception for `Map` + subtype during deserialization + (2.11.1) + +Johannes Kuhn (DasBrain@github) + * Reported #2758: Fail to deserialize local Records + (2.11.1) + * Reported #2760: Jackson doesn't respect `CAN_OVERRIDE_ACCESS_MODIFIERS=false` for + deserializer properties + (2.11.1) + +Oleg Chtchoukine (oshatrk@github) + * Reported #2759: Rearranging of props when property-based generator is in use leads + to incorrect output + (2.11.1) + +Joshua Shannon (retrodaredevil@github) + * Reported, contributed fix for #2785: Polymorphic subtypes not registering on copied + ObjectMapper (2.11.1) + (2.11.2) + +Daniel Hrabovcak (TheSpiritXIII@github) + * Reported #2796: `TypeFactory.constructType()` does not take `TypeBindings` correctly + (2.11.2) + +Lari Hotari (lhotari@github) + * Reported #2821: Json serialization fails or a specific case that contains generics and + static methods with generic parameters (2.11.1 -> 2.11.2 regression) + (2.11.3) + +Nils Christian Ehmke (nils-christian@github) + * Reported #2822: Using JsonValue and JsonFormat on one field does not work as expected + (2.11.3) + +Daniel Wu (DanielYWoo@github) + * Reported #2840: `ObjectMapper.activateDefaultTypingAsProperty()` is not using + (2.11.3) + +Marc Carter (drekbour@github) + * Contributed #43 implementation: Add option to resolve type from multiple existing properties, + `@JsonTypeInfo(use=DEDUCTION)` + (2.12.0) + +Mike Gilbode (gilbode@github) + * Reported #792: Deserialization Not Working Right with Generic Types and Builders + (2.12.0) + +Baptiste Pernet (sp4ce@github) + * Contributed #1296 implementation: Add `@JsonIncludeProperties(propertyNames)` (reverse + of `@JsonIgnoreProperties`) + (2.12.0) + +Patrick Jungermann (pjungermann@github) + * Requested #1852: Allow case insensitive deserialization of String value into + `boolean`/`Boolean` (esp for Excel) + (2.12.0) + +Nate Bauernfeind (nbauernfeind@github) + * Reported #2091: `ReferenceType` does not expose valid containedType + (2.12.0) + +Xiang Zhang (zhangyangyu@github) + * Reported #2118: `JsonProperty.Access.READ_ONLY` does not work with "getter-as-setter" + Collections + (2.12.0) + +David Nelson (eatdrinksleepcode@github) + * Requested #2215: Support `BigInteger` and `BigDecimal` creators in `StdValueInstantiator` + (2.12.0) + +Tiago Martins (upsidedownsmile@github) + * Contributed #2215: Support `BigInteger` and `BigDecimal` creators in `StdValueInstantiator` + (2.12.0) + +Yona Appletree (Yona-Appletree@github) + * Reported #2283: `JsonProperty.Access.READ_ONLY` fails with collections when a + property name is specified + (2.12.0) + +Youri Bonnaffé (youribonnaffe@github) + * Contributed #2709: Support for JDK 14 record types + (2.12.0) + +David Bidorff (bidorffOL@github) + * Reported, contributed fix for #2719: `FAIL_ON_IGNORED_PROPERTIES` does not throw + on `READONLY` properties with an explicit name + (2.12.0) + +Jendrik Johannes (jjohannes@github) + * Contributed #2726: Add Gradle Module Metadata for version alignment with Gradle 6 + (2.12.0) + +Swayam Raina (swayamraina@github) + * Contributed #2761: Support multiple names in `JsonSubType.Type` + (2.12.0) + +Ilya Golovin (ilgo0413@github) + * Contributed #2873: `MapperFeature.ACCEPT_CASE_INSENSITIVE_ENUMS` should work for enum as keys + (2.12.0) diff --git a/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.11.1/LICENSE b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.11.1/LICENSE new file mode 100644 index 0000000000..6acf75483f --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.11.1/LICENSE @@ -0,0 +1,8 @@ +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/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.11.1/NOTICE b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.11.1/NOTICE new file mode 100644 index 0000000000..5ab1e56360 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.core.jackson-databind-2.11.1/NOTICE @@ -0,0 +1,20 @@ +# 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, as well as supported +commercially by FasterXML.com. + +## Licensing + +Jackson core and extension components may be licensed under different licenses. +To find the details that apply to this artifact see the accompanying LICENSE file. +For more information, including possible other licensing options, contact +FasterXML.com (http://fasterxml.com). + +## Credits + +A list of contributors may be found from CREDITS 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/engine/THIRD-PARTY/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.11.1/CREDITS-2.x.txt b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.11.1/CREDITS-2.x.txt new file mode 100644 index 0000000000..71e1f423f6 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.11.1/CREDITS-2.x.txt @@ -0,0 +1,145 @@ +Here are people who have contributed to the development of Jackson JSON processor +binary data formats module +(version numbers in brackets indicate release in which the problem was fixed) + +Tatu Saloranta (tatu.saloranta@iki.fi): author + +-------------------------------------------------------------------------------- +Credits for individual projects, since 2.8.0 +-------------------------------------------------------------------------------- + +Michael Zeng (shotbythought@github) + +* Contributed fix for #27: (protobuf) Fixed long deserialization problem for longs of ~13digit length + (2.8.2) +* Reported #58 (avro): Regression due to changed namespace of inner enum types + (2.8.8) + +Kenji Noguchi (knoguchi@github) + +* Reported #70 (protobuf), contributed fix: Can't deserialize packed repeated field + (2.8.9) + +marsqing@github + +* Reported #85: (protobuf) _decode32Bits() bug in ProtobufParser + (2.8.9) +* Reported #94: (protobuf) Should _ensureRoom in ProtobufGenerator.writeString() + (2.8.10) +* Reported #106 (protobuf), contributed fix for: calling _skipUnknownValue() twice + (2.8.11 / 2.9.1) +* Reported #116 (protobuf), contributed fix for: Should skip the positive byte + which is the last byte of an varint + (2.9.3) +* Reported #126, contributed fix for: always call checkEnd() when skip unknown field + (2.8.11 / 2.9.3) + +baharclerode@github: + +* Contributed #14 (avro): Add support for Avro annotations via `AvroAnnotationIntrospector` + (2.9.0) +* Contributed #15 (avro): Add a way to produce "file" style Avro output + (2.9.0) +* Contributed #57 (avro): Add support for @Stringable annotation + (2.9.0) +* Contributed #59 (avro): Add support for @AvroAlias annotation for Record/Enum name evolution + (2.9.0) +* Contributed #60 (avro): Add support for `@Union` and polymorphic types + (2.9.0) + +Eldad Rudich (eldadru@github) + +* Reported #68 (proto): Getting "type not supported as root type by protobuf" for serialization + of short and UUID types + (2.9.0) + +philipa@github + +* Reported #114 (cbor), contributed fix for: copyStructure(): avoid duplicate tags + when copying tagged binary + (2.9.3) + +Jacek Lach (JacekLach@github) + +* Reported #124: Invalid value returned for negative int32 where the absolute value is > 2^31 - 1 + (2.9.3) + +Leo Wang (wanglingsong@github) + +* Reported #135: Infinite sequence of `END_OBJECT` tokens returned at end of streaming read + (2.9.6) + +Michael Milkin (mmilkin@github) +* Reported, Contributed fix for #142: (ion) `IonParser.getNumberType()` returns `null` + for `IonType.FLOAT` + (2.9.7) + +Guido Medina (guidomedina@github) +* Reported #153: (smile) Unable to set a compression input/output decorator to a `SmileFactory` + (2.9.8) + +Alexander Cyon (Sajjon@github) +* Reported #159: (cbor) Some short UTF Strings encoded using non-canonical form + (2.9.9) + +Łukasz Dziedziak (lukidzi@github) +* Reported, contributed fix for #161: (avro) Deserialize from newer version to older + one throws NullPointerException + (2.9.9) + +Carter Kozak (cakofony@github) +* Reported, suggested fix for #155: Inconsistent support for FLUSH_PASSED_TO_STREAM + (2.10.0) + +Fernando Raganhan Barbosa (raganhan@github) +* Suggested #163: (ion) Update `ion-java` dependency + (2.10.0) + +Juliana Amorim (amorimjuliana@github) +* Reported #168: (avro) `JsonMappingException` for union types with multiple Record types + (2.10.0) + +Marcos Passos (marcospassos@github) +* Contributed fix for #168: (avro) `JsonMappingException` for union types with multiple Record types + (2.10.0) +* Contributed fix for #173: (avro) Improve Union type serialization performance + (2.10.0) +* Contributed fix for #211: (avro) Fix schema evolution involving maps of non-scalar + (2.10.5) +* Contributed fix for #216: (avro) Avro null deserialization + (2.11.2) +* Contributed #219: Cache record names to avoid hitting class loader + (2.11.3) + +John (iziamos@github) +* Reported, suggested fix for #178: Fix issue wit input offsets when parsing CBOR from `InputStream` + (2.10.0) + +Paul Adolph (padolph@github) +* Reported #185: Internal parsing of tagged arrays can lead to stack overflow + (2.10.1) + +Yanming Zhou (quaff@github) +* Reported #188: Unexpected `MismatchedInputException` for `byte[]` value bound to `String` + in collection/array + (2.10.1) + +Zack Slayton (zslayton@github) +* Reported, contributed fix for #189: (ion) IonObjectMapper close()s the provided IonWriter unnecessarily + (2.10.2) + +Binh Tran (ankel@github) +* Reported, contributed fix for #192: (ion) Allow `IonObjectMapper` with class name annotation introspector + to deserialize generic subtypes + (2.11.0) + +Jonas Konrad (yawkat@github) +* Reported, contributed fix for #201: `CBORGenerator.Feature.WRITE_MINIMAL_INTS` does not write + most compact form for all integers + (2.11.0) + +Michael Liedtke (mcliedtke@github) + +* Contributed fix for #212: (ion) Optimize `IonParser.getNumberType()` using + `IonReader.getIntegerSize()` + (2.12.0) diff --git a/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-paranamer-2.11.1/CREDITS-2.x.txt b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-paranamer-2.11.1/CREDITS-2.x.txt new file mode 100644 index 0000000000..28d6ba5581 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-paranamer-2.11.1/CREDITS-2.x.txt @@ -0,0 +1,69 @@ +Here are people who have contributed to development Jackson JSON processor +Base modules +(version numbers in brackets indicate release in which the problem was fixed) +(NOTE: incomplete -- need to collect info from sub-projects, pre-2.9) + +Tatu Saloranta, tatu.saloranta@iki.fi: author + +Vojtěch Habarta (vojtechhabarta@gitub) + +* Reported [JAXB#32]: Fix introspector chaining in `JaxbAnnotationIntrospector.hasRequiredMarker()` + (2.9.3) + +Tuomas Kiviaho (TuomasKiviaho@github) + +* Reported #42: NPE from MrBean when `get()` or `set()` is though as property + (2.9.5) + +Alexander Onnikov (aonnikov@github) + +* Reported #44: (jaxb) `@XmlElements` does not work with `@XmlAccessorType(XmlAccessType.NONE)` + (2.9.6) + +William Headrick (headw01@github) + +* Reported 54: Afterburner` SuperSonicBeanDeserializer` does not handle JSON Object + valued Object Ids (like json) + (2.9.7) + +Jeffrey Bagdis (jbagdis@github) + +* Reported, contributed fix to #49: Afterburner `MyClassLoader#loadAndResolve()` + is not idempotent when `tryToUseParent` is true + (2.9.9) + +Dan Sănduleac (dansanduleac@github) + +* Reported, contributed fix for #69: `ALLOW_COERCION_OF_SCALARS` ignored deserializing scalars + with Afterburner + (2.9.9) + +Georg Schmidt-Dumont (georgschmidtdumont@github) + +* Reported #74: MrBean module should not materialize `java.io.Serializable` + (2.9.9) + +Jeffrey Bagdis (jbagdis@github) + +* Reported, contributed fix for #49: Afterburner `MyClassLoader#loadAndResolve()` + is not idempotent when `tryToUseParent` is true + (2.9.9) + +Harrison Houghton (hrhino@github) + +* Suggested, contributed impl for #52: Interfaces may have non-abstract methods (since java8) + (2.10.0) + +Bartosz Baranowski (baranowb@github) + +* Reported #84: (jaxb) Add expand entity protection and secure processing to + DomElementJsonDeserializer + (2.10.0) + + +Robby Morgan (robbytx@github) + +* Contributed #109: (mrbean) Fix detection of inherited default method in Java 8+ interface + (2.11.3) +* Contributed #110: (mrbean) Avoid generating implementations of synthetic bridge methods + (2.11.3) diff --git a/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-paranamer-2.11.1/LICENSE b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-paranamer-2.11.1/LICENSE new file mode 100644 index 0000000000..d9c618d3e9 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-paranamer-2.11.1/LICENSE @@ -0,0 +1,8 @@ +This copy of Jackson JSON processor `jackson-module-paranamer` 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/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-paranamer-2.11.1/NOTICE b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-paranamer-2.11.1/NOTICE new file mode 100644 index 0000000000..5ab1e56360 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-paranamer-2.11.1/NOTICE @@ -0,0 +1,20 @@ +# 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, as well as supported +commercially by FasterXML.com. + +## Licensing + +Jackson core and extension components may be licensed under different licenses. +To find the details that apply to this artifact see the accompanying LICENSE file. +For more information, including possible other licensing options, contact +FasterXML.com (http://fasterxml.com). + +## Credits + +A list of contributors may be found from CREDITS 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/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.11.1/LICENSE b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.11.1/LICENSE new file mode 100644 index 0000000000..3b58cdcd8f --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.11.1/LICENSE @@ -0,0 +1,8 @@ +This copy of Jackson JSON processor Scala 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/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.11.1/NOTICES b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.11.1/NOTICES new file mode 100644 index 0000000000..afd6f5786e --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.11.1/NOTICES @@ -0,0 +1,29 @@ +------------------------ + +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/engine/THIRD-PARTY/com.github.julien-truffaut.monocle-core_2.13-2.0.5/LICENSE b/distribution/engine/THIRD-PARTY/com.github.julien-truffaut.monocle-core_2.13-2.0.5/LICENSE new file mode 100644 index 0000000000..20e45719ca --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.github.julien-truffaut.monocle-core_2.13-2.0.5/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2014 Julien Truffaut + +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/com.github.julien-truffaut.monocle-macro_2.13-2.0.5/LICENSE b/distribution/engine/THIRD-PARTY/com.github.julien-truffaut.monocle-macro_2.13-2.0.5/LICENSE new file mode 100644 index 0000000000..20e45719ca --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.github.julien-truffaut.monocle-macro_2.13-2.0.5/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2014 Julien Truffaut + +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/com.github.pureconfig.pureconfig-core_2.13-0.13.0/NOTICE b/distribution/engine/THIRD-PARTY/com.github.pureconfig.pureconfig-core_2.13-0.13.0/NOTICE new file mode 100644 index 0000000000..e97c4365b0 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.github.pureconfig.pureconfig-core_2.13-0.13.0/NOTICE @@ -0,0 +1 @@ +See com.github.pureconfig.pureconfig_2.13-0.13.0 for licensing information. diff --git a/distribution/engine/THIRD-PARTY/com.github.pureconfig.pureconfig-generic-base_2.13-0.13.0/NOTICE b/distribution/engine/THIRD-PARTY/com.github.pureconfig.pureconfig-generic-base_2.13-0.13.0/NOTICE new file mode 100644 index 0000000000..e97c4365b0 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.github.pureconfig.pureconfig-generic-base_2.13-0.13.0/NOTICE @@ -0,0 +1 @@ +See com.github.pureconfig.pureconfig_2.13-0.13.0 for licensing information. diff --git a/distribution/engine/THIRD-PARTY/com.github.pureconfig.pureconfig-generic_2.13-0.13.0/NOTICE b/distribution/engine/THIRD-PARTY/com.github.pureconfig.pureconfig-generic_2.13-0.13.0/NOTICE new file mode 100644 index 0000000000..e97c4365b0 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.github.pureconfig.pureconfig-generic_2.13-0.13.0/NOTICE @@ -0,0 +1 @@ +See com.github.pureconfig.pureconfig_2.13-0.13.0 for licensing information. diff --git a/distribution/engine/THIRD-PARTY/com.github.pureconfig.pureconfig-macros_2.13-0.13.0/NOTICE b/distribution/engine/THIRD-PARTY/com.github.pureconfig.pureconfig-macros_2.13-0.13.0/NOTICE new file mode 100644 index 0000000000..e97c4365b0 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.github.pureconfig.pureconfig-macros_2.13-0.13.0/NOTICE @@ -0,0 +1 @@ +See com.github.pureconfig.pureconfig_2.13-0.13.0 for licensing information. diff --git a/distribution/engine/THIRD-PARTY/com.github.pureconfig.pureconfig_2.13-0.13.0/AUTHORS b/distribution/engine/THIRD-PARTY/com.github.pureconfig.pureconfig_2.13-0.13.0/AUTHORS new file mode 100644 index 0000000000..624d13f2a6 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.github.pureconfig.pureconfig_2.13-0.13.0/AUTHORS @@ -0,0 +1,5 @@ +Mario Pastorelli @mapastr +Leif Wickland @leifwickland +Joao Azevedo @jcazevedo +Rui Gonçalves @ruippeixotog +Derek Morr @derekmorr diff --git a/distribution/engine/THIRD-PARTY/com.github.pureconfig.pureconfig_2.13-0.13.0/LICENSE b/distribution/engine/THIRD-PARTY/com.github.pureconfig.pureconfig_2.13-0.13.0/LICENSE new file mode 100644 index 0000000000..be2cc4dfb6 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.github.pureconfig.pureconfig_2.13-0.13.0/LICENSE @@ -0,0 +1,362 @@ +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/engine/THIRD-PARTY/com.google.auto.auto-common-0.10/NOTICES b/distribution/engine/THIRD-PARTY/com.google.auto.auto-common-0.10/NOTICES new file mode 100644 index 0000000000..961e59a05b --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.google.auto.auto-common-0.10/NOTICES @@ -0,0 +1,64 @@ +/* + * Copyright (C) 2013 Google, Inc. + * Copyright (C) 2013 Square, 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) 2017 Google, 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) 2014 Google, 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) 2016 Google, 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. + */ diff --git a/distribution/engine/THIRD-PARTY/com.google.auto.service.auto-service-1.0-rc7/NOTICES b/distribution/engine/THIRD-PARTY/com.google.auto.service.auto-service-1.0-rc7/NOTICES new file mode 100644 index 0000000000..3db01d150f --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.google.auto.service.auto-service-1.0-rc7/NOTICES @@ -0,0 +1,45 @@ +/* + * Copyright 2013 Google LLC + * + * 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 2008 Google LLC + * + * 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 2008 Google LLC + * + * 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.auto.service.auto-service-annotations-1.0-rc7/NOTICES b/distribution/engine/THIRD-PARTY/com.google.auto.service.auto-service-annotations-1.0-rc7/NOTICES new file mode 100644 index 0000000000..87e3e8cb56 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.google.auto.service.auto-service-annotations-1.0-rc7/NOTICES @@ -0,0 +1,15 @@ +/* + * Copyright 2008 Google LLC + * + * 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.errorprone.error_prone_annotations-2.3.4/NOTICES b/distribution/engine/THIRD-PARTY/com.google.errorprone.error_prone_annotations-2.3.4/NOTICES new file mode 100644 index 0000000000..da6f3cd143 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.google.errorprone.error_prone_annotations-2.3.4/NOTICES @@ -0,0 +1,63 @@ +/* + * 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 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 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 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. + */ diff --git a/distribution/engine/THIRD-PARTY/com.google.flatbuffers.flatbuffers-java-1.12.0/NOTICES b/distribution/engine/THIRD-PARTY/com.google.flatbuffers.flatbuffers-java-1.12.0/NOTICES new file mode 100644 index 0000000000..79dec2de8b --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.google.flatbuffers.flatbuffers-java-1.12.0/NOTICES @@ -0,0 +1,84 @@ +/* + * Copyright 2014 Google Inc. 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. + */ + +/* + * Copyright 2017 Google Inc. 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. + */ + +/* + * Copyright 2019 Google Inc. 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. + */ + +------------------- + +From file Utf8Safe.java: + +// Protocol Buffers - Google's data interchange format +// Copyright 2008 Google Inc. All rights reserved. +// https://developers.google.com/protocol-buffers/ +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +------------------- + diff --git a/distribution/engine/THIRD-PARTY/com.google.guava.failureaccess-1.0.1/NOTICES b/distribution/engine/THIRD-PARTY/com.google.guava.failureaccess-1.0.1/NOTICES new file mode 100644 index 0000000000..5c779f6eb1 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.google.guava.failureaccess-1.0.1/NOTICES @@ -0,0 +1,13 @@ +/* + * Copyright (C) 2018 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. + */ diff --git a/distribution/engine/THIRD-PARTY/com.google.guava.guava-29.0-jre/NOTICES b/distribution/engine/THIRD-PARTY/com.google.guava.guava-29.0-jre/NOTICES new file mode 100644 index 0000000000..2e85590bc0 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.google.guava.guava-29.0-jre/NOTICES @@ -0,0 +1,73 @@ + /* + * 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 2019 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. + */ + +Copyright (C) 2006 The Guava Authors + +/* + * 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. + */ + +Copyright (C) 2011 The Guava Authors. + +Copyright (C) 2017 The Guava Authors + +Copyright (C) 2018 The Guava Authors + +Copyright (C) 2020 The Guava Authors + +Copyright (C) 2016 The Guava Authors + +Copyright (C) 2011 The Guava Authors + +Copyright (C) 2010 The Guava Authors + +Copyright (C) 2019 The Guava Authors + +Copyright (C) 2007 The Guava Authors + +Copyright (C) 2013 The Guava Authors + +Copyright (C) 2008 The Guava Authors + +Copyright (C) 2012 The Guava Authors + +Copyright (C) 2014 The Guava Authors + +Copyright (C) 2015 The Guava Authors + +Copyright (C) 2009 The Guava Authors diff --git a/distribution/engine/THIRD-PARTY/com.google.guava.listenablefuture-9999.0-empty-to-avoid-conflict-with-guava/NOTICES b/distribution/engine/THIRD-PARTY/com.google.guava.listenablefuture-9999.0-empty-to-avoid-conflict-with-guava/NOTICES new file mode 100644 index 0000000000..4ca0b90cd6 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.google.guava.listenablefuture-9999.0-empty-to-avoid-conflict-with-guava/NOTICES @@ -0,0 +1,2 @@ +See com.google.guava.guava-29.0-jre for licensing information. + diff --git a/distribution/engine/THIRD-PARTY/com.google.j2objc.j2objc-annotations-1.3/NOTICES b/distribution/engine/THIRD-PARTY/com.google.j2objc.j2objc-annotations-1.3/NOTICES new file mode 100644 index 0000000000..1bd2a95872 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.google.j2objc.j2objc-annotations-1.3/NOTICES @@ -0,0 +1,15 @@ +/* + * Copyright 2012 Google Inc. 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. + */ diff --git a/distribution/engine/THIRD-PARTY/com.lihaoyi.fansi_2.13-0.2.9/LICENSE b/distribution/engine/THIRD-PARTY/com.lihaoyi.fansi_2.13-0.2.9/LICENSE new file mode 100644 index 0000000000..1a2c5c062e --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.lihaoyi.fansi_2.13-0.2.9/LICENSE @@ -0,0 +1,25 @@ +License +======= + + +The MIT License (MIT) + +Copyright (c) 2016 Li Haoyi (haoyi.sg@gmail.com) + +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/com.lihaoyi.geny_2.13-0.6.0/LICENSE b/distribution/engine/THIRD-PARTY/com.lihaoyi.geny_2.13-0.6.0/LICENSE new file mode 100644 index 0000000000..1a2c5c062e --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.lihaoyi.geny_2.13-0.6.0/LICENSE @@ -0,0 +1,25 @@ +License +======= + + +The MIT License (MIT) + +Copyright (c) 2016 Li Haoyi (haoyi.sg@gmail.com) + +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/com.lihaoyi.pprint_2.13-0.5.9/LICENSE b/distribution/engine/THIRD-PARTY/com.lihaoyi.pprint_2.13-0.5.9/LICENSE new file mode 100644 index 0000000000..1ba87e2157 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.lihaoyi.pprint_2.13-0.5.9/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 Li Haoyi + +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/com.lihaoyi.scalatags_2.13-0.9.1/LICENSE.txt b/distribution/engine/THIRD-PARTY/com.lihaoyi.scalatags_2.13-0.9.1/LICENSE.txt new file mode 100644 index 0000000000..2145e7996c --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.lihaoyi.scalatags_2.13-0.9.1/LICENSE.txt @@ -0,0 +1,19 @@ +Copyright (c) 2018 Li Haoyi (haoyi.sg@gmail.com) + +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/com.lihaoyi.sourcecode_2.13-0.2.1/LICENSE b/distribution/engine/THIRD-PARTY/com.lihaoyi.sourcecode_2.13-0.2.1/LICENSE new file mode 100644 index 0000000000..307d8e963b --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.lihaoyi.sourcecode_2.13-0.2.1/LICENSE @@ -0,0 +1,25 @@ +License +======= + + +The MIT License (MIT) + +Copyright (c) 2014 Li Haoyi (haoyi.sg@gmail.com) + +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/com.monovore.decline_2.13-1.2.0/NOTICES b/distribution/engine/THIRD-PARTY/com.monovore.decline_2.13-1.2.0/NOTICES new file mode 100644 index 0000000000..089f35f9e1 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.monovore.decline_2.13-1.2.0/NOTICES @@ -0,0 +1,4 @@ +The project repository is located at https://github.com/bkirwi/decline + +We were unable to find any copyright notices that should be attached as per the license. + diff --git a/distribution/engine/THIRD-PARTY/com.thoughtworks.paranamer.paranamer-2.8/NOTICES b/distribution/engine/THIRD-PARTY/com.thoughtworks.paranamer.paranamer-2.8/NOTICES new file mode 100644 index 0000000000..462c99e892 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.thoughtworks.paranamer.paranamer-2.8/NOTICES @@ -0,0 +1,121 @@ +/** + * + * Copyright (c) 2013 Stefan Fleiter + * 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 the copyright holders 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. + */ + +/* + * Copyright 2007 Paul Hammant + * Copyright 2013 Samuel Halliday + * + * 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 the copyright holders 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. + */ + +/*** + * + * Copyright (c) 2007 Paul Hammant + * 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 the copyright holders 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. + */ + +/*** + * + * Portions Copyright (c) 2007 Paul Hammant + * Portions copyright (c) 2000-2007 INRIA, France Telecom + * 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 the copyright holders 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. + */ + diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.6/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.6/NOTICES new file mode 100644 index 0000000000..2304551114 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor-typed_2.13-2.6.6/NOTICES @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2018-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2017-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2019-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2009-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2014-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2016-2020 Lightbend Inc. + */ diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.6/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.6/NOTICES new file mode 100644 index 0000000000..3fc96d1d05 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.6/NOTICES @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2018-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2015-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2017-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2019-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2009-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2014-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2016-2020 Lightbend Inc. + */ diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/NOTICES new file mode 100644 index 0000000000..16f8f0f16f --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/NOTICES @@ -0,0 +1,96 @@ +/* + * Copyright (C) 2018-2020 Lightbend Inc. + */ + +/* + * 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. + */ + +/** + * 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 (C) 2015-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2019-2020 Lightbend Inc. + */ + +/* + * 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 2009-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2016-2020 Lightbend Inc. + */ + +Copyright (C) 2009-2020 Lightbend Inc. + +/* + * Copyright (C) 2017-2020 Lightbend Inc. + * + * Copied and adapted from akka-remote + * https://github.com/akka/akka/blob/c90121485fcfc44a3cee62a0c638e1982d13d812/akka-remote/src/main/scala/akka/remote/artery/StageLogging.scala + */ + diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-spray-json_2.13-10.2.0-RC1/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-spray-json_2.13-10.2.0-RC1/NOTICES new file mode 100644 index 0000000000..10e8435459 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http-spray-json_2.13-10.2.0-RC1/NOTICES @@ -0,0 +1,7 @@ +/* + * Copyright (C) 2009-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2017-2020 Lightbend Inc. + */ diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.0-RC1/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.0-RC1/NOTICES new file mode 100644 index 0000000000..9902de010a --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.0-RC1/NOTICES @@ -0,0 +1,23 @@ +/* + * Copyright (C) 2018-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2015-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2017-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2009-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2009-2020 Lightbend Inc. + */ diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/NOTICES new file mode 100644 index 0000000000..3b87093278 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/NOTICES @@ -0,0 +1,98 @@ +/* + * 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. + */ + +/* + * Copyright (C) 2019-2020 Lightbend Inc. + */ + +/* + * 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-2020 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. + */ + +---------------- + +akka/parboiled2/util/Base64.java is licensed under the following terms: + * + * Licence (BSD): + * ============== + * + * Copyright (c) 2004, Mikael Grev, MiG InfoCom AB. (base64 @ miginfocom . com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this list + * of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, this + * list of conditions and the following disclaimer in the documentation and/or other + * materials provided with the distribution. + * Neither the name of the MiG InfoCom AB nor the names of its contributors may be + * used to endorse or promote products derived from this software without specific + * prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY + * OF SUCH DAMAGE. + * + * @version 2.2 + * @author Mikael Grev + * Date: 2004-aug-02 + * Time: 11:31:11 + * + * Adapted in 2009 by Mathias Doenitz. + */ + +---------------- + diff --git a/distribution/launcher/components-licences/COPYING.protobuf b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/COPYING.protobuf similarity index 100% rename from distribution/launcher/components-licences/COPYING.protobuf rename to distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/COPYING.protobuf diff --git a/distribution/launcher/components-licences/LICENSE-AKKA b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/LICENSE similarity index 100% rename from distribution/launcher/components-licences/LICENSE-AKKA rename to distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/LICENSE diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.6/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.6/NOTICES new file mode 100644 index 0000000000..5e107e43e8 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.6/NOTICES @@ -0,0 +1,3 @@ +/* + * Copyright (C) 2009-2020 Lightbend Inc. + */ diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.6/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.6/NOTICES new file mode 100644 index 0000000000..178056b73d --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.6/NOTICES @@ -0,0 +1,31 @@ +/* + * Copyright (C) 2018-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2015-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2017-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2019-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2009-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2014-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2016-2020 Lightbend Inc. + */ diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.config-1.3.2/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.config-1.3.2/NOTICES new file mode 100644 index 0000000000..33fcda9b45 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.config-1.3.2/NOTICES @@ -0,0 +1,11 @@ +/** + * 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/engine/THIRD-PARTY/com.typesafe.config-1.4.0/NOTICES new file mode 100644 index 0000000000..33fcda9b45 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.config-1.4.0/NOTICES @@ -0,0 +1,11 @@ +/** + * 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.scala-logging.scala-logging_2.13-3.9.2/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.scala-logging.scala-logging_2.13-3.9.2/NOTICES new file mode 100644 index 0000000000..e8085979d5 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.scala-logging.scala-logging_2.13-3.9.2/NOTICES @@ -0,0 +1,15 @@ +/* + * Copyright 2014 Typesafe 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. + */ diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.slick.slick_2.13-3.3.2/LICENSE.txt b/distribution/engine/THIRD-PARTY/com.typesafe.slick.slick_2.13-3.3.2/LICENSE.txt new file mode 100644 index 0000000000..05b7a25dbc --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.slick.slick_2.13-3.3.2/LICENSE.txt @@ -0,0 +1,25 @@ +Copyright 2011-2016 Typesafe, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +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. diff --git a/distribution/engine/THIRD-PARTY/com.typesafe.ssl-config-core_2.13-0.4.1/NOTICES b/distribution/engine/THIRD-PARTY/com.typesafe.ssl-config-core_2.13-0.4.1/NOTICES new file mode 100644 index 0000000000..4bd14e085b --- /dev/null +++ b/distribution/engine/THIRD-PARTY/com.typesafe.ssl-config-core_2.13-0.4.1/NOTICES @@ -0,0 +1 @@ +Copyright (C) 2015 - 2019 Lightbend Inc. diff --git a/distribution/engine/THIRD-PARTY/commons-cli.commons-cli-1.4/NOTICE.txt b/distribution/engine/THIRD-PARTY/commons-cli.commons-cli-1.4/NOTICE.txt new file mode 100644 index 0000000000..02e26d05f6 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/commons-cli.commons-cli-1.4/NOTICE.txt @@ -0,0 +1,5 @@ +Apache Commons CLI +Copyright 2001-2017 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/commons-cli.commons-cli-1.4/NOTICES b/distribution/engine/THIRD-PARTY/commons-cli.commons-cli-1.4/NOTICES new file mode 100644 index 0000000000..dbfa54f361 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/commons-cli.commons-cli-1.4/NOTICES @@ -0,0 +1,17 @@ +/** + * 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/commons-io.commons-io-2.7/LICENSE.txt b/distribution/engine/THIRD-PARTY/commons-io.commons-io-2.7/LICENSE.txt new file mode 100644 index 0000000000..43e91eb0b0 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/commons-io.commons-io-2.7/LICENSE.txt @@ -0,0 +1,203 @@ + + 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/commons-io.commons-io-2.7/NOTICE.txt b/distribution/engine/THIRD-PARTY/commons-io.commons-io-2.7/NOTICE.txt new file mode 100644 index 0000000000..4a88d2aee7 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/commons-io.commons-io-2.7/NOTICE.txt @@ -0,0 +1,5 @@ +Apache Commons IO +Copyright 2002-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (https://www.apache.org/). diff --git a/distribution/engine/THIRD-PARTY/commons-io.commons-io-2.7/NOTICES b/distribution/engine/THIRD-PARTY/commons-io.commons-io-2.7/NOTICES new file mode 100644 index 0000000000..4b326ae5c2 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/commons-io.commons-io-2.7/NOTICES @@ -0,0 +1,17 @@ +/* + * 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/dev.zio.izumi-reflect-thirdparty-boopickle-shaded_2.13-1.0.0-M5/NOTICES b/distribution/engine/THIRD-PARTY/dev.zio.izumi-reflect-thirdparty-boopickle-shaded_2.13-1.0.0-M5/NOTICES new file mode 100644 index 0000000000..89f9312633 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/dev.zio.izumi-reflect-thirdparty-boopickle-shaded_2.13-1.0.0-M5/NOTICES @@ -0,0 +1,61 @@ +/* + * Copyright 2019-2020 Septimal Mind Ltd + * Copyright 2020 John A. De Goes and the ZIO Contributors + * + * 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-2020 John A. De Goes and the ZIO Contributors + * Copyright 2013-2020 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 2017-2020 John A. De Goes and the ZIO Contributors + +/* + * Copyright 2017-2020 John A. De Goes and the ZIO Contributors + * Copyright 2017-2018 Łukasz Biały, Paul Chiusano, Michael Pilquist, + * Oleg Pyzhcov, Fabio Labella, Alexandru Nedelcu, Pavel Chlupacek. + * + * 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. + */ + +----------------------- + +See dev.zio.izumi-reflect_2.13-1.0.0-M5 for more information. + diff --git a/distribution/engine/THIRD-PARTY/dev.zio.izumi-reflect_2.13-1.0.0-M5/LICENSE.txt b/distribution/engine/THIRD-PARTY/dev.zio.izumi-reflect_2.13-1.0.0-M5/LICENSE.txt new file mode 100644 index 0000000000..6c6309ed2b --- /dev/null +++ b/distribution/engine/THIRD-PARTY/dev.zio.izumi-reflect_2.13-1.0.0-M5/LICENSE.txt @@ -0,0 +1,11 @@ +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. \ No newline at end of file diff --git a/distribution/engine/THIRD-PARTY/dev.zio.izumi-reflect_2.13-1.0.0-M5/NOTICES b/distribution/engine/THIRD-PARTY/dev.zio.izumi-reflect_2.13-1.0.0-M5/NOTICES new file mode 100644 index 0000000000..02d4ae612e --- /dev/null +++ b/distribution/engine/THIRD-PARTY/dev.zio.izumi-reflect_2.13-1.0.0-M5/NOTICES @@ -0,0 +1,20 @@ +/* + * Copyright 2019-2020 Septimal Mind Ltd + * Copyright 2020 John A. De Goes and the ZIO Contributors + * + * 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. + * + */ + +The Apache 2.0 license file can be located in the licenses directory. + diff --git a/distribution/engine/THIRD-PARTY/dev.zio.zio-interop-cats_2.13-2.1.4.0/NOTICES b/distribution/engine/THIRD-PARTY/dev.zio.zio-interop-cats_2.13-2.1.4.0/NOTICES new file mode 100644 index 0000000000..2a050cb17b --- /dev/null +++ b/distribution/engine/THIRD-PARTY/dev.zio.zio-interop-cats_2.13-2.1.4.0/NOTICES @@ -0,0 +1,15 @@ +/* + * Copyright 2017-2019 John A. De Goes and the ZIO Contributors + * + * 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/dev.zio.zio-stacktracer_2.13-1.0.1/NOTICES b/distribution/engine/THIRD-PARTY/dev.zio.zio-stacktracer_2.13-1.0.1/NOTICES new file mode 100644 index 0000000000..4e7983ea88 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/dev.zio.zio-stacktracer_2.13-1.0.1/NOTICES @@ -0,0 +1,31 @@ +/* + * Copyright (C) 2014-2020 Lightbend 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 2017-2020 John A. De Goes and the ZIO Contributors + * + * 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/dev.zio.zio_2.13-1.0.1/NOTICES b/distribution/engine/THIRD-PARTY/dev.zio.zio_2.13-1.0.1/NOTICES new file mode 100644 index 0000000000..71714d09b5 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/dev.zio.zio_2.13-1.0.1/NOTICES @@ -0,0 +1,38 @@ +/* + * Copyright 2017-2020 John A. De Goes and the ZIO Contributors + * Copyright 2017-2018 Łukasz Biały, Paul Chiusano, Michael Pilquist, + * Oleg Pyzhcov, Fabio Labella, Alexandru Nedelcu, Pavel Chlupacek. + * + * 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. + */ + +Copyright 2017-2019 John A. De Goes and the ZIO Contributors + +/* + * Copyright 2017-2020 John A. De Goes and the ZIO Contributors + * Copyright 2013-2020 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/distribution/engine/THIRD-PARTY/eu.timepit.refined_2.13-0.9.14/LICENSE b/distribution/engine/THIRD-PARTY/eu.timepit.refined_2.13-0.9.14/LICENSE new file mode 100644 index 0000000000..b660072236 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/eu.timepit.refined_2.13-0.9.14/LICENSE @@ -0,0 +1,21 @@ +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.0-M1/LICENSE.argonaut b/distribution/engine/THIRD-PARTY/io.circe.circe-core_2.13-0.14.0-M1/LICENSE.argonaut new file mode 100644 index 0000000000..65c268be5c --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-core_2.13-0.14.0-M1/LICENSE.argonaut @@ -0,0 +1,24 @@ +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/engine/THIRD-PARTY/io.circe.circe-core_2.13-0.14.0-M1/LICENSE.ephox b/distribution/engine/THIRD-PARTY/io.circe.circe-core_2.13-0.14.0-M1/LICENSE.ephox new file mode 100644 index 0000000000..95272ae68c --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-core_2.13-0.14.0-M1/LICENSE.ephox @@ -0,0 +1,24 @@ +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-core_2.13-0.14.0-M1/NOTICE b/distribution/engine/THIRD-PARTY/io.circe.circe-core_2.13-0.14.0-M1/NOTICE new file mode 100644 index 0000000000..defc1e5eef --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-core_2.13-0.14.0-M1/NOTICE @@ -0,0 +1,5 @@ +circe +Copyright (c) 2015, Ephox Pty Ltd, Mark Hibberd, Sean Parsons, Travis Brown, and +other contributors. All rights reserved. + +Argonaut was initially developed to support products at Ephox. diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-generic-extras_2.13-0.13.0/NOTICES b/distribution/engine/THIRD-PARTY/io.circe.circe-generic-extras_2.13-0.13.0/NOTICES new file mode 100644 index 0000000000..d3f7cffe7f --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-generic-extras_2.13-0.13.0/NOTICES @@ -0,0 +1,4 @@ +The project repository is located at https://github.com/circe/circe-generic-extras + +We were unable to find any copyright notices that should be attached as per the license. + diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.0-M1/LICENSE.argonaut b/distribution/engine/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.0-M1/LICENSE.argonaut new file mode 100644 index 0000000000..65c268be5c --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.0-M1/LICENSE.argonaut @@ -0,0 +1,24 @@ +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/engine/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.0-M1/LICENSE.ephox b/distribution/engine/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.0-M1/LICENSE.ephox new file mode 100644 index 0000000000..95272ae68c --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.0-M1/LICENSE.ephox @@ -0,0 +1,24 @@ +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-generic_2.13-0.14.0-M1/NOTICE b/distribution/engine/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.0-M1/NOTICE new file mode 100644 index 0000000000..defc1e5eef --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.0-M1/NOTICE @@ -0,0 +1,5 @@ +circe +Copyright (c) 2015, Ephox Pty Ltd, Mark Hibberd, Sean Parsons, Travis Brown, and +other contributors. All rights reserved. + +Argonaut was initially developed to support products at Ephox. diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.0-M1/LICENSE.argonaut b/distribution/engine/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.0-M1/LICENSE.argonaut new file mode 100644 index 0000000000..65c268be5c --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.0-M1/LICENSE.argonaut @@ -0,0 +1,24 @@ +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/engine/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.0-M1/LICENSE.ephox b/distribution/engine/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.0-M1/LICENSE.ephox new file mode 100644 index 0000000000..95272ae68c --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.0-M1/LICENSE.ephox @@ -0,0 +1,24 @@ +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-jawn_2.13-0.14.0-M1/NOTICE b/distribution/engine/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.0-M1/NOTICE new file mode 100644 index 0000000000..defc1e5eef --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.0-M1/NOTICE @@ -0,0 +1,5 @@ +circe +Copyright (c) 2015, Ephox Pty Ltd, Mark Hibberd, Sean Parsons, Travis Brown, and +other contributors. All rights reserved. + +Argonaut was initially developed to support products at Ephox. diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.0-M1/LICENSE.argonaut b/distribution/engine/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.0-M1/LICENSE.argonaut new file mode 100644 index 0000000000..65c268be5c --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.0-M1/LICENSE.argonaut @@ -0,0 +1,24 @@ +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/engine/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.0-M1/LICENSE.ephox b/distribution/engine/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.0-M1/LICENSE.ephox new file mode 100644 index 0000000000..95272ae68c --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.0-M1/LICENSE.ephox @@ -0,0 +1,24 @@ +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-literal_2.13-0.14.0-M1/NOTICE b/distribution/engine/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.0-M1/NOTICE new file mode 100644 index 0000000000..defc1e5eef --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-literal_2.13-0.14.0-M1/NOTICE @@ -0,0 +1,5 @@ +circe +Copyright (c) 2015, Ephox Pty Ltd, Mark Hibberd, Sean Parsons, Travis Brown, and +other contributors. All rights reserved. + +Argonaut was initially developed to support products at Ephox. diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.0-M1/LICENSE.argonaut b/distribution/engine/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.0-M1/LICENSE.argonaut new file mode 100644 index 0000000000..65c268be5c --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.0-M1/LICENSE.argonaut @@ -0,0 +1,24 @@ +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/engine/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.0-M1/LICENSE.ephox b/distribution/engine/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.0-M1/LICENSE.ephox new file mode 100644 index 0000000000..95272ae68c --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.0-M1/LICENSE.ephox @@ -0,0 +1,24 @@ +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-numbers_2.13-0.14.0-M1/NOTICE b/distribution/engine/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.0-M1/NOTICE new file mode 100644 index 0000000000..defc1e5eef --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.0-M1/NOTICE @@ -0,0 +1,5 @@ +circe +Copyright (c) 2015, Ephox Pty Ltd, Mark Hibberd, Sean Parsons, Travis Brown, and +other contributors. All rights reserved. + +Argonaut was initially developed to support products at Ephox. diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.0-M1/LICENSE.argonaut b/distribution/engine/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.0-M1/LICENSE.argonaut new file mode 100644 index 0000000000..65c268be5c --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.0-M1/LICENSE.argonaut @@ -0,0 +1,24 @@ +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/engine/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.0-M1/LICENSE.ephox b/distribution/engine/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.0-M1/LICENSE.ephox new file mode 100644 index 0000000000..95272ae68c --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.0-M1/LICENSE.ephox @@ -0,0 +1,24 @@ +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.0-M1/NOTICE b/distribution/engine/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.0-M1/NOTICE new file mode 100644 index 0000000000..defc1e5eef --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.0-M1/NOTICE @@ -0,0 +1,5 @@ +circe +Copyright (c) 2015, Ephox Pty Ltd, Mark Hibberd, Sean Parsons, Travis Brown, and +other contributors. All rights reserved. + +Argonaut was initially developed to support products at Ephox. diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-yaml_2.13-0.13.1/LICENSE b/distribution/engine/THIRD-PARTY/io.circe.circe-yaml_2.13-0.13.1/LICENSE new file mode 100644 index 0000000000..7e7cb146f5 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-yaml_2.13-0.13.1/LICENSE @@ -0,0 +1,67 @@ +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: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and +You must cause any modified files to carry prominent notices stating that You changed the files; and +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 +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 diff --git a/distribution/engine/THIRD-PARTY/io.circe.circe-yaml_2.13-0.13.1/NOTICES b/distribution/engine/THIRD-PARTY/io.circe.circe-yaml_2.13-0.13.1/NOTICES new file mode 100644 index 0000000000..56bb4e93a1 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.circe.circe-yaml_2.13-0.13.1/NOTICES @@ -0,0 +1,4 @@ +The project repository is located at https://github.com/circe/circe-yaml + +We were unable to find any copyright notices that should be attached as per the license. + diff --git a/distribution/launcher/components-licences/LICENSE-APACHE b/distribution/engine/THIRD-PARTY/io.estatico.newtype_2.13-0.4.4/LICENSE similarity index 89% rename from distribution/launcher/components-licences/LICENSE-APACHE rename to distribution/engine/THIRD-PARTY/io.estatico.newtype_2.13-0.4.4/LICENSE index 2bb9ad240f..8dada3edaf 100644 --- a/distribution/launcher/components-licences/LICENSE-APACHE +++ b/distribution/engine/THIRD-PARTY/io.estatico.newtype_2.13-0.4.4/LICENSE @@ -173,4 +173,29 @@ incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS \ No newline at end of file + 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/io.estatico.newtype_2.13-0.4.4/NOTICES b/distribution/engine/THIRD-PARTY/io.estatico.newtype_2.13-0.4.4/NOTICES new file mode 100644 index 0000000000..5577ee1a6a --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.estatico.newtype_2.13-0.4.4/NOTICES @@ -0,0 +1,4 @@ +The project repository is located at https://github.com/estatico/scala-newtype + +We were unable to find any copyright notices that should be attached as per the license. + 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 new file mode 100644 index 0000000000..a68d29f673 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.methvin.directory-watcher-0.9.10/NOTICES @@ -0,0 +1,17 @@ +/* + * Code adapted from Greenrobot Essentials Murmur3F.java (https://git.io/fAG0Z) + * + * Copyright (C) 2014-2016 Markus Junginger, greenrobot (http://greenrobot.org) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/distribution/engine/THIRD-PARTY/io.spray.spray-json_2.13-1.3.5/NOTICES b/distribution/engine/THIRD-PARTY/io.spray.spray-json_2.13-1.3.5/NOTICES new file mode 100644 index 0000000000..ff981cbc6e --- /dev/null +++ b/distribution/engine/THIRD-PARTY/io.spray.spray-json_2.13-1.3.5/NOTICES @@ -0,0 +1,66 @@ +/* + * Copyright (C) 2011 Mathias Doenitz + * + * 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,2012 Mathias Doenitz, Johannes Rudolph + * + * 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 Mathias Doenitz + * + * 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-2011 Mathias Doenitz + * Inspired by a similar implementation by Nathan Hamblen + * (https://github.com/dispatch/classic) + * + * 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/licenses/APACHE2.0 b/distribution/engine/THIRD-PARTY/licenses/APACHE2.0 new file mode 100644 index 0000000000..261eeb9e9f --- /dev/null +++ b/distribution/engine/THIRD-PARTY/licenses/APACHE2.0 @@ -0,0 +1,201 @@ + 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/licenses/Bouncy_Castle_Licence.txt b/distribution/engine/THIRD-PARTY/licenses/Bouncy_Castle_Licence.txt new file mode 100644 index 0000000000..060c529ea0 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/licenses/Bouncy_Castle_Licence.txt @@ -0,0 +1,7 @@ +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/engine/THIRD-PARTY/licenses/CC0 b/distribution/engine/THIRD-PARTY/licenses/CC0 new file mode 100644 index 0000000000..0e259d42c9 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/licenses/CC0 @@ -0,0 +1,121 @@ +Creative Commons Legal Code + +CC0 1.0 Universal + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS + PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM + THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED + HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer +exclusive Copyright and Related Rights (defined below) upon the creator +and subsequent owner(s) (each and all, an "owner") of an original work of +authorship and/or a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for +the purpose of contributing to a commons of creative, cultural and +scientific works ("Commons") that the public can reliably and without fear +of later claims of infringement build upon, modify, incorporate in other +works, reuse and redistribute as freely as possible in any form whatsoever +and for any purposes, including without limitation commercial purposes. +These owners may contribute to the Commons to promote the ideal of a free +culture and the further production of creative, cultural and scientific +works, or to gain reputation or greater distribution for their Work in +part through the use and efforts of others. + +For these and/or other purposes and motivations, and without any +expectation of additional consideration or compensation, the person +associating CC0 with a Work (the "Affirmer"), to the extent that he or she +is an owner of Copyright and Related Rights in the Work, voluntarily +elects to apply CC0 to the Work and publicly distribute the Work under its +terms, with knowledge of his or her Copyright and Related Rights in the +Work and the meaning and intended legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be +protected by copyright and related or neighboring rights ("Copyright and +Related Rights"). Copyright and Related Rights include, but are not +limited to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, + communicate, and translate a Work; + ii. moral rights retained by the original author(s) and/or performer(s); +iii. publicity and privacy rights pertaining to a person's image or + likeness depicted in a Work; + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + v. rights protecting the extraction, dissemination, use and reuse of data + in a Work; + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation + thereof, including any amended or successor version of such + directive); and +vii. other similar, equivalent or corresponding rights throughout the + world based on applicable law or treaty, and any national + implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention +of, applicable law, Affirmer hereby overtly, fully, permanently, +irrevocably and unconditionally waives, abandons, and surrenders all of +Affirmer's Copyright and Related Rights and associated claims and causes +of action, whether now known or unknown (including existing as well as +future claims and causes of action), in the Work (i) in all territories +worldwide, (ii) for the maximum duration provided by applicable law or +treaty (including future time extensions), (iii) in any current or future +medium and for any number of copies, and (iv) for any purpose whatsoever, +including without limitation commercial, advertising or promotional +purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each +member of the public at large and to the detriment of Affirmer's heirs and +successors, fully intending that such Waiver shall not be subject to +revocation, rescission, cancellation, termination, or any other legal or +equitable action to disrupt the quiet enjoyment of the Work by the public +as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason +be judged legally invalid or ineffective under applicable law, then the +Waiver shall be preserved to the maximum extent permitted taking into +account Affirmer's express Statement of Purpose. In addition, to the +extent the Waiver is so judged Affirmer hereby grants to each affected +person a royalty-free, non transferable, non sublicensable, non exclusive, +irrevocable and unconditional license to exercise Affirmer's Copyright and +Related Rights in the Work (i) in all territories worldwide, (ii) for the +maximum duration provided by applicable law or treaty (including future +time extensions), (iii) in any current or future medium and for any number +of copies, and (iv) for any purpose whatsoever, including without +limitation commercial, advertising or promotional purposes (the +"License"). The License shall be deemed effective as of the date CC0 was +applied by Affirmer to the Work. Should any part of the License for any +reason be judged legally invalid or ineffective under applicable law, such +partial invalidity or ineffectiveness shall not invalidate the remainder +of the License, and in such case Affirmer hereby affirms that he or she +will not (i) exercise any of his or her remaining Copyright and Related +Rights in the Work or (ii) assert any associated claims and causes of +action with respect to the Work, in either case contrary to Affirmer's +express Statement of Purpose. + +4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + b. Affirmer offers the Work as-is and makes no representations or + warranties of any kind concerning the Work, express, implied, + statutory or otherwise, including without limitation warranties of + title, merchantability, fitness for a particular purpose, non + infringement, or the absence of latent or other defects, accuracy, or + the present or absence of errors, whether or not discoverable, all to + the greatest extent permissible under applicable law. + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without + limitation any person's Copyright and Related Rights in the Work. + Further, Affirmer disclaims responsibility for obtaining any necessary + consents, permissions or other rights required for any use of the + Work. + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to + this CC0 or use of the Work. diff --git a/distribution/launcher/components-licences/LICENSE-MIT b/distribution/engine/THIRD-PARTY/licenses/MIT similarity index 98% rename from distribution/launcher/components-licences/LICENSE-MIT rename to distribution/engine/THIRD-PARTY/licenses/MIT index e662c78621..fe45399e37 100644 --- a/distribution/launcher/components-licences/LICENSE-MIT +++ b/distribution/engine/THIRD-PARTY/licenses/MIT @@ -2,4 +2,5 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of 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 +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/net.java.dev.jna.jna-5.3.1/NOTICES b/distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.3.1/NOTICES new file mode 100644 index 0000000000..434452a88f --- /dev/null +++ b/distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.3.1/NOTICES @@ -0,0 +1,80 @@ +/* Copyright (c) 2018 Matthias Bläsing + +/* Copyright (c) 2009 Timothy Wall, All Rights Reserved + +/* Copyright (c) 2017 Matthias Bläsing, All Rights Reserved + +/* Copyright (c) 2007 Timothy Wall, All Rights Reserved + +Copyright 2007 Timothy Wall + +/* Copyright (c) 2012 Timothy Wall, All Rights Reserved + +/* Copyright (c) 2007-2008 Timothy Wall, All Rights Reserved + +/* Copyright (c) 2011 Timothy Wall, All Rights Reserved + +Copyright (c) 2007 Timothy Wall + +/* Copyright (c) 2007-2015 Timothy Wall, All Rights Reserved + +/* Copyright (c) 2019 Matthias Bläsing, All Rights Reserved + +/* Copyright (c) 2007-2012 Timothy Wall, All Rights Reserved + +------------- + +/* + * Copyright (c) 2007 Wayne Meissner, All Rights Reserved + * + * The contents of this file is dual-licensed under 2 + * alternative Open Source/Free licenses: LGPL 2.1 or later and + * Apache License 2.0. (starting with JNA version 4.0.0). + * + * You can freely decide which license you want to apply to + * the project. + * + * You may obtain a copy of the LGPL License at: + * + * http://www.gnu.org/licenses/licenses.html + * + * A copy is also included in the downloadable source code package + * containing JNA, in file "LGPL2.1". + * + * You may obtain a copy of the Apache License at: + * + * http://www.apache.org/licenses/ + * + * A copy is also included in the downloadable source code package + * containing JNA, in file "AL2.0". + */ + +/* Copyright (c) 2007 Wayne Meissner, All Rights Reserved + * Copyright (c) 2007-2013 Timothy Wall, All Rights Reserved + * + * The contents of this file is dual-licensed under 2 + * alternative Open Source/Free licenses: LGPL 2.1 or later and + * Apache License 2.0. (starting with JNA version 4.0.0). + * + * You can freely decide which license you want to apply to + * the project. + * + * You may obtain a copy of the LGPL License at: + * + * http://www.gnu.org/licenses/licenses.html + * + * A copy is also included in the downloadable source code package + * containing JNA, in file "LGPL2.1". + * + * You may obtain a copy of the Apache License at: + * + * http://www.apache.org/licenses/ + * + * A copy is also included in the downloadable source code package + * containing JNA, in file "AL2.0". + */ + +(We are choosing the Apache license for this component.) + +------------- + diff --git a/distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.5.0/NOTICES b/distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.5.0/NOTICES new file mode 100644 index 0000000000..434452a88f --- /dev/null +++ b/distribution/engine/THIRD-PARTY/net.java.dev.jna.jna-5.5.0/NOTICES @@ -0,0 +1,80 @@ +/* Copyright (c) 2018 Matthias Bläsing + +/* Copyright (c) 2009 Timothy Wall, All Rights Reserved + +/* Copyright (c) 2017 Matthias Bläsing, All Rights Reserved + +/* Copyright (c) 2007 Timothy Wall, All Rights Reserved + +Copyright 2007 Timothy Wall + +/* Copyright (c) 2012 Timothy Wall, All Rights Reserved + +/* Copyright (c) 2007-2008 Timothy Wall, All Rights Reserved + +/* Copyright (c) 2011 Timothy Wall, All Rights Reserved + +Copyright (c) 2007 Timothy Wall + +/* Copyright (c) 2007-2015 Timothy Wall, All Rights Reserved + +/* Copyright (c) 2019 Matthias Bläsing, All Rights Reserved + +/* Copyright (c) 2007-2012 Timothy Wall, All Rights Reserved + +------------- + +/* + * Copyright (c) 2007 Wayne Meissner, All Rights Reserved + * + * The contents of this file is dual-licensed under 2 + * alternative Open Source/Free licenses: LGPL 2.1 or later and + * Apache License 2.0. (starting with JNA version 4.0.0). + * + * You can freely decide which license you want to apply to + * the project. + * + * You may obtain a copy of the LGPL License at: + * + * http://www.gnu.org/licenses/licenses.html + * + * A copy is also included in the downloadable source code package + * containing JNA, in file "LGPL2.1". + * + * You may obtain a copy of the Apache License at: + * + * http://www.apache.org/licenses/ + * + * A copy is also included in the downloadable source code package + * containing JNA, in file "AL2.0". + */ + +/* Copyright (c) 2007 Wayne Meissner, All Rights Reserved + * Copyright (c) 2007-2013 Timothy Wall, All Rights Reserved + * + * The contents of this file is dual-licensed under 2 + * alternative Open Source/Free licenses: LGPL 2.1 or later and + * Apache License 2.0. (starting with JNA version 4.0.0). + * + * You can freely decide which license you want to apply to + * the project. + * + * You may obtain a copy of the LGPL License at: + * + * http://www.gnu.org/licenses/licenses.html + * + * A copy is also included in the downloadable source code package + * containing JNA, in file "LGPL2.1". + * + * You may obtain a copy of the Apache License at: + * + * http://www.apache.org/licenses/ + * + * A copy is also included in the downloadable source code package + * containing JNA, in file "AL2.0". + */ + +(We are choosing the Apache license for this component.) + +------------- + diff --git a/distribution/engine/THIRD-PARTY/nl.gn0s1s.bump_2.13-0.1.3/LICENSE.md b/distribution/engine/THIRD-PARTY/nl.gn0s1s.bump_2.13-0.1.3/LICENSE.md new file mode 100644 index 0000000000..1567135c4a --- /dev/null +++ b/distribution/engine/THIRD-PARTY/nl.gn0s1s.bump_2.13-0.1.3/LICENSE.md @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018-2020 Philippus Baalman + +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/org.apache.commons.commons-lang3-3.10/LICENSE.txt b/distribution/engine/THIRD-PARTY/org.apache.commons.commons-lang3-3.10/LICENSE.txt new file mode 100644 index 0000000000..75b52484ea --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.apache.commons.commons-lang3-3.10/LICENSE.txt @@ -0,0 +1,202 @@ + + 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.apache.commons.commons-lang3-3.10/NOTICE.txt b/distribution/engine/THIRD-PARTY/org.apache.commons.commons-lang3-3.10/NOTICE.txt new file mode 100644 index 0000000000..f63e60f53a --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.apache.commons.commons-lang3-3.10/NOTICE.txt @@ -0,0 +1,5 @@ +Apache Commons Lang +Copyright 2001-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (https://www.apache.org/). diff --git a/distribution/engine/THIRD-PARTY/org.apache.commons.commons-lang3-3.10/NOTICES b/distribution/engine/THIRD-PARTY/org.apache.commons.commons-lang3-3.10/NOTICES new file mode 100644 index 0000000000..4b326ae5c2 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.apache.commons.commons-lang3-3.10/NOTICES @@ -0,0 +1,17 @@ +/* + * 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.apache.tika.tika-core-1.24.1/LICENSE b/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-1.24.1/LICENSE new file mode 100644 index 0000000000..21bf8dc0d0 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-1.24.1/LICENSE @@ -0,0 +1,260 @@ + + 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-1.24.1/NOTICE b/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-1.24.1/NOTICE new file mode 100644 index 0000000000..db5ec1834c --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-1.24.1/NOTICE @@ -0,0 +1,8 @@ + +Apache Tika core +Copyright 2007-2020 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-1.24.1/NOTICES b/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-1.24.1/NOTICES new file mode 100644 index 0000000000..c524eb2d0e --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.apache.tika.tika-core-1.24.1/NOTICES @@ -0,0 +1,22 @@ +/* Copyright 2016 Norconex Inc. + +/* + * 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.bouncycastle.bcpkix-jdk15on-1.65/NOTICES b/distribution/engine/THIRD-PARTY/org.bouncycastle.bcpkix-jdk15on-1.65/NOTICES new file mode 100644 index 0000000000..d3e63d459b --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.bouncycastle.bcpkix-jdk15on-1.65/NOTICES @@ -0,0 +1,2 @@ +Copyright (c) 2000 - 2020 The Legion of the Bouncy Castle Inc. (https://www.bouncycastle.org) + diff --git a/distribution/engine/THIRD-PARTY/org.bouncycastle.bcprov-jdk15on-1.65/NOTICES b/distribution/engine/THIRD-PARTY/org.bouncycastle.bcprov-jdk15on-1.65/NOTICES new file mode 100644 index 0000000000..fdfd9b38a9 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.bouncycastle.bcprov-jdk15on-1.65/NOTICES @@ -0,0 +1,58 @@ +/** + * Copyright (c) 2011 Tim Buktu (tbuktu@hotmail.com) + * + * 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. + */ + + /* Partially optimised Serpent S Box boolean functions derived */ + /* using a recursive descent analyser but without a full search */ + /* of all subtrees. This set of S boxes is the result of work */ + /* by Sam Simpson and Brian Gladman using the spare time on a */ + /* cluster of high capacity servers to search for S boxes with */ + /* this customised search engine. There are now an average of */ + /* 15.375 terms per S box. */ + /* */ + /* Copyright: Dr B. R Gladman (gladman@seven77.demon.co.uk) */ + /* and Sam Simpson (s.simpson@mia.co.uk) */ + /* 17th December 1998 */ + /* */ + /* We hereby give permission for information in this file to be */ + /* used freely subject only to acknowledgement of its origin. */ + +/** + * The Bouncy Castle License + * + * Copyright (c) 2000-2019 The Legion Of The Bouncy Castle Inc. (http://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/engine/THIRD-PARTY/org.checkerframework.checker-qual-2.11.1/LICENSE.txt b/distribution/engine/THIRD-PARTY/org.checkerframework.checker-qual-2.11.1/LICENSE.txt new file mode 100644 index 0000000000..70d6a70fe2 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.checkerframework.checker-qual-2.11.1/LICENSE.txt @@ -0,0 +1,414 @@ +The Checker Framework +Copyright 2004-present by the Checker Framework developers + + +Most of the Checker Framework is licensed under the GNU General Public +License, version 2 (GPL2), with the classpath exception. The text of this +license appears below. This is the same license used for OpenJDK. + +A few parts of the Checker Framework have more permissive licenses, notably +the parts that you might want to include with your own program. + + * The annotations and utility files are licensed under the MIT License. + (The text of this license also appears below.) This applies to the + checker-qual*.jar and all the files that appear in it: every file in a + qual/ directory, plus utility files FormatUtil.java, + I18nFormatUtil.java, NullnessUtil.java, Opt.java, PurityUnqualified.java, + RegexUtil.java, SignednessUtil.java, SignednessUtilExtra.java, and + UnitsTools.java. It also applies to the cleanroom implementations of + third-party annotations (in checker/src/testannotations/ and in + framework/src/main/java/org/jmlspecs/). + +The Checker Framework includes annotations for some libraries. Those in +.astub files use the MIT License. Those in https://github.com/typetools/jdk +(which appears in the annotated-jdk directory of file checker.jar) use the +GPL2 license. + +Some external libraries that are included with the Checker Framework +distribution have different licenses. Here are some examples. + + * javaparser is dual licensed under the LGPL or the Apache license -- you + may use it under whichever one you want. (The javaparser source code + contains a file with the text of the GPL, but it is not clear why, since + javaparser does not use the GPL.) See + https://github.com/typetools/stubparser . + + * Annotation Tools (https://github.com/typetools/annotation-tools) uses + the MIT license. + + * Libraries in plume-lib (https://github.com/plume-lib/) are licensed + under the MIT License. + +=========================================================================== + +The GNU General Public License (GPL) + +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share +and change it. By contrast, the GNU General Public License is intended to +guarantee your freedom to share and change free software--to make sure the +software is free for all its users. This General Public License applies to +most of the Free Software Foundation's software and to any other program whose +authors commit to using it. (Some other Free Software Foundation software is +covered by the GNU Library General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom to +distribute copies of free software (and charge for this service if you wish), +that you receive source code or can get it if you want it, that you can change +the software or use pieces of it in new free programs; and that you know you +can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions +translate to certain responsibilities for you if you distribute copies of the +software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for +a fee, you must give the recipients all the rights that you have. You must +make sure that they, too, receive or can get the source code. And you must +show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) +offer you this license which gives you legal permission to copy, distribute +and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the +software is modified by someone else and passed on, we want its recipients to +know that what they have is not the original, so that any problems introduced +by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We +wish to avoid the danger that redistributors of a free program will +individually obtain patent licenses, in effect making the program proprietary. +To prevent this, we have made it clear that any patent must be licensed for +everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice +placed by the copyright holder saying it may be distributed under the terms of +this General Public License. The "Program", below, refers to any such program +or work, and a "work based on the Program" means either the Program or any +derivative work under copyright law: that is to say, a work containing the +Program or a portion of it, either verbatim or with modifications and/or +translated into another language. (Hereinafter, translation is included +without limitation in the term "modification".) Each licensee is addressed as +"you". + +Activities other than copying, distribution and modification are not covered by +this License; they are outside its scope. The act of running the Program is +not restricted, and the output from the Program is covered only if its contents +constitute a work based on the Program (independent of having been made by +running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as +you receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice and +disclaimer of warranty; keep intact all the notices that refer to this License +and to the absence of any warranty; and give any other recipients of the +Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may +at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus +forming a work based on the Program, and copy and distribute such modifications +or work under the terms of Section 1 above, provided that you also meet all of +these conditions: + + a) You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole or + in part contains or is derived from the Program or any part thereof, to be + licensed as a whole at no charge to all third parties under the terms of + this License. + + c) If the modified program normally reads commands interactively when run, + you must cause it, when started running for such interactive use in the + most ordinary way, to print or display an announcement including an + appropriate copyright notice and a notice that there is no warranty (or + else, saying that you provide a warranty) and that users may redistribute + the program under these conditions, and telling the user how to view a copy + of this License. (Exception: if the Program itself is interactive but does + not normally print such an announcement, your work based on the Program is + not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable +sections of that work are not derived from the Program, and can be reasonably +considered independent and separate works in themselves, then this License, and +its terms, do not apply to those sections when you distribute them as separate +works. But when you distribute the same sections as part of a whole which is a +work based on the Program, the distribution of the whole must be on the terms +of this License, whose permissions for other licensees extend to the entire +whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your +rights to work written entirely by you; rather, the intent is to exercise the +right to control the distribution of derivative or collective works based on +the Program. + +In addition, mere aggregation of another work not based on the Program with the +Program (or with a work based on the Program) on a volume of a storage or +distribution medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections 1 and +2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source + code, which must be distributed under the terms of Sections 1 and 2 above + on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of Sections 1 + and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed only + for noncommercial distribution and only if you received the program in + object code or executable form with such an offer, in accord with + Subsection b above.) + +The source code for a work means the preferred form of the work for making +modifications to it. For an executable work, complete source code means all +the source code for all modules it contains, plus any associated interface +definition files, plus the scripts used to control compilation and installation +of the executable. However, as a special exception, the source code +distributed need not include anything that is normally distributed (in either +source or binary form) with the major components (compiler, kernel, and so on) +of the operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the source +code from the same place counts as distribution of the source code, even though +third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as +expressly provided under this License. Any attempt otherwise to copy, modify, +sublicense or distribute the Program is void, and will automatically terminate +your rights under this License. However, parties who have received copies, or +rights, from you under this License will not have their licenses terminated so +long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. +However, nothing else grants you permission to modify or distribute the Program +or its derivative works. These actions are prohibited by law if you do not +accept this License. Therefore, by modifying or distributing the Program (or +any work based on the Program), you indicate your acceptance of this License to +do so, and all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), +the recipient automatically receives a license from the original licensor to +copy, distribute or modify the Program subject to these terms and conditions. +You may not impose any further restrictions on the recipients' exercise of the +rights granted herein. You are not responsible for enforcing compliance by +third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), conditions +are imposed on you (whether by court order, agreement or otherwise) that +contradict the conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as to satisfy +simultaneously your obligations under this License and any other pertinent +obligations, then as a consequence you may not distribute the Program at all. +For example, if a patent license would not permit royalty-free redistribution +of the Program by all those who receive copies directly or indirectly through +you, then the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply and +the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or +other property right claims or to contest validity of any such claims; this +section has the sole purpose of protecting the integrity of the free software +distribution system, which is implemented by public license practices. Many +people have made generous contributions to the wide range of software +distributed through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee cannot impose that +choice. + +This section is intended to make thoroughly clear what is believed to be a +consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain +countries either by patents or by copyrighted interfaces, the original +copyright holder who places the Program under this License may add an explicit +geographical distribution limitation excluding those countries, so that +distribution is permitted only in or among countries not thus excluded. In +such case, this License incorporates the limitation as if written in the body +of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the +General Public License from time to time. Such new versions will be similar in +spirit to the present version, but may differ in detail to address new problems +or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any later +version", you have the option of following the terms and conditions either of +that version or of any later version published by the Free Software Foundation. +If the Program does not specify a version number of this License, you may +choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs +whose distribution conditions are different, write to the author to ask for +permission. For software which is copyrighted by the Free Software Foundation, +write to the Free Software Foundation; we sometimes make exceptions for this. +Our decision will be guided by the two goals of preserving the free status of +all derivatives of our free software and of promoting the sharing and reuse of +software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR +THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE +STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE +PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, +YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE +PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR +INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA +BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER +OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible +use to the public, the best way to achieve this is to make it free software +which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach +them to the start of each source file to most effectively convey the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + One line to give the program's name and a brief idea of what it does. + + Copyright (C) + + 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 + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it +starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author Gnomovision comes + with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free + software, and you are welcome to redistribute it under certain conditions; + type 'show c' for details. + +The hypothetical commands 'show w' and 'show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may be +called something other than 'show w' and 'show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, +if any, to sign a "copyright disclaimer" for the program, if necessary. Here +is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + 'Gnomovision' (which makes passes at compilers) written by James Hacker. + + signature of Ty Coon, 1 April 1989 + + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General Public +License instead of this License. + + +"CLASSPATH" EXCEPTION TO THE GPL + +Certain source files distributed by Oracle America and/or its affiliates are +subject to the following clarification and special exception to the GPL, but +only where Oracle has expressly included in the particular source file's header +the words "Oracle designates this particular file as subject to the "Classpath" +exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. + +=========================================================================== + +MIT License: + +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/org.checkerframework.checker-qual-2.11.1/NOTICES b/distribution/engine/THIRD-PARTY/org.checkerframework.checker-qual-2.11.1/NOTICES new file mode 100644 index 0000000000..2f40bf232f --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.checkerframework.checker-qual-2.11.1/NOTICES @@ -0,0 +1,5 @@ +This program only distributes portions of the module contained in one of the checker-qual*.jar files, +so as described in the attached LICENSE.txt, only the MIT license applies. +The LGPL license is included for completeness, but it does not apply in our usecase, +as we only distribute the MIT-licensed components. + diff --git a/distribution/engine/THIRD-PARTY/org.jline.jline-3.15.0/LICENSE.txt b/distribution/engine/THIRD-PARTY/org.jline.jline-3.15.0/LICENSE.txt new file mode 100644 index 0000000000..7e11b67fba --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.jline.jline-3.15.0/LICENSE.txt @@ -0,0 +1,35 @@ +Copyright (c) 2002-2018, the original author or authors. +All rights reserved. + +https://opensource.org/licenses/BSD-3-Clause + +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 JLine 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. + diff --git a/distribution/engine/THIRD-PARTY/org.jline.jline-3.15.0/NOTICES b/distribution/engine/THIRD-PARTY/org.jline.jline-3.15.0/NOTICES new file mode 100644 index 0000000000..8c70e3d9d8 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.jline.jline-3.15.0/NOTICES @@ -0,0 +1,109 @@ +/* + * 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. + */ + +/* + * Copyright (C) 2009-2018 the original author(s). + * + * 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. + */ + +/* + * 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. + */ + +/* + * Java TelnetD library (embeddable telnet daemon) + * Copyright (c) 2000-2005 Dieter Wimberger + * 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 author 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 HOLDER AND CONTRIBUTORS ``AS + * IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + ***/ + +/* + * Copyright (c) 2002-2017, the original author or authors. + * + * This software is distributable under the BSD license. See the terms of the + * BSD license in the documentation provided with this software. + * + * https://opensource.org/licenses/BSD-3-Clause + */ + +Copyright (c) 2002-2019, the original author or authors. + +Copyright (c) 2002-2020, the original author or authors. + +Copyright (c) 2002-2018, the original author or authors. + +Copyright (c) 2002-2016, the original author or authors. + +/* + * Copyright (c) 2002-2016, the original author or authors. + * + * This software is distributable under the BSD license. See the terms of the + * BSD license in the documentation provided with this software. + * + * https://opensource.org/licenses/BSD-3-Clause + */ + diff --git a/distribution/engine/THIRD-PARTY/org.reactivestreams.reactive-streams-1.0.2/NOTICES b/distribution/engine/THIRD-PARTY/org.reactivestreams.reactive-streams-1.0.2/NOTICES new file mode 100644 index 0000000000..bd0a85c0c7 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.reactivestreams.reactive-streams-1.0.2/NOTICES @@ -0,0 +1,10 @@ +/************************************************************************ + * Licensed under Public Domain (CC0) * + * * + * To the extent possible under law, the person who associated CC0 with * + * this code has waived all copyright and related or neighboring * + * rights to this code. * + * * + * You should have received a copy of the CC0 legalcode along with this * + * work. If not, see .* + ************************************************************************/ diff --git a/distribution/engine/THIRD-PARTY/org.reactivestreams.reactive-streams-1.0.3/NOTICES b/distribution/engine/THIRD-PARTY/org.reactivestreams.reactive-streams-1.0.3/NOTICES new file mode 100644 index 0000000000..bd0a85c0c7 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.reactivestreams.reactive-streams-1.0.3/NOTICES @@ -0,0 +1,10 @@ +/************************************************************************ + * Licensed under Public Domain (CC0) * + * * + * To the extent possible under law, the person who associated CC0 with * + * this code has waived all copyright and related or neighboring * + * rights to this code. * + * * + * You should have received a copy of the CC0 legalcode along with this * + * work. If not, see .* + ************************************************************************/ diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.modules.scala-collection-compat_2.13-2.0.0/NOTICES b/distribution/engine/THIRD-PARTY/org.scala-lang.modules.scala-collection-compat_2.13-2.0.0/NOTICES new file mode 100644 index 0000000000..454e8a4f61 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.scala-lang.modules.scala-collection-compat_2.13-2.0.0/NOTICES @@ -0,0 +1,14 @@ +/* + * Scala (https://www.scala-lang.org) + * + * Copyright EPFL and Lightbend, Inc. + * + * Licensed under Apache License 2.0 + * (http://www.apache.org/licenses/LICENSE-2.0). + * + * See the NOTICE file distributed with this work for + * additional information regarding copyright ownership. + */ + +See org.scala-lang.scala-library-2.13 for notices related to this module. + diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/NOTICE b/distribution/engine/THIRD-PARTY/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/NOTICE new file mode 100644 index 0000000000..3eccb0b52f --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/NOTICE @@ -0,0 +1,14 @@ +scala-java8-compat +Copyright (c) 2002-2020 EPFL +Copyright (c) 2011-2020 Lightbend, Inc. + +scala-java8-compat includes software developed at +LAMP/EPFL (https://lamp.epfl.ch/) and +Lightbend, Inc. (https://www.lightbend.com/). + +Licensed under the Apache License, Version 2.0 (the "License"). +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.scala-lang.modules.scala-java8-compat_2.13-0.9.0/NOTICES b/distribution/engine/THIRD-PARTY/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/NOTICES new file mode 100644 index 0000000000..454e8a4f61 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/NOTICES @@ -0,0 +1,14 @@ +/* + * Scala (https://www.scala-lang.org) + * + * Copyright EPFL and Lightbend, Inc. + * + * Licensed under Apache License 2.0 + * (http://www.apache.org/licenses/LICENSE-2.0). + * + * See the NOTICE file distributed with this work for + * additional information regarding copyright ownership. + */ + +See org.scala-lang.scala-library-2.13 for notices related to this module. + diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/NOTICE b/distribution/engine/THIRD-PARTY/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/NOTICE new file mode 100644 index 0000000000..779e510da7 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/NOTICE @@ -0,0 +1,14 @@ +Scala parser combinators +Copyright (c) 2002-2020 EPFL +Copyright (c) 2011-2020 Lightbend, Inc. + +Scala includes software developed at +LAMP/EPFL (https://lamp.epfl.ch/) and +Lightbend, Inc. (https://www.lightbend.com/). + +Licensed under the Apache License, Version 2.0 (the "License"). +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.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/NOTICES b/distribution/engine/THIRD-PARTY/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/NOTICES new file mode 100644 index 0000000000..454e8a4f61 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/NOTICES @@ -0,0 +1,14 @@ +/* + * Scala (https://www.scala-lang.org) + * + * Copyright EPFL and Lightbend, Inc. + * + * Licensed under Apache License 2.0 + * (http://www.apache.org/licenses/LICENSE-2.0). + * + * See the NOTICE file distributed with this work for + * additional information regarding copyright ownership. + */ + +See org.scala-lang.scala-library-2.13 for notices related to this module. + 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 new file mode 100644 index 0000000000..a7d1b57f28 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.scala-lang.modules.scala-xml_2.13-1.3.0/NOTICES @@ -0,0 +1,10 @@ +/* __ *\ +** ________ ___ / / ___ 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.3/NOTICE b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-compiler-2.13.3/NOTICE new file mode 100644 index 0000000000..ac3a26b40f --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-compiler-2.13.3/NOTICE @@ -0,0 +1,16 @@ +Scala +Copyright (c) 2002-2020 EPFL +Copyright (c) 2011-2020 Lightbend, Inc. + +Scala includes software developed at +LAMP/EPFL (https://lamp.epfl.ch/) and +Lightbend, Inc. (https://www.lightbend.com/). + +Licensed under the Apache License, Version 2.0 (the "License"). +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. + +This software includes projects with other licenses -- see `doc/LICENSE.md`. diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.scala-compiler-2.13.3/NOTICES b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-compiler-2.13.3/NOTICES new file mode 100644 index 0000000000..864e5eca46 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-compiler-2.13.3/NOTICES @@ -0,0 +1,13 @@ +/* NSC -- new Scala compiler + * Copyright 2005-2013 LAMP/EPFL + * @author Martin Odersky + */ + +Copyright 2002-2017 LAMP/EPFL and Lightbend, Inc. + +Copyright 2005-2017 LAMP/EPFL and Lightbend, Inc + +Copyright 2005-2017 LAMP/EPFL and Lightbend, Inc. + +See org.scala-lang.scala-library-2.13 for additional documentation related to this module. + diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/NOTICE b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/NOTICE new file mode 100644 index 0000000000..ac3a26b40f --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/NOTICE @@ -0,0 +1,16 @@ +Scala +Copyright (c) 2002-2020 EPFL +Copyright (c) 2011-2020 Lightbend, Inc. + +Scala includes software developed at +LAMP/EPFL (https://lamp.epfl.ch/) and +Lightbend, Inc. (https://www.lightbend.com/). + +Licensed under the Apache License, Version 2.0 (the "License"). +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. + +This software includes projects with other licenses -- see `doc/LICENSE.md`. diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/NOTICES b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/NOTICES new file mode 100644 index 0000000000..ff57b17eef --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/NOTICES @@ -0,0 +1,11 @@ +/* + * Scala (https://www.scala-lang.org) + * + * Copyright EPFL and Lightbend, Inc. + * + * Licensed under Apache License 2.0 + * (http://www.apache.org/licenses/LICENSE-2.0). + * + * See the NOTICE file distributed with this work for + * additional information regarding copyright ownership. + */ diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/LICENSE.md b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/LICENSE.md new file mode 100644 index 0000000000..83ef781d15 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/LICENSE.md @@ -0,0 +1,42 @@ +Scala is licensed under the [Apache License Version 2.0](https://www.apache.org/licenses/LICENSE-2.0). + +## Scala License + +Copyright (c) 2002-2020 EPFL + +Copyright (c) 2011-2020 Lightbend, Inc. + +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. + +# Other Licenses + +This software includes projects with the following licenses, +which are also included in the `licenses/` directory: + +### [Apache License](http://www.apache.org/licenses/LICENSE-2.0.html) +This license is used by the following third-party libraries: + + * JNA + +### [BSD 3-Clause License](http://opensource.org/licenses/BSD-3-Clause) +This license is used by the following third-party libraries: + + * ASM + * JLine 3 + +### [MIT License](http://www.opensource.org/licenses/MIT) +This license is used by the following third-party libraries: + + * jQuery diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/License.rtf b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/License.rtf new file mode 100644 index 0000000000..376ec02cb5 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/License.rtf @@ -0,0 +1,85 @@ +{\rtf1\ansi\ansicpg1252\cocoartf2511 +\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fswiss\fcharset0 Helvetica-Bold;} +{\colortbl;\red255\green255\blue255;\red27\green31\blue34;\red10\green77\blue204;\red0\green0\blue0; +\red21\green23\blue26;} +{\*\expandedcolortbl;;\cssrgb\c14118\c16078\c18039;\cssrgb\c1176\c40000\c83922;\csgray\c0\c0; +\cssrgb\c10588\c12157\c13725\c4706;} +{\*\listtable{\list\listtemplateid1\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid1\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid1} +{\list\listtemplateid2\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid101\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid2} +{\list\listtemplateid3\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid201\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid3} +{\list\listtemplateid4\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid301\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid4}} +{\*\listoverridetable{\listoverride\listid1\listoverridecount0\ls1}{\listoverride\listid2\listoverridecount0\ls2}{\listoverride\listid3\listoverridecount0\ls3}{\listoverride\listid4\listoverridecount0\ls4}} +\paperw11900\paperh16840\margl1440\margr1440\vieww17360\viewh20980\viewkind0 +\deftab720 +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\fs28 \cf2 \expnd0\expndtw0\kerning0 +Scala is licensed under the\'a0{\field{\*\fldinst{HYPERLINK "https://www.apache.org/licenses/LICENSE-2.0"}}{\fldrslt \cf3 Apache License Version 2.0}}.\ +\pard\pardeftab720\sl360\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl440\sa320\partightenfactor0 + +\fs48 \cf2 Scala License\ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0\fs28 \cf2 Copyright (c) 2002-2020 EPFL\ +Copyright (c) 2011-2020 Lightbend, Inc.\ +All rights reserved.\ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +\cf2 \cb4 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 {\field{\*\fldinst{HYPERLINK "http://www.apache.org/licenses/LICENSE-2.0"}}{\fldrslt 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.\ +\pard\pardeftab720\sl480\partightenfactor0 + +\f1\b \cf3 \cb1 \ +\pard\pardeftab720\sl600\sa320\partightenfactor0 + +\fs48 \cf2 Other Licenses\ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0\fs28 \cf2 This software includes projects with the following licenses, which are also included in the\'a0\cb5 licenses/\cb1 \'a0directory:\ +\pard\pardeftab720\sl300\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +{\field{\*\fldinst{HYPERLINK "http://www.apache.org/licenses/LICENSE-2.0.html"}}{\fldrslt \cf3 Apache License}}\cf2 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0 \cf2 This license is used by the following third-party libraries:\ +\pard\tx220\tx720\pardeftab720\li720\fi-720\sl360\partightenfactor0 +\ls1\ilvl0\cf2 \kerning1\expnd0\expndtw0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0 +JNA\ +\pard\pardeftab720\sl300\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +{\field{\*\fldinst{HYPERLINK "http://www.opensource.org/licenses/bsd-license.php"}}{\fldrslt \cf3 BSD License}}\cf2 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0 \cf2 This license is used by the following third-party libraries:\ +\pard\tx220\tx720\pardeftab720\li720\fi-720\sl360\partightenfactor0 +\ls2\ilvl0\cf2 \kerning1\expnd0\expndtw0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0 +JLine 3\ +\pard\pardeftab720\sl300\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +{\field{\*\fldinst{HYPERLINK "http://opensource.org/licenses/BSD-3-Clause"}}{\fldrslt \cf3 BSD 3-Clause License}}\cf2 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0 \cf2 This license is used by the following third-party libraries:\ +\pard\tx220\tx720\pardeftab720\li720\fi-720\sl360\partightenfactor0 +\ls3\ilvl0\cf2 \kerning1\expnd0\expndtw0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0 +ASM\ +\pard\pardeftab720\sl300\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +{\field{\*\fldinst{HYPERLINK "http://www.opensource.org/licenses/MIT"}}{\fldrslt \cf3 MIT License}}\cf2 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0 \cf2 This license is used by the following third-party libraries:\ +\pard\tx220\tx720\pardeftab720\li720\fi-720\sl360\partightenfactor0 +\ls4\ilvl0\cf2 \kerning1\expnd0\expndtw0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0 +jQuery\ +} \ No newline at end of file diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/apache_jna.txt b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/apache_jna.txt new file mode 100644 index 0000000000..592efd6604 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/apache_jna.txt @@ -0,0 +1,205 @@ +Scala includes the JLine library, which includes the JNA library, +which is made available under multiple licenses, including the +Apache 2 license: + + 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.scala-lang.scala-library-2.13.3/doc/licenses/bsd_asm.txt b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/bsd_asm.txt new file mode 100644 index 0000000000..a3591e4b40 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/bsd_asm.txt @@ -0,0 +1,31 @@ +Scala includes the ASM library. + +Copyright (c) 2000-2011 INRIA, France Telecom +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 the copyright holders 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. diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/bsd_jline.txt b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/bsd_jline.txt new file mode 100644 index 0000000000..cf45a50bea --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/bsd_jline.txt @@ -0,0 +1,36 @@ +Scala includes the JLine 3 library: + +Copyright (c) 2002-2018, the original author or authors. +All rights reserved. + +https://opensource.org/licenses/BSD-3-Clause + +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 JLine 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. diff --git a/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/mit_jquery.txt b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/mit_jquery.txt new file mode 100644 index 0000000000..ea261d2cfa --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/mit_jquery.txt @@ -0,0 +1,22 @@ +Scala includes the jQuery library: + +Copyright JS Foundation and other contributors, https://js.foundation/ + +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/org.scala-lang.scala-reflect-2.13.3/NOTICES b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.3/NOTICES new file mode 100644 index 0000000000..855813149e --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.3/NOTICES @@ -0,0 +1,18 @@ +/* + * Scala (https://www.scala-lang.org) + * + * Copyright EPFL and Lightbend, Inc. + * + * Licensed under Apache License 2.0 + * (http://www.apache.org/licenses/LICENSE-2.0). + * + * See the NOTICE file distributed with this work for + * additional information regarding copyright ownership. + */ + +/* NSC -- new Scala compiler + * Copyright 2005-2013 LAMP/EPFL + */ + +See org.scala-lang.scala-library-2.13 for notices related to this module. + diff --git a/distribution/engine/THIRD-PARTY/org.slf4j.slf4j-api-1.7.25/NOTICES b/distribution/engine/THIRD-PARTY/org.slf4j.slf4j-api-1.7.25/NOTICES new file mode 100644 index 0000000000..aecbef31f7 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.slf4j.slf4j-api-1.7.25/NOTICES @@ -0,0 +1,24 @@ +/** + * 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/engine/THIRD-PARTY/org.slf4j.slf4j-api-1.7.30/NOTICES b/distribution/engine/THIRD-PARTY/org.slf4j.slf4j-api-1.7.30/NOTICES new file mode 100644 index 0000000000..aecbef31f7 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.slf4j.slf4j-api-1.7.30/NOTICES @@ -0,0 +1,24 @@ +/** + * 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/engine/THIRD-PARTY/org.typelevel.alleycats-core_2.13-2.1.1/COPYING b/distribution/engine/THIRD-PARTY/org.typelevel.alleycats-core_2.13-2.1.1/COPYING new file mode 100644 index 0000000000..6e5add81f8 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.typelevel.alleycats-core_2.13-2.1.1/COPYING @@ -0,0 +1,49 @@ +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. diff --git a/distribution/engine/THIRD-PARTY/org.typelevel.alleycats-core_2.13-2.1.1/NOTICES b/distribution/engine/THIRD-PARTY/org.typelevel.alleycats-core_2.13-2.1.1/NOTICES new file mode 100644 index 0000000000..5dc9eaad2b --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.typelevel.alleycats-core_2.13-2.1.1/NOTICES @@ -0,0 +1,2 @@ +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-core_2.13-2.2.0-M3/AUTHORS.md b/distribution/engine/THIRD-PARTY/org.typelevel.cats-core_2.13-2.2.0-M3/AUTHORS.md new file mode 100644 index 0000000000..34ea0d8230 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.typelevel.cats-core_2.13-2.2.0-M3/AUTHORS.md @@ -0,0 +1,324 @@ +## 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.2.0-M3/COPYING b/distribution/engine/THIRD-PARTY/org.typelevel.cats-core_2.13-2.2.0-M3/COPYING new file mode 100644 index 0000000000..6e5add81f8 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.typelevel.cats-core_2.13-2.2.0-M3/COPYING @@ -0,0 +1,49 @@ +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. diff --git a/distribution/engine/THIRD-PARTY/org.typelevel.cats-free_2.13-2.1.1/COPYING b/distribution/engine/THIRD-PARTY/org.typelevel.cats-free_2.13-2.1.1/COPYING new file mode 100644 index 0000000000..6e5add81f8 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.typelevel.cats-free_2.13-2.1.1/COPYING @@ -0,0 +1,49 @@ +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. diff --git a/distribution/engine/THIRD-PARTY/org.typelevel.cats-free_2.13-2.1.1/NOTICES b/distribution/engine/THIRD-PARTY/org.typelevel.cats-free_2.13-2.1.1/NOTICES new file mode 100644 index 0000000000..5dc9eaad2b --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.typelevel.cats-free_2.13-2.1.1/NOTICES @@ -0,0 +1,2 @@ +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.2.0-M3/COPYING b/distribution/engine/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.2.0-M3/COPYING new file mode 100644 index 0000000000..6e5add81f8 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.2.0-M3/COPYING @@ -0,0 +1,49 @@ +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. diff --git a/distribution/engine/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.2.0-M3/NOTICES b/distribution/engine/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.2.0-M3/NOTICES new file mode 100644 index 0000000000..5dc9eaad2b --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.2.0-M3/NOTICES @@ -0,0 +1,2 @@ +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-macros_2.13-2.1.1/COPYING b/distribution/engine/THIRD-PARTY/org.typelevel.cats-macros_2.13-2.1.1/COPYING new file mode 100644 index 0000000000..6e5add81f8 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.typelevel.cats-macros_2.13-2.1.1/COPYING @@ -0,0 +1,49 @@ +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. diff --git a/distribution/engine/THIRD-PARTY/org.typelevel.cats-macros_2.13-2.1.1/NOTICES b/distribution/engine/THIRD-PARTY/org.typelevel.cats-macros_2.13-2.1.1/NOTICES new file mode 100644 index 0000000000..5dc9eaad2b --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.typelevel.cats-macros_2.13-2.1.1/NOTICES @@ -0,0 +1,2 @@ +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.jawn-parser_2.13-1.0.0/LICENSE b/distribution/engine/THIRD-PARTY/org.typelevel.jawn-parser_2.13-1.0.0/LICENSE new file mode 100644 index 0000000000..d07c01e8c9 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.typelevel.jawn-parser_2.13-1.0.0/LICENSE @@ -0,0 +1,7 @@ +Copyright Erik Osheim, 2012-2020. + +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/org.typelevel.kittens_2.13-2.1.0/NOTICES b/distribution/engine/THIRD-PARTY/org.typelevel.kittens_2.13-2.1.0/NOTICES new file mode 100644 index 0000000000..2e3f5bf3a6 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.typelevel.kittens_2.13-2.1.0/NOTICES @@ -0,0 +1,18 @@ +Copyright (c) 2015 Miles Sabin + +/* + * Copyright (c) 2016 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/distribution/engine/THIRD-PARTY/org.xerial.sqlite-jdbc-3.31.1/LICENSE b/distribution/engine/THIRD-PARTY/org.xerial.sqlite-jdbc-3.31.1/LICENSE new file mode 100644 index 0000000000..75b52484ea --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.xerial.sqlite-jdbc-3.31.1/LICENSE @@ -0,0 +1,202 @@ + + 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.xerial.sqlite-jdbc-3.31.1/LICENSE.zentus b/distribution/engine/THIRD-PARTY/org.xerial.sqlite-jdbc-3.31.1/LICENSE.zentus new file mode 100644 index 0000000000..3e044abb4c --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.xerial.sqlite-jdbc-3.31.1/LICENSE.zentus @@ -0,0 +1,24 @@ +Copyright (c) 2006, David Crawshaw. 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 REGENTS 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. + diff --git a/distribution/engine/THIRD-PARTY/org.xerial.sqlite-jdbc-3.31.1/NOTICES b/distribution/engine/THIRD-PARTY/org.xerial.sqlite-jdbc-3.31.1/NOTICES new file mode 100644 index 0000000000..fbc6e88a9b --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.xerial.sqlite-jdbc-3.31.1/NOTICES @@ -0,0 +1,54 @@ +/*-------------------------------------------------------------------------- + * Copyright 2016 Magnus Reftel + * + * 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 2007 Taro L. Saito + * + * 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 2010 Taro L. Saito + +Copyright 2008 Taro L. Saito + +Copyright 2009 Taro L. Saito + +/* + * Copyright (c) 2007 David Crawshaw + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + diff --git a/distribution/engine/THIRD-PARTY/org.yaml.snakeyaml-1.26/NOTICES b/distribution/engine/THIRD-PARTY/org.yaml.snakeyaml-1.26/NOTICES new file mode 100644 index 0000000000..af01c01c56 --- /dev/null +++ b/distribution/engine/THIRD-PARTY/org.yaml.snakeyaml-1.26/NOTICES @@ -0,0 +1,20 @@ +/* Copyright (c) 2008 Google Inc. + +/** + * Copyright (c) 2008, http://www.snakeyaml.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 2003-2010 Christian d'Heureuse, Inventec Informatik AG, Zurich, Switzerland +// www.source-code.biz, www.inventec.ch/chdh diff --git a/distribution/launcher/NOTICE b/distribution/launcher/NOTICE deleted file mode 100644 index e04b81fd49..0000000000 --- a/distribution/launcher/NOTICE +++ /dev/null @@ -1,338 +0,0 @@ -Enso -Copyright 2020 New Byte Order sp. z o. o. - -As the launcher is built into a native binary using GraalVM Native Image, some -of the dependencies that are listed here may not actually be distributed with it -if their code was removed during compilation. For completeness, this document -lists all source dependencies that were used for its compilation. - -'cats', licensed under the MIT licence -(see: components-licences/LICENSE-MIT), is distributed with the launcher. It -requires the following notice: -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. - -======================= - -'circe', licensed under Apache License Version 2.0 -(see: components-licences/LICENSE-APACHE) is distributed with the launcher. -It requires the following notice: -circe -Copyright (c) 2015, Ephox Pty Ltd, Mark Hibberd, Sean Parsons, Travis Brown, and -other contributors. All rights reserved. - -Argonaut was initially developed to support products at Ephox. - ----------------------- - -'circe-yaml', licensed under Apache License Version 2.0 -(see: components-licences/LICENSE-APACHE) is distributed with the launcher. - -======================= - -Apache Commons IO, licensed under Apache License Version 2.0 -(see: components-licences/LICENSE-APACHE) is distributed with the launcher. -It requires the following notice: -Apache Commons IO -Copyright 2002-2017 The Apache Software Foundation - -This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). - -------------------------- - -Apache Commons Codec, licensed under Apache License Version 2.0 -(see: components-licences/LICENSE-APACHE) is distributed with the launcher. -It requires the following notice: -Apache Commons Codec -Copyright 2002-2017 The Apache Software Foundation - -This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). - -src/test/org/apache/commons/codec/language/DoubleMetaphoneTest.java -contains test data from http://aspell.net/test/orig/batch0.tab. -Copyright (C) 2002 Kevin Atkinson (kevina@gnu.org) - -=============================================================================== - -The content of package org.apache.commons.codec.language.bm has been translated -from the original php source code available at http://stevemorse.org/phoneticinfo.htm -with permission from the original authors. -Original source copyright: -Copyright (c) 2008 Alexander Beider & Stephen P. Morse. - ------------------------ - -Apache Commons Compress, licensed under Apache License Version 2.0 -(see: components-licences/LICENSE-APACHE) is distributed with the launcher. -It requires the following notice: -Apache Commons Compress -Copyright 2002-2020 The Apache Software Foundation - -This product includes software developed at -The Apache Software Foundation (https://www.apache.org/). - ---- - -The files in the package org.apache.commons.compress.archivers.sevenz -were derived from the LZMA SDK, version 9.20 (C/ and CPP/7zip/), -which has been placed in the public domain: - -"LZMA SDK is placed in the public domain." (http://www.7-zip.org/sdk.html) - ---- - -The test file lbzip2_32767.bz2 has been copied from libbzip2's source -repository: - -This program, "bzip2", the associated library "libbzip2", and all -documentation, are copyright (C) 1996-2019 Julian R Seward. 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. The origin of this software must not be misrepresented; you must - not claim that you wrote the original software. If you use this - software in a product, an acknowledgment in the product - documentation would be appreciated but is not required. - -3. Altered source versions must be plainly marked as such, and must - not be misrepresented as being the original software. - -4. 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. - -Julian Seward, jseward@acm.org - -======================= - -As the launcher is written in Scala and built with Graal Native Image, its -binary form may be linked with Scala standard library, licensed under -Apache License Version 2.0. -It requires the following notice: -Scala -Copyright (c) 2002-2020 EPFL -Copyright (c) 2011-2020 Lightbend, Inc. - -Scala includes software developed at -LAMP/EPFL (https://lamp.epfl.ch/) and -Lightbend, Inc. (https://www.lightbend.com/). - -Licensed under the Apache License, Version 2.0 (the "License"). -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. - -This software includes projects with other licenses -- see `doc/LICENSE.md`. - --------- - -(However the projects with other licenses that are mentioned in the above notice -are parts of the Scala compiler and are not included in this distribution.) - -=============== - -'jawn-parser', licensed under the MIT licence, is distributed with the launcher. -It requires the following copyright notice: -Copyright Erik Osheim, 2012-2020. - -================ - -'shapeless', licensed under the Apache License, Version 2.0, is distributed with -the launcher. -Copyright (c) 2018 Miles Sabin - -================ - -'snakeyaml', licensed under the Apache License, Version 2.0, is distributed with -the launcher. It requires the following notice: -Copyright (c) 2008, http://www.snakeyaml.org - -================ - -'bump', licensed under the MIT License, is distributed with the launcher. It -requires the following notice: - -MIT License - -Copyright (c) 2018-2020 Philippus Baalman - -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. - -================ - -The launcher uses the 'Scala parser combinators' library, licensed under the -Apache License, Version 2.0. It requires the following notice: - -Scala parser combinators -Copyright (c) 2002-2020 EPFL -Copyright (c) 2011-2020 Lightbend, Inc. - -Scala includes software developed at -LAMP/EPFL (https://lamp.epfl.ch/) and -Lightbend, Inc. (https://www.lightbend.com/). - -Licensed under the Apache License, Version 2.0 (the "License"). -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. - -================ - -The module 'scala-java8-compat' licensed under the Apache License, Version 2.0, -is distributed with the launcher. It requires the following notice: -scala-java8-compat -Copyright (c) 2002-2020 EPFL -Copyright (c) 2011-2020 Lightbend, Inc. - -scala-java8-compat includes software developed at -LAMP/EPFL (https://lamp.epfl.ch/) and -Lightbend, Inc. (https://www.lightbend.com/). - -Licensed under the Apache License, Version 2.0 (the "License"). -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. - -================ - -'akka-http', 'akka-stream' and 'akka-actor' which also include 'akka-http-core', -'akka-parsing', 'akka-protobuf-v3' licensed under -the Apache License, Version 2.0, are distributed with the launcher. -Their license is located at `components-licences/LICENSE-AKKA`. - -================ - -'reactive-streams', licensed under CC0, is distributed with the launcher. - -================ - -'ssl-config-core', licensed under the Apache License, Version 2.0, is -distributed with the launcher. It requires the following notice: -Copyright (C) 2015 - 2020 Lightbend Inc. - -================ - -'config', licensed under the Apache License, Version 2.0, is distributed with -the launcher. It requires the following notice: -Copyright (C) 2011-2012 Typesafe Inc. -Copyright (C) 2015 Typesafe Inc. - -================ - -'scala-logging', licensed under the Apache License, Version 2.0, is distributed -with the launcher. It requires the following notice: -Copyright 2014 Typesafe Inc. - -================ - -'slf4j-api', licensed under the MIT license, is distributed with the launcher. -It requires the following notice: - 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. - -================ - -The version of this launcher built for the Linux platform uses `zlib` created by -Jean-loup Gailly and Mark Adler. - -================ - -The version of this launcher built for the Linux platform uses the `musl` libc -licensed under the MIT license. Its copyright notice is included in -`components-licences/COPYRIGHT-MUSL`. diff --git a/distribution/launcher/components-licences/COPYRIGHT-MUSL b/distribution/launcher/THIRD-PARTY/COPYRIGHT-MUSL similarity index 100% rename from distribution/launcher/components-licences/COPYRIGHT-MUSL rename to distribution/launcher/THIRD-PARTY/COPYRIGHT-MUSL diff --git a/distribution/launcher/THIRD-PARTY/COPYRIGHT-ZLIB b/distribution/launcher/THIRD-PARTY/COPYRIGHT-ZLIB new file mode 100644 index 0000000000..91dc1c4021 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/COPYRIGHT-ZLIB @@ -0,0 +1,25 @@ +/* zlib.h -- interface of the 'zlib' general purpose compression library + version 1.2.11, January 15th, 2017 + + Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + +*/ diff --git a/distribution/launcher/THIRD-PARTY/NOTICE b/distribution/launcher/THIRD-PARTY/NOTICE new file mode 100644 index 0000000000..fe1814233b --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/NOTICE @@ -0,0 +1,166 @@ +Enso +Copyright 2020 New Byte Order sp. z o. o. + +As the launcher is built into a native binary using GraalVM Native Image, some +of the dependencies that are listed here may not actually be distributed with it +if their code was removed during compilation. For completeness, this document +lists all source dependencies that were used for its compilation. + +The version of this launcher built for the Linux platform uses `zlib` created by +Jean-loup Gailly and Mark Adler, see: `COPYRIGHT-ZLIB`. + +The version of this launcher built for the Linux platform uses the `musl` libc +licensed under the MIT license. Its copyright notice is included in file `COPYRIGHT-MUSL`. + +------------------------------ + + +'commons-compress', licensed under the Apache License, Version 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 `org.apache.commons.commons-compress-1.20`. + + +'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.3`. + + +'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.3`. + + +'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.6`. + + +'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.6`. + + +'commons-io', licensed under the Apache License, Version 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 `commons-io.commons-io-2.7`. + + +'snakeyaml', licensed under the Apache License, Version 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.yaml.snakeyaml-1.26`. + + +'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.0-M1`. + + +'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.6`. + + +'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.0-RC1`. + + +'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.0-RC1`. + + +'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.0.0`. + + +'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.0`. + + +'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.0-RC1`. + + +'scala-logging_2.13', licensed under the Apache 2.0 License, 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.scala-logging.scala-logging_2.13-3.9.2`. + + +'scala-java8-compat_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.scala-lang.modules.scala-java8-compat_2.13-0.9.0`. + + +'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.2.0-M3`. + + +'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.30`. + + +'bump_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 `nl.gn0s1s.bump_2.13-0.1.3`. + + +'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.0-M1`. + + +'circe-yaml_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-yaml_2.13-0.13.1`. + + +'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.0-M1`. + + +'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.3`. + + +'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.0-M1`. + + +'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.1`. + + +'reactive-streams', licensed under the CC0, is distributed with the launcher. +The license file can be found at `licenses/CC0`. +Copyright notices related to this dependency can be found in the directory `org.reactivestreams.reactive-streams-1.0.3`. + + +'scala-parser-combinators_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.scala-lang.modules.scala-parser-combinators_2.13-1.1.2`. + + +'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.2.0-M3`. + + +'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.6`. + + +'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.0-M1`. + diff --git a/distribution/launcher/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.3/NOTICES b/distribution/launcher/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.3/NOTICES new file mode 100644 index 0000000000..9d461da89d --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/com.chuusai.shapeless_2.13-2.3.3/NOTICES @@ -0,0 +1,141 @@ +/* + * 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-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) 2013 Miles Sabin + +Copyright (c) 2012-18 Miles Sabin + +Copyright (c) 2014-15 Miles Sabin + +Copyright (c) 2015 Miles Sabin + +Copyright (c) 2015-6 Alexandre Archambault + +/* + * 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) 2014 Miles Sabin + +Copyright (c) 2018 Miles Sabin + +Copyright (c) 2013-18 Miles Sabin + +/* + * 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) 2015-16 Miles Sabin + +Copyright (c) 2011-16 Miles Sabin + +Copyright (c) 2013-16 Miles Sabin + +Copyright (c) 2012-15 Miles Sabin + +Copyright (c) 2015-18 Miles Sabin + +/* + * 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) 2013-14 Miles Sabin + +Copyright (c) 2016-18 Miles Sabin + +Copyright (c) 2014-16 Miles Sabin + +Copyright (c) 2011-14 Miles Sabin + +Copyright (c) 2013-14 Lars Hupel, Miles Sabin + +Copyright (c) 2013-17 Miles Sabin + +/* + * 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) 2013-15 Miles Sabin + +Copyright (c) 2011-18 Miles Sabin + +Copyright (c) 2011-15 Miles Sabin + +Copyright (c) 2016 Miles Sabin diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.6/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.6/NOTICES new file mode 100644 index 0000000000..3fc96d1d05 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-actor_2.13-2.6.6/NOTICES @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2018-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2015-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2017-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2019-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2009-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2014-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2016-2020 Lightbend Inc. + */ diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/NOTICES new file mode 100644 index 0000000000..16f8f0f16f --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/NOTICES @@ -0,0 +1,96 @@ +/* + * Copyright (C) 2018-2020 Lightbend Inc. + */ + +/* + * 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. + */ + +/** + * 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 (C) 2015-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2019-2020 Lightbend Inc. + */ + +/* + * 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 2009-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2016-2020 Lightbend Inc. + */ + +Copyright (C) 2009-2020 Lightbend Inc. + +/* + * Copyright (C) 2017-2020 Lightbend Inc. + * + * Copied and adapted from akka-remote + * https://github.com/akka/akka/blob/c90121485fcfc44a3cee62a0c638e1982d13d812/akka-remote/src/main/scala/akka/remote/artery/StageLogging.scala + */ + diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.0-RC1/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.0-RC1/NOTICES new file mode 100644 index 0000000000..9902de010a --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-http_2.13-10.2.0-RC1/NOTICES @@ -0,0 +1,23 @@ +/* + * Copyright (C) 2018-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2015-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2017-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2009-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2009-2020 Lightbend Inc. + */ diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/NOTICES new file mode 100644 index 0000000000..3b87093278 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/NOTICES @@ -0,0 +1,98 @@ +/* + * 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. + */ + +/* + * Copyright (C) 2019-2020 Lightbend Inc. + */ + +/* + * 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-2020 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. + */ + +---------------- + +akka/parboiled2/util/Base64.java is licensed under the following terms: + * + * Licence (BSD): + * ============== + * + * Copyright (c) 2004, Mikael Grev, MiG InfoCom AB. (base64 @ miginfocom . com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this list + * of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, this + * list of conditions and the following disclaimer in the documentation and/or other + * materials provided with the distribution. + * Neither the name of the MiG InfoCom AB nor the names of its contributors may be + * used to endorse or promote products derived from this software without specific + * prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY + * OF SUCH DAMAGE. + * + * @version 2.2 + * @author Mikael Grev + * Date: 2004-aug-02 + * Time: 11:31:11 + * + * Adapted in 2009 by Mathias Doenitz. + */ + +---------------- + diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/COPYING.protobuf b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/COPYING.protobuf new file mode 100644 index 0000000000..705db579c9 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/COPYING.protobuf @@ -0,0 +1,33 @@ +Copyright 2008, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Code generated by the Protocol Buffer compiler is owned by the owner +of the input file used when generating it. This code is not +standalone and requires a support library to be linked with it. This +support library is itself covered by the above license. diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/LICENSE b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/LICENSE new file mode 100644 index 0000000000..c7d5a563cc --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/LICENSE @@ -0,0 +1,212 @@ + 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. + +--------------- + +Licenses for dependency projects can be found here: +[http://akka.io/docs/akka/snapshot/project/licenses.html] + +--------------- + +akka-protobuf contains the sources of Google protobuf 2.5.0 runtime support, +moved into the source package `akka.protobuf` so as to avoid version conflicts. +For license information see COPYING.protobuf diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.6/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.6/NOTICES new file mode 100644 index 0000000000..5e107e43e8 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-slf4j_2.13-2.6.6/NOTICES @@ -0,0 +1,3 @@ +/* + * Copyright (C) 2009-2020 Lightbend Inc. + */ diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.6/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.6/NOTICES new file mode 100644 index 0000000000..178056b73d --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/com.typesafe.akka.akka-stream_2.13-2.6.6/NOTICES @@ -0,0 +1,31 @@ +/* + * Copyright (C) 2018-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2015-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2017-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2019-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2009-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2014-2020 Lightbend Inc. + */ + +/* + * Copyright (C) 2016-2020 Lightbend Inc. + */ diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.config-1.4.0/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.config-1.4.0/NOTICES new file mode 100644 index 0000000000..33fcda9b45 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/com.typesafe.config-1.4.0/NOTICES @@ -0,0 +1,11 @@ +/** + * Copyright (C) 2011-2012 Typesafe Inc. + */ + +/** + * Copyright (C) 2014 Typesafe Inc. + */ + +/** + * Copyright (C) 2015 Typesafe Inc. + */ diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.scala-logging.scala-logging_2.13-3.9.2/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.scala-logging.scala-logging_2.13-3.9.2/NOTICES new file mode 100644 index 0000000000..e8085979d5 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/com.typesafe.scala-logging.scala-logging_2.13-3.9.2/NOTICES @@ -0,0 +1,15 @@ +/* + * Copyright 2014 Typesafe 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. + */ diff --git a/distribution/launcher/THIRD-PARTY/com.typesafe.ssl-config-core_2.13-0.4.1/NOTICES b/distribution/launcher/THIRD-PARTY/com.typesafe.ssl-config-core_2.13-0.4.1/NOTICES new file mode 100644 index 0000000000..4bd14e085b --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/com.typesafe.ssl-config-core_2.13-0.4.1/NOTICES @@ -0,0 +1 @@ +Copyright (C) 2015 - 2019 Lightbend Inc. diff --git a/distribution/launcher/THIRD-PARTY/commons-io.commons-io-2.7/LICENSE.txt b/distribution/launcher/THIRD-PARTY/commons-io.commons-io-2.7/LICENSE.txt new file mode 100644 index 0000000000..43e91eb0b0 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/commons-io.commons-io-2.7/LICENSE.txt @@ -0,0 +1,203 @@ + + 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/commons-io.commons-io-2.7/NOTICE.txt b/distribution/launcher/THIRD-PARTY/commons-io.commons-io-2.7/NOTICE.txt new file mode 100644 index 0000000000..4a88d2aee7 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/commons-io.commons-io-2.7/NOTICE.txt @@ -0,0 +1,5 @@ +Apache Commons IO +Copyright 2002-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (https://www.apache.org/). diff --git a/distribution/launcher/THIRD-PARTY/commons-io.commons-io-2.7/NOTICES b/distribution/launcher/THIRD-PARTY/commons-io.commons-io-2.7/NOTICES new file mode 100644 index 0000000000..4b326ae5c2 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/commons-io.commons-io-2.7/NOTICES @@ -0,0 +1,17 @@ +/* + * 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/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.0-M1/LICENSE b/distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.0-M1/LICENSE new file mode 100644 index 0000000000..d645695673 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.0-M1/LICENSE @@ -0,0 +1,202 @@ + + 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/io.circe.circe-core_2.13-0.14.0-M1/LICENSE.argonaut b/distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.0-M1/LICENSE.argonaut new file mode 100644 index 0000000000..65c268be5c --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.0-M1/LICENSE.argonaut @@ -0,0 +1,24 @@ +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/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.0-M1/LICENSE.ephox b/distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.0-M1/LICENSE.ephox new file mode 100644 index 0000000000..95272ae68c --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.0-M1/LICENSE.ephox @@ -0,0 +1,24 @@ +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.0-M1/NOTICE b/distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.0-M1/NOTICE new file mode 100644 index 0000000000..defc1e5eef --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-core_2.13-0.14.0-M1/NOTICE @@ -0,0 +1,5 @@ +circe +Copyright (c) 2015, Ephox Pty Ltd, Mark Hibberd, Sean Parsons, Travis Brown, and +other contributors. All rights reserved. + +Argonaut was initially developed to support products at Ephox. diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.0-M1/LICENSE b/distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.0-M1/LICENSE new file mode 100644 index 0000000000..d645695673 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.0-M1/LICENSE @@ -0,0 +1,202 @@ + + 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/io.circe.circe-generic_2.13-0.14.0-M1/LICENSE.argonaut b/distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.0-M1/LICENSE.argonaut new file mode 100644 index 0000000000..65c268be5c --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.0-M1/LICENSE.argonaut @@ -0,0 +1,24 @@ +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/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.0-M1/LICENSE.ephox b/distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.0-M1/LICENSE.ephox new file mode 100644 index 0000000000..95272ae68c --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.0-M1/LICENSE.ephox @@ -0,0 +1,24 @@ +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.0-M1/NOTICE b/distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.0-M1/NOTICE new file mode 100644 index 0000000000..defc1e5eef --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-generic_2.13-0.14.0-M1/NOTICE @@ -0,0 +1,5 @@ +circe +Copyright (c) 2015, Ephox Pty Ltd, Mark Hibberd, Sean Parsons, Travis Brown, and +other contributors. All rights reserved. + +Argonaut was initially developed to support products at Ephox. diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.0-M1/LICENSE b/distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.0-M1/LICENSE new file mode 100644 index 0000000000..d645695673 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.0-M1/LICENSE @@ -0,0 +1,202 @@ + + 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/io.circe.circe-jawn_2.13-0.14.0-M1/LICENSE.argonaut b/distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.0-M1/LICENSE.argonaut new file mode 100644 index 0000000000..65c268be5c --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.0-M1/LICENSE.argonaut @@ -0,0 +1,24 @@ +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/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.0-M1/LICENSE.ephox b/distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.0-M1/LICENSE.ephox new file mode 100644 index 0000000000..95272ae68c --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.0-M1/LICENSE.ephox @@ -0,0 +1,24 @@ +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.0-M1/NOTICE b/distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.0-M1/NOTICE new file mode 100644 index 0000000000..defc1e5eef --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-jawn_2.13-0.14.0-M1/NOTICE @@ -0,0 +1,5 @@ +circe +Copyright (c) 2015, Ephox Pty Ltd, Mark Hibberd, Sean Parsons, Travis Brown, and +other contributors. All rights reserved. + +Argonaut was initially developed to support products at Ephox. diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.0-M1/LICENSE b/distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.0-M1/LICENSE new file mode 100644 index 0000000000..d645695673 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.0-M1/LICENSE @@ -0,0 +1,202 @@ + + 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/io.circe.circe-numbers_2.13-0.14.0-M1/LICENSE.argonaut b/distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.0-M1/LICENSE.argonaut new file mode 100644 index 0000000000..65c268be5c --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.0-M1/LICENSE.argonaut @@ -0,0 +1,24 @@ +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/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.0-M1/LICENSE.ephox b/distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.0-M1/LICENSE.ephox new file mode 100644 index 0000000000..95272ae68c --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.0-M1/LICENSE.ephox @@ -0,0 +1,24 @@ +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.0-M1/NOTICE b/distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.0-M1/NOTICE new file mode 100644 index 0000000000..defc1e5eef --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-numbers_2.13-0.14.0-M1/NOTICE @@ -0,0 +1,5 @@ +circe +Copyright (c) 2015, Ephox Pty Ltd, Mark Hibberd, Sean Parsons, Travis Brown, and +other contributors. All rights reserved. + +Argonaut was initially developed to support products at Ephox. diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.0-M1/LICENSE b/distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.0-M1/LICENSE new file mode 100644 index 0000000000..d645695673 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.0-M1/LICENSE @@ -0,0 +1,202 @@ + + 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/io.circe.circe-parser_2.13-0.14.0-M1/LICENSE.argonaut b/distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.0-M1/LICENSE.argonaut new file mode 100644 index 0000000000..65c268be5c --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.0-M1/LICENSE.argonaut @@ -0,0 +1,24 @@ +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/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.0-M1/LICENSE.ephox b/distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.0-M1/LICENSE.ephox new file mode 100644 index 0000000000..95272ae68c --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.0-M1/LICENSE.ephox @@ -0,0 +1,24 @@ +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.0-M1/NOTICE b/distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.0-M1/NOTICE new file mode 100644 index 0000000000..defc1e5eef --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-parser_2.13-0.14.0-M1/NOTICE @@ -0,0 +1,5 @@ +circe +Copyright (c) 2015, Ephox Pty Ltd, Mark Hibberd, Sean Parsons, Travis Brown, and +other contributors. All rights reserved. + +Argonaut was initially developed to support products at Ephox. diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-yaml_2.13-0.13.1/LICENSE b/distribution/launcher/THIRD-PARTY/io.circe.circe-yaml_2.13-0.13.1/LICENSE new file mode 100644 index 0000000000..7e7cb146f5 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-yaml_2.13-0.13.1/LICENSE @@ -0,0 +1,67 @@ +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: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and +You must cause any modified files to carry prominent notices stating that You changed the files; and +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 +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 diff --git a/distribution/launcher/THIRD-PARTY/io.circe.circe-yaml_2.13-0.13.1/NOTICES b/distribution/launcher/THIRD-PARTY/io.circe.circe-yaml_2.13-0.13.1/NOTICES new file mode 100644 index 0000000000..56bb4e93a1 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/io.circe.circe-yaml_2.13-0.13.1/NOTICES @@ -0,0 +1,4 @@ +The project repository is located at https://github.com/circe/circe-yaml + +We were unable to find any copyright notices that should be attached as per the license. + diff --git a/distribution/launcher/THIRD-PARTY/licenses/APACHE2.0 b/distribution/launcher/THIRD-PARTY/licenses/APACHE2.0 new file mode 100644 index 0000000000..261eeb9e9f --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/licenses/APACHE2.0 @@ -0,0 +1,201 @@ + 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/licenses/CC0 b/distribution/launcher/THIRD-PARTY/licenses/CC0 new file mode 100644 index 0000000000..0e259d42c9 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/licenses/CC0 @@ -0,0 +1,121 @@ +Creative Commons Legal Code + +CC0 1.0 Universal + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS + PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM + THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED + HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer +exclusive Copyright and Related Rights (defined below) upon the creator +and subsequent owner(s) (each and all, an "owner") of an original work of +authorship and/or a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for +the purpose of contributing to a commons of creative, cultural and +scientific works ("Commons") that the public can reliably and without fear +of later claims of infringement build upon, modify, incorporate in other +works, reuse and redistribute as freely as possible in any form whatsoever +and for any purposes, including without limitation commercial purposes. +These owners may contribute to the Commons to promote the ideal of a free +culture and the further production of creative, cultural and scientific +works, or to gain reputation or greater distribution for their Work in +part through the use and efforts of others. + +For these and/or other purposes and motivations, and without any +expectation of additional consideration or compensation, the person +associating CC0 with a Work (the "Affirmer"), to the extent that he or she +is an owner of Copyright and Related Rights in the Work, voluntarily +elects to apply CC0 to the Work and publicly distribute the Work under its +terms, with knowledge of his or her Copyright and Related Rights in the +Work and the meaning and intended legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be +protected by copyright and related or neighboring rights ("Copyright and +Related Rights"). Copyright and Related Rights include, but are not +limited to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, + communicate, and translate a Work; + ii. moral rights retained by the original author(s) and/or performer(s); +iii. publicity and privacy rights pertaining to a person's image or + likeness depicted in a Work; + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + v. rights protecting the extraction, dissemination, use and reuse of data + in a Work; + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation + thereof, including any amended or successor version of such + directive); and +vii. other similar, equivalent or corresponding rights throughout the + world based on applicable law or treaty, and any national + implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention +of, applicable law, Affirmer hereby overtly, fully, permanently, +irrevocably and unconditionally waives, abandons, and surrenders all of +Affirmer's Copyright and Related Rights and associated claims and causes +of action, whether now known or unknown (including existing as well as +future claims and causes of action), in the Work (i) in all territories +worldwide, (ii) for the maximum duration provided by applicable law or +treaty (including future time extensions), (iii) in any current or future +medium and for any number of copies, and (iv) for any purpose whatsoever, +including without limitation commercial, advertising or promotional +purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each +member of the public at large and to the detriment of Affirmer's heirs and +successors, fully intending that such Waiver shall not be subject to +revocation, rescission, cancellation, termination, or any other legal or +equitable action to disrupt the quiet enjoyment of the Work by the public +as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason +be judged legally invalid or ineffective under applicable law, then the +Waiver shall be preserved to the maximum extent permitted taking into +account Affirmer's express Statement of Purpose. In addition, to the +extent the Waiver is so judged Affirmer hereby grants to each affected +person a royalty-free, non transferable, non sublicensable, non exclusive, +irrevocable and unconditional license to exercise Affirmer's Copyright and +Related Rights in the Work (i) in all territories worldwide, (ii) for the +maximum duration provided by applicable law or treaty (including future +time extensions), (iii) in any current or future medium and for any number +of copies, and (iv) for any purpose whatsoever, including without +limitation commercial, advertising or promotional purposes (the +"License"). The License shall be deemed effective as of the date CC0 was +applied by Affirmer to the Work. Should any part of the License for any +reason be judged legally invalid or ineffective under applicable law, such +partial invalidity or ineffectiveness shall not invalidate the remainder +of the License, and in such case Affirmer hereby affirms that he or she +will not (i) exercise any of his or her remaining Copyright and Related +Rights in the Work or (ii) assert any associated claims and causes of +action with respect to the Work, in either case contrary to Affirmer's +express Statement of Purpose. + +4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + b. Affirmer offers the Work as-is and makes no representations or + warranties of any kind concerning the Work, express, implied, + statutory or otherwise, including without limitation warranties of + title, merchantability, fitness for a particular purpose, non + infringement, or the absence of latent or other defects, accuracy, or + the present or absence of errors, whether or not discoverable, all to + the greatest extent permissible under applicable law. + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without + limitation any person's Copyright and Related Rights in the Work. + Further, Affirmer disclaims responsibility for obtaining any necessary + consents, permissions or other rights required for any use of the + Work. + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to + this CC0 or use of the Work. diff --git a/distribution/launcher/THIRD-PARTY/licenses/MIT b/distribution/launcher/THIRD-PARTY/licenses/MIT new file mode 100644 index 0000000000..fe45399e37 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/licenses/MIT @@ -0,0 +1,6 @@ +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/nl.gn0s1s.bump_2.13-0.1.3/LICENSE.md b/distribution/launcher/THIRD-PARTY/nl.gn0s1s.bump_2.13-0.1.3/LICENSE.md new file mode 100644 index 0000000000..1567135c4a --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/nl.gn0s1s.bump_2.13-0.1.3/LICENSE.md @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018-2020 Philippus Baalman + +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.apache.commons.commons-compress-1.20/LICENSE.txt b/distribution/launcher/THIRD-PARTY/org.apache.commons.commons-compress-1.20/LICENSE.txt new file mode 100644 index 0000000000..261eeb9e9f --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.apache.commons.commons-compress-1.20/LICENSE.txt @@ -0,0 +1,201 @@ + 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.apache.commons.commons-compress-1.20/NOTICE.txt b/distribution/launcher/THIRD-PARTY/org.apache.commons.commons-compress-1.20/NOTICE.txt new file mode 100644 index 0000000000..132b0897ba --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.apache.commons.commons-compress-1.20/NOTICE.txt @@ -0,0 +1,55 @@ +Apache Commons Compress +Copyright 2002-2020 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (https://www.apache.org/). + +--- + +The files in the package org.apache.commons.compress.archivers.sevenz +were derived from the LZMA SDK, version 9.20 (C/ and CPP/7zip/), +which has been placed in the public domain: + +"LZMA SDK is placed in the public domain." (http://www.7-zip.org/sdk.html) + +--- + +The test file lbzip2_32767.bz2 has been copied from libbzip2's source +repository: + +This program, "bzip2", the associated library "libbzip2", and all +documentation, are copyright (C) 1996-2019 Julian R Seward. 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. The origin of this software must not be misrepresented; you must + not claim that you wrote the original software. If you use this + software in a product, an acknowledgment in the product + documentation would be appreciated but is not required. + +3. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + +4. 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. + +Julian Seward, jseward@acm.org diff --git a/distribution/launcher/THIRD-PARTY/org.apache.commons.commons-compress-1.20/NOTICES b/distribution/launcher/THIRD-PARTY/org.apache.commons.commons-compress-1.20/NOTICES new file mode 100644 index 0000000000..ea8ae0ca22 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.apache.commons.commons-compress-1.20/NOTICES @@ -0,0 +1,20 @@ +/* + * 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. + * + * Some portions of this file Copyright (c) 2004-2006 Intel Corportation + * and licensed under the BSD license. + */ diff --git a/distribution/launcher/THIRD-PARTY/org.reactivestreams.reactive-streams-1.0.3/NOTICES b/distribution/launcher/THIRD-PARTY/org.reactivestreams.reactive-streams-1.0.3/NOTICES new file mode 100644 index 0000000000..bd0a85c0c7 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.reactivestreams.reactive-streams-1.0.3/NOTICES @@ -0,0 +1,10 @@ +/************************************************************************ + * Licensed under Public Domain (CC0) * + * * + * To the extent possible under law, the person who associated CC0 with * + * this code has waived all copyright and related or neighboring * + * rights to this code. * + * * + * You should have received a copy of the CC0 legalcode along with this * + * work. If not, see .* + ************************************************************************/ diff --git a/distribution/launcher/THIRD-PARTY/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/NOTICE b/distribution/launcher/THIRD-PARTY/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/NOTICE new file mode 100644 index 0000000000..3eccb0b52f --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/NOTICE @@ -0,0 +1,14 @@ +scala-java8-compat +Copyright (c) 2002-2020 EPFL +Copyright (c) 2011-2020 Lightbend, Inc. + +scala-java8-compat includes software developed at +LAMP/EPFL (https://lamp.epfl.ch/) and +Lightbend, Inc. (https://www.lightbend.com/). + +Licensed under the Apache License, Version 2.0 (the "License"). +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.scala-lang.modules.scala-java8-compat_2.13-0.9.0/NOTICES b/distribution/launcher/THIRD-PARTY/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/NOTICES new file mode 100644 index 0000000000..454e8a4f61 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/NOTICES @@ -0,0 +1,14 @@ +/* + * Scala (https://www.scala-lang.org) + * + * Copyright EPFL and Lightbend, Inc. + * + * Licensed under Apache License 2.0 + * (http://www.apache.org/licenses/LICENSE-2.0). + * + * See the NOTICE file distributed with this work for + * additional information regarding copyright ownership. + */ + +See org.scala-lang.scala-library-2.13 for notices related to this module. + diff --git a/distribution/launcher/THIRD-PARTY/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/NOTICE b/distribution/launcher/THIRD-PARTY/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/NOTICE new file mode 100644 index 0000000000..779e510da7 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/NOTICE @@ -0,0 +1,14 @@ +Scala parser combinators +Copyright (c) 2002-2020 EPFL +Copyright (c) 2011-2020 Lightbend, Inc. + +Scala includes software developed at +LAMP/EPFL (https://lamp.epfl.ch/) and +Lightbend, Inc. (https://www.lightbend.com/). + +Licensed under the Apache License, Version 2.0 (the "License"). +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.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/NOTICES b/distribution/launcher/THIRD-PARTY/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/NOTICES new file mode 100644 index 0000000000..454e8a4f61 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/NOTICES @@ -0,0 +1,14 @@ +/* + * Scala (https://www.scala-lang.org) + * + * Copyright EPFL and Lightbend, Inc. + * + * Licensed under Apache License 2.0 + * (http://www.apache.org/licenses/LICENSE-2.0). + * + * See the NOTICE file distributed with this work for + * additional information regarding copyright ownership. + */ + +See org.scala-lang.scala-library-2.13 for notices related to this module. + diff --git a/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/NOTICE b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/NOTICE new file mode 100644 index 0000000000..ac3a26b40f --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/NOTICE @@ -0,0 +1,16 @@ +Scala +Copyright (c) 2002-2020 EPFL +Copyright (c) 2011-2020 Lightbend, Inc. + +Scala includes software developed at +LAMP/EPFL (https://lamp.epfl.ch/) and +Lightbend, Inc. (https://www.lightbend.com/). + +Licensed under the Apache License, Version 2.0 (the "License"). +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. + +This software includes projects with other licenses -- see `doc/LICENSE.md`. diff --git a/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/NOTICES b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/NOTICES new file mode 100644 index 0000000000..ff57b17eef --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/NOTICES @@ -0,0 +1,11 @@ +/* + * Scala (https://www.scala-lang.org) + * + * Copyright EPFL and Lightbend, Inc. + * + * Licensed under Apache License 2.0 + * (http://www.apache.org/licenses/LICENSE-2.0). + * + * See the NOTICE file distributed with this work for + * additional information regarding copyright ownership. + */ diff --git a/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/LICENSE.md b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/LICENSE.md new file mode 100644 index 0000000000..83ef781d15 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/LICENSE.md @@ -0,0 +1,42 @@ +Scala is licensed under the [Apache License Version 2.0](https://www.apache.org/licenses/LICENSE-2.0). + +## Scala License + +Copyright (c) 2002-2020 EPFL + +Copyright (c) 2011-2020 Lightbend, Inc. + +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. + +# Other Licenses + +This software includes projects with the following licenses, +which are also included in the `licenses/` directory: + +### [Apache License](http://www.apache.org/licenses/LICENSE-2.0.html) +This license is used by the following third-party libraries: + + * JNA + +### [BSD 3-Clause License](http://opensource.org/licenses/BSD-3-Clause) +This license is used by the following third-party libraries: + + * ASM + * JLine 3 + +### [MIT License](http://www.opensource.org/licenses/MIT) +This license is used by the following third-party libraries: + + * jQuery diff --git a/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/License.rtf b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/License.rtf new file mode 100644 index 0000000000..376ec02cb5 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/License.rtf @@ -0,0 +1,85 @@ +{\rtf1\ansi\ansicpg1252\cocoartf2511 +\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fswiss\fcharset0 Helvetica-Bold;} +{\colortbl;\red255\green255\blue255;\red27\green31\blue34;\red10\green77\blue204;\red0\green0\blue0; +\red21\green23\blue26;} +{\*\expandedcolortbl;;\cssrgb\c14118\c16078\c18039;\cssrgb\c1176\c40000\c83922;\csgray\c0\c0; +\cssrgb\c10588\c12157\c13725\c4706;} +{\*\listtable{\list\listtemplateid1\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid1\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid1} +{\list\listtemplateid2\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid101\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid2} +{\list\listtemplateid3\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid201\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid3} +{\list\listtemplateid4\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid301\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid4}} +{\*\listoverridetable{\listoverride\listid1\listoverridecount0\ls1}{\listoverride\listid2\listoverridecount0\ls2}{\listoverride\listid3\listoverridecount0\ls3}{\listoverride\listid4\listoverridecount0\ls4}} +\paperw11900\paperh16840\margl1440\margr1440\vieww17360\viewh20980\viewkind0 +\deftab720 +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\fs28 \cf2 \expnd0\expndtw0\kerning0 +Scala is licensed under the\'a0{\field{\*\fldinst{HYPERLINK "https://www.apache.org/licenses/LICENSE-2.0"}}{\fldrslt \cf3 Apache License Version 2.0}}.\ +\pard\pardeftab720\sl360\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl440\sa320\partightenfactor0 + +\fs48 \cf2 Scala License\ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0\fs28 \cf2 Copyright (c) 2002-2020 EPFL\ +Copyright (c) 2011-2020 Lightbend, Inc.\ +All rights reserved.\ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +\cf2 \cb4 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 {\field{\*\fldinst{HYPERLINK "http://www.apache.org/licenses/LICENSE-2.0"}}{\fldrslt 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.\ +\pard\pardeftab720\sl480\partightenfactor0 + +\f1\b \cf3 \cb1 \ +\pard\pardeftab720\sl600\sa320\partightenfactor0 + +\fs48 \cf2 Other Licenses\ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0\fs28 \cf2 This software includes projects with the following licenses, which are also included in the\'a0\cb5 licenses/\cb1 \'a0directory:\ +\pard\pardeftab720\sl300\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +{\field{\*\fldinst{HYPERLINK "http://www.apache.org/licenses/LICENSE-2.0.html"}}{\fldrslt \cf3 Apache License}}\cf2 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0 \cf2 This license is used by the following third-party libraries:\ +\pard\tx220\tx720\pardeftab720\li720\fi-720\sl360\partightenfactor0 +\ls1\ilvl0\cf2 \kerning1\expnd0\expndtw0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0 +JNA\ +\pard\pardeftab720\sl300\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +{\field{\*\fldinst{HYPERLINK "http://www.opensource.org/licenses/bsd-license.php"}}{\fldrslt \cf3 BSD License}}\cf2 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0 \cf2 This license is used by the following third-party libraries:\ +\pard\tx220\tx720\pardeftab720\li720\fi-720\sl360\partightenfactor0 +\ls2\ilvl0\cf2 \kerning1\expnd0\expndtw0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0 +JLine 3\ +\pard\pardeftab720\sl300\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +{\field{\*\fldinst{HYPERLINK "http://opensource.org/licenses/BSD-3-Clause"}}{\fldrslt \cf3 BSD 3-Clause License}}\cf2 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0 \cf2 This license is used by the following third-party libraries:\ +\pard\tx220\tx720\pardeftab720\li720\fi-720\sl360\partightenfactor0 +\ls3\ilvl0\cf2 \kerning1\expnd0\expndtw0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0 +ASM\ +\pard\pardeftab720\sl300\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +{\field{\*\fldinst{HYPERLINK "http://www.opensource.org/licenses/MIT"}}{\fldrslt \cf3 MIT License}}\cf2 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0 \cf2 This license is used by the following third-party libraries:\ +\pard\tx220\tx720\pardeftab720\li720\fi-720\sl360\partightenfactor0 +\ls4\ilvl0\cf2 \kerning1\expnd0\expndtw0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0 +jQuery\ +} \ No newline at end of file diff --git a/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/apache_jna.txt b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/apache_jna.txt new file mode 100644 index 0000000000..592efd6604 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/apache_jna.txt @@ -0,0 +1,205 @@ +Scala includes the JLine library, which includes the JNA library, +which is made available under multiple licenses, including the +Apache 2 license: + + 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.scala-lang.scala-library-2.13.3/doc/licenses/bsd_asm.txt b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/bsd_asm.txt new file mode 100644 index 0000000000..a3591e4b40 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/bsd_asm.txt @@ -0,0 +1,31 @@ +Scala includes the ASM library. + +Copyright (c) 2000-2011 INRIA, France Telecom +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 the copyright holders 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. diff --git a/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/bsd_jline.txt b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/bsd_jline.txt new file mode 100644 index 0000000000..cf45a50bea --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/bsd_jline.txt @@ -0,0 +1,36 @@ +Scala includes the JLine 3 library: + +Copyright (c) 2002-2018, the original author or authors. +All rights reserved. + +https://opensource.org/licenses/BSD-3-Clause + +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 JLine 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. diff --git a/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/mit_jquery.txt b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/mit_jquery.txt new file mode 100644 index 0000000000..ea261d2cfa --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-library-2.13.3/doc/licenses/mit_jquery.txt @@ -0,0 +1,22 @@ +Scala includes the jQuery library: + +Copyright JS Foundation and other contributors, https://js.foundation/ + +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.scala-lang.scala-reflect-2.13.3/NOTICES b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.3/NOTICES new file mode 100644 index 0000000000..855813149e --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.scala-lang.scala-reflect-2.13.3/NOTICES @@ -0,0 +1,18 @@ +/* + * Scala (https://www.scala-lang.org) + * + * Copyright EPFL and Lightbend, Inc. + * + * Licensed under Apache License 2.0 + * (http://www.apache.org/licenses/LICENSE-2.0). + * + * See the NOTICE file distributed with this work for + * additional information regarding copyright ownership. + */ + +/* NSC -- new Scala compiler + * Copyright 2005-2013 LAMP/EPFL + */ + +See org.scala-lang.scala-library-2.13 for notices related to this module. + diff --git a/distribution/launcher/THIRD-PARTY/org.slf4j.slf4j-api-1.7.30/NOTICES b/distribution/launcher/THIRD-PARTY/org.slf4j.slf4j-api-1.7.30/NOTICES new file mode 100644 index 0000000000..aecbef31f7 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.slf4j.slf4j-api-1.7.30/NOTICES @@ -0,0 +1,24 @@ +/** + * 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.typelevel.cats-core_2.13-2.2.0-M3/AUTHORS.md b/distribution/launcher/THIRD-PARTY/org.typelevel.cats-core_2.13-2.2.0-M3/AUTHORS.md new file mode 100644 index 0000000000..34ea0d8230 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.typelevel.cats-core_2.13-2.2.0-M3/AUTHORS.md @@ -0,0 +1,324 @@ +## 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.2.0-M3/COPYING b/distribution/launcher/THIRD-PARTY/org.typelevel.cats-core_2.13-2.2.0-M3/COPYING new file mode 100644 index 0000000000..6e5add81f8 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.typelevel.cats-core_2.13-2.2.0-M3/COPYING @@ -0,0 +1,49 @@ +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. diff --git a/distribution/launcher/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.2.0-M3/AUTHORS b/distribution/launcher/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.2.0-M3/AUTHORS new file mode 100644 index 0000000000..bcce914f5a --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.2.0-M3/AUTHORS @@ -0,0 +1 @@ +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.2.0-M3/COPYING b/distribution/launcher/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.2.0-M3/COPYING new file mode 100644 index 0000000000..6e5add81f8 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.typelevel.cats-kernel_2.13-2.2.0-M3/COPYING @@ -0,0 +1,49 @@ +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. diff --git a/distribution/launcher/THIRD-PARTY/org.typelevel.jawn-parser_2.13-1.0.0/LICENSE b/distribution/launcher/THIRD-PARTY/org.typelevel.jawn-parser_2.13-1.0.0/LICENSE new file mode 100644 index 0000000000..d07c01e8c9 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.typelevel.jawn-parser_2.13-1.0.0/LICENSE @@ -0,0 +1,7 @@ +Copyright Erik Osheim, 2012-2020. + +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.yaml.snakeyaml-1.26/NOTICES b/distribution/launcher/THIRD-PARTY/org.yaml.snakeyaml-1.26/NOTICES new file mode 100644 index 0000000000..af01c01c56 --- /dev/null +++ b/distribution/launcher/THIRD-PARTY/org.yaml.snakeyaml-1.26/NOTICES @@ -0,0 +1,20 @@ +/* Copyright (c) 2008 Google Inc. + +/** + * Copyright (c) 2008, http://www.snakeyaml.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 2003-2010 Christian d'Heureuse, Inventec Informatik AG, Zurich, Switzerland +// www.source-code.biz, www.inventec.ch/chdh diff --git a/distribution/std-lib/Base/THIRD-PARTY/NOTICE b/distribution/std-lib/Base/THIRD-PARTY/NOTICE new file mode 100644 index 0000000000..ee12b619c4 --- /dev/null +++ b/distribution/std-lib/Base/THIRD-PARTY/NOTICE @@ -0,0 +1,7 @@ +Enso +Copyright 2020 New Byte Order sp. z o. o. + +'icu4j', licensed under the Unicode/ICU License, is distributed with the std-lib-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`. + diff --git a/distribution/std-lib/Base/third-party-licenses/unicode_icu license - license.txt b/distribution/std-lib/Base/THIRD-PARTY/com.ibm.icu.icu4j-67.1/LICENSE similarity index 98% rename from distribution/std-lib/Base/third-party-licenses/unicode_icu license - license.txt rename to distribution/std-lib/Base/THIRD-PARTY/com.ibm.icu.icu4j-67.1/LICENSE index 5d664a083b..e7f98ed183 100644 --- a/distribution/std-lib/Base/third-party-licenses/unicode_icu license - license.txt +++ b/distribution/std-lib/Base/THIRD-PARTY/com.ibm.icu.icu4j-67.1/LICENSE @@ -284,9 +284,9 @@ property of their respective owners. # Copyright (c) 2013 International Business Machines Corporation # and others. All Rights Reserved. # - # Project: https://github.com/veer66/lao-dictionary - # Dictionary: https://github.com/veer66/lao-dictionary/blob/master/Lao-Dictionary.txt - # License: https://github.com/veer66/lao-dictionary/blob/master/Lao-Dictionary-LICENSE.txt + # 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) # # This file is derived from the above dictionary, with slight diff --git a/distribution/std-lib/Base/third-party-licenses/THIRD-PARTY.txt b/distribution/std-lib/Base/third-party-licenses/THIRD-PARTY.txt deleted file mode 100644 index 8f6a8d7a23..0000000000 --- a/distribution/std-lib/Base/third-party-licenses/THIRD-PARTY.txt +++ /dev/null @@ -1,3 +0,0 @@ - -Lists of 1 third-party dependencies. - (Unicode/ICU License) ICU4J (com.ibm.icu:icu4j:67.1 - http://icu-project.org/) diff --git a/docs/distribution/licenses.md b/docs/distribution/licenses.md index 6031bea8d9..064e5ba21a 100644 --- a/docs/distribution/licenses.md +++ b/docs/distribution/licenses.md @@ -91,23 +91,23 @@ our distribution and usage scheme. Licenses are reviewed per-distribution, as for example the binary distribution of the launcher may impose different requirements than distribution of the engine as JARs. +If an indirect dependency is found with a problematic license, the +`analyzeDependency` command may prove helpful. Running `analyzeDependency ` +will search for all dependencies containing `` in their name and list in +which projects they show up and which packages depend on them directly. This +latter functionality can be used to track down the direct dependency that +brought the indirect one. + After the review is done, the `enso/gatherLicenses` should be re-run again to generate the updated packages that are included in the distribution. Before a PR is merged, it should be ensure that there are no warnings in the generation. The packages are located in separate subdirectories of the `distribution` directory for each artifact. -> This may possibly be automated in the next PR that includes the current legal -> review. The generating task could write a file indicating if there were any -> warnings and containing a hash of the dependency list. The build job on CI -> could then run a task `verifyLegalReview` which would check if there are no -> warnings and if the review is up to date (by comparing the hash of the -> dependency list at the time of the review with the current one). - -> TODO [RW] currently the auto-generated notice packages are not included in the -> built artifacts. That is because the legal review settings have not yet been -> prepared. Once that is done, the CI should be modified accordingly. This will -> be updated in the next PR. +The CI can check if the legal review is up-to-date by running +`sbt enso / verifyLegalReview`. This task will fail if any dependencies have +changed making parts of the review obsolete or if the review contains any +warnings. ### Review @@ -146,8 +146,15 @@ The review can be performed manually by modifying the settings inside of the be carefully checked. - Most of the time, that file should be marked as kept and the default license ignored. - - To ignore the default license, create an empty file `custom-license` - inside the directory belonging to the relevant package. + - To ignore the default license, create a file `custom-license` inside + the directory belonging to the relevant package containing a single + line indicating the filename of the custom license that is included + in attached files. + - Sometimes the dependency does contain files called `LICENSE` or + similar which are additional licenses or which just contain an URL of + an actual license. In that case we may want to keep these files but + still point to the default license file. To indicate this intention, + create an empty file called `default-and-custom-license`. 2. Review which files to include - You can click on a filename to display its contents. - We want to include any NOTICE files that contain copyright notices or @@ -164,6 +171,10 @@ The review can be performed manually by modifying the settings inside of the copyright notice or if there is exactly one context associated with the line, you can click 'Keep as context' to add this whole context to the notice. + - If you cannot keep a notice with context because it appears in multiple + contexts or need to slightly modify it, the standard approach is to + 'Ignore' that notice and add the correct one manually, as described + below. 4. Add missing information - You can manually add additional copyright notices by adding them to a file `copyright-add` inside the directory belonging to the relevant @@ -187,6 +198,73 @@ closing its window, you should re-generate the report using `enso/gatherLicenses` or just open it using `enso/openLegalReviewReport` which will refresh it automatically. +#### Additional Manual Considerations + +The Scala Library notice contains the following mention: + +``` +This software includes projects with other licenses -- see `doc/LICENSE.md`. +``` + +The licenses contained in the `doc` directory in Scala's GitHub are most likely +relevant for the Scala Compiler and not the Standard Library that is relevant +for us, but we include them for safety. When switching to a newer Scala version, +these files should be updated if there were any changes to them. + +Moreover `NOTICE` files for `scala-parser-combinators` and `scala-java8-compat` +have been manually copied from their GitHub repositories. They should also be +updated as necessary. + +Additionally, the Linux version of the launcher is statically linked with the +`musl` implementation of libc which also uses `zlib`, so these two components +are also added and described manually. If they are ever updated, the notices +should be revisited. + +`CREDITS` for modules `com.fasterxml.jackson` mentioned in their NOTICES were +manually scraped from GitHub where possible. + +Missing licenses were manually added for some dependencies - these are +dependencies whose legal-review configurations contains a license file in +`files-add`. They may need to be manually updated when updating. + +#### Warnings + +All warnings should be carefully reviewed and most of them will fail the CI. +However, there are some warnings that may be ignored. + +Below we list the warnings that show up currently and their explanations: + +- `Could not find sources for com.google.guava # listenablefuture # 9999.0-empty-to-avoid-conflict-with-guava` + - This warning is due to the fact that this is a dummy artifact that does not + contain any sources. We added a special note in its legal config that refers + to the original `guava` module, so the warning can be safely discarded. +- `Found a source .../.cache/coursier/v1/https/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.13/2.1.1/scala-collection-compat_2.13-2.1.1-sources.jar that does not belong to any known dependencies, perhaps the algorithm needs updating?` + - This is a bit unexpected - the engine does depend on + `scala-collection-compat # 2.0.0` (used by `slick`), but here for some + reason we find sources for version `2.1.1` (the sources for `2.0.0` are + available too). We could not figure out this issue for now, but it is not a + problem for the legal review, because the engine distribution does include + all necessary information for the version it actually uses (`2.0.0`). + +#### Updating Dependencies + +As described above, some information has been gathered manually and as such it +should be verified if it is up-to-date when a dependency is updated. + +Moreover, when a dependency version is changed, its directory name will change, +making old legal review settings obsolete. But many of these settings may be +still relevant. So to take advantage of that, the old directory should be +manually renamed to the new name and any obsolete files or copyrights should be +removed from the settings (they will be indicated by the tool as warnings). + +Some Scala dependencies include the current Scala minor version in their names. +When upgrading to a newer Scala release, these names will become outdated, but a +lot of this configuration may still be relevant. The same trick should be used +as above - the old directories should be renamed accordingly to fit the new +Scala version. Given that this affects a lot of dependencies, a special tool +could be written that will automatically rename all the directories (but it can +also be achieved using shell commands). + #### Review Configuration The review state is driven by configuration files located in @@ -203,6 +281,8 @@ The subdirectory for each artifact may contain the following entries: the files should be named with the normalized license name and they should contain a path to that license's file (the path should be relative to the repository root) +- `.report.state` - an automatically generated file that can be used to check if + the report is up-to-date - and for each dependency, a subdirectory named as its `packageName` with following entries: - `files-add` - directory that may contain additional files that should be @@ -213,7 +293,13 @@ The subdirectory for each artifact may contain the following entries: sources that should not be included - `custom-license` - a file that indicates that the dependency should not point to the default license, but it should contain a custom one within its - files + files; it should contain a single line with this custom license's filename + - `default-and-custom-license` - a file that indicates that the dependency + should point to the default license, but it also contains additional + license-like files that should be kept too; it disables checking if the + attached license-like files are equal to the default license or not, so it + should be used very carefully; at most one of `default-and-custom-license` + and `custom-license` should exist for each dependency - `copyright-keep` - copyright lines that should be included in the notice summary for the package - `copyright-keep-context` - copyright lines that should be included diff --git a/engine/runtime/src/main/java/org/enso/interpreter/util/FileDetector.java b/engine/runtime/src/main/java/org/enso/interpreter/util/FileDetector.java index 99b73ecfa4..6b852293bd 100644 --- a/engine/runtime/src/main/java/org/enso/interpreter/util/FileDetector.java +++ b/engine/runtime/src/main/java/org/enso/interpreter/util/FileDetector.java @@ -13,7 +13,7 @@ import org.enso.polyglot.LanguageInfo; public final class FileDetector implements TruffleFile.FileTypeDetector { /** - * Finds the MINE type for a given {@link TruffleFile}. + * Finds the MIME type for a given {@link TruffleFile}. * * @param file the {@link TruffleFile file} to find a MIME type for * @return the MIME type or {@code null} if the MIME type is not recognized diff --git a/project/Distribution.scala b/project/Distribution.scala index f4330289d0..1b766577ab 100644 --- a/project/Distribution.scala +++ b/project/Distribution.scala @@ -47,11 +47,12 @@ object Distribution { reify { val deliberatelyTriggerAndIgnore = (p.splice / update).value + val configs = GatherLicenses.licenseConfigurations.value val ivyMod = (p.splice / ivyModule).value val overrides = (p.splice / licenseOverrides).value.lift val report = license.LicenseReport.makeReport( ivyMod, - GatherLicenses.licenseConfigurations.value, + configs, (p.splice / licenseSelection).value, overrides, (p.splice / streams).value.log @@ -59,7 +60,6 @@ object Distribution { SBTDistributionComponent( p.splice.id, report, - ivyMod, (p.splice / updateClassifiers).value ) } diff --git a/project/GatherLicenses.scala b/project/GatherLicenses.scala index 064a657249..eff1729590 100644 --- a/project/GatherLicenses.scala +++ b/project/GatherLicenses.scala @@ -1,5 +1,7 @@ import sbt.Keys._ import sbt._ +import complete.DefaultParsers._ +import org.apache.ivy.core.resolve.IvyNode import src.main.scala.licenses.backend.{ CombinedBackend, GatherCopyrights, @@ -7,14 +9,10 @@ import src.main.scala.licenses.backend.{ GithubHeuristic } import src.main.scala.licenses.frontend.SbtLicenses -import src.main.scala.licenses.report.{ - PackageNotices, - Report, - Review, - WithWarnings -} +import src.main.scala.licenses.report._ import src.main.scala.licenses.{DependencySummary, DistributionDescription} +import scala.collection.JavaConverters._ import scala.sys.process._ /** @@ -27,6 +25,7 @@ object GatherLicenses { val configurationRoot = settingKey[File]("Path to review configuration.") val licenseConfigurations = settingKey[Set[String]]("The ivy configurations we consider in the review.") + private val stateFileName = "report-state" /** * The task that performs the whole license gathering process. @@ -69,9 +68,10 @@ object GatherLicenses { (dependency, attachments) } - val summary = DependencySummary(processed) + val summary = DependencySummary(processed) + val distributionRoot = configRoot / distribution.artifactName val WithWarnings(processedSummary, summaryWarnings) = - Review(configRoot / distribution.artifactName, summary).run() + Review(distributionRoot, summary).run() val allWarnings = sbtWarnings ++ summaryWarnings val reportDestination = targetRoot / s"${distribution.artifactName}-report.html" @@ -91,11 +91,16 @@ object GatherLicenses { reportDestination ) log.info( - s"Written the report for ${distribution.artifactName} to " + - s"`${reportDestination}`." + s"Written the report for the ${distribution.artifactName} to " + + s"`$reportDestination`." ) val packagePath = distribution.packageDestination PackageNotices.create(distribution, processedSummary, packagePath) + ReviewState.write( + distributionRoot / stateFileName, + distribution, + summaryWarnings.length + ) log.info(s"Re-generated distribution notices at `$packagePath`.") if (summaryWarnings.nonEmpty) { // TODO [RW] A separate task should be added to verify that the package @@ -121,6 +126,64 @@ object GatherLicenses { reports } + lazy val verifyReports = Def.task { + val configRoot = configurationRoot.value + val log = streams.value.log + def warnAndThrow(exceptionMessage: String): Nothing = { + log.error(exceptionMessage) + log.warn( + "Please make sure to run `enso / gatherLicenses` " + + "and review any changed dependencies, " + + "ensuring that the review is complete and there are no warnings." + ) + throw LegalReviewException(exceptionMessage) + } + + for (distribution <- distributions.value) { + val distributionRoot = configRoot / distribution.artifactName + val name = distribution.artifactName + ReviewState.read(distributionRoot / stateFileName, log) match { + case Some(reviewState) => + val currentInputHash = ReviewState.computeInputHash(distribution) + if (currentInputHash != reviewState.inputHash) { + warnAndThrow( + s"Report for the $name is not up to date - " + + s"it seems that some dependencies were added or removed." + ) + } + + if (reviewState.warningsCount > 0) { + warnAndThrow( + s"Report for the $name has ${reviewState.warningsCount} warnings." + ) + } + + val currentOutputHash = ReviewState.computeOutputHash(distribution) + if (currentOutputHash != reviewState.outputHash) { + log.error( + s"Report for the $name seems to be up-to-date but the notice " + + s"package has been changed." + ) + log.warn( + "Re-run `enso / gatherLicenses` and make sure that all files " + + "from the notice package are committed and no unexpected files " + + "have been added." + ) + throw LegalReviewException( + s"Output directory for $name has different content than expected." + ) + } + + log.info(s"Report and package for $name are reviewed and up-to-date.") + case None => + warnAndThrow(s"Report for $name has not been generated.") + } + } + } + + case class LegalReviewException(string: String) + extends RuntimeException(string) + /** * Launches a server that allows to easily review the generated report. * @@ -133,4 +196,42 @@ object GatherLicenses { .exitValue() } + /** + * A task that prints which sub-projects use a dependency and what + * dependencies use it (so that one can track where dependencies come from). + */ + lazy val analyzeDependency = Def.inputTask { + val args: Seq[String] = spaceDelimited("").parsed + val evaluatedDistributions = distributions.value + val log = streams.value.log + for (arg <- args) { + for (distribution <- evaluatedDistributions) { + for (sbtComponent <- distribution.sbtComponents) { + val ivyDeps = + sbtComponent.licenseReport.orig.getDependencies.asScala + .map(_.asInstanceOf[IvyNode]) + for (dep <- sbtComponent.licenseReport.licenses) { + if (dep.module.name.contains(arg)) { + val module = dep.module + log.info( + s"${distribution.artifactName} distribution, project ${sbtComponent.name} " + + s"contains $module" + ) + val node = ivyDeps.find(n => + SbtLicenses.safeModuleInfo(n) == Some(dep.module) + ) + node match { + case None => + log.warn(s"IvyNode for $module not found.") + case Some(ivyNode) => + val callers = + ivyNode.getAllCallers.toSeq.map(_.toString).distinct + log.info(s"Callers: $callers") + } + } + } + } + } + } + } } diff --git a/project/src/main/scala/licenses/Attachment.scala b/project/src/main/scala/licenses/Attachment.scala index 8a2115f3fd..b1e0e7a7c6 100644 --- a/project/src/main/scala/licenses/Attachment.scala +++ b/project/src/main/scala/licenses/Attachment.scala @@ -15,7 +15,7 @@ sealed trait Attachment * This may be a license file, a copyright notice, a credits file etc. */ case class AttachedFile( - path: Path, + path: PortablePath, content: String, origin: Option[String] = None ) extends Attachment { @@ -31,7 +31,7 @@ case class AttachedFile( /** * Name of the file. */ - def fileName: String = path.getFileName.toString + def fileName: String = path.getFileName } /** @@ -51,13 +51,36 @@ case class AttachedFile( case class CopyrightMention( content: String, contexts: Seq[String], - origins: Seq[Path] + origins: Seq[PortablePath] ) extends Attachment { + + /** + * @inheritdoc + */ override def toString: String = s"CopyrightMention('$content')" } object CopyrightMention { + /** + * Creates a [[CopyrightMention]] converting `origins` to [[PortablePath]]. + */ + def from( + content: String, + contexts: Seq[String], + origins: Seq[Path] + ): CopyrightMention = + CopyrightMention(content, contexts, origins.map(PortablePath(_))) + + /** + * Creates a [[CopyrightMention]] with no origins. + */ + def apply( + content: String, + contexts: Seq[String] + ): CopyrightMention = + CopyrightMention(content, contexts, Seq.empty[PortablePath]) + /** * Transforms the sequence of copyright mentions by merging ones that have * equal content. @@ -128,6 +151,17 @@ object CopyrightMention { copyrights.flatMap(_.origins).distinct ) } + + /** + * Strips comment-related characters from the prefix and whitespace from + * suffix of the copyright line. + */ + def cleanup(string: String): String = { + val charsToIgnore = Seq('*', '-', '#', '/') + string + .dropWhile(char => char.isWhitespace || charsToIgnore.contains(char)) + .strip + } } object AttachedFile { @@ -144,6 +178,6 @@ object AttachedFile { case Some(root) => root.relativize(path) case None => path } - AttachedFile(actualPath, content) + AttachedFile(PortablePath(actualPath), content) } } diff --git a/project/src/main/scala/licenses/DependencySummary.scala b/project/src/main/scala/licenses/DependencySummary.scala index f6adc5f227..a64805e9c9 100644 --- a/project/src/main/scala/licenses/DependencySummary.scala +++ b/project/src/main/scala/licenses/DependencySummary.scala @@ -1,9 +1,11 @@ package src.main.scala.licenses -import java.nio.file.Path - import sbt.IO -import src.main.scala.licenses.report.WithWarnings +import src.main.scala.licenses.report.{ + LicenseReview, + PackageNotices, + WithWarnings +} /** * Contains a sequence of dependencies and any attachments found. @@ -88,11 +90,7 @@ object AttachmentStatus { * Gathers information related to a dependency after the review. * * @param information original [[DependencyInformation]] - * @param licenseReviewed indicates if the license associated with the - * dependency is marked as reviewed - * @param licensePath may contain a path to the default license file that will - * be used; if empty, `files` should contain an alternative - * license + * @param licenseReview review status of the dependency's main license * @param files list of files attached to the dependency, with their review * statuses * @param copyrights list of copyright mentions attached to the dependency, @@ -100,8 +98,7 @@ object AttachmentStatus { */ case class ReviewedDependency( information: DependencyInformation, - licenseReviewed: Boolean, - licensePath: Option[Path], + licenseReview: LicenseReview, files: Seq[(AttachedFile, AttachmentStatus)], copyrights: Seq[(CopyrightMention, AttachmentStatus)] ) @@ -146,11 +143,6 @@ object ReviewedSummary { val warnings = summary.dependencies.flatMap { dep => val warnings = collection.mutable.Buffer[String]() val name = dep.information.moduleInfo.toString - if (!dep.licenseReviewed) { - warnings.append( - s"License ${dep.information.license.name} for $name is not reviewed." - ) - } val missingFiles = dep.files.filter(_._2 == AttachmentStatus.NotReviewed) if (missingFiles.nonEmpty) { @@ -174,22 +166,39 @@ object ReviewedSummary { ) } - (summary.includedLicense(dep), dep.licensePath) match { - case (Some(kept), Some(reviewedLicense)) => - val licenseContent = IO.read(reviewedLicense.toFile) - if (licenseContent.strip != kept.content) { + dep.licenseReview match { + case LicenseReview.NotReviewed => + warnings.append( + s"License ${dep.information.license.name} for $name is not reviewed." + ) + case LicenseReview.Default( + defaultPath, + allowAdditionalCustomLicenses + ) => + if (!allowAdditionalCustomLicenses) { + summary.includedLicense(dep) match { + case Some(includedLicense) => + val licenseContent = IO.read(defaultPath.toFile) + if (licenseContent.strip != includedLicense.content) { + warnings.append( + s"A license file was discovered in $name that is different " + + s"from the default license file that is associated with its " + + s"license ${dep.information.license.name}." + ) + } + case None => + } + } + case LicenseReview.Custom(filename) => + val fileIsIncluded = + dep.files.exists(f => f._1.fileName == filename && f._2.included) + val fileWillBeIncludedAsCopyrightNotices = + filename == PackageNotices.gatheredNoticesFilename + if (!fileIsIncluded && !fileWillBeIncludedAsCopyrightNotices) { warnings.append( - s"A license file was discovered in $name that is different " + - s"from the default license file that is associated with its " + - s"license ${dep.information.license.name}." + s"License for $name is set to custom file `$filename`, but no such file is attached." ) } - case (None, None) => - warnings.append( - s"The license for $name is set to but no license-like " + - s"file is found." - ) - case _ => } warnings diff --git a/project/src/main/scala/licenses/DistributionDescription.scala b/project/src/main/scala/licenses/DistributionDescription.scala index 4e74fe2abf..0736690bd4 100644 --- a/project/src/main/scala/licenses/DistributionDescription.scala +++ b/project/src/main/scala/licenses/DistributionDescription.scala @@ -1,7 +1,6 @@ package src.main.scala.licenses import com.typesafe.sbt.license.LicenseReport -import com.typesafe.sbt.license.SbtCompat.IvySbt import sbt.File import sbt.librarymanagement.UpdateReport @@ -10,13 +9,11 @@ import sbt.librarymanagement.UpdateReport * * @param name name of the component * @param licenseReport license report generated by the `updateLicenses` task - * @param ivyModule `ivyModule` associated with the project * @param classifiedArtifactsReport result of the `updateClassifiers` task */ case class SBTDistributionComponent( name: String, licenseReport: LicenseReport, - ivyModule: IvySbt#Module, classifiedArtifactsReport: UpdateReport ) diff --git a/project/src/main/scala/licenses/FilesHelper.scala b/project/src/main/scala/licenses/FilesHelper.scala new file mode 100644 index 0000000000..496cf96ba6 --- /dev/null +++ b/project/src/main/scala/licenses/FilesHelper.scala @@ -0,0 +1,25 @@ +package src.main.scala.licenses + +import java.nio.file.{Files, Path} +import java.util.stream.Collectors + +import scala.collection.JavaConverters._ + +object FilesHelper { + + /** + * A helper method that recursively traverses the directory structure at + * `root` and collects results of calling `action` on each encountered entry. + * + * The action is called for all kinds of entries that are encountered. + */ + def walk[R](root: Path)(action: Path => Seq[R]): Seq[R] = { + val stream = Files.walk(root) + try { + val list = stream.collect(Collectors.toList()) + list.asScala.flatMap(action) + } finally { + stream.close() + } + } +} diff --git a/project/src/main/scala/licenses/PortablePath.scala b/project/src/main/scala/licenses/PortablePath.scala new file mode 100644 index 0000000000..461145c983 --- /dev/null +++ b/project/src/main/scala/licenses/PortablePath.scala @@ -0,0 +1,39 @@ +package src.main.scala.licenses + +import java.io.{File => JFile} +import java.nio.file.Path + +import sbt.File + +/** + * A wrapper for [[Path]] that ensures portable string representation on all + * platforms. + */ +case class PortablePath(path: Path) { + + /** + * @inheritdoc + */ + override def toString: String = + path.toString.replace(JFile.separatorChar, '/') + + /** + * A utility method converting the wrapped path to [[File]]. + */ + def toFile: File = path.toFile + + /** + * A utility method returning filename of the wrapped path. + */ + def getFileName: String = path.getFileName.toString +} + +object PortablePath { + + /** + * A utility method that parses [[Path]] and immediately wraps it into + * [[PortablePath]]. + */ + def of(first: String, more: String*): PortablePath = + PortablePath(Path.of(first, more: _*)) +} diff --git a/project/src/main/scala/licenses/backend/AttachmentGatherer.scala b/project/src/main/scala/licenses/backend/AttachmentGatherer.scala index 8044e4a87a..52c94b8fab 100644 --- a/project/src/main/scala/licenses/backend/AttachmentGatherer.scala +++ b/project/src/main/scala/licenses/backend/AttachmentGatherer.scala @@ -1,12 +1,9 @@ package src.main.scala.licenses.backend -import java.nio.file.{Files, Path} -import java.util.stream.Collectors +import java.nio.file.Path import src.main.scala.licenses.{Attachment, SourceAccess} -import scala.collection.JavaConverters._ - /** * Common interface for algorithms that gather attachments based on available * sources. @@ -27,22 +24,3 @@ trait AttachmentGatherer { sources.flatMap(_.access(run(_))) } } - -object AttachmentGatherer { - - /** - * A helper method that recursively traverses the directory structure at - * `root` and collects results of calling `action` on each encountered entry. - * - * The action is called for all kinds of entries that are encountered. - */ - def walk[R](root: Path)(action: Path => Seq[R]): Seq[R] = { - val stream = Files.walk(root) - try { - val list = stream.collect(Collectors.toList()) - list.asScala.flatMap(action) - } finally { - stream.close() - } - } -} diff --git a/project/src/main/scala/licenses/backend/GatherCopyrights.scala b/project/src/main/scala/licenses/backend/GatherCopyrights.scala index c2bdae355d..cf37ab197b 100644 --- a/project/src/main/scala/licenses/backend/GatherCopyrights.scala +++ b/project/src/main/scala/licenses/backend/GatherCopyrights.scala @@ -2,7 +2,7 @@ package src.main.scala.licenses.backend import java.nio.file.{Files, Path} import sbt.IO -import src.main.scala.licenses.{Attachment, CopyrightMention} +import src.main.scala.licenses.{Attachment, CopyrightMention, FilesHelper} import scala.util.control.NonFatal @@ -23,7 +23,7 @@ object GatherCopyrights extends AttachmentGatherer { * @inheritdoc */ override def run(root: Path): Seq[Attachment] = { - val allCopyrights = AttachmentGatherer.walk(root) { path => + val allCopyrights = FilesHelper.walk(root) { path => if (Files.isRegularFile(path)) { val relativePath = root.relativize(path) try { @@ -33,13 +33,16 @@ object GatherCopyrights extends AttachmentGatherer { .map { case (str, idx) => (str, findContext(lines)(idx)) } .map { case (line, context) => - CopyrightMention(line, Seq(context), Seq(relativePath)) + CopyrightMention.from( + CopyrightMention.cleanup(line), + Seq(context), + Seq(relativePath) + ) } - .map(mention => mention.copy(content = cleanup(mention.content))) } catch { case NonFatal(e) => Seq( - CopyrightMention( + CopyrightMention.from( "", Seq(e.toString), Seq(relativePath) @@ -115,12 +118,4 @@ object GatherCopyrights extends AttachmentGatherer { } private val possiblePrefixes = Seq('-', '#', ';', '/') - - /** - * Strips comment-related characters from the prefix. - */ - private def cleanup(string: String): String = { - val charsToIgnore = Seq('*', '-', '#', '/') - string.dropWhile(char => char.isWhitespace || charsToIgnore.contains(char)) - } } diff --git a/project/src/main/scala/licenses/backend/GatherNotices.scala b/project/src/main/scala/licenses/backend/GatherNotices.scala index 702d978d4c..346cc20960 100644 --- a/project/src/main/scala/licenses/backend/GatherNotices.scala +++ b/project/src/main/scala/licenses/backend/GatherNotices.scala @@ -2,7 +2,7 @@ package src.main.scala.licenses.backend import java.nio.file.{Files, Path} -import src.main.scala.licenses.{AttachedFile, Attachment} +import src.main.scala.licenses.{AttachedFile, Attachment, FilesHelper} /** * The algorithm for gathering any copyright-related files found in the @@ -17,7 +17,7 @@ object GatherNotices extends AttachmentGatherer { * @inheritdoc */ override def run(root: Path): Seq[Attachment] = { - AttachmentGatherer.walk(root) { path => + FilesHelper.walk(root) { path => if (Files.isRegularFile(path) && mayBeRelevant(path)) { Seq(AttachedFile.read(path, Some(root))) } else Seq() diff --git a/project/src/main/scala/licenses/backend/GithubHeuristic.scala b/project/src/main/scala/licenses/backend/GithubHeuristic.scala index 5f2500daa9..adbbd71740 100644 --- a/project/src/main/scala/licenses/backend/GithubHeuristic.scala +++ b/project/src/main/scala/licenses/backend/GithubHeuristic.scala @@ -7,8 +7,8 @@ import sbt.io.syntax.url import src.main.scala.licenses.{ AttachedFile, Attachment, - CopyrightMention, - DependencyInformation + DependencyInformation, + PortablePath } import scala.sys.process._ @@ -53,13 +53,17 @@ case class GithubHeuristic(info: DependencyInformation, log: Logger) { .map(m => (m.group("name"), m.group("href"))) .filter(p => mayBeRelevant(p._1)) .toList - val files = matches.flatMap { + matches.flatMap { case (_, href) => try { val content = url("https://github.com" + href.replace("blob", "raw")).cat.!! Seq( - AttachedFile(Path.of(href), content, origin = Some("github.com")) + AttachedFile( + PortablePath.of(href), + content, + origin = Some("github.com") + ) ) } catch { case NonFatal(error) => @@ -69,16 +73,6 @@ case class GithubHeuristic(info: DependencyInformation, log: Logger) { Seq() } } - val copyrights = homePage.linesIterator.toList - .filter(_.toLowerCase.contains("copyright")) - .map(line => - CopyrightMention( - line, - Seq(s"Found at $address"), - Seq(Path.of("github.com")) - ) - ) - files ++ copyrights } catch { case NonFatal(error) => log.warn(s"GitHub backend for ${info.packageName} failed with $error") diff --git a/project/src/main/scala/licenses/frontend/SbtLicenses.scala b/project/src/main/scala/licenses/frontend/SbtLicenses.scala index f3b77cc3e3..a0100de269 100644 --- a/project/src/main/scala/licenses/frontend/SbtLicenses.scala +++ b/project/src/main/scala/licenses/frontend/SbtLicenses.scala @@ -2,9 +2,7 @@ package src.main.scala.licenses.frontend import java.nio.file.Path -import com.typesafe.sbt.license.SbtCompat.IvySbt -import com.typesafe.sbt.license.{DepLicense, DepModuleInfo, LicenseReport} -import org.apache.ivy.core.report.ResolveReport +import com.typesafe.sbt.license.{DepLicense, DepModuleInfo} import org.apache.ivy.core.resolve.IvyNode import sbt.Compile import sbt.internal.util.ManagedLogger @@ -52,7 +50,7 @@ object SbtLicenses { ): (Seq[DependencyInformation], Seq[String]) = { val results: Seq[(Seq[Dependency], Vector[Path], Seq[String])] = components.map { component => - val report = resolveIvy(component.ivyModule, log) + val report = component.licenseReport.orig val ivyDeps = report.getDependencies.asScala.map(_.asInstanceOf[IvyNode]) val sourceArtifacts = component.classifiedArtifactsReport @@ -114,22 +112,6 @@ object SbtLicenses { (relevantDeps, missingWarnings ++ unexpectedWarnings ++ reportsWarnings) } - /** - * Uses the [[LicenseReport]] plugin to resolve the dependencies of the Ivy - * module of an SBT component. - * - * Returns the resolved report or throws an exception if any errors were - * encountered. - */ - private def resolveIvy( - ivyModule: IvySbt#Module, - log: ManagedLogger - ): ResolveReport = { - val (report, err) = LicenseReport.resolve(ivyModule, log) - err.foreach(throw _) - report - } - /** * Returns a project URL if it is defined for the dependency or None. */ @@ -176,7 +158,7 @@ object SbtLicenses { /** * Returns [[DepModuleInfo]] for an [[IvyNode]] if it is defined, or None. */ - private def safeModuleInfo(dep: IvyNode): Option[DepModuleInfo] = + def safeModuleInfo(dep: IvyNode): Option[DepModuleInfo] = for { moduleId <- Option(dep.getModuleId) moduleRevision <- Option(dep.getModuleRevision) diff --git a/project/src/main/scala/licenses/report/LicenseReview.scala b/project/src/main/scala/licenses/report/LicenseReview.scala new file mode 100644 index 0000000000..ecae4f9d36 --- /dev/null +++ b/project/src/main/scala/licenses/report/LicenseReview.scala @@ -0,0 +1,39 @@ +package src.main.scala.licenses.report + +import java.nio.file.Path + +/** + * Review status of a license within a specific dependency. + */ +sealed trait LicenseReview +object LicenseReview { + + /** + * The license used by that dependency was not reviewed. + */ + case object NotReviewed extends LicenseReview + + /** + * The license has been reviewed and points to the default file for this license type. + * + * This status is assigned automatically if the license type for the artifact is already reviewed + * and there is no custom override for the given dependency. + * + * @param path path to the license file, relative to repository root + * @param allowAdditionalCustomLicenses if set, does not warn about additional licenses that are + * different than the default one; that should only be used + * in special circumstances, for example when a dependency + * contains multiple licenses and one of them is the default + * one so we want to keep it, but we also want to keep the + * others + */ + case class Default(path: Path, allowAdditionalCustomLicenses: Boolean) + extends LicenseReview + + /** + * The lciense for that dependency has been overridden with a custom one. + * + * The attached files of the dependency should contain a file with the provided filename. + */ + case class Custom(filename: String) extends LicenseReview +} diff --git a/project/src/main/scala/licenses/report/PackageNotices.scala b/project/src/main/scala/licenses/report/PackageNotices.scala index ed8db80bd5..7a8bb8b029 100644 --- a/project/src/main/scala/licenses/report/PackageNotices.scala +++ b/project/src/main/scala/licenses/report/PackageNotices.scala @@ -4,6 +4,7 @@ import java.nio.file.{Files, Path} import sbt._ import src.main.scala.licenses.{ + AttachedFile, AttachmentStatus, CopyrightMention, DistributionDescription, @@ -30,6 +31,7 @@ object PackageNotices { summary: ReviewedSummary, destination: File ): Unit = { + val ReviewedSummary(dependencies, noticeHeader, additionalFiles) = summary IO.delete(destination) IO.createDirectory(destination) if (IO.listFiles(destination).nonEmpty) { @@ -41,20 +43,24 @@ object PackageNotices { val artifactName = description.artifactName val mainNotice = new StringBuilder - mainNotice.append(summary.noticeHeader) + mainNotice.append(noticeHeader) val licensesRoot = destination / "licenses" val processedLicenses = collection.mutable.Set[Path]() - for (dependency <- summary.dependencies) { + writeFiles(destination, additionalFiles) + + for (dependency <- dependencies) { val name = dependency.information.moduleInfo.name val licenseName = dependency.information.license.name mainNotice.append( s"\n\n'$name', licensed under the $licenseName, " + s"is distributed with the $artifactName.\n" ) - dependency.licensePath match { - case Some(path) => + + dependency.licenseReview match { + case LicenseReview.NotReviewed => + case LicenseReview.Default(path, _) => val name = path.getFileName.toString if (!processedLicenses.contains(path)) { val destination = licensesRoot / name @@ -67,9 +73,9 @@ object PackageNotices { mainNotice.append( s"The license file can be found at `licenses/$name`.\n" ) - case None => + case LicenseReview.Custom(_) => mainNotice.append( - s"The license file can be found at along the copyright notices.\n" + s"The license information can be found along with the copyright notices.\n" ) } @@ -87,18 +93,7 @@ object PackageNotices { IO.createDirectory(packageRoot) } - @tailrec - def findFreeName(name: String, counter: Int = 0): File = { - val actualName = if (counter > 0) s"$name.$counter" else name - val file = packageRoot / actualName - if (Files.exists(file.toPath)) findFreeName(name, counter + 1) - else file - } - - for (attachedFile <- files) { - val file = findFreeName(attachedFile.path.getFileName.toString) - IO.write(file, attachedFile.content) - } + writeFiles(packageRoot, files) def renderCopyright( copyright: CopyrightMention, @@ -110,7 +105,7 @@ object PackageNotices { if (copyright.contexts.size != 1) { throw new IllegalStateException( "`KeepWithContext` can only be used for copyrights that " + - "have exactly one context." + s"have exactly one context: `${copyright.content}`" ) } copyright.contexts.head @@ -128,11 +123,45 @@ object PackageNotices { case (m, s) => renderCopyright(m, s) } .mkString("\n\n") - val freeName = findFreeName("NOTICES") - IO.write(freeName, compiledCopyrights) + val freeName = findFreeName(packageRoot, gatheredNoticesFilename) + IO.write(freeName, compiledCopyrights + "\n") } } - IO.write(destination / "NOTICE", mainNotice.toString()) + IO.write(destination / "NOTICE", mainNotice.toString() + "\n") + } + + /** + * Name of the generated file that contains concatenated copyright notices that were found in the + * project. + */ + val gatheredNoticesFilename = "NOTICES" + + /** + * Finds a filename that is not taken. + * + * First tries the `name` and adds increasing numerical suffixes if the + * previous names were taken. + */ + @tailrec + def findFreeName(root: File, name: String, counter: Int = 0): File = { + val actualName = if (counter > 0) s"$name.$counter" else name + val file = root / actualName + if (Files.exists(file.toPath)) findFreeName(root, name, counter + 1) + else file + } + + /** + * Writes attached files to the given directory. + */ + def writeFiles(root: File, files: Seq[AttachedFile]): Unit = { + for (attachedFile <- files) { + val file = findFreeName(root, attachedFile.path.getFileName.toString) + if (attachedFile.content == Review.directoryMark) { + IO.copyDirectory(attachedFile.path.toFile, file) + } else { + IO.write(file, attachedFile.content) + } + } } } diff --git a/project/src/main/scala/licenses/report/Report.scala b/project/src/main/scala/licenses/report/Report.scala index eef85d1e3b..e193ca4694 100644 --- a/project/src/main/scala/licenses/report/Report.scala +++ b/project/src/main/scala/licenses/report/Report.scala @@ -1,7 +1,6 @@ package src.main.scala.licenses.report import java.nio.charset.StandardCharsets -import java.nio.file.Path import java.util.Base64 import sbt.{File, IO} @@ -96,20 +95,25 @@ object Report { * it is redundant) the message is also displayed as a minor warning. */ private def renderSimilarity( - licensePath: Option[Path], + defaultLicense: Option[LicenseReview.Default], file: AttachedFile, status: AttachmentStatus ): String = { val name = file.path.getFileName.toString.toLowerCase if (name.contains("license") || name.contains("licence")) { - licensePath match { - case Some(value) => - val defaultText = IO.read(value.toFile) + defaultLicense match { + case Some(LicenseReview.Default(path, allowAdditionalCustomLicenses)) => + val defaultText = IO.read(path.toFile) if (defaultText.strip() == file.content.strip()) { val color = if (status.included) Style.Red else Style.Green s"""100% identical to default license""" - } else - s"""Differs from used license!""" + } else { + val shouldWarn = !allowAdditionalCustomLicenses + val (color, message) = + if (shouldWarn) (Style.Red, "Differs from used license!") + else (Style.Gray, "Differs from the default license.") + s"""$message""" + } case None => "" } } else "" @@ -141,8 +145,7 @@ object Report { rows = sorted.map { case dep @ ReviewedDependency( information, - licenseReviewed, - licensePath, + licenseReview, files, copyrights ) => @@ -162,34 +165,46 @@ object Report { rowWriter.addColumn { writer.writeLink(license.name, license.url) writer.writeText(s"(${license.category.name})
") - licensePath match { - case Some(path) => - writer.writeText( - path.getFileName.toString, - if (licenseReviewed) Style.Green else Style.Red - ) - case None if licenseReviewed => - val licenseFile = summary.includedLicense(dep) - licenseFile match { - case Some(file) => - writer.writeText( - s"Custom license ${file.path.getFileName}", - Style.Green - ) - case None => - writer.writeText( - "Custom license defined but not provided!", - Style.Red - ) - } - case None if !licenseReviewed => + licenseReview match { + case LicenseReview.NotReviewed => val name = Review.normalizeName(license.name) writer.writeText( s"Not reviewed, filename:

$name
", Style.Red ) + case LicenseReview.Default(path, allowAdditional) => + val additional = + if (allowAdditional) " and additional included files." + else "" + writer.writeText( + path.getFileName.toString + additional, + Style.Green + ) + case LicenseReview.Custom(filename) => + val customFileIncluded = files.exists(f => + f._1.fileName == filename && f._2.included + ) + val customIsNotices = + filename == PackageNotices.gatheredNoticesFilename + if (customFileIncluded) { + writer.writeText(s"Custom license $filename", Style.Green) + } else if (customIsNotices) { + writer.writeText( + s"Custom license included within copyright notices", + Style.Green + ) + } else { + writer.writeText( + s"Custom license `$filename` defined but not included!", + Style.Red + ) + } } } + + val defaultLicense = Some(licenseReview).collect { + case l: LicenseReview.Default => l + } rowWriter.addColumn { if (files.isEmpty) writer.writeText("No attached files.") else @@ -207,7 +222,7 @@ object Report { .getOrElse("") writer.writeCollapsible( s"${file.fileName} (${renderStatus(status)})$origin " + - s"${renderSimilarity(licensePath, file, status)}", + s"${renderSimilarity(defaultLicense, file, status)}", injection + writer.escape(file.content) ) @@ -226,7 +241,7 @@ object Report { writer.writeText("No copyright information found.") } } else - writer.writeList(copyrights.map { + writer.writeList(copyrights.sortBy(_._1.content).map { case (mention, status) => () => val foundAt = mention.origins match { diff --git a/project/src/main/scala/licenses/report/Review.scala b/project/src/main/scala/licenses/report/Review.scala index 920097c8ab..a31e5ea0f0 100644 --- a/project/src/main/scala/licenses/report/Review.scala +++ b/project/src/main/scala/licenses/report/Review.scala @@ -1,6 +1,6 @@ package src.main.scala.licenses.report -import java.nio.file.{Files, Path} +import java.nio.file.{InvalidPathException, Path} import java.time.LocalDate import sbt._ @@ -33,6 +33,11 @@ import scala.util.control.NonFatal * - `custom-license` - a file that indicates that the dependency should not * point to the default license, but it should contain a custom one within * its files + * - `default-and-custom-license` - a file that indicates that the dependency should point to the + * default license, but it also contains additional license-like files that should be kept too; + * it disables checking if the attached license-like files are equal to the default license or + * not, so it should be used very carefully; at most one of `default-and-custom-license` and + * `custom-license` should exist for each dependency * - `copyright-keep` - copyright lines that should be included in the * notice summary for the package * - `copyright-keep-context` - copyright lines that should be included @@ -47,6 +52,23 @@ import scala.util.control.NonFatal */ case class Review(root: File, dependencySummary: DependencySummary) { + private object Paths { + val noticeHeader = "notice-header" + + val filesAdd = "files-add" + val filesKeep = "files-keep" + val filesIgnore = "files-ignore" + + val copyrightKeep = "copyright-keep" + val copyrightKeepWithContext = "copyright-keep-context" + val copyrightIgnore = "copyright-ignore" + val copyrightAdd = "copyright-add" + + val reviewedLicenses = "reviewed-licenses" + val customLicense = "custom-license" + val defaultAndCustomLicense = "default-and-custom-license" + } + /** * Runs the review process, returning a [[ReviewedDependency]] which includes * information from the [[DependencySummary]] enriched with review statuses. @@ -59,7 +81,7 @@ case class Review(root: File, dependencySummary: DependencySummary) { }.flip header = findHeader() - files = findAdditionalFiles(root / "files-add") + files = findAdditionalFiles(root / Paths.filesAdd) summary = ReviewedSummary(reviews, header, files) _ <- ReviewedSummary.warnAboutMissingReviews(summary) existingPackages = dependencySummary.dependencies.map(_._1.packageName) @@ -78,7 +100,7 @@ case class Review(root: File, dependencySummary: DependencySummary) { ): WithWarnings[Unit] = { val foundConfigurations = listFiles(root).filter(_.isDirectory) val expectedFileNames = - existingPackageNames ++ Seq("files-add", "reviewed-licenses") + existingPackageNames ++ Seq(Paths.filesAdd, Paths.reviewedLicenses) val unexpectedConfigurations = foundConfigurations.filter(p => !expectedFileNames.contains(p.getName)) val warnings = unexpectedConfigurations.map(p => @@ -92,13 +114,21 @@ case class Review(root: File, dependencySummary: DependencySummary) { * Finds a header defined in the settings or */ private def findHeader(): String = - readFile(root / "notice-header").getOrElse(Review.defaultHeader) + readFile(root / Paths.noticeHeader).getOrElse(Review.defaultHeader) /** * Reads files from the provided directory as [[AttachedFile]]. */ private def findAdditionalFiles(dir: File): Seq[AttachedFile] = - listFiles(dir).map(f => AttachedFile.read(f.toPath, Some(dir.toPath))) + listFiles(dir).map { f => + if (f.isDirectory) + AttachedFile( + PortablePath(f.toPath.toAbsolutePath), + Review.directoryMark + ) + else + AttachedFile.read(f.toPath, Some(dir.toPath)) + } /** * Splits the sequence of attachments into sequences of files and copyrights. @@ -136,23 +166,22 @@ case class Review(root: File, dependencySummary: DependencySummary) { info: DependencyInformation, attachments: Seq[Attachment] ): WithWarnings[ReviewedDependency] = { - val packageRoot = root / info.packageName - val (licenseReviewed, licensePath) = reviewLicense(packageRoot, info) - val (files, copyrights) = splitAttachments(attachments) + val packageRoot = root / info.packageName + val (files, copyrights) = splitAttachments(attachments) val copyrightsDeduplicated = removeCopyrightsIncludedInNotices(copyrights, files) for { + licenseReview <- reviewLicense(packageRoot, info) processedFiles <- reviewFiles(packageRoot, files) ++ addFiles(packageRoot) processedCopyrights <- reviewCopyrights(packageRoot, copyrightsDeduplicated) ++ addCopyrights(packageRoot) } yield ReviewedDependency( - information = info, - licenseReviewed = licenseReviewed, - licensePath = licensePath, - files = processedFiles, - copyrights = processedCopyrights + information = info, + licenseReview = licenseReview, + files = processedFiles, + copyrights = processedCopyrights ) } @@ -166,8 +195,8 @@ case class Review(root: File, dependencySummary: DependencySummary) { def keyForFile(file: AttachedFile): String = file.path.toString val keys = files.map(keyForFile) for { - ignore <- readExpectedLines("files-ignore", keys, packageRoot) - keep <- readExpectedLines("files-keep", keys, packageRoot) + ignore <- readExpectedLines(Paths.filesIgnore, keys, packageRoot) + keep <- readExpectedLines(Paths.filesKeep, keys, packageRoot) } yield { def review(file: AttachedFile): AttachmentStatus = { val key = keyForFile(file) @@ -187,7 +216,7 @@ case class Review(root: File, dependencySummary: DependencySummary) { private def addFiles( packageRoot: File ): Seq[(AttachedFile, AttachmentStatus)] = - findAdditionalFiles(packageRoot / "files-add") + findAdditionalFiles(packageRoot / Paths.filesAdd) .map((_, AttachmentStatus.Added)) /** @@ -201,10 +230,10 @@ case class Review(root: File, dependencySummary: DependencySummary) { copyrightMention.content.strip val keys = copyrights.map(keyForMention) for { - ignore <- readExpectedLines("copyright-ignore", keys, packageRoot) - keep <- readExpectedLines("copyright-keep", keys, packageRoot) + ignore <- readExpectedLines(Paths.copyrightIgnore, keys, packageRoot) + keep <- readExpectedLines(Paths.copyrightKeep, keys, packageRoot) keepContext <- - readExpectedLines("copyright-keep-context", keys, packageRoot) + readExpectedLines(Paths.copyrightKeepWithContext, keys, packageRoot) } yield { def review(copyright: CopyrightMention): AttachmentStatus = { @@ -226,13 +255,12 @@ case class Review(root: File, dependencySummary: DependencySummary) { private def addCopyrights( packageRoot: File ): Seq[(CopyrightMention, AttachmentStatus)] = - readFile(packageRoot / "copyright-add") + readFile(packageRoot / Paths.copyrightAdd) .map(text => ( CopyrightMention( content = "", - contexts = Seq(text), - origins = Seq() + contexts = Seq(text) ), AttachmentStatus.Added ) @@ -240,23 +268,49 @@ case class Review(root: File, dependencySummary: DependencySummary) { .toSeq /** - * Checks if the license has been reviewed. - * - * Returns a boolean value indicating if it has been reviewed and a path to - * the license file if a default file is used. + * Checks review status of the license associated with the given dependency. */ private def reviewLicense( packageRoot: File, info: DependencyInformation - ): (Boolean, Option[Path]) = { - if (Files.exists((packageRoot / "custom-license").toPath)) (true, None) - else - readFile( - root / "reviewed-licenses" / Review.normalizeName(info.license.name) - ) - .map(p => (true, Some(Path.of(p.strip())))) - .getOrElse((false, None)) - } + ): WithWarnings[LicenseReview] = + readFile(packageRoot / Paths.customLicense) match { + case Some(content) => + val customFilename = content.strip() + WithWarnings(LicenseReview.Custom(customFilename)) + case None => + val settingPath = + root / Paths.reviewedLicenses / Review.normalizeName( + info.license.name + ) + readFile(settingPath) + .map { content => + if (content.isBlank) { + WithWarnings( + LicenseReview.NotReviewed, + Seq(s"License review file $settingPath is empty.") + ) + } else + try { + val path = Path.of(content.strip()) + val bothDefaultAndCustom = + (packageRoot / Paths.defaultAndCustomLicense).exists() + WithWarnings( + LicenseReview.Default( + path, + allowAdditionalCustomLicenses = bothDefaultAndCustom + ) + ) + } catch { + case e: InvalidPathException => + WithWarnings( + LicenseReview.NotReviewed, + Seq(s"License review file $settingPath is malformed: $e") + ) + } + } + .getOrElse(WithWarnings(LicenseReview.NotReviewed)) + } /** * Reads the file as lines. @@ -330,4 +384,6 @@ object Review { s"""Enso |Copyright $year New Byte Order sp. z o. o.""".stripMargin } + + val directoryMark = "" } diff --git a/project/src/main/scala/licenses/report/ReviewState.scala b/project/src/main/scala/licenses/report/ReviewState.scala new file mode 100644 index 0000000000..f5493fdd7b --- /dev/null +++ b/project/src/main/scala/licenses/report/ReviewState.scala @@ -0,0 +1,109 @@ +package src.main.scala.licenses.report + +import java.nio.file.Files +import java.security.MessageDigest + +import sbt.internal.util.ManagedLogger +import sbt.{File, IO} +import src.main.scala.licenses.{ + DistributionDescription, + FilesHelper, + PortablePath +} + +import scala.util.control.NonFatal + +case class ReviewState( + inputHash: String, + outputHash: String, + warningsCount: Int +) + +object ReviewState { + def read(file: File, log: ManagedLogger): Option[ReviewState] = { + try { + IO.readLines(file) match { + case List(inputHash, outputHash, count) => + Some(ReviewState(inputHash, outputHash, count.toInt)) + case _ => + log.error(s"Review state at $file is malformed.") + None + } + } catch { + case NonFatal(error) => + log.error(s"Could not read review state at $file: $error") + None + } + } + + def write(file: File, reviewState: ReviewState): Unit = { + IO.createDirectory(file.getParentFile) + IO.write( + file, + Seq( + reviewState.inputHash, + reviewState.outputHash, + reviewState.warningsCount + ).mkString("", "\n", "\n") + ) + } + + def computeInputHash( + distributionDescription: DistributionDescription + ): String = { + val DistributionDescription( + artifactName, + _, + sbtComponents + ) = distributionDescription + + val digest = MessageDigest.getInstance("SHA-256") + digest.update(artifactName.getBytes) + for (sbtComponent <- sbtComponents) { + digest.update(sbtComponent.name.getBytes) + val dependencies = + sbtComponent.licenseReport.licenses.sortBy(_.module.toString) + for (dep <- dependencies) { + digest.update(dep.module.toString.getBytes) + digest.update(dep.license.name.getBytes) + } + } + hexString(digest.digest()) + } + + def computeOutputHash( + distributionDescription: DistributionDescription + ): String = { + val digest = MessageDigest.getInstance("SHA-256") + val root = distributionDescription.packageDestination.toPath + val allFiles = + FilesHelper + .walk(root)(Seq(_)) + .map(p => PortablePath(root.relativize(p))) + .sortBy(_.toString) + for (path <- allFiles) { + digest.update(path.toString.getBytes) + val file = root.resolve(path.path).toFile + if (!file.isDirectory) { + digest.update(IO.readBytes(file)) + } + } + hexString(digest.digest()) + } + + private def hexString(bytes: Array[Byte]): String = + bytes.map("%02X".format(_)).mkString + + def write( + file: File, + distributionDescription: DistributionDescription, + warningsCount: Int + ): Unit = { + val state = ReviewState( + inputHash = computeInputHash(distributionDescription), + outputHash = computeOutputHash(distributionDescription), + warningsCount = warningsCount + ) + write(file, state) + } +} diff --git a/project/src/main/scala/licenses/report/WithWarnings.scala b/project/src/main/scala/licenses/report/WithWarnings.scala index b7376a0eed..9e6863d9f5 100644 --- a/project/src/main/scala/licenses/report/WithWarnings.scala +++ b/project/src/main/scala/licenses/report/WithWarnings.scala @@ -3,7 +3,7 @@ package src.main.scala.licenses.report /** * A simple monad for storing warnings related to a result. */ -case class WithWarnings[+A](value: A, warnings: Seq[String]) { +case class WithWarnings[+A](value: A, warnings: Seq[String] = Seq()) { /** * Returns a result with a mapped value and the same warnings. diff --git a/tools/legal-review-helper/index.js b/tools/legal-review-helper/index.js index 8b0bdebb1f..3930c4f382 100644 --- a/tools/legal-review-helper/index.js +++ b/tools/legal-review-helper/index.js @@ -100,7 +100,11 @@ app.post("/modify/:report", function (req, res) { const package = req.body["package"]; const action = req.body["action"]; const file = req.body["file"]; - const line = req.body["line"]; + let line = req.body["line"]; + const encodedLine = req.body["encoded_line"]; + if (encodedLine !== undefined) { + line = Buffer.from(encodedLine, "base64").toString(); + } try { if (action == "add") { diff --git a/tools/legal-review-helper/static/inject.js b/tools/legal-review-helper/static/inject.js index 68be2a0180..53702e0c31 100644 --- a/tools/legal-review-helper/static/inject.js +++ b/tools/legal-review-helper/static/inject.js @@ -57,11 +57,11 @@ $(function () { copys.each(function (index) { var package = $(this).data("package"); - var content = atob($(this).data("content")); + var encodedContent = $(this).data("content"); var status = $(this).data("status"); var contexts = parseInt($(this).data("contexts")); var data = { - line: content, + encoded_line: encodedContent, package: package, }; if (status == "NotReviewed") { diff --git a/tools/legal-review/engine/ch.qos.logback.logback-classic-1.2.3/copyright-ignore b/tools/legal-review/engine/ch.qos.logback.logback-classic-1.2.3/copyright-ignore new file mode 100644 index 0000000000..ee6b6d384b --- /dev/null +++ b/tools/legal-review/engine/ch.qos.logback.logback-classic-1.2.3/copyright-ignore @@ -0,0 +1,4 @@ +Copyright (C) 1999-2010, QOS.ch. All rights reserved. +Copyright (C) 1999-2015, QOS.ch. All rights reserved. +Copyright (C) 1999-2012, QOS.ch. All rights reserved. +Copyright (C) 1999-2016, QOS.ch. All rights reserved. diff --git a/tools/legal-review/engine/ch.qos.logback.logback-classic-1.2.3/custom-license b/tools/legal-review/engine/ch.qos.logback.logback-classic-1.2.3/custom-license new file mode 100644 index 0000000000..cb911900fb --- /dev/null +++ b/tools/legal-review/engine/ch.qos.logback.logback-classic-1.2.3/custom-license @@ -0,0 +1 @@ +Eclipse Public License - Version 1.0.html diff --git a/tools/legal-review/engine/ch.qos.logback.logback-classic-1.2.3/files-add/Eclipse Public License - Version 1.0.html b/tools/legal-review/engine/ch.qos.logback.logback-classic-1.2.3/files-add/Eclipse Public License - Version 1.0.html new file mode 100644 index 0000000000..4c7c9b7ba5 --- /dev/null +++ b/tools/legal-review/engine/ch.qos.logback.logback-classic-1.2.3/files-add/Eclipse Public License - Version 1.0.html @@ -0,0 +1,259 @@ + + + + +Eclipse Public License - Version 1.0 + + + + + + +

Eclipse Public License - v 1.0

+ +

THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE +PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR +DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS +AGREEMENT.

+ +

1. DEFINITIONS

+ +

"Contribution" means:

+ +

a) in the case of the initial Contributor, the initial +code and documentation distributed under this Agreement, and

+

b) in the case of each subsequent Contributor:

+

i) changes to the Program, and

+

ii) additions to the Program;

+

where such changes and/or additions to the Program +originate from and are distributed by that particular Contributor. A +Contribution 'originates' from a Contributor if it was added to the +Program by such Contributor itself or anyone acting on such +Contributor's behalf. Contributions do not include additions to the +Program which: (i) are separate modules of software distributed in +conjunction with the Program under their own license agreement, and (ii) +are not derivative works of the Program.

+ +

"Contributor" means any person or entity that distributes +the Program.

+ +

"Licensed Patents" mean patent claims licensable by a +Contributor which are necessarily infringed by the use or sale of its +Contribution alone or when combined with the Program.

+ +

"Program" means the Contributions distributed in accordance +with this Agreement.

+ +

"Recipient" means anyone who receives the Program under +this Agreement, including all Contributors.

+ +

2. GRANT OF RIGHTS

+ +

a) Subject to the terms of this Agreement, each +Contributor hereby grants Recipient a non-exclusive, worldwide, +royalty-free copyright license to reproduce, prepare derivative works +of, publicly display, publicly perform, distribute and sublicense the +Contribution of such Contributor, if any, and such derivative works, in +source code and object code form.

+ +

b) Subject to the terms of this Agreement, each +Contributor hereby grants Recipient a non-exclusive, worldwide, +royalty-free patent license under Licensed Patents to make, use, sell, +offer to sell, import and otherwise transfer the Contribution of such +Contributor, if any, in source code and object code form. This patent +license shall apply to the combination of the Contribution and the +Program if, at the time the Contribution is added by the Contributor, +such addition of the Contribution causes such combination to be covered +by the Licensed Patents. The patent license shall not apply to any other +combinations which include the Contribution. No hardware per se is +licensed hereunder.

+ +

c) Recipient understands that although each Contributor +grants the licenses to its Contributions set forth herein, no assurances +are provided by any Contributor that the Program does not infringe the +patent or other intellectual property rights of any other entity. Each +Contributor disclaims any liability to Recipient for claims brought by +any other entity based on infringement of intellectual property rights +or otherwise. As a condition to exercising the rights and licenses +granted hereunder, each Recipient hereby assumes sole responsibility to +secure any other intellectual property rights needed, if any. For +example, if a third party patent license is required to allow Recipient +to distribute the Program, it is Recipient's responsibility to acquire +that license before distributing the Program.

+ +

d) Each Contributor represents that to its knowledge it +has sufficient copyright rights in its Contribution, if any, to grant +the copyright license set forth in this Agreement.

+ +

3. REQUIREMENTS

+ +

A Contributor may choose to distribute the Program in object code +form under its own license agreement, provided that:

+ +

a) it complies with the terms and conditions of this +Agreement; and

+ +

b) its license agreement:

+ +

i) effectively disclaims on behalf of all Contributors +all warranties and conditions, express and implied, including warranties +or conditions of title and non-infringement, and implied warranties or +conditions of merchantability and fitness for a particular purpose;

+ +

ii) effectively excludes on behalf of all Contributors +all liability for damages, including direct, indirect, special, +incidental and consequential damages, such as lost profits;

+ +

iii) states that any provisions which differ from this +Agreement are offered by that Contributor alone and not by any other +party; and

+ +

iv) states that source code for the Program is available +from such Contributor, and informs licensees how to obtain it in a +reasonable manner on or through a medium customarily used for software +exchange.

+ +

When the Program is made available in source code form:

+ +

a) it must be made available under this Agreement; and

+ +

b) a copy of this Agreement must be included with each +copy of the Program.

+ +

Contributors may not remove or alter any copyright notices contained +within the Program.

+ +

Each Contributor must identify itself as the originator of its +Contribution, if any, in a manner that reasonably allows subsequent +Recipients to identify the originator of the Contribution.

+ +

4. COMMERCIAL DISTRIBUTION

+ +

Commercial distributors of software may accept certain +responsibilities with respect to end users, business partners and the +like. While this license is intended to facilitate the commercial use of +the Program, the Contributor who includes the Program in a commercial +product offering should do so in a manner which does not create +potential liability for other Contributors. Therefore, if a Contributor +includes the Program in a commercial product offering, such Contributor +("Commercial Contributor") hereby agrees to defend and +indemnify every other Contributor ("Indemnified Contributor") +against any losses, damages and costs (collectively "Losses") +arising from claims, lawsuits and other legal actions brought by a third +party against the Indemnified Contributor to the extent caused by the +acts or omissions of such Commercial Contributor in connection with its +distribution of the Program in a commercial product offering. The +obligations in this section do not apply to any claims or Losses +relating to any actual or alleged intellectual property infringement. In +order to qualify, an Indemnified Contributor must: a) promptly notify +the Commercial Contributor in writing of such claim, and b) allow the +Commercial Contributor to control, and cooperate with the Commercial +Contributor in, the defense and any related settlement negotiations. The +Indemnified Contributor may participate in any such claim at its own +expense.

+ +

For example, a Contributor might include the Program in a commercial +product offering, Product X. That Contributor is then a Commercial +Contributor. If that Commercial Contributor then makes performance +claims, or offers warranties related to Product X, those performance +claims and warranties are such Commercial Contributor's responsibility +alone. Under this section, the Commercial Contributor would have to +defend claims against the other Contributors related to those +performance claims and warranties, and if a court requires any other +Contributor to pay any damages as a result, the Commercial Contributor +must pay those damages.

+ +

5. NO WARRANTY

+ +

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS +PROVIDED 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. Each Recipient is solely +responsible for determining the appropriateness of using and +distributing the Program and assumes all risks associated with its +exercise of rights under this Agreement , including but not limited to +the risks and costs of program errors, compliance with applicable laws, +damage to or loss of data, programs or equipment, and unavailability or +interruption of operations.

+ +

6. DISCLAIMER OF LIABILITY

+ +

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT +NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING +WITHOUT LIMITATION LOST PROFITS), 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 OR +DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED +HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

+ +

7. GENERAL

+ +

If any provision of this Agreement is invalid or unenforceable under +applicable law, it shall not affect the validity or enforceability of +the remainder of the terms of this Agreement, and without further action +by the parties hereto, such provision shall be reformed to the minimum +extent necessary to make such provision valid and enforceable.

+ +

If Recipient institutes patent litigation against any entity +(including a cross-claim or counterclaim in a lawsuit) alleging that the +Program itself (excluding combinations of the Program with other +software or hardware) infringes such Recipient's patent(s), then such +Recipient's rights granted under Section 2(b) shall terminate as of the +date such litigation is filed.

+ +

All Recipient's rights under this Agreement shall terminate if it +fails to comply with any of the material terms or conditions of this +Agreement and does not cure such failure in a reasonable period of time +after becoming aware of such noncompliance. If all Recipient's rights +under this Agreement terminate, Recipient agrees to cease use and +distribution of the Program as soon as reasonably practicable. However, +Recipient's obligations under this Agreement and any licenses granted by +Recipient relating to the Program shall continue and survive.

+ +

Everyone is permitted to copy and distribute copies of this +Agreement, but in order to avoid inconsistency the Agreement is +copyrighted and may only be modified in the following manner. The +Agreement Steward reserves the right to publish new versions (including +revisions) of this Agreement from time to time. No one other than the +Agreement Steward has the right to modify this Agreement. The Eclipse +Foundation is the initial Agreement Steward. The Eclipse Foundation may +assign the responsibility to serve as the Agreement Steward to a +suitable separate entity. Each new version of the Agreement will be +given a distinguishing version number. The Program (including +Contributions) may always be distributed subject to the version of the +Agreement under which it was received. In addition, after a new version +of the Agreement is published, Contributor may elect to distribute the +Program (including its Contributions) under the new version. Except as +expressly stated in Sections 2(a) and 2(b) above, Recipient receives no +rights or licenses to the intellectual property of any Contributor under +this Agreement, whether expressly, by implication, estoppel or +otherwise. All rights in the Program not expressly granted under this +Agreement are reserved.

+ +

This Agreement is governed by the laws of the State of New York and +the intellectual property laws of the United States of America. No party +to this Agreement will bring a legal action under this Agreement more +than one year after the cause of action arose. Each party waives its +rights to a jury trial in any resulting litigation.

+ + + + \ No newline at end of file diff --git a/tools/legal-review/engine/ch.qos.logback.logback-classic-1.2.3/files-add/NOTICE b/tools/legal-review/engine/ch.qos.logback.logback-classic-1.2.3/files-add/NOTICE new file mode 100644 index 0000000000..a6e00043e4 --- /dev/null +++ b/tools/legal-review/engine/ch.qos.logback.logback-classic-1.2.3/files-add/NOTICE @@ -0,0 +1,16 @@ +Logback: the reliable, generic, fast and flexible logging framework. +Copyright (C) 1999-2017, QOS.ch. All rights reserved. + +This program and the accompanying materials are dual-licensed under +either the terms of the Eclipse Public License v1.0 as published by +the Eclipse Foundation + + or (per the licensee's choosing) + +under the terms of the GNU Lesser General Public License version 2.1 +as published by the Free Software Foundation. + + +------------------ + +We have chosen EPL in this project. diff --git a/tools/legal-review/engine/ch.qos.logback.logback-core-1.2.3/copyright-ignore b/tools/legal-review/engine/ch.qos.logback.logback-core-1.2.3/copyright-ignore new file mode 100644 index 0000000000..69257957f3 --- /dev/null +++ b/tools/legal-review/engine/ch.qos.logback.logback-core-1.2.3/copyright-ignore @@ -0,0 +1 @@ +Copyright (C) 1999-2015, QOS.ch. All rights reserved. diff --git a/tools/legal-review/engine/ch.qos.logback.logback-core-1.2.3/custom-license b/tools/legal-review/engine/ch.qos.logback.logback-core-1.2.3/custom-license new file mode 100644 index 0000000000..6d5ee1d052 --- /dev/null +++ b/tools/legal-review/engine/ch.qos.logback.logback-core-1.2.3/custom-license @@ -0,0 +1 @@ +NOTICE diff --git a/tools/legal-review/engine/ch.qos.logback.logback-core-1.2.3/files-add/NOTICE b/tools/legal-review/engine/ch.qos.logback.logback-core-1.2.3/files-add/NOTICE new file mode 100644 index 0000000000..299dc2f69f --- /dev/null +++ b/tools/legal-review/engine/ch.qos.logback.logback-core-1.2.3/files-add/NOTICE @@ -0,0 +1 @@ +Please see ch.qos.logback.logback-classic-1.2 for notices related to logback. diff --git a/tools/legal-review/engine/com.beachape.enumeratum-circe_2.13-1.6.1/copyright-add b/tools/legal-review/engine/com.beachape.enumeratum-circe_2.13-1.6.1/copyright-add new file mode 100644 index 0000000000..1c8ab69d21 --- /dev/null +++ b/tools/legal-review/engine/com.beachape.enumeratum-circe_2.13-1.6.1/copyright-add @@ -0,0 +1 @@ +See com.beachape.enumeratum-macros_2.13-1.6.1 for the license. diff --git a/tools/legal-review/engine/com.beachape.enumeratum-circe_2.13-1.6.1/copyright-keep-context b/tools/legal-review/engine/com.beachape.enumeratum-circe_2.13-1.6.1/copyright-keep-context new file mode 100644 index 0000000000..ce09a4db5f --- /dev/null +++ b/tools/legal-review/engine/com.beachape.enumeratum-circe_2.13-1.6.1/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2016 diff --git a/tools/legal-review/engine/com.beachape.enumeratum-circe_2.13-1.6.1/custom-license b/tools/legal-review/engine/com.beachape.enumeratum-circe_2.13-1.6.1/custom-license new file mode 100644 index 0000000000..663c2fd090 --- /dev/null +++ b/tools/legal-review/engine/com.beachape.enumeratum-circe_2.13-1.6.1/custom-license @@ -0,0 +1 @@ +NOTICES diff --git a/tools/legal-review/engine/com.beachape.enumeratum-macros_2.13-1.6.1/custom-license b/tools/legal-review/engine/com.beachape.enumeratum-macros_2.13-1.6.1/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/engine/com.beachape.enumeratum-macros_2.13-1.6.1/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/engine/com.beachape.enumeratum-macros_2.13-1.6.1/files-keep b/tools/legal-review/engine/com.beachape.enumeratum-macros_2.13-1.6.1/files-keep new file mode 100644 index 0000000000..b1c76f4377 --- /dev/null +++ b/tools/legal-review/engine/com.beachape.enumeratum-macros_2.13-1.6.1/files-keep @@ -0,0 +1 @@ +/lloydmeta/enumeratum/blob/master/LICENSE diff --git a/tools/legal-review/engine/com.beachape.enumeratum_2.13-1.6.1/copyright-add b/tools/legal-review/engine/com.beachape.enumeratum_2.13-1.6.1/copyright-add new file mode 100644 index 0000000000..1c8ab69d21 --- /dev/null +++ b/tools/legal-review/engine/com.beachape.enumeratum_2.13-1.6.1/copyright-add @@ -0,0 +1 @@ +See com.beachape.enumeratum-macros_2.13-1.6.1 for the license. diff --git a/tools/legal-review/engine/com.beachape.enumeratum_2.13-1.6.1/copyright-keep-context b/tools/legal-review/engine/com.beachape.enumeratum_2.13-1.6.1/copyright-keep-context new file mode 100644 index 0000000000..ce09a4db5f --- /dev/null +++ b/tools/legal-review/engine/com.beachape.enumeratum_2.13-1.6.1/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2016 diff --git a/tools/legal-review/engine/com.beachape.enumeratum_2.13-1.6.1/custom-license b/tools/legal-review/engine/com.beachape.enumeratum_2.13-1.6.1/custom-license new file mode 100644 index 0000000000..663c2fd090 --- /dev/null +++ b/tools/legal-review/engine/com.beachape.enumeratum_2.13-1.6.1/custom-license @@ -0,0 +1 @@ +NOTICES diff --git a/tools/legal-review/engine/com.chuusai.shapeless_2.13-2.3.3/copyright-ignore b/tools/legal-review/engine/com.chuusai.shapeless_2.13-2.3.3/copyright-ignore new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tools/legal-review/engine/com.chuusai.shapeless_2.13-2.3.3/copyright-keep b/tools/legal-review/engine/com.chuusai.shapeless_2.13-2.3.3/copyright-keep new file mode 100644 index 0000000000..11dc7a6cda --- /dev/null +++ b/tools/legal-review/engine/com.chuusai.shapeless_2.13-2.3.3/copyright-keep @@ -0,0 +1,23 @@ +Copyright (c) 2011-15 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-17 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) 2015-6 Alexandre Archambault +Copyright (c) 2016 Miles Sabin +Copyright (c) 2016-18 Miles Sabin +Copyright (c) 2018 Miles Sabin +Copyright (c) 2011-16 Miles Sabin +Copyright (c) 2011-14 Miles Sabin diff --git a/tools/legal-review/engine/com.chuusai.shapeless_2.13-2.3.3/copyright-keep-context b/tools/legal-review/engine/com.chuusai.shapeless_2.13-2.3.3/copyright-keep-context new file mode 100644 index 0000000000..ea4e15c968 --- /dev/null +++ b/tools/legal-review/engine/com.chuusai.shapeless_2.13-2.3.3/copyright-keep-context @@ -0,0 +1,6 @@ +Copyright (c) 2011-13 Miles Sabin +Copyright (c) 2011-16 Dale Wijnand +Copyright (c) 2012-18 Lars Hupel, Miles Sabin +Copyright (c) 2016 Frank S. Thomas +Copyright (c) 2017 Fabio Labella +Copyright (c) 2017 Georgi Krastev diff --git a/tools/legal-review/engine/com.chuusai.shapeless_2.13-2.4.0-M1/copyright-keep b/tools/legal-review/engine/com.chuusai.shapeless_2.13-2.4.0-M1/copyright-keep new file mode 100644 index 0000000000..300160df93 --- /dev/null +++ b/tools/legal-review/engine/com.chuusai.shapeless_2.13-2.4.0-M1/copyright-keep @@ -0,0 +1,21 @@ +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) 2011-20 Miles Sabin +Copyright (c) 2012-15 Miles Sabin +Copyright (c) 2012-18 Miles Sabin +Copyright (c) 2013 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/tools/legal-review/engine/com.chuusai.shapeless_2.13-2.4.0-M1/copyright-keep-context b/tools/legal-review/engine/com.chuusai.shapeless_2.13-2.4.0-M1/copyright-keep-context new file mode 100644 index 0000000000..7d5b91ea51 --- /dev/null +++ b/tools/legal-review/engine/com.chuusai.shapeless_2.13-2.4.0-M1/copyright-keep-context @@ -0,0 +1,8 @@ +Copyright (c) 2011-13 Miles Sabin +Copyright (c) 2011-16 Dale Wijnand +Copyright (c) 2012-18 Lars Hupel, Miles Sabin +Copyright (c) 2013-14 Lars Hupel, Miles Sabin +Copyright (c) 2015-9 Alexandre Archambault +Copyright (c) 2016 Frank S. Thomas +Copyright (c) 2017 Fabio Labella +Copyright (c) 2017 Georgi Krastev diff --git a/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-annotations-2.11.1/default-and-custom-license b/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-annotations-2.11.1/default-and-custom-license new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-annotations-2.11.1/files-keep b/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-annotations-2.11.1/files-keep new file mode 100644 index 0000000000..b9005a4d5a --- /dev/null +++ b/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-annotations-2.11.1/files-keep @@ -0,0 +1 @@ +META-INF/LICENSE diff --git a/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-core-2.11.1/copyright-keep-context b/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-core-2.11.1/copyright-keep-context new file mode 100644 index 0000000000..19b15f0b67 --- /dev/null +++ b/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-core-2.11.1/copyright-keep-context @@ -0,0 +1 @@ +Copyright (c) 2007- Tatu Saloranta, tatu.saloranta@iki.fi diff --git a/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-core-2.11.1/default-and-custom-license b/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-core-2.11.1/default-and-custom-license new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-core-2.11.1/files-add/CREDITS-2.x.txt b/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-core-2.11.1/files-add/CREDITS-2.x.txt new file mode 100644 index 0000000000..ed5c9ef5a1 --- /dev/null +++ b/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-core-2.11.1/files-add/CREDITS-2.x.txt @@ -0,0 +1,246 @@ +Here are people who have contributed to the development of Jackson JSON processor +core component, version 2.x +(version numbers in brackets indicate release in which the problem was fixed) + +(note: for older credits, check out release notes for 1.x versions) + +Tatu Saloranta, tatu.saloranta@iki.fi: author + +Pascal G�linas: + * Reported [JACKSON-827]: 2.0.0 was accidentally requiring JDK 1.6 + (should still be 1.5) + (2.0.1) + +Ben Gertzfield (bgertzfield@github): + * Contributed [Issue#49]: Improvements to VersionUtil to more efficiently + read dynamically generated/embedded version information, to improve + Android startup time + (2.2.0) + +Klaus Brunner (KlausBrunner@github) + * Reported [Issue#48]: Problem with URLs, spaces + +Eugene Brevdo (ebrevdo@github) + * Contributed #84: Support 'Infinity' as alternative (no leading plus) + (2.2.3) + +Marcin Zukowski (eruure@github) + * Reported #115: JsonGenerator writeRawValue problem with surrogate UTF-8 characters + (2.3.0) + +Steve van Loben Sels + * Reported #116: WriterBasedJsonGenerator produces truncated Unicode escape sequences + (2.3.0) + +Shay Banon + * Reported #145: NPE at BytesToNameCanonicalizer + (2.4.2) + +rjmac@github + * Reported #146: Error while parsing negative floats at the end of the input buffer + (2.4.2) + * Reported #148: BytesToNameCanonicalizer can mishandle leading null byte(s). + (2.5.0) + +Alex Soto: (lordofthejars@github) + * Reported #173: An exception is thrown for a valid JsonPointer expression + (2.4.5) + +Aaron Digulla: + * Contributed #166: Allow to configure line endings and indentation + (2.5.0) + +Derek Clarkson (drekka@github) + * Reported #184: WRITE_NUMBERS_AS_STRINGS disables WRITE_BIGDECIMAL_AS_PLAIN + (2.4.6 / 2.5.2) + +Masaru Hasegawa (masaruh@github): + * Reported, contributed fix for#182: Inconsistent TextBuffer#getTextBuffer behavior + (2.6.0) + +Ruediger Moeller (RuedigerMoeller@github) + * Requested #195: Add `JsonGenerator.getOutputBuffered()` to find out amount of content buffered, + not yet flushed. + (2.6.0) + +Florian Schoppmann (fschopp@github@github) + * Reported #207: `ArrayIndexOutOfBoundsException` in `ByteQuadsCanonicalizer` + (2.6.1) + +Iskren Ivov Chernev (ichernev@github) + * Reported #213: Parser is sometimes wrong when using CANONICALIZE_FIELD_NAMES + (2.6.2) + +Michael Lehenbauer (mikelehen@github) + * Reported #37: JsonParser.getTokenLocation() doesn't update after field names + (2.7.0) + +Lokesh Kumar N (LokeshN@github) + * Contributed #209: Make use of `_allowMultipleMatches` in `FilteringParserDelegate` + (2.7.4) + * Contributed fix for #117: Support for missing values (non-compliant JSON) + (2.8.0) + * Contributed implementation for #86: Allow inclusion of request body for JsonParseException + (2.8.0) + * Contributed implementation for #285: Allow inclusion of request body for JsonParseException + (2.8.0) + +Tanguy Leroux (tlrx@github) + * Reported, contributed fix for #280: FilteringGeneratorDelegate.writeUTF8String() + should delegate to writeUTF8String() + (2.7.5) + +Mike Naseef (mtnaseef@github) + * Reported #307: JsonGenerationException: Split surrogate on writeRaw() input thrown for + input of a certain size + (2.7.7) + +Allar Haav (haav@github) + * Reportef #317: ArrayIndexOutOfBoundsException: 200 on floating point number with exactly + 200-length decimal part + (2.7.8) + +Mikael Staldal (mikaelstaldal@github) + * Contributed fix for #265: `JsonStringEncoder` should allow passing `CharSequence` + (2.8.0) + +Kevin Gallardo (newkek@github) + * Reported #296: JsonParserSequence skips a token on a switched Parser + (2.8.0) + +Alessio Soldano (asoldano@github) + * Contributed #322: Trim tokens in error messages to 256 byte to prevent attacks + (2.8.6) + +Arnaud Roger (arnaudroger@github) + * Contributed #359: FilteringGeneratorDelegate does not override writeStartObject(Object forValue) + (2.8.8) + * Reported, contributed fix for #580: FilteringGeneratorDelegate writeRawValue delegate + to `writeRaw()` instead of `writeRawValue()` + (2.10.2) + + +Emily Selwood (emilyselwood@github) + * Reported #382: ArrayIndexOutOfBoundsException from UTF32Reader.read on invalid input + (2.8.9) + * Reported #578: Array index out of bounds in hex lookup + (2.10.1) + +Alex Yursha (AlexYursha@github) + * Contributed #312: Add `JsonProcessingException.clearLocation()` to allow clearing + possibly security-sensitive information + (2.9.0) + +Brad Hess (bdhess@github) + * Contributed #323: Add `JsonParser.ALLOW_TRAILING_COMMA` to work for Arrays and Objects + (2.9.0) + * Reported #325: `DataInput` backed parser should handle `EOFException` at end of doc + (2.9.0) + +Logan Widick (uhhhh2@github) + * Contributed #17: Add 'JsonGenerator.writeString(Reader r, int charLength)' + (2.9.0) + +Michael Sims (MichaelSims@github) + * Reported, contributed fix for #372: JsonParserSequence#skipChildren() throws exception + when current delegate is TokenBuffer.Parser with "incomplete" JSON + (2.9.0) + +Rafal Foltynski (rfoltyns@github) + * Contributed #374: Minimal and DefaultPrettyPrinter with configurable separators + (2.9.0) + * Contributed#208: Make use of `_matchCount` in `FilteringParserDelegate` + (2.9.0) + +Jeroen Borgers (jborgers@github) + * Reported, contributed impl for #400: Add mechanism for forcing `BufferRecycler` released + (to call on shutdown) + (2.9.6) + +Doug Roper (htmldoug@github) + * Suggested #463: Ensure that `skipChildren()` of non-blocking `JsonParser` will throw + exception if not enough input + (2.9.6) + * Reported, Contributed test for #563: Async parser does not keep track of Array context properly + (2.10.0) + +Alexander Eyers-Taylor (aeyerstaylor@github) + * Reported #510: Fix ArrayIndexOutofBoundsException found by LGTM.com + (2.9.9) + +Henrik Gustafsson (gsson@github) + * Reported #516: _inputPtr off-by-one in UTF8StreamJsonParser._parseNumber2() + (2.9.9) + +Alex Rebert (alpire@github) + * Reported #540, suggested fix: UTF8StreamJsonParser: fix byte to int conversion for + malformed escapes + (2.9.10) + * Reported #547: `CharsToNameCanonicalizer`: Internal error on `SymbolTable.rehash()` with high + number of hash collisions + (2.10.0) + * Reported #548: ByteQuadsCanonicalizer: ArrayIndexOutOfBoundsException in addName + (2.10.0) + +Sam Smith (Oracle Security Researcher) + * Reported #540 (concurrently with Alex R, before fix was included) + (2.9.10) + +Philippe Marschall (marschall@github) + * Requested #480: `SerializableString` value can not directly render to Writer + (2.10.0) + +David Nault (dnault@github) + * Reported #531: Non-blocking parser reports incorrect locations when fed with + non-zero offset + (2.10.0) + +Fabien Renaud (fabienrenaud@github) + * Reported, contributed fix for #533: UTF-8 BOM not accounted for in + `JsonLocation.getByteOffset()` + (2.10.0) + * Reported, contributed fix for #603: 'JsonParser.getCurrentLocation()` + byte/char offset update incorrectly for big payloads + (2.10.3) + +Todd O'Bryan (toddobryan@github) + * Contributed fix fox #455: Jackson reports wrong locations for JsonEOFException + (2.10.1) + +Scott Leberknight (sleberknight@github) + * Reported, contributed fix for #592: DataFormatMatcher#getMatchedFormatName throws NPE + when no match exists + (2.10.3) + +Valery (valery1707@github) + * Contributed #565: Synchronize variants of `JsonGenerator#writeNumberField` + with `JsonGenerator#writeNumber` + (2.11.0) + +Volkan Yazıcı (vy@github) + * Contributed #587: Add JsonGenerator#writeNumber(char[], int, int) method + (2.11.0) + * Reported #609: (partial fix) `FilteringGeneratorDelegate` does not handle + `writeString(Reader, int)` + (2.10.4 [partial], 2.11.0 [full fix]) + +Justin Liu (jusliu@github) + * Reported #616: Parsing JSON with `ALLOW_MISSING_VALUE` enabled results in endless stream + of `VALUE_NULL` tokens + (2.10.5) + +Michel Feinstein (feinstein@github) + * Requested #504: Add a String Array write method in the Streaming API + (2.11.0) + +Oleksandr Poslavskyi (alevskyi@github) + * Contributed implementation of #504: Add a String Array write method in the Streaming API + (2.11.0) + +James Agnew (jamesagnew@github) + * Contributed implementation of #611: Optionally allow leading decimal in float tokens + (2.11.0) + +Jendrik Johannes (jjohannes@github) + * Contributed #618: Publish Gradle Module Metadata + (2.12.0) diff --git a/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-core-2.11.1/files-keep b/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-core-2.11.1/files-keep new file mode 100644 index 0000000000..26e9c87b61 --- /dev/null +++ b/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-core-2.11.1/files-keep @@ -0,0 +1,2 @@ +META-INF/NOTICE +META-INF/LICENSE diff --git a/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-databind-2.11.1/default-and-custom-license b/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-databind-2.11.1/default-and-custom-license new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-databind-2.11.1/files-add/CREDITS-2.x.txt b/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-databind-2.11.1/files-add/CREDITS-2.x.txt new file mode 100644 index 0000000000..7ff59fa3a1 --- /dev/null +++ b/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-databind-2.11.1/files-add/CREDITS-2.x.txt @@ -0,0 +1,1227 @@ +Here are people who have contributed to the development of Jackson JSON processor +databind core component, version 2.x +(version numbers in brackets indicate release in which the problem was fixed) + +(note: for older credits, check out release notes for 1.x versions) + +Tatu Saloranta, tatu.saloranta@iki.fi: author + +Pascal GŽlinas: + * Contributed fixes to 'MappingIterator' handling (Pull#58 and Pull#59) + (2.1.0) + * Reported #220: ContainerNode missing 'createNumber(BigInteger)' + (2.2.2) + +Joern Huxhorn: (huxi@github) + * Suggested [JACKSON-636]: Add 'SerializationFeature.ORDER_MAP_ENTRIES_BY_KEYS' to allow + forced sorting of Maps during serialization + (2.0.0) + * Reported #479: NPE on trying to deserialize a `String[]` that contains null + (2.4.1) + * Reported #1411: MapSerializer._orderEntries should check for null keys + (2.7.9) + +James Roper: + * Requested [JACKSON-732]: Allow 'AnnotationIntrospector.findContentDeserializer()' + (and similar) to return instance, not just Class for instance + (2.0.0) + * Suggested [JACKSON-800]: Adding a method for letting modules register + DeserializationProblemHandlers + (2.0.0) + +Casey Lucas: + * Reported [JACKSON-798]: Problem with external type id, creators + (2.0.0) + +Tammo van Lessen: + * Reported [JACKSON-811]: Problems with @JsonIdentityInfo, abstract types + (2.0.0) + * Reported [JACKSON-814]: Parsing RFC822/RFC1123 dates failes on non-US locales + (2.0.0) + +Raymond Myers: + * Suggested [JACKSON-810]: Deserialization Feature: Allow unknown Enum values via + 'DeserializationFeature.READ_UNKNOWN_ENUM_VALUES_AS_NULL' + (2.0.0) + +Ryan Gardner: + * Contributed #5 -- Add support for maps with java.util.Locale keys + to the set of StdKeyDeserializers + (2.0.1) + +Razvan Dragut: + * Suggested [JACKSON-850]: Allow use of zero-arg factory methods as "default creator" + (2.1.0) + +Duncan Atkinson: + * Reported [JACKSON-851]: State corruption with ObjectWriter, DefaultPrettyPrinter + (2.1.0) + +Mark Wolfe: + * Suggested #45: Add `@JsonNaming()` for per-class naming strategy overrides + (2.1.0) + +Dmitry Katsubo: + * Contributed patch for #65: Add getters to `ObjectMapper`, DeserializationContext, + DeserializationFactory. + (2.1.0) + +Francis Galiegue: + * Reported #93 (and suggested fix): bug in `ObjectMapper.setAll(...)' + implementation + (2.1.1) + * Reported #433: `ObjectMapper`'s `.valueToTree()` wraps `JsonSerializable` objects + into a POJONode + (2.3.3) + * Contributed #434: Ensure that DecimalNodes with mathematically equal values are equal + (2.4.0) + +kelaneren@github: + * Reported #157, contributed unit test: NPE when registering same module twice. + (2.1.4) + +Eric Tschetter (cheddar@github): + * Reported issues #166, #167, #170 (regressions from 1.9.x to 2.x) + (2.1.4) + +Thierry D (thierryd@github) + * Reported #214: Problem with LICENSE, NOTICE, Android packaging + (2.2.2) + +Luke G-H (lukegh@github) + * Reported #223: Duplicated nulls with @JsonFormat(shape=Shape.ARRAY) + (2.2.2) + +Karl Moore (karldmoore@github) + * Reported #217: JsonProcessingExceptions not all wrapped as expected + (2.2.2) + +David Phillips: + * Requested #308: Improve serialization and deserialization speed of `java.util.UUID` + (2.3.0) + +Seth Pellegrino (jivesoft): + * Contributed #317: Fix `JsonNode` support for nulls bound to `ObjectNode`, `ArrayNode` + (2.3.0) + +Florian Schoppmann (fschopp@github) + * Reported #357: StackOverflowError with contentConverter that returns array type + (2.7.0) + * Reported #358: `IterableSerializer` ignoring annotated content serializer + (2.3.1) + * Reported #359: Converted object not using explicitly annotated serializer + (2.4.0) + +Martin Traverso: + * Reported #406: Cannot use external type id + @JsonTypeIdResolver + (2.3.2) + +Matthew Morrissette: + * Contributed #381: Allow inlining/unwrapping of value from single-component JSON array + (2.4.0) + +Will Palmeri: (wpalmeri@github) + * Contributed #407: Make array and Collection serializers use configured value null handler + (2.4.0) + +Cemalettin Koc: (cemo@github) + * Reported #353: Problems with polymorphic types, `JsonNode` (related to #88) + (2.4.0) + +Ben Fagin: (UnquietCode@github) + * Suggested #442: Make `@JsonUnwrapped` indicate property inclusion + (2.4.0) + * Contributed #81/#455: Allow use of @JsonUnwrapped with typed (@JsonTypeInfo) classes, + provided that (new) feature `SerializationFeature.FAIL_ON_UNWRAPPED_TYPE_IDENTIFIERS` + is disabled + (2.4.0) + +Chris Cleveland: + * Suggested #463: Add 'JsonNode.asText(String defaultValue)` + (2.4.0) + +Benson Margulies: + * Reported #467: Unwanted POJO's embedded in tree via serialization to tree + (2.4.0) + * Reported #601: ClassCastException for a custom serializer for enum key in `EnumMap` + (2.4.4) + * Contributed 944: Failure to use custom deserializer for key deserializer + (2.6.3) + * Reported #1120: String value omitted from weirdStringException + (2.6.6) + * Reported, fixed #1235: `java.nio.file.Path` support incomplete + (2.8.0) + * Reported #1270: Generic type returned from type id resolver seems to be ignored + (2.8.0) + +Steve Sanbeg: (sanbeg@github) + * Contributed #482: Make date parsing error behavior consistent with JDK + (2.4.1) + +Ian Barfield: (tea-dragon@github) + * Reported #580: delegate deserializers choke on a (single) abstract/polymorphic parameter + (2.4.4) + * Reported #844: Using JsonCreator still causes invalid path references in JsonMappingException + (2.5.5) + +Eugene Lukash + * Reported #592: Wrong `TokenBuffer` delegate deserialization using `@JsonCreator` + (2.4.4) + +Fernando Otero (zeitos@github) + * Contributed fix for #610: Problem with forward reference in hierarchies + (2.4.4) + +Lovro Pandžić (lpandzic@github) + * Reported #421: @JsonCreator not used in case of multiple creators with parameter names + (2.5.0) + * Requested #1498: Allow handling of single-arg constructor as property based by default + (2.12.0) + +Adam Stroud (adstro@github) + * Contributed #576: Add fluent API for adding mixins + (2.5.0) + +David Fleeman (fleebytes@github) + * Contributed #528 implementation: Add support for `JsonType.As.EXISTING_PROPERTY` + (2.5.0) + +Aurélien Leboulanger (herau@github) + * Contributed improvement for #597: Improve error messaging for cases where JSON Creator + returns null (which is illegal) + (2.5.0) + +Michael Spiegel (mspiegel@githib) + * Contributed #636: `ClassNotFoundException` for classes not (yet) needed during serialization + (2.5.0) + +Michael Ressler (mressler@github) + * Contributed #566: Add support for case-insensitive deserialization + (`MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES`) + (2.5.0) + +Konstantin Labun (kulabun@github) + * Reported #647: Deserialization fails when @JsonUnwrapped property contains an object with same property name + (2.5.0) + +Christopher Smith (chrylis@github) + * Reported #594: `@JsonValue` on enum not used when enum value is a Map key + (2.5.0) + +Alexandre Santana Campelo (alexqi200@github): + * Contributed #671: Adding `java.util.Currency` deserialization support for maps + (2.5.1) + +Zoltan Farkas (zolyfarkas@github) + * Reported #674: Spring CGLIB proxies not handled as intended + (2.5.1) + +Ludevik@github: + * Reported #682: Class-valued Map keys not serialized properly + (2.5.1) + +Antibrumm@github: + * Reported #691: Jackson 2.5.0. NullSerializer for MapProperty failing + (2.5.2) + * Reported #984: JsonStreamContexts are not build the same way for write.. and convert methods + (2.6.4) + +Shumpei Akai (flexfrank@github) + * Reported #703: Multiple calls to ObjectMapper#canSerialize(Object.class) returns different values + (2.5.2) + +Francisco A. Lozano (flozano@github) + * Contributed fix for #703 (see above) + (2.5.2) + +Dylan Scott (dylanscott@github) + * Reported #738: #738: @JsonTypeInfo non-deterministically ignored in 2.5.1 (concurrency + issue) + (2.5.2) + +Alain Gilbert (agilbert314@github) + * Reporter, contributed #766: Fix Infinite recursion (StackOverflowError) when + serializing a SOAP object + (2.5.3) + +Alexey Gavrilov (Alexey1Gavrilov@github) + * Reported, contributed fix for #761: Builder deserializer: in-compatible type exception + when return type is super type + (2.5.3) + +Dmitry Spikhalskiy (Spikhalskiy@github) + * Reported #731, suggested the way to fix it: XmlAdapter result marshaling error in + case of ValueType=Object + (2.5.3) + * Reported #1456: `TypeFactory` type resolution broken in 2.7 for generic types + when using `constructType` with context + (2.7.9 / 2.8.6) + +John Meyer (jpmeyer@github) + * Reported, contributed fix for #745: EnumDeserializer.deserializerForCreator() fails + when used to deserialize a Map key + (2.5.3) + +Andrew Duckett (andrewduckett@github) + * Reported #771: Annotation bundles ignored when added to Mixin + (2.5.4) + +Charles Allen: + * Contributed #785: Add handlings for classes which are available in + `Thread.currentThread().getContextClassLoader()` + (2.5.4) + +Andrew Goodale (newyankeecodeshop@github) + * Contributed #816: Allow date-only ISO strings to have no time zone + (2.5.4) + +Kamil Benedykciński (Kamil-Benedykcinski@github) + * Contributed #801: Using `@JsonCreator` cause generating invalid path reference + in `JsonMappingException` + (2.5.4) + +Chi Kim (chikim79@github) + * Reported #878: serializeWithType on BeanSerializer does not setCurrentValue + (2.5.5 / 2.6.1) + +Charles Allen (drcrallen@github): + * Reported #696: Copy constructor does not preserve `_injectableValues` + (2.6.0) + +Chris Pimlott (pimlottc@github): + * Suggested #348: ObjectMapper.valueToTree does not work with @JsonRawValue + (2.6.0) + +Laird Nelson (ljnelson@github) + * Suggested #688: Provide a means for an ObjectMapper to discover mixin annotation + classes on demand + (2.6.0) + * Reported #1088: NPE possibility in SimpleMixinResolver + (2.6.6) + +Derk Norton (derknorton@github) + * Suggested #689: Add `ObjectMapper.setDefaultPrettyPrinter(PrettyPrinter)` + (2.6.0) + +Michal Letynski (mletynski@github) + * Suggested #296: Serialization of transient fields with public getters (add + MapperFeature.PROPAGATE_TRANSIENT_MARKER) + (2.6.0) + +Jeff Schnitzer (stickfigure@github) + * Suggested #504: Add `DeserializationFeature.USE_LONG_FOR_INTS` + (2.6.0) + +Jerry Yang (islanderman@github) + * Contributed #820: Add new method for `ObjectReader`, to bind from JSON Pointer position + (2.6.0) + +Lars Pfannenschmidt (larsp@github) + * Contributed #826: Replaced synchronized HashMap with ConcurrentHashMap in + TypeDeserializerBase._findDeserializer + (2.6.0) + +Stephen A. Goss (thezerobit@github) + * Contributed #828: Respect DeserializationFeatures.WRAP_EXCEPTIONS in CollectionDeserializer + (2.6.0) + +Andy Wilkinson (wilkinsona@github) + * Reported #889: Configuring an ObjectMapper's DateFormat changes time zone + (2.6.1) + +lufe66@github: + * Reported 894: When using withFactory on ObjectMapper, the created Factory has a TypeParser + which still has the original Factory + (2.6.2) + +Daniel Walker (dsw2127@github) + * Reported, contributed fix for #913: `ObjectMapper.copy()` does not preserve + `MappingJsonFactory` features + (2.6.2) + +Sadayuki Furuhashi (frsyuki@github) + * Reported #941: Deserialization from "{}" to ObjectNode field causes + "out of END_OBJECT token" error + (2.6.3) + * Reported #2077: `JsonTypeInfo` with a subtype having `JsonFormat.Shape.ARRAY` + and no fields generates `{}` not `[]` + (2.10.0) + +David Haraburda (dharaburda@github) + * Contributed #918: Add `MapperFeature.ALLOW_EXPLICIT_PROPERTY_RENAMING` + (2.7.0) + +Sergio Mira (Sergio-Mira@github) + * Contributed #940: Add missing `hashCode()` implementations for `JsonNode` types that did not have them + (2.6.3) + +Andreas Pieber (anpieber@github) + * Reported #939: Regression: DateConversionError in 2.6.x + (2.6.3) + +Jesse Wilson (swankjesse@github) + * Contributed #948: Support leap seconds, any number of millisecond digits for ISO-8601 Dates. + (2.6.3) + * Contributed #949: Report the offending substring when number parsing fails + (2.6.3) + +Warren Bloomer (stormboy@github) + * Reported #942: Handle null type id for polymorphic values that use external type id + (2.6.3) + +Ievgen Pianov (pyanoveugen@github) + * Reported #989: Deserialization from "{}" to java.lang.Object causes "out of END_OBJECT token" error + (2.6.3) + +Jayson Minard (apatrida@github) + * Reported #1005: Synthetic constructors confusing Jackson data binding + (2.6.4) + * Reported #1438: `ACCEPT_CASE_INSENSITIVE_PROPERTIES` is not respected for creator properties + (2.8.5) + +David Bakin (david-bakin@github) +* Reported #1013: `@JsonUnwrapped` is not treated as assuming `@JsonProperty("")` + (2.6.4) + * Suggested #1011: Change ObjectWriter::withAttributes() to take a Map with some kind of wildcard types + (2.7.0) + * Reported #962: `@JsonInject` fails on trying to find deserializer even if inject-only + (2.11.0) + +Dmitry Romantsov (DmRomantsov@github) + * Reported #1036: Problem with case-insensitive deserialization + (2.6.4) + +Daniel Norberg (danielnorberg@github) + * Contributed #1099: Fix custom comparator container node traversal + (2.6.6) + +Miles Kaufmann (milesk-amzn@github) + * Reported #432: `StdValueInstantiator` unwraps exceptions, losing context + (2.7.0) + +Thomas Mortagne (tmortagne@github) + * Suggested #857: Add support for java.beans.Transient + (2.7.0) + +Jonas Konrad (yawkat@github) + * Suggested #905: Add support for `@ConstructorProperties` + (2.7.0) + +Jirka Kremser (Jiri-Kremser@github) + * Suggested #924: SequenceWriter.writeAll() could accept Iterable + (2.7.0) + +Daniel Mischler (danielmischler@github) + * Requested #963: Add PropertyNameStrategy `KEBAB_CASE` + (2.7.0) + +Shumpei Akai (flexfrank@github) + * Reported #978: ObjectMapper#canSerialize(Object.class) returns false even though + FAIL_ON_EMPTY_BEANS is disabled + (2.7.0) + +Hugo Wood (hgwood@github) + * Contributed #1010: Support for array delegator + (2.7.0) + +Julian Hyde (julianhyde@github) + * Reported #1083: Field in base class is not recognized, when using `@JsonType.defaultImpl` + (2.7.1) + +Thibault Kruse (tkruse@github) + * Reported #1102: Handling of deprecated `SimpleType.construct()` too minimalistic + (2.7.1) + +Aleks Seovic (aseovic@github) + * Reported #1109: @JsonFormat is ignored by the DateSerializer unless either a custom pattern + or a timezone are specified + (2.7.1) + +Timur Shakurov (saladinkzn@github) + * Reported #1134: Jackson 2.7 doesn't work with jdk6 due to use of `Collections.emptyIterator()` + (2.7.2) + +Jiri Mikulasek (pirkogdc@github) + * Reported #1124: JsonAnyGetter ignores JsonSerialize(contentUsing=...) + (2.7.2) + +Xavi Torrens (xavitorrens@github) + * Reported #1150: Problem with Object id handling, explicit `null` token + (2.7.3) + +Yoann Rodière (fenrhil@github) + * Reported #1154: @JsonFormat.pattern on dates is now ignored if shape is not + explicitely provided + (2.7.3) + +Mark Woon (markwoon@github) + * Reported #1178: `@JsonSerialize(contentAs=superType)` behavior disallowed in 2.7 + (2.7.4) + * Reported #1231: `@JsonSerialize(as=superType)` behavior disallowed in 2.7.4 + (2.7.5) + * Suggested #507: Support for default `@JsonView` for a class + (2.9.0) + +Tom Mack (tommack@github) + * Reported #1208: treeToValue doesn't handle POJONodes that contain exactly + the requested value type + (2.7.4) + +William Headrick (headw01@github) + * Reported#1223: `BasicClassIntrospector.forSerialization(...).findProperties` should + respect MapperFeature.AUTO_DETECT_GETTERS/SETTERS? + (2.7.5) + +Nick Babcock (nickbabcock) + * Reported #1225: `JsonMappingException` should override getProcessor() + (2.7.5) + * Suggested #1356: Differentiate between input and code exceptions on deserialization + (2.9.0) + +Andrew Joseph (apjoseph@github) + * Reported #1248: `Annotated` returns raw type in place of Generic Type in 2.7.x + (2.7.5) + +Erich Schubert (kno10@github) + * Reported #1260: `NullPointerException` in `JsonNodeDeserializer`, provided fix + (2.7.5) + +Brian Pontarelli (voidmain@github) + * Reported #1301: Problem with `JavaType.toString()` for recursive (self-referential) types + (2.7.6) + +Max Drobotov (fizmax@github) + * Reported, contributed fix for #1332: `ArrayIndexOutOfBoundException` for enum by index deser + (2.7.7) + +Stuart Douglas (stuartwdouglas@github) + * Reported #1363: The static field ClassUtil.sCached can cause a class loader leak + (2.7.8) + +Josh Caplan (jecaplan@github) + * Reported, suggested fix for #1368: Problem serializing `JsonMappingException` due to addition + of non-ignored `processor` property (added in 2.7) + (2.7.8) + +Diego de Estrada (diegode@github) + * Contributed fix for #1367: No Object Id found for an instance when using `@ConstructorProperties` + (2.7.9) + +Kevin Hogeland (khogeland@github) + * Reported #1501: `ArrayIndexOutOfBoundsException` on non-static inner class constructor + (2.7.9) + +xiexq (xiexq@knownsec.com) + * Reported #2389: Block one more gadget type (CVE-2019-14361) + (2.7.9.6) + +Artur Jonkisz (ajonkisz@github) + * Reported #960: `@JsonCreator` not working on a factory with no arguments for ae enum type + (2.8.0) + +Mikhail Kokho (mkokho@github) + * Contributed impl for #990: Allow failing on `null` values for creator (add + `DeserializationFeature.FAIL_ON_NULL_CREATOR_PROPERTIES`) + (2.8.0) + +Aleksandr Oksenenko (oleksandr-oksenenko@github) + * Reported #999: External property is not deserialized + (2.8.0) + +Lokesh Kumar (LokeshN@github) + * Contributed impl for #1082: Can not use static Creator factory methods for `Enum`s, + with JsonCreator.Mode.PROPERTIES + (2.8.0) + * Reported #1217: `@JsonIgnoreProperties` on Pojo fields not working for deserialization + (2.8.0) + +Ross Goldberg + * Reported #1165, provided fix for: `CoreXMLDeserializers` does not handle + time-only `XMLGregorianCalendar`s + (2.8.0) + +Maarten Billemont (lhunath@github) + * Suggested #1184: Allow overriding of `transient` with explicit inclusion with `@JsonProperty` + (2.8.0) + +Vladimir Kulev (lightoze@github) + * Reported #1028: Ignore USE_BIG_DECIMAL_FOR_FLOATS for NaN/Infinity + (2.8.0) + +Ari Fogel (arifogel@github) + * Reported #1261, contributed fix for: `@JsonIdentityInfo` deserialization fails with + combination of forward references, `@JsonCreator` + (2.8.0) + +Andriy Plokhotnyuk (plokhotnyuk@github) + * Requested #1277: Add caching of resolved generic types for `TypeFactory` + (2.8.0) + +Arek Gabiga (arekgabiga@github) + * Reported #1297: Deserialization of generic type with Map.class + (2.8.1) + +Chris Jester-Young (cky@github) + * Contributed #1335: Unconditionally call `TypeIdResolver.getDescForKnownTypeIds` + (2.8.2) + +Andrew Snare (asnare@github) + * Reported #1315: Binding numeric values can BigDecimal lose precision + (2.8.2) + +Gili Tzabari (cowwoc@github) + * Reported #1351: `@JsonInclude(NON_DEFAULT)` doesn't omit null fields + (2.8.3) + +Oleg Zhukov (OlegZhukov@github) + * Reported #1384: `@JsonDeserialize(keyUsing = ...)` does not work correctly + together with `DefaultTyping.NON_FINAL` + (2.8.4) + +Pavel Popov (tolkonepiu@github) + * Contributed fix #1389: Problem with handling of multi-argument creator with Enums + (2.8.4) + +Josh Gruenberg (joshng@github) + * Reported #1403: Reference-chain hints use incorrect class-name for inner classes + (2.8.4) + +Kevin Donnelly (kpdonn@github) + * Reported #1432: Off by 1 bug in PropertyValueBuffer + (2.8.5) + +Nathanial Ofiesh (ofiesh@github) + * Reported #1441: Failure with custom Enum key deserializer, polymorphic types + (2.8.5) + +Frédéric Camblor (fcamblor@github) + * Reported #1451: Type parameter not passed by `ObjectWriter` if serializer pre-fetch disabled + (2.8.6) + +Stephan Schroevers (Stephan202@github) + * Reported #1505: @JsonEnumDefaultValue should take precedence over FAIL_ON_NUMBERS_FOR_ENUMS + (2.8.7) + +Alex Panchenko (panchenko@github) + * Reported #1543: JsonFormat.Shape.NUMBER_INT does not work when defined on enum type in 2.8 + (2.8.8) + +Joshua Jones + * Reported #1573, contributed fix: Missing properties when deserializing using a builder class + with a non-default constructor and a mutator annotated with `@JsonUnwrapped` + (2.8.8) + +Ivo Studens (istudens@redhat.com) + * Contributed #1585: Invoke ServiceLoader.load() inside of a privileged block + when loading modules using `ObjectMapper.findModules()` + (2.8.9) + * Contributed fix for #2482: `JSONMappingException` `Location` column number + is one line Behind the actual location + (2.10.3) + +Javy Luo (AnywnYu@github) + * Reported #1595: `JsonIgnoreProperties.allowSetters` is not working in Jackson 2.8 + (2.8.9) + +Marco Catania (catanm@github.com) + * Contributed #1597: Escape JSONP breaking characters + (2.8.9) + +Andrew Joseph (apjoseph@github) + * Reported #1629 `FromStringDeserializer` ignores registered `DeserializationProblemHandler` + for `java.util.UUID` + (2.8.9) + +Joe Littlejohn (joelittlejohn@github) + * Contributed #1642: Support `READ_UNKNOWN_ENUM_VALUES_AS_NULL` with `@JsonCreator` + (2.8.9) + +Slobodan Pejic (slobo-showbie@github) + * Reported #1647, contributed fix: Missing properties from base class when recursive + types are involved + (2.8.9) + +Bertrand Renuart (brenuart@github) + * Reported #1648: `DateTimeSerializerBase` ignores configured date format when creating contextual + (2.8.9) + * Reported #1651: `StdDateFormat` fails to parse 'zulu' date when TimeZone other than UTC + (2.8.9) + * Suggested #1745: StdDateFormat: accept and truncate millis larger than 3 digits + (2.9.1) + * Contributed #1749: StdDateFormat: performance improvement of '_format(..)' method + (2.9.1) + * Contributed #1759: Reuse `Calendar` instance during parsing by `StdDateFormat` + (2.9.1) + +Kevin Gallardo (newkek@github) + * Reported #1658: Infinite recursion when deserializing a class extending a Map, + with a recursive value type + (2.8.10) + * Reported #1729: Integer bounds verification when calling `TokenBuffer.getIntValue()` + (2.9.4) + +Lukas Euler + * Reported #1735: Missing type checks when using polymorphic type ids + +Guixiong Wu (吴桂雄) + * Reported #2032: Blacklist another serialization gadget (ibatis) + (2.8.11.2) + +svarzee@github + * Reported #2109, suggested fix: Canonical string for reference type is built incorrectly + (2.8.11.3 / 2.9.7) + +Connor Kuhn (ckuhn@github) + * Contributed #1341: FAIL_ON_MISSING_EXTERNAL_TYPE_ID_PROPERTY + (2.9.0) + +Jan Lolling (jlolling@github) + * Contributed #1319: Add `ObjectNode.put(String, BigInteger)` + (2.9.0) + +Michael R Fairhurst (MichaelRFairhurst@github) + * Reported #1035: `@JsonAnySetter` assumes key of `String`, does not consider declared type. + (2.9.0) + +Fabrizio Cucci (fabriziocucci@github) + * Reported #1406: `ObjectMapper.readTree()` methods do not return `null` on end-of-input + (2.9.0) + +Emiliano Clariá (emilianogc@github) + * Contributed #1434: Explicitly pass null on invoke calls with no arguments + (2.9.0) + +Ana Eliza Barbosa (AnaEliza@github) + * Contributed #1520: Case insensitive enum deserialization feature. + (2.9.0) + +Lyor Goldstein (lgoldstein@github) + * Reported #1544: `EnumMapDeserializer` assumes a pure `EnumMap` and does not support + derived classes + (2.9.0) + +Harleen Sahni (harleensahni@github) + * Reported #403: Make FAIL_ON_NULL_FOR_PRIMITIVES apply to primitive arrays and other + types that wrap primitives + (2.9.0) + +Jared Jacobs (2is10@github) + * Requested #1605: Allow serialization of `InetAddress` as simple numeric host address + (2.9.0) + +Patrick Gunia (pgunia@github) + * Reported #1440: Wrong `JsonStreamContext` in `DeserializationProblemHandler` when reading + `TokenBuffer` content + (2.9.0) + +Carsten Wickner (CarstenWickner@github) + * Contributed #1522: Global `@JsonInclude(Include.NON_NULL)` for all properties with a specific type + (2.9.0) + +Chris Plummer (strmer15@github) + * Reported #1637: `ObjectReader.at()` with `JsonPointer` stops after first collection + (2.9.0) + +Christian Basler (Dissem@github) + * Reported #1688: Deserialization fails for `java.nio.file.Path` implementations when + default typing enabled + (2.9.0) + +Tim Bartley (tbartley@github) + * Reported, suggested fix for #1705: Non-generic interface method hides type resolution info + from generic base class + (2.9.1) + +Luís Cleto (luiscleto@github) + * Suggested 1768: Improve `TypeFactory.constructFromCanonical()` to work with + `java.lang.reflect.Type.getTypeName()` format + (2.9.2) + +Vincent Demay (vdemay@github) + * Reported #1793: `java.lang.NullPointerException` in `ObjectArraySerializer.acceptJsonFormatVisitor()` + for array value with `@JsonValue` + (2.9.2) + +Peter Jurkovic (peterjurkovic@github) + * Reported #1823: ClassNameIdResolver doesn't handle resolve Collections$SingletonMap, + Collections$SingletonSet + (2.9.3) + +alinakovalenko@github: + * Reported #1844: Map "deep" merge only adds new items, but not override existing values + (2.9.3) + +Pier-Luc Whissell (pwhissell@github): + * Reported #1673: Serialising generic value classes via Reference Types (like Optional) fails + to include type information + (2.9.4) + +Alexander Skvortcov (askvortcov@github) + * Reported #1853: Deserialise from Object (using Creator methods) returns field name + instead of value + (2.9.4) + +Joe Schafer (jschaf@github) + * Reported #1906: Add string format specifier for error message in `PropertyValueBuffer` + (2.9.4) + * Reported #1907: Remove `getClass()` from `_valueType` argument for error reporting + (2.9.4) + +Deblock Thomas (deblockt@github) + * Reported, contributed fix for #1912: `BeanDeserializerModifier.updateBuilder()` does not + work to set custom deserializer on a property (since 2.9.0) + (2.9.5) + * Reported, suggested fix for #2280: JsonMerge not work with constructor args + (2.10.0) + +lilei@venusgroup.com.cn: + * Reported #1931: Two more `c3p0` gadgets to exploit default typing issue + (2.9.5) + +Aniruddha Maru (maroux@github) + * Reported #1940: `Float` values with integer value beyond `int` lose precision if + bound to `long` + (2.9.5) + +Timur Shakurov (saladinkzn@github) + * Reported #1947: `MapperFeature.AUTO_DETECT_XXX` do not work if all disabled + (2.9.5) + +roeltje25@github + * Reported #1978: Using @JsonUnwrapped annotation in builderdeserializer hangs in + infinite loop + (2.9.5) + +Freddy Boucher (freddyboucher@github) + * Reported #1990: MixIn `@JsonProperty` for `Object.hashCode()` is ignored + (2.9.6) + +Ondrej Zizka (OndraZizk@github) + * Reported #1999: "Duplicate property" issue should mention which class it complains about + (2.9.6) + +Jakub Skierbiszewski (jskierbi@github) + * Reported, contributed fix for #2001: Deserialization issue with `@JsonIgnore` and + `@JsonCreator` + `@JsonProperty` for same property name + (2.9.6) + +Carter Kozak (cakofony@github) + * Reported #2016: Delegating JsonCreator disregards JsonDeserialize info + (2.9.6) + +Reinhard Prechtl (dnno@github) + * Reported #2034: Serialization problem with type specialization of nested generic types + (2.9.6) + +Chetan Narsude (243826@github) + * Reported #2038: JDK Serializing and using Deserialized `ObjectMapper` loses linkage + back from `JsonParser.getCodec()` + (2.9.6) + +Petar Tahchiev (ptahchiev@github) + * Reported #2060: `UnwrappingBeanPropertyWriter` incorrectly assumes the found + serializer is of type `UnwrappingBeanSerializer` + (2.9.6) + +Brandon Krieger (bkrieger@github) + * Reported #2064: Cannot set custom format for `SqlDateSerializer` globally + (2.9.7) + +Thibaut Robert (trobert@github) + * Requested #2059: Remove `final` modifier for `TypeFactory` + (2.10.0) + +Christopher Smith (chrylis@github) + * Suggested #2115: Support naive deserialization of `Serializable` values as "untyped", + same as `java.lang.Object` + (2.10.0) + +Édouard Mercier (edouardmercier@github) + * Requested #2116: Make NumberSerializers.Base public and its inherited classes not final + (2.9.6) + +Semyon Levin (remal@github) + * Contributed #2120: `NioPathDeserializer` improvement + (2.9.7) + * Contributed #2133: Improve `DeserializationProblemHandler.handleUnexpectedToken()` + to allow handling of Collection problems + (2.10.0) + +Pavel Nikitin (morj@github) + * Requested #2181: Don't re-use dynamic serializers for property-updating copy constructors + (2.9.8) + +Thomas Krieger (ThomasKrieger@github) + * Reported #1408: Call to `TypeVariable.getBounds()` without synchronization unsafe on + some platforms + (2.9.9) + +René Kschamer (flawi@github) + * Reported #2197: Illegal reflective access operation warning when using `java.lang.Void` + as value type + (2.9.8) + +Joffrey Bion (joffrey-bion@github) + * Reported #2265: Inconsistent handling of Collections$UnmodifiableList vs + Collections$UnmodifiableRandomAccessList + (2.9.9) + +Christoph Fiehe (cfiehe@github.com) + * Contributed #2299: Fix for using jackson-databind in an OSGi environment under Android + (2.9.9) + +Cyril Martin (mcoolive@github.com) + * Reported #2303: Deserialize null, when java type is "TypeRef of TypeRef of T", + does not provide "Type(Type(null))" + (2.9.9) + +Daniil Barvitsky (dbarvitsky@github) + * Reported #2324: `StringCollectionDeserializer` fails with custom collection + (2.9.9) + +Edgar Asatryan (nstdio@github) + * Reported #2374: `ObjectMapper. getRegisteredModuleIds()` throws NPE if no modules registered + (2.9.9.1) + +Michael Simons (michael-simons@github) + * Reported #2395: `NullPointerException` from `ResolvedRecursiveType` (regression due to + fix for #2331) + (2.9.9.3) + +Joe Barnett (josephlbarnett@github) + * Reported, contributed fix for #2404: FAIL_ON_MISSING_EXTERNAL_TYPE_ID_PROPERTY setting + ignored when creator properties are buffered + (2.9.10) + +Kaki King (kingkk9279@g) + * Reported #2449: Block one more gadget type (cve CVE-2019-14540) + (2.9.10) + +Jon Anderson (Jon901@github) + * Reported #2544: java.lang.NoClassDefFoundError Thrown for compact profile1 + (2.9.10.2) + +Zihui Ren (renzihui@github) + * Suggested #2129: Add `SerializationFeature.WRITE_ENUM_KEYS_USING_INDEX`, separate from value setting + (2.10.0) + +Yiqiu Huang (huangyq23@github + * Reported #2164: `FactoryBasedEnumDeserializer` does not respect + `DeserializationFeature.WRAP_EXCEPTIONS` + (2.10.0) + +Alexander Saites (saites@github) + * Reported #2189: `TreeTraversingParser` does not check int bounds + (2.10.0) + +Christoph Breitkopf (bokesan@github) + * Reported #2217: Suboptimal memory allocation in `TextNode.getBinaryValue()` + (2.10.0) + +Pavel Chervakov (pacher@github) + * Reported #2230: `WRITE_BIGDECIMAL_AS_PLAIN` is ignored if `@JsonFormat` is used + (2.10.0) + +Ben Anderson (andersonbd1@github) + * Reported, suggested fix for #2309: READ_ENUMS_USING_TO_STRING doesn't support null values + (2.10.0) + +Manuel Hegner (manuel-hegner@github) + * Suggested #2311: Unnecessary MultiView creation for property writers + (2.10.0) + +Chris Mercer (cmercer@github) + * Reported #2331: `JsonMappingException` through nested getter with generic wildcard return type + (2.10.0) + +Robert Greig (rgreig@github) + * Reported #2336: `MapDeserializer` can not merge `Map`s with polymorphic values + (2.10.0) + +Victor Noël (victornoel@github) + * Reported #2338: Suboptimal return type for `JsonNode.withArray()` + (2.10.0) + * Reported #2339: Suboptimal return type for `ObjectNode.set()` + (2.10.0) + +David Harris (toadzky@github) + * Reported #2378: `@JsonAlias` doesn't work with AutoValue + (2.10.0) + +Sam Smith (Oracle Security Researcher) + * Suggested #2398: Replace recursion in `TokenBuffer.copyCurrentStructure()` with iteration + +Vladimir Tsanev (tsachev@github) + * Contributed #2415: Builder-based POJO deserializer should pass builder instance, not type, + to `handleUnknownVanilla()` to fix earlier #822 + (2.10.0) + +Marcos Passos (marcospassos@github( + * Contributed #2432: Add support for module bundles + (2.10.0) + * Reported #2795: Cannot detect creator arguments of mixins for JDK types + (2.11.3) + +David Becker (dsbecker@github) + * Suggested #2433: Improve `NullNode.equals()` + (2.10.0) + +Hesham Massoud (heshamMassoud@github) + * Reported, contributed fix for #2442: `ArrayNode.addAll()` adds raw `null` values + which cause NPE on `deepCopy()` + (2.10.0) + +David Connelly (dconnelly@github) + * Reported #2446: Java 11: Unable to load JDK7 types (annotations, java.nio.file.Path): + no Java7 support added + (2.10.0) + +Wahey (KevynBct@github) + * Reported #2466: Didn't find class "java.nio.file.Path" below Android api 26 + (2.10.0) + +Martín Coll (colltoaction@github) + * Contributed #2467: Accept `JsonTypeInfo.As.WRAPPER_ARRAY` with no second argument to + deserialize as "null value" + (2.10.0) + +Andrey Kulikov (ankulikov@github) + * Reported #2457: Extended enum values are not handled as enums when used as Map keys + (2.10.1) + +João Guerra (joca-bt@github) + * Reported #2473: Array index missing in path of `JsonMappingException` for `Collection`, + with custom deserializer + (2.10.1) + * Reported #2567: Incorrect target type for arrays when providing nulls and nulls are disabled + (2.10.2) + * Reported #2635: JsonParser cannot getText() for input stream on MismatchedInputException + (2.11.0) + * Reported #2770: JsonParser from MismatchedInputException cannot getText() for + floating-point value + (2.11.1) + +Ryan Bohn (bohnman@github) + * Reported #2475: `StringCollectionSerializer` calls `JsonGenerator.setCurrentValue(value)`, + which messes up current value for sibling properties + (2.10.1) + +Johan Haleby (johanhaleby@github) + * Reported #2513: BigDecimalAsStringSerializer in NumberSerializer throws IllegalStateException + in 2.10 + (2.10.1) + +Richard Wise (Woodz@github) + * Reported #2519: Serializing `BigDecimal` values inside containers ignores shape override + (2.10.1) + +Mark Schäfer (mark--@github) + * Reported #2520: Sub-optimal exception message when failing to deserialize non-static inner classes + (2.10.1) + +Ruud Welling (WellingR@github) + * Contributed fix for #2102: `FAIL_ON_NULL_FOR_PRIMITIVES` failure does not indicate + field name in exception message + (2.10.2) + +Fabian Lange (CodingFabian@github) + * Reported #2556: Contention in `TypeNameIdResolver.idFromClass()` + (2.10.2) + +Stefan Wendt (stewe@github) + * Reported #2560: Check `WRAP_EXCEPTIONS` in `CollectionDeserializer.handleNonArray()` + (2.10.2) + +Greg Arakelian (arakelian@github) + * Reported #2566: `MissingNode.toString()` returns `null` (4 character token) instead + of empty string + (2.10.2) + +Kamal Aslam (aslamkam@github) + * Reported #2482: `JSONMappingException` `Location` column number is one line + Behind the actual location + (2.10.3) + +Tobias Preuss (johnjohndoe@github) + * Reported #2599: NoClassDefFoundError at DeserializationContext. on Android 4.1.2 + and Jackson 2.10.0 + (2.10.3) + +Eduard Tudenhöfner (nastra@github) + * Reported #2602, contributed fix for: ByteBufferSerializer produces unexpected results with + a duplicated ByteBuffer and a position > 0 + (2.10.3) + +Alexander Shilov (ashlanderr@github) + * Reported, suggested fix for #2610: `EXTERNAL_PROPERTY` doesn't work with `@JsonIgnoreProperties` + (2.10.3) + +Endre Stølsvik (stolsvik@github) + * Reported #2679: `ObjectMapper.readValue("123", Void.TYPE)` throws "should never occur" + (2.10.4) + +Denis Kostousov (kostousov-ds@github) + * Reported #2787 (partial fix): NPE after add mixin for enum + (2.10.5) + +Máté Rédecsi (rmatesz@github) + * Reported #953: i-I case convertion problem in Turkish locale with case-insensitive deserialization + (2.11.0) + +Ville Koskela (vjkoskela@github) + * Contributed #2487: BeanDeserializerBuilder Protected Factory Method for Extension + (2.11.0) + * Reported #2486: Builder Deserialization with JsonCreator Value vs Array + (2.11.1) + * Contributed fix for #792: Deserialization Not Working Right with Generic Types and Builders + (2.12.0) + +Fitz (Joongsoo.Park) (joongsoo@github) + * Contributed #2511: Add `SerializationFeature.WRITE_SELF_REFERENCES_AS_NULL` + (2.11.0) + +Antonio Petrelli (apetrelli@github) + * Reported #2049: TreeTraversingParser and UTF8StreamJsonParser create contexts differently + (2.11.0) + +Robert Diebels (RobertDiebels@github) + * Contributed #2352: Support use of `@JsonAlias` for enum values + (2.11.0) + +Joseph Koshakow (jkosh44@github) + * Contributed fix for #2515: `ObjectMapper.registerSubtypes(NamedType...)` doesn't allow registering + the same POJO for two different type ids + (2.11.0) + +Haowei Wen (yushijinhun@github) + * Reported #2565: Java 8 `Optional` not working with `@JsonUnwrapped` on unwrappable type + (2.11.0) + +Bartosz Baranowski (baranowb@github) + * Reported #2589: `DOMDeserializer`: setExpandEntityReferences(false) may not prevent + external entity expansion in all cases + (2.11.0) + +Oleksii Khomchenko (gagoman@github) + * Reported, contributed fix for #2592: `ObjectMapper.setSerializationInclusion()` is + ignored for `JsonAnyGetter` + (2.11.0) + +Oleksandr Poslavskyi (alevskyi@github) + * Contributed fix for #1983: Polymorphic deserialization should handle case-insensitive Type Id + property name if `MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES` is enabled + (2.11.0) + +Simone D'Avico (simonedavico@github) + * Reported #2632: Failure to resolve generic type parameters on serialization + (2.11.0) + +Robin Roos (robinroos@github) + * Contributed #2636: ObjectReader readValue lacks Class argument + (2.11.0) + +Michael Cramer (BigMichi1@github) + * Reported #2725: JsonCreator on static method in Enum and Enum used as key in map + fails randomly + (2.11.1) + +Frank Schmager (fschmager@github) + * Reported #2757: "Conflicting setter definitions for property" exception for `Map` + subtype during deserialization + (2.11.1) + +Johannes Kuhn (DasBrain@github) + * Reported #2758: Fail to deserialize local Records + (2.11.1) + * Reported #2760: Jackson doesn't respect `CAN_OVERRIDE_ACCESS_MODIFIERS=false` for + deserializer properties + (2.11.1) + +Oleg Chtchoukine (oshatrk@github) + * Reported #2759: Rearranging of props when property-based generator is in use leads + to incorrect output + (2.11.1) + +Joshua Shannon (retrodaredevil@github) + * Reported, contributed fix for #2785: Polymorphic subtypes not registering on copied + ObjectMapper (2.11.1) + (2.11.2) + +Daniel Hrabovcak (TheSpiritXIII@github) + * Reported #2796: `TypeFactory.constructType()` does not take `TypeBindings` correctly + (2.11.2) + +Lari Hotari (lhotari@github) + * Reported #2821: Json serialization fails or a specific case that contains generics and + static methods with generic parameters (2.11.1 -> 2.11.2 regression) + (2.11.3) + +Nils Christian Ehmke (nils-christian@github) + * Reported #2822: Using JsonValue and JsonFormat on one field does not work as expected + (2.11.3) + +Daniel Wu (DanielYWoo@github) + * Reported #2840: `ObjectMapper.activateDefaultTypingAsProperty()` is not using + (2.11.3) + +Marc Carter (drekbour@github) + * Contributed #43 implementation: Add option to resolve type from multiple existing properties, + `@JsonTypeInfo(use=DEDUCTION)` + (2.12.0) + +Mike Gilbode (gilbode@github) + * Reported #792: Deserialization Not Working Right with Generic Types and Builders + (2.12.0) + +Baptiste Pernet (sp4ce@github) + * Contributed #1296 implementation: Add `@JsonIncludeProperties(propertyNames)` (reverse + of `@JsonIgnoreProperties`) + (2.12.0) + +Patrick Jungermann (pjungermann@github) + * Requested #1852: Allow case insensitive deserialization of String value into + `boolean`/`Boolean` (esp for Excel) + (2.12.0) + +Nate Bauernfeind (nbauernfeind@github) + * Reported #2091: `ReferenceType` does not expose valid containedType + (2.12.0) + +Xiang Zhang (zhangyangyu@github) + * Reported #2118: `JsonProperty.Access.READ_ONLY` does not work with "getter-as-setter" + Collections + (2.12.0) + +David Nelson (eatdrinksleepcode@github) + * Requested #2215: Support `BigInteger` and `BigDecimal` creators in `StdValueInstantiator` + (2.12.0) + +Tiago Martins (upsidedownsmile@github) + * Contributed #2215: Support `BigInteger` and `BigDecimal` creators in `StdValueInstantiator` + (2.12.0) + +Yona Appletree (Yona-Appletree@github) + * Reported #2283: `JsonProperty.Access.READ_ONLY` fails with collections when a + property name is specified + (2.12.0) + +Youri Bonnaffé (youribonnaffe@github) + * Contributed #2709: Support for JDK 14 record types + (2.12.0) + +David Bidorff (bidorffOL@github) + * Reported, contributed fix for #2719: `FAIL_ON_IGNORED_PROPERTIES` does not throw + on `READONLY` properties with an explicit name + (2.12.0) + +Jendrik Johannes (jjohannes@github) + * Contributed #2726: Add Gradle Module Metadata for version alignment with Gradle 6 + (2.12.0) + +Swayam Raina (swayamraina@github) + * Contributed #2761: Support multiple names in `JsonSubType.Type` + (2.12.0) + +Ilya Golovin (ilgo0413@github) + * Contributed #2873: `MapperFeature.ACCEPT_CASE_INSENSITIVE_ENUMS` should work for enum as keys + (2.12.0) diff --git a/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-databind-2.11.1/files-keep b/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-databind-2.11.1/files-keep new file mode 100644 index 0000000000..26e9c87b61 --- /dev/null +++ b/tools/legal-review/engine/com.fasterxml.jackson.core.jackson-databind-2.11.1/files-keep @@ -0,0 +1,2 @@ +META-INF/NOTICE +META-INF/LICENSE diff --git a/tools/legal-review/engine/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.11.1/files-add/CREDITS-2.x.txt b/tools/legal-review/engine/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.11.1/files-add/CREDITS-2.x.txt new file mode 100644 index 0000000000..71e1f423f6 --- /dev/null +++ b/tools/legal-review/engine/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.11.1/files-add/CREDITS-2.x.txt @@ -0,0 +1,145 @@ +Here are people who have contributed to the development of Jackson JSON processor +binary data formats module +(version numbers in brackets indicate release in which the problem was fixed) + +Tatu Saloranta (tatu.saloranta@iki.fi): author + +-------------------------------------------------------------------------------- +Credits for individual projects, since 2.8.0 +-------------------------------------------------------------------------------- + +Michael Zeng (shotbythought@github) + +* Contributed fix for #27: (protobuf) Fixed long deserialization problem for longs of ~13digit length + (2.8.2) +* Reported #58 (avro): Regression due to changed namespace of inner enum types + (2.8.8) + +Kenji Noguchi (knoguchi@github) + +* Reported #70 (protobuf), contributed fix: Can't deserialize packed repeated field + (2.8.9) + +marsqing@github + +* Reported #85: (protobuf) _decode32Bits() bug in ProtobufParser + (2.8.9) +* Reported #94: (protobuf) Should _ensureRoom in ProtobufGenerator.writeString() + (2.8.10) +* Reported #106 (protobuf), contributed fix for: calling _skipUnknownValue() twice + (2.8.11 / 2.9.1) +* Reported #116 (protobuf), contributed fix for: Should skip the positive byte + which is the last byte of an varint + (2.9.3) +* Reported #126, contributed fix for: always call checkEnd() when skip unknown field + (2.8.11 / 2.9.3) + +baharclerode@github: + +* Contributed #14 (avro): Add support for Avro annotations via `AvroAnnotationIntrospector` + (2.9.0) +* Contributed #15 (avro): Add a way to produce "file" style Avro output + (2.9.0) +* Contributed #57 (avro): Add support for @Stringable annotation + (2.9.0) +* Contributed #59 (avro): Add support for @AvroAlias annotation for Record/Enum name evolution + (2.9.0) +* Contributed #60 (avro): Add support for `@Union` and polymorphic types + (2.9.0) + +Eldad Rudich (eldadru@github) + +* Reported #68 (proto): Getting "type not supported as root type by protobuf" for serialization + of short and UUID types + (2.9.0) + +philipa@github + +* Reported #114 (cbor), contributed fix for: copyStructure(): avoid duplicate tags + when copying tagged binary + (2.9.3) + +Jacek Lach (JacekLach@github) + +* Reported #124: Invalid value returned for negative int32 where the absolute value is > 2^31 - 1 + (2.9.3) + +Leo Wang (wanglingsong@github) + +* Reported #135: Infinite sequence of `END_OBJECT` tokens returned at end of streaming read + (2.9.6) + +Michael Milkin (mmilkin@github) +* Reported, Contributed fix for #142: (ion) `IonParser.getNumberType()` returns `null` + for `IonType.FLOAT` + (2.9.7) + +Guido Medina (guidomedina@github) +* Reported #153: (smile) Unable to set a compression input/output decorator to a `SmileFactory` + (2.9.8) + +Alexander Cyon (Sajjon@github) +* Reported #159: (cbor) Some short UTF Strings encoded using non-canonical form + (2.9.9) + +Łukasz Dziedziak (lukidzi@github) +* Reported, contributed fix for #161: (avro) Deserialize from newer version to older + one throws NullPointerException + (2.9.9) + +Carter Kozak (cakofony@github) +* Reported, suggested fix for #155: Inconsistent support for FLUSH_PASSED_TO_STREAM + (2.10.0) + +Fernando Raganhan Barbosa (raganhan@github) +* Suggested #163: (ion) Update `ion-java` dependency + (2.10.0) + +Juliana Amorim (amorimjuliana@github) +* Reported #168: (avro) `JsonMappingException` for union types with multiple Record types + (2.10.0) + +Marcos Passos (marcospassos@github) +* Contributed fix for #168: (avro) `JsonMappingException` for union types with multiple Record types + (2.10.0) +* Contributed fix for #173: (avro) Improve Union type serialization performance + (2.10.0) +* Contributed fix for #211: (avro) Fix schema evolution involving maps of non-scalar + (2.10.5) +* Contributed fix for #216: (avro) Avro null deserialization + (2.11.2) +* Contributed #219: Cache record names to avoid hitting class loader + (2.11.3) + +John (iziamos@github) +* Reported, suggested fix for #178: Fix issue wit input offsets when parsing CBOR from `InputStream` + (2.10.0) + +Paul Adolph (padolph@github) +* Reported #185: Internal parsing of tagged arrays can lead to stack overflow + (2.10.1) + +Yanming Zhou (quaff@github) +* Reported #188: Unexpected `MismatchedInputException` for `byte[]` value bound to `String` + in collection/array + (2.10.1) + +Zack Slayton (zslayton@github) +* Reported, contributed fix for #189: (ion) IonObjectMapper close()s the provided IonWriter unnecessarily + (2.10.2) + +Binh Tran (ankel@github) +* Reported, contributed fix for #192: (ion) Allow `IonObjectMapper` with class name annotation introspector + to deserialize generic subtypes + (2.11.0) + +Jonas Konrad (yawkat@github) +* Reported, contributed fix for #201: `CBORGenerator.Feature.WRITE_MINIMAL_INTS` does not write + most compact form for all integers + (2.11.0) + +Michael Liedtke (mcliedtke@github) + +* Contributed fix for #212: (ion) Optimize `IonParser.getNumberType()` using + `IonReader.getIntegerSize()` + (2.12.0) diff --git a/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-paranamer-2.11.1/default-and-custom-license b/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-paranamer-2.11.1/default-and-custom-license new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-paranamer-2.11.1/files-add/CREDITS-2.x.txt b/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-paranamer-2.11.1/files-add/CREDITS-2.x.txt new file mode 100644 index 0000000000..28d6ba5581 --- /dev/null +++ b/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-paranamer-2.11.1/files-add/CREDITS-2.x.txt @@ -0,0 +1,69 @@ +Here are people who have contributed to development Jackson JSON processor +Base modules +(version numbers in brackets indicate release in which the problem was fixed) +(NOTE: incomplete -- need to collect info from sub-projects, pre-2.9) + +Tatu Saloranta, tatu.saloranta@iki.fi: author + +Vojtěch Habarta (vojtechhabarta@gitub) + +* Reported [JAXB#32]: Fix introspector chaining in `JaxbAnnotationIntrospector.hasRequiredMarker()` + (2.9.3) + +Tuomas Kiviaho (TuomasKiviaho@github) + +* Reported #42: NPE from MrBean when `get()` or `set()` is though as property + (2.9.5) + +Alexander Onnikov (aonnikov@github) + +* Reported #44: (jaxb) `@XmlElements` does not work with `@XmlAccessorType(XmlAccessType.NONE)` + (2.9.6) + +William Headrick (headw01@github) + +* Reported 54: Afterburner` SuperSonicBeanDeserializer` does not handle JSON Object + valued Object Ids (like json) + (2.9.7) + +Jeffrey Bagdis (jbagdis@github) + +* Reported, contributed fix to #49: Afterburner `MyClassLoader#loadAndResolve()` + is not idempotent when `tryToUseParent` is true + (2.9.9) + +Dan Sănduleac (dansanduleac@github) + +* Reported, contributed fix for #69: `ALLOW_COERCION_OF_SCALARS` ignored deserializing scalars + with Afterburner + (2.9.9) + +Georg Schmidt-Dumont (georgschmidtdumont@github) + +* Reported #74: MrBean module should not materialize `java.io.Serializable` + (2.9.9) + +Jeffrey Bagdis (jbagdis@github) + +* Reported, contributed fix for #49: Afterburner `MyClassLoader#loadAndResolve()` + is not idempotent when `tryToUseParent` is true + (2.9.9) + +Harrison Houghton (hrhino@github) + +* Suggested, contributed impl for #52: Interfaces may have non-abstract methods (since java8) + (2.10.0) + +Bartosz Baranowski (baranowb@github) + +* Reported #84: (jaxb) Add expand entity protection and secure processing to + DomElementJsonDeserializer + (2.10.0) + + +Robby Morgan (robbytx@github) + +* Contributed #109: (mrbean) Fix detection of inherited default method in Java 8+ interface + (2.11.3) +* Contributed #110: (mrbean) Avoid generating implementations of synthetic bridge methods + (2.11.3) diff --git a/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-paranamer-2.11.1/files-keep b/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-paranamer-2.11.1/files-keep new file mode 100644 index 0000000000..26e9c87b61 --- /dev/null +++ b/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-paranamer-2.11.1/files-keep @@ -0,0 +1,2 @@ +META-INF/NOTICE +META-INF/LICENSE diff --git a/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.11.1/copyright-add b/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.11.1/copyright-add new file mode 100644 index 0000000000..fdb813a69a --- /dev/null +++ b/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.11.1/copyright-add @@ -0,0 +1,28 @@ +------------------------ + +From file com/fasterxml/jackson/module/scala/introspect/BeanIntrospector.scala: + +/* + * Derived from source code of scalabeans: + * https://raw.github.com/scalastuff/scalabeans/62b50c4e2482cbc1f494e0ac5c6c54fadc1bbcdd/src/main/scala/org/scalastuff/scalabeans/BeanIntrospector.scala + * + * The scalabeans code is covered by the copyright statement that follows. + */ + +/* + * Copyright (c) 2011 ScalaStuff.org (joint venture of Alexander Dvorkovyy and Ruud Diterwich) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +------------------------ diff --git a/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.11.1/copyright-ignore b/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.11.1/copyright-ignore new file mode 100644 index 0000000000..b5c5695996 --- /dev/null +++ b/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.11.1/copyright-ignore @@ -0,0 +1,2 @@ +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/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.11.1/default-and-custom-license b/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.11.1/default-and-custom-license new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.11.1/files-keep b/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.11.1/files-keep new file mode 100644 index 0000000000..b9005a4d5a --- /dev/null +++ b/tools/legal-review/engine/com.fasterxml.jackson.module.jackson-module-scala_2.13-2.11.1/files-keep @@ -0,0 +1 @@ +META-INF/LICENSE diff --git a/tools/legal-review/engine/com.github.julien-truffaut.monocle-core_2.13-2.0.5/custom-license b/tools/legal-review/engine/com.github.julien-truffaut.monocle-core_2.13-2.0.5/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/engine/com.github.julien-truffaut.monocle-core_2.13-2.0.5/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/engine/com.github.julien-truffaut.monocle-core_2.13-2.0.5/files-keep b/tools/legal-review/engine/com.github.julien-truffaut.monocle-core_2.13-2.0.5/files-keep new file mode 100644 index 0000000000..fbf115ed64 --- /dev/null +++ b/tools/legal-review/engine/com.github.julien-truffaut.monocle-core_2.13-2.0.5/files-keep @@ -0,0 +1 @@ +/optics-dev/Monocle/blob/master/LICENSE diff --git a/tools/legal-review/engine/com.github.julien-truffaut.monocle-macro_2.13-2.0.5/custom-license b/tools/legal-review/engine/com.github.julien-truffaut.monocle-macro_2.13-2.0.5/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/engine/com.github.julien-truffaut.monocle-macro_2.13-2.0.5/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/engine/com.github.julien-truffaut.monocle-macro_2.13-2.0.5/files-keep b/tools/legal-review/engine/com.github.julien-truffaut.monocle-macro_2.13-2.0.5/files-keep new file mode 100644 index 0000000000..fbf115ed64 --- /dev/null +++ b/tools/legal-review/engine/com.github.julien-truffaut.monocle-macro_2.13-2.0.5/files-keep @@ -0,0 +1 @@ +/optics-dev/Monocle/blob/master/LICENSE diff --git a/tools/legal-review/engine/com.github.pureconfig.pureconfig-core_2.13-0.13.0/custom-license b/tools/legal-review/engine/com.github.pureconfig.pureconfig-core_2.13-0.13.0/custom-license new file mode 100644 index 0000000000..6d5ee1d052 --- /dev/null +++ b/tools/legal-review/engine/com.github.pureconfig.pureconfig-core_2.13-0.13.0/custom-license @@ -0,0 +1 @@ +NOTICE diff --git a/tools/legal-review/engine/com.github.pureconfig.pureconfig-core_2.13-0.13.0/files-add/NOTICE b/tools/legal-review/engine/com.github.pureconfig.pureconfig-core_2.13-0.13.0/files-add/NOTICE new file mode 100644 index 0000000000..e97c4365b0 --- /dev/null +++ b/tools/legal-review/engine/com.github.pureconfig.pureconfig-core_2.13-0.13.0/files-add/NOTICE @@ -0,0 +1 @@ +See com.github.pureconfig.pureconfig_2.13-0.13.0 for licensing information. diff --git a/tools/legal-review/engine/com.github.pureconfig.pureconfig-core_2.13-0.13.0/files-ignore b/tools/legal-review/engine/com.github.pureconfig.pureconfig-core_2.13-0.13.0/files-ignore new file mode 100644 index 0000000000..10ab619d32 --- /dev/null +++ b/tools/legal-review/engine/com.github.pureconfig.pureconfig-core_2.13-0.13.0/files-ignore @@ -0,0 +1,2 @@ +/pureconfig/pureconfig/blob/master/AUTHORS +/pureconfig/pureconfig/blob/master/LICENSE diff --git a/tools/legal-review/engine/com.github.pureconfig.pureconfig-generic-base_2.13-0.13.0/custom-license b/tools/legal-review/engine/com.github.pureconfig.pureconfig-generic-base_2.13-0.13.0/custom-license new file mode 100644 index 0000000000..6d5ee1d052 --- /dev/null +++ b/tools/legal-review/engine/com.github.pureconfig.pureconfig-generic-base_2.13-0.13.0/custom-license @@ -0,0 +1 @@ +NOTICE diff --git a/tools/legal-review/engine/com.github.pureconfig.pureconfig-generic-base_2.13-0.13.0/files-add/NOTICE b/tools/legal-review/engine/com.github.pureconfig.pureconfig-generic-base_2.13-0.13.0/files-add/NOTICE new file mode 100644 index 0000000000..e97c4365b0 --- /dev/null +++ b/tools/legal-review/engine/com.github.pureconfig.pureconfig-generic-base_2.13-0.13.0/files-add/NOTICE @@ -0,0 +1 @@ +See com.github.pureconfig.pureconfig_2.13-0.13.0 for licensing information. diff --git a/tools/legal-review/engine/com.github.pureconfig.pureconfig-generic-base_2.13-0.13.0/files-ignore b/tools/legal-review/engine/com.github.pureconfig.pureconfig-generic-base_2.13-0.13.0/files-ignore new file mode 100644 index 0000000000..10ab619d32 --- /dev/null +++ b/tools/legal-review/engine/com.github.pureconfig.pureconfig-generic-base_2.13-0.13.0/files-ignore @@ -0,0 +1,2 @@ +/pureconfig/pureconfig/blob/master/AUTHORS +/pureconfig/pureconfig/blob/master/LICENSE diff --git a/tools/legal-review/engine/com.github.pureconfig.pureconfig-generic_2.13-0.13.0/custom-license b/tools/legal-review/engine/com.github.pureconfig.pureconfig-generic_2.13-0.13.0/custom-license new file mode 100644 index 0000000000..6d5ee1d052 --- /dev/null +++ b/tools/legal-review/engine/com.github.pureconfig.pureconfig-generic_2.13-0.13.0/custom-license @@ -0,0 +1 @@ +NOTICE diff --git a/tools/legal-review/engine/com.github.pureconfig.pureconfig-generic_2.13-0.13.0/files-add/NOTICE b/tools/legal-review/engine/com.github.pureconfig.pureconfig-generic_2.13-0.13.0/files-add/NOTICE new file mode 100644 index 0000000000..e97c4365b0 --- /dev/null +++ b/tools/legal-review/engine/com.github.pureconfig.pureconfig-generic_2.13-0.13.0/files-add/NOTICE @@ -0,0 +1 @@ +See com.github.pureconfig.pureconfig_2.13-0.13.0 for licensing information. diff --git a/tools/legal-review/engine/com.github.pureconfig.pureconfig-generic_2.13-0.13.0/files-ignore b/tools/legal-review/engine/com.github.pureconfig.pureconfig-generic_2.13-0.13.0/files-ignore new file mode 100644 index 0000000000..10ab619d32 --- /dev/null +++ b/tools/legal-review/engine/com.github.pureconfig.pureconfig-generic_2.13-0.13.0/files-ignore @@ -0,0 +1,2 @@ +/pureconfig/pureconfig/blob/master/AUTHORS +/pureconfig/pureconfig/blob/master/LICENSE diff --git a/tools/legal-review/engine/com.github.pureconfig.pureconfig-macros_2.13-0.13.0/custom-license b/tools/legal-review/engine/com.github.pureconfig.pureconfig-macros_2.13-0.13.0/custom-license new file mode 100644 index 0000000000..6d5ee1d052 --- /dev/null +++ b/tools/legal-review/engine/com.github.pureconfig.pureconfig-macros_2.13-0.13.0/custom-license @@ -0,0 +1 @@ +NOTICE diff --git a/tools/legal-review/engine/com.github.pureconfig.pureconfig-macros_2.13-0.13.0/files-add/NOTICE b/tools/legal-review/engine/com.github.pureconfig.pureconfig-macros_2.13-0.13.0/files-add/NOTICE new file mode 100644 index 0000000000..e97c4365b0 --- /dev/null +++ b/tools/legal-review/engine/com.github.pureconfig.pureconfig-macros_2.13-0.13.0/files-add/NOTICE @@ -0,0 +1 @@ +See com.github.pureconfig.pureconfig_2.13-0.13.0 for licensing information. diff --git a/tools/legal-review/engine/com.github.pureconfig.pureconfig-macros_2.13-0.13.0/files-ignore b/tools/legal-review/engine/com.github.pureconfig.pureconfig-macros_2.13-0.13.0/files-ignore new file mode 100644 index 0000000000..10ab619d32 --- /dev/null +++ b/tools/legal-review/engine/com.github.pureconfig.pureconfig-macros_2.13-0.13.0/files-ignore @@ -0,0 +1,2 @@ +/pureconfig/pureconfig/blob/master/AUTHORS +/pureconfig/pureconfig/blob/master/LICENSE diff --git a/tools/legal-review/engine/com.github.pureconfig.pureconfig_2.13-0.13.0/custom-license b/tools/legal-review/engine/com.github.pureconfig.pureconfig_2.13-0.13.0/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/engine/com.github.pureconfig.pureconfig_2.13-0.13.0/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/engine/com.github.pureconfig.pureconfig_2.13-0.13.0/files-keep b/tools/legal-review/engine/com.github.pureconfig.pureconfig_2.13-0.13.0/files-keep new file mode 100644 index 0000000000..10ab619d32 --- /dev/null +++ b/tools/legal-review/engine/com.github.pureconfig.pureconfig_2.13-0.13.0/files-keep @@ -0,0 +1,2 @@ +/pureconfig/pureconfig/blob/master/AUTHORS +/pureconfig/pureconfig/blob/master/LICENSE diff --git a/tools/legal-review/engine/com.google.auto.auto-common-0.10/copyright-keep-context b/tools/legal-review/engine/com.google.auto.auto-common-0.10/copyright-keep-context new file mode 100644 index 0000000000..356c97f0c9 --- /dev/null +++ b/tools/legal-review/engine/com.google.auto.auto-common-0.10/copyright-keep-context @@ -0,0 +1,4 @@ +Copyright (C) 2013 Google, Inc. +Copyright (C) 2014 Google, Inc. +Copyright (C) 2016 Google, Inc. +Copyright (C) 2017 Google, Inc. diff --git a/tools/legal-review/engine/com.google.auto.service.auto-service-1.0-rc7/copyright-keep-context b/tools/legal-review/engine/com.google.auto.service.auto-service-1.0-rc7/copyright-keep-context new file mode 100644 index 0000000000..7f75288dab --- /dev/null +++ b/tools/legal-review/engine/com.google.auto.service.auto-service-1.0-rc7/copyright-keep-context @@ -0,0 +1,3 @@ +Copyright 2008 Google LLC +Copyright 2008 Google LLC +Copyright 2013 Google LLC diff --git a/tools/legal-review/engine/com.google.auto.service.auto-service-annotations-1.0-rc7/copyright-keep-context b/tools/legal-review/engine/com.google.auto.service.auto-service-annotations-1.0-rc7/copyright-keep-context new file mode 100644 index 0000000000..4c5cee3e64 --- /dev/null +++ b/tools/legal-review/engine/com.google.auto.service.auto-service-annotations-1.0-rc7/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2008 Google LLC diff --git a/tools/legal-review/engine/com.google.errorprone.error_prone_annotations-2.3.4/copyright-keep-context b/tools/legal-review/engine/com.google.errorprone.error_prone_annotations-2.3.4/copyright-keep-context new file mode 100644 index 0000000000..b5f10e40e1 --- /dev/null +++ b/tools/legal-review/engine/com.google.errorprone.error_prone_annotations-2.3.4/copyright-keep-context @@ -0,0 +1,4 @@ +Copyright 2014 The Error Prone Authors. +Copyright 2015 The Error Prone Authors. +Copyright 2017 The Error Prone Authors. +Copyright 2016 The Error Prone Authors. diff --git a/tools/legal-review/engine/com.google.flatbuffers.flatbuffers-java-1.12.0/copyright-add b/tools/legal-review/engine/com.google.flatbuffers.flatbuffers-java-1.12.0/copyright-add new file mode 100644 index 0000000000..c3caecee40 --- /dev/null +++ b/tools/legal-review/engine/com.google.flatbuffers.flatbuffers-java-1.12.0/copyright-add @@ -0,0 +1,35 @@ +------------------- + +From file Utf8Safe.java: + +// Protocol Buffers - Google's data interchange format +// Copyright 2008 Google Inc. All rights reserved. +// https://developers.google.com/protocol-buffers/ +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +------------------- diff --git a/tools/legal-review/engine/com.google.flatbuffers.flatbuffers-java-1.12.0/copyright-ignore b/tools/legal-review/engine/com.google.flatbuffers.flatbuffers-java-1.12.0/copyright-ignore new file mode 100644 index 0000000000..fd05728412 --- /dev/null +++ b/tools/legal-review/engine/com.google.flatbuffers.flatbuffers-java-1.12.0/copyright-ignore @@ -0,0 +1,4 @@ +Copyright 2008 Google Inc. All rights reserved. +Redistributions of source code must retain the above copyright +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +copyright notice, this list of conditions and the following disclaimer diff --git a/tools/legal-review/engine/com.google.flatbuffers.flatbuffers-java-1.12.0/copyright-keep-context b/tools/legal-review/engine/com.google.flatbuffers.flatbuffers-java-1.12.0/copyright-keep-context new file mode 100644 index 0000000000..1bbab8b44d --- /dev/null +++ b/tools/legal-review/engine/com.google.flatbuffers.flatbuffers-java-1.12.0/copyright-keep-context @@ -0,0 +1,3 @@ +Copyright 2014 Google Inc. All rights reserved. +Copyright 2017 Google Inc. All rights reserved. +Copyright 2019 Google Inc. All rights reserved. diff --git a/tools/legal-review/engine/com.google.guava.failureaccess-1.0.1/copyright-keep-context b/tools/legal-review/engine/com.google.guava.failureaccess-1.0.1/copyright-keep-context new file mode 100644 index 0000000000..78171f905f --- /dev/null +++ b/tools/legal-review/engine/com.google.guava.failureaccess-1.0.1/copyright-keep-context @@ -0,0 +1 @@ +Copyright (C) 2018 The Guava Authors diff --git a/tools/legal-review/engine/com.google.guava.guava-29.0-jre/copyright-keep b/tools/legal-review/engine/com.google.guava.guava-29.0-jre/copyright-keep new file mode 100644 index 0000000000..d3436d2e27 --- /dev/null +++ b/tools/legal-review/engine/com.google.guava.guava-29.0-jre/copyright-keep @@ -0,0 +1,16 @@ +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 diff --git a/tools/legal-review/engine/com.google.guava.guava-29.0-jre/copyright-keep-context b/tools/legal-review/engine/com.google.guava.guava-29.0-jre/copyright-keep-context new file mode 100644 index 0000000000..8b941a5991 --- /dev/null +++ b/tools/legal-review/engine/com.google.guava.guava-29.0-jre/copyright-keep-context @@ -0,0 +1,4 @@ +Copyright (C) 2005 The Guava Authors +Copyright 2019 The Guava Authors +domain. The author hereby disclaims copyright to this source code. +hereby disclaims copyright to this source code. diff --git a/tools/legal-review/engine/com.google.guava.listenablefuture-9999.0-empty-to-avoid-conflict-with-guava/copyright-add b/tools/legal-review/engine/com.google.guava.listenablefuture-9999.0-empty-to-avoid-conflict-with-guava/copyright-add new file mode 100644 index 0000000000..0c178638bb --- /dev/null +++ b/tools/legal-review/engine/com.google.guava.listenablefuture-9999.0-empty-to-avoid-conflict-with-guava/copyright-add @@ -0,0 +1 @@ +See com.google.guava.guava-29.0-jre for licensing information. diff --git a/tools/legal-review/engine/com.google.j2objc.j2objc-annotations-1.3/copyright-keep-context b/tools/legal-review/engine/com.google.j2objc.j2objc-annotations-1.3/copyright-keep-context new file mode 100644 index 0000000000..0b517a5435 --- /dev/null +++ b/tools/legal-review/engine/com.google.j2objc.j2objc-annotations-1.3/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2012 Google Inc. All Rights Reserved. diff --git a/tools/legal-review/engine/com.lihaoyi.fansi_2.13-0.2.9/custom-license b/tools/legal-review/engine/com.lihaoyi.fansi_2.13-0.2.9/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/engine/com.lihaoyi.fansi_2.13-0.2.9/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/engine/com.lihaoyi.fansi_2.13-0.2.9/files-keep b/tools/legal-review/engine/com.lihaoyi.fansi_2.13-0.2.9/files-keep new file mode 100644 index 0000000000..f423a022d7 --- /dev/null +++ b/tools/legal-review/engine/com.lihaoyi.fansi_2.13-0.2.9/files-keep @@ -0,0 +1 @@ +/lihaoyi/fansi/blob/master/LICENSE diff --git a/tools/legal-review/engine/com.lihaoyi.geny_2.13-0.6.0/custom-license b/tools/legal-review/engine/com.lihaoyi.geny_2.13-0.6.0/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/engine/com.lihaoyi.geny_2.13-0.6.0/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/engine/com.lihaoyi.geny_2.13-0.6.0/files-keep b/tools/legal-review/engine/com.lihaoyi.geny_2.13-0.6.0/files-keep new file mode 100644 index 0000000000..f09f682f86 --- /dev/null +++ b/tools/legal-review/engine/com.lihaoyi.geny_2.13-0.6.0/files-keep @@ -0,0 +1 @@ +/lihaoyi/geny/blob/master/LICENSE diff --git a/tools/legal-review/engine/com.lihaoyi.pprint_2.13-0.5.9/custom-license b/tools/legal-review/engine/com.lihaoyi.pprint_2.13-0.5.9/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/engine/com.lihaoyi.pprint_2.13-0.5.9/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/engine/com.lihaoyi.pprint_2.13-0.5.9/files-keep b/tools/legal-review/engine/com.lihaoyi.pprint_2.13-0.5.9/files-keep new file mode 100644 index 0000000000..140d3ebfeb --- /dev/null +++ b/tools/legal-review/engine/com.lihaoyi.pprint_2.13-0.5.9/files-keep @@ -0,0 +1 @@ +/lihaoyi/PPrint/blob/master/LICENSE diff --git a/tools/legal-review/engine/com.lihaoyi.scalatags_2.13-0.9.1/copyright-ignore b/tools/legal-review/engine/com.lihaoyi.scalatags_2.13-0.9.1/copyright-ignore new file mode 100644 index 0000000000..26372cffcc --- /dev/null +++ b/tools/legal-review/engine/com.lihaoyi.scalatags_2.13-0.9.1/copyright-ignore @@ -0,0 +1,2 @@ +Defines the footer for a page or section. It often contains a copyright +Represents a side comment; text like a disclaimer or copyright, which is not diff --git a/tools/legal-review/engine/com.lihaoyi.scalatags_2.13-0.9.1/custom-license b/tools/legal-review/engine/com.lihaoyi.scalatags_2.13-0.9.1/custom-license new file mode 100644 index 0000000000..35252fda76 --- /dev/null +++ b/tools/legal-review/engine/com.lihaoyi.scalatags_2.13-0.9.1/custom-license @@ -0,0 +1 @@ +LICENSE.txt diff --git a/tools/legal-review/engine/com.lihaoyi.scalatags_2.13-0.9.1/files-add/LICENSE.txt b/tools/legal-review/engine/com.lihaoyi.scalatags_2.13-0.9.1/files-add/LICENSE.txt new file mode 100644 index 0000000000..2145e7996c --- /dev/null +++ b/tools/legal-review/engine/com.lihaoyi.scalatags_2.13-0.9.1/files-add/LICENSE.txt @@ -0,0 +1,19 @@ +Copyright (c) 2018 Li Haoyi (haoyi.sg@gmail.com) + +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/tools/legal-review/engine/com.lihaoyi.sourcecode_2.13-0.2.1/custom-license b/tools/legal-review/engine/com.lihaoyi.sourcecode_2.13-0.2.1/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/engine/com.lihaoyi.sourcecode_2.13-0.2.1/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/engine/com.lihaoyi.sourcecode_2.13-0.2.1/files-keep b/tools/legal-review/engine/com.lihaoyi.sourcecode_2.13-0.2.1/files-keep new file mode 100644 index 0000000000..f88bd750be --- /dev/null +++ b/tools/legal-review/engine/com.lihaoyi.sourcecode_2.13-0.2.1/files-keep @@ -0,0 +1 @@ +/lihaoyi/sourcecode/blob/master/LICENSE diff --git a/tools/legal-review/engine/com.monovore.decline_2.13-1.2.0/copyright-add b/tools/legal-review/engine/com.monovore.decline_2.13-1.2.0/copyright-add new file mode 100644 index 0000000000..3e0ebfd58f --- /dev/null +++ b/tools/legal-review/engine/com.monovore.decline_2.13-1.2.0/copyright-add @@ -0,0 +1,3 @@ +The project repository is located at https://github.com/bkirwi/decline + +We were unable to find any copyright notices that should be attached as per the license. diff --git a/tools/legal-review/engine/com.thoughtworks.paranamer.paranamer-2.8/copyright-add b/tools/legal-review/engine/com.thoughtworks.paranamer.paranamer-2.8/copyright-add new file mode 100644 index 0000000000..ba17e72188 --- /dev/null +++ b/tools/legal-review/engine/com.thoughtworks.paranamer.paranamer-2.8/copyright-add @@ -0,0 +1,60 @@ +/*** + * + * Copyright (c) 2007 Paul Hammant + * 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 the copyright holders 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. + */ + +/*** + * + * Portions Copyright (c) 2007 Paul Hammant + * Portions copyright (c) 2000-2007 INRIA, France Telecom + * 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 the copyright holders 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. + */ diff --git a/tools/legal-review/engine/com.thoughtworks.paranamer.paranamer-2.8/copyright-ignore b/tools/legal-review/engine/com.thoughtworks.paranamer.paranamer-2.8/copyright-ignore new file mode 100644 index 0000000000..4d04b258f4 --- /dev/null +++ b/tools/legal-review/engine/com.thoughtworks.paranamer.paranamer-2.8/copyright-ignore @@ -0,0 +1,9 @@ +1. Redistributions of source code must retain the above copyright +2. Redistributions in binary form must reproduce the above copyright +3. Neither the name of the copyright holders nor the names of its +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +Copyright (c) 2007 Paul Hammant +Copyright (c) 2009 Paul Hammant +Portions Copyright (c) 2007 Paul Hammant +Portions copyright (c) 2000-2007 INRIA, France Telecom +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" diff --git a/tools/legal-review/engine/com.thoughtworks.paranamer.paranamer-2.8/copyright-keep-context b/tools/legal-review/engine/com.thoughtworks.paranamer.paranamer-2.8/copyright-keep-context new file mode 100644 index 0000000000..6814e7da60 --- /dev/null +++ b/tools/legal-review/engine/com.thoughtworks.paranamer.paranamer-2.8/copyright-keep-context @@ -0,0 +1,2 @@ +Copyright (c) 2013 Stefan Fleiter +Copyright 2013 Samuel Halliday diff --git a/tools/legal-review/engine/com.thoughtworks.paranamer.paranamer-2.8/custom-license b/tools/legal-review/engine/com.thoughtworks.paranamer.paranamer-2.8/custom-license new file mode 100644 index 0000000000..663c2fd090 --- /dev/null +++ b/tools/legal-review/engine/com.thoughtworks.paranamer.paranamer-2.8/custom-license @@ -0,0 +1 @@ +NOTICES diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-actor-typed_2.13-2.6.6/copyright-keep-context b/tools/legal-review/engine/com.typesafe.akka.akka-actor-typed_2.13-2.6.6/copyright-keep-context new file mode 100644 index 0000000000..c0854c2e7c --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-actor-typed_2.13-2.6.6/copyright-keep-context @@ -0,0 +1,7 @@ +Copyright (C) 2009-2020 Lightbend Inc. +Copyright (C) 2014-2020 Lightbend Inc. +Copyright (C) 2016-2020 Lightbend Inc. +Copyright (C) 2017-2020 Lightbend Inc. +Copyright (C) 2018-2020 Lightbend Inc. +Copyright (C) 2019-2020 Lightbend Inc. +Copyright (C) 2020 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-actor_2.13-2.6.6/copyright-keep-context b/tools/legal-review/engine/com.typesafe.akka.akka-actor_2.13-2.6.6/copyright-keep-context new file mode 100644 index 0000000000..02d139c087 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-actor_2.13-2.6.6/copyright-keep-context @@ -0,0 +1,7 @@ +Copyright (C) 2009-2020 Lightbend Inc. +Copyright (C) 2014-2020 Lightbend Inc. +Copyright (C) 2015-2020 Lightbend Inc. +Copyright (C) 2016-2020 Lightbend Inc. +Copyright (C) 2017-2020 Lightbend Inc. +Copyright (C) 2019-2020 Lightbend Inc. +Copyright (C) 2018-2020 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-add b/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-add new file mode 100644 index 0000000000..c7753ae669 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-add @@ -0,0 +1,6 @@ +/* + * Copyright (C) 2017-2020 Lightbend Inc. + * + * Copied and adapted from akka-remote + * https://github.com/akka/akka/blob/c90121485fcfc44a3cee62a0c638e1982d13d812/akka-remote/src/main/scala/akka/remote/artery/StageLogging.scala + */ diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-ignore b/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-ignore new file mode 100644 index 0000000000..94391e99ab --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-ignore @@ -0,0 +1 @@ +Copyright (C) 2017-2020 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-keep b/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-keep new file mode 100644 index 0000000000..dde167626e --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2009-2020 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-keep-context b/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-keep-context new file mode 100644 index 0000000000..0a59388fd6 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-keep-context @@ -0,0 +1,9 @@ +Copyright (C) 2008-2017 Bjoern Hoehrmann +Copyright (C) 2009-2017 Mathias Doenitz, Alexander Myltsev +Copyright (C) 2015-2020 Lightbend Inc. +Copyright (C) 2016-2020 Lightbend Inc. +Copyright (C) 2018-2020 Lightbend Inc. +Copyright (C) 2019-2020 Lightbend Inc. +Copyright (C) 2020 Lightbend Inc. +Copyright 2009-2020 Lightbend Inc. +Copyright 2015 Heiko Seeberger diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-http-spray-json_2.13-10.2.0-RC1/copyright-keep-context b/tools/legal-review/engine/com.typesafe.akka.akka-http-spray-json_2.13-10.2.0-RC1/copyright-keep-context new file mode 100644 index 0000000000..bcf17ef9e0 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-http-spray-json_2.13-10.2.0-RC1/copyright-keep-context @@ -0,0 +1,2 @@ +Copyright (C) 2009-2020 Lightbend Inc. +Copyright (C) 2017-2020 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-http_2.13-10.2.0-RC1/copyright-keep-context b/tools/legal-review/engine/com.typesafe.akka.akka-http_2.13-10.2.0-RC1/copyright-keep-context new file mode 100644 index 0000000000..64424c7fd7 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-http_2.13-10.2.0-RC1/copyright-keep-context @@ -0,0 +1,6 @@ +Copyright (C) 2009-2020 Lightbend Inc. +Copyright (C) 2009-2020 Lightbend Inc. +Copyright (C) 2015-2020 Lightbend Inc. +Copyright (C) 2017-2020 Lightbend Inc. +Copyright (C) 2018-2020 Lightbend Inc. +Copyright (C) 2020 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/copyright-add b/tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/copyright-add new file mode 100644 index 0000000000..42ff2fd055 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/copyright-add @@ -0,0 +1,41 @@ +---------------- + +akka/parboiled2/util/Base64.java is licensed under the following terms: + * + * Licence (BSD): + * ============== + * + * Copyright (c) 2004, Mikael Grev, MiG InfoCom AB. (base64 @ miginfocom . com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this list + * of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, this + * list of conditions and the following disclaimer in the documentation and/or other + * materials provided with the distribution. + * Neither the name of the MiG InfoCom AB nor the names of its contributors may be + * used to endorse or promote products derived from this software without specific + * prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY + * OF SUCH DAMAGE. + * + * @version 2.2 + * @author Mikael Grev + * Date: 2004-aug-02 + * Time: 11:31:11 + * + * Adapted in 2009 by Mathias Doenitz. + */ + +---------------- diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/copyright-ignore b/tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/copyright-ignore new file mode 100644 index 0000000000..34525a6f01 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/copyright-ignore @@ -0,0 +1 @@ +Copyright (c) 2004, Mikael Grev, MiG InfoCom AB. (base64 @ miginfocom . com) diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/copyright-keep-context b/tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/copyright-keep-context new file mode 100644 index 0000000000..84caeb77a5 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/copyright-keep-context @@ -0,0 +1,5 @@ +Copyright (c) 2013-14 Miles Sabin +Copyright (C) 2009-2017 Mathias Doenitz, Alexander Myltsev +Copyright (C) 2009-2020 Lightbend Inc. +Copyright (C) 2019-2020 Lightbend Inc. +Copyright (c) 2011-13 Miles Sabin diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/custom-license b/tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/files-add/COPYING.protobuf b/tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/files-add/COPYING.protobuf new file mode 100644 index 0000000000..705db579c9 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/files-add/COPYING.protobuf @@ -0,0 +1,33 @@ +Copyright 2008, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Code generated by the Protocol Buffer compiler is owned by the owner +of the input file used when generating it. This code is not +standalone and requires a support library to be linked with it. This +support library is itself covered by the above license. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/files-add/LICENSE b/tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/files-add/LICENSE new file mode 100644 index 0000000000..c7d5a563cc --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/files-add/LICENSE @@ -0,0 +1,212 @@ + 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. + +--------------- + +Licenses for dependency projects can be found here: +[http://akka.io/docs/akka/snapshot/project/licenses.html] + +--------------- + +akka-protobuf contains the sources of Google protobuf 2.5.0 runtime support, +moved into the source package `akka.protobuf` so as to avoid version conflicts. +For license information see COPYING.protobuf diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-slf4j_2.13-2.6.6/copyright-keep-context b/tools/legal-review/engine/com.typesafe.akka.akka-slf4j_2.13-2.6.6/copyright-keep-context new file mode 100644 index 0000000000..dde167626e --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-slf4j_2.13-2.6.6/copyright-keep-context @@ -0,0 +1 @@ +Copyright (C) 2009-2020 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.akka.akka-stream_2.13-2.6.6/copyright-keep-context b/tools/legal-review/engine/com.typesafe.akka.akka-stream_2.13-2.6.6/copyright-keep-context new file mode 100644 index 0000000000..6b02e72c95 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.akka.akka-stream_2.13-2.6.6/copyright-keep-context @@ -0,0 +1,8 @@ +Copyright (C) 2018-2020 Lightbend Inc. +Copyright (C) 2015-2020 Lightbend Inc. +Copyright (C) 2017-2020 Lightbend Inc. +Copyright (C) 2020 Lightbend Inc. +Copyright (C) 2009-2020 Lightbend Inc. +Copyright (C) 2014-2020 Lightbend Inc. +Copyright (C) 2016-2020 Lightbend Inc. +Copyright (C) 2019-2020 Lightbend Inc. diff --git a/tools/legal-review/engine/com.typesafe.config-1.3.2/copyright-keep-context b/tools/legal-review/engine/com.typesafe.config-1.3.2/copyright-keep-context new file mode 100644 index 0000000000..77674fa313 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.config-1.3.2/copyright-keep-context @@ -0,0 +1,3 @@ +Copyright (C) 2011-2012 Typesafe Inc. +Copyright (C) 2014 Typesafe Inc. +Copyright (C) 2015 Typesafe Inc. diff --git a/tools/legal-review/engine/com.typesafe.config-1.4.0/copyright-keep-context b/tools/legal-review/engine/com.typesafe.config-1.4.0/copyright-keep-context new file mode 100644 index 0000000000..77674fa313 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.config-1.4.0/copyright-keep-context @@ -0,0 +1,3 @@ +Copyright (C) 2011-2012 Typesafe Inc. +Copyright (C) 2014 Typesafe Inc. +Copyright (C) 2015 Typesafe Inc. diff --git a/tools/legal-review/engine/com.typesafe.scala-logging.scala-logging_2.13-3.9.2/copyright-keep-context b/tools/legal-review/engine/com.typesafe.scala-logging.scala-logging_2.13-3.9.2/copyright-keep-context new file mode 100644 index 0000000000..965fc5c2cb --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.scala-logging.scala-logging_2.13-3.9.2/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2014 Typesafe Inc. diff --git a/tools/legal-review/engine/com.typesafe.scala-logging.scala-logging_2.13-3.9.2/files-ignore b/tools/legal-review/engine/com.typesafe.scala-logging.scala-logging_2.13-3.9.2/files-ignore new file mode 100644 index 0000000000..5d2f04c52d --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.scala-logging.scala-logging_2.13-3.9.2/files-ignore @@ -0,0 +1 @@ +LICENSE-2.0.txt diff --git a/tools/legal-review/engine/com.typesafe.slick.slick_2.13-3.3.2/custom-license b/tools/legal-review/engine/com.typesafe.slick.slick_2.13-3.3.2/custom-license new file mode 100644 index 0000000000..35252fda76 --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.slick.slick_2.13-3.3.2/custom-license @@ -0,0 +1 @@ +LICENSE.txt diff --git a/tools/legal-review/engine/com.typesafe.slick.slick_2.13-3.3.2/files-add/LICENSE.txt b/tools/legal-review/engine/com.typesafe.slick.slick_2.13-3.3.2/files-add/LICENSE.txt new file mode 100644 index 0000000000..05b7a25dbc --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.slick.slick_2.13-3.3.2/files-add/LICENSE.txt @@ -0,0 +1,25 @@ +Copyright 2011-2016 Typesafe, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +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. diff --git a/tools/legal-review/engine/com.typesafe.ssl-config-core_2.13-0.4.1/copyright-keep b/tools/legal-review/engine/com.typesafe.ssl-config-core_2.13-0.4.1/copyright-keep new file mode 100644 index 0000000000..4bd14e085b --- /dev/null +++ b/tools/legal-review/engine/com.typesafe.ssl-config-core_2.13-0.4.1/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2015 - 2019 Lightbend Inc. diff --git a/tools/legal-review/engine/commons-cli.commons-cli-1.4/copyright-add b/tools/legal-review/engine/commons-cli.commons-cli-1.4/copyright-add new file mode 100644 index 0000000000..8c563ab525 --- /dev/null +++ b/tools/legal-review/engine/commons-cli.commons-cli-1.4/copyright-add @@ -0,0 +1,16 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/tools/legal-review/engine/commons-cli.commons-cli-1.4/copyright-ignore b/tools/legal-review/engine/commons-cli.commons-cli-1.4/copyright-ignore new file mode 100644 index 0000000000..8cd8d66408 --- /dev/null +++ b/tools/legal-review/engine/commons-cli.commons-cli-1.4/copyright-ignore @@ -0,0 +1 @@ +this work for additional information regarding copyright ownership. diff --git a/tools/legal-review/engine/commons-cli.commons-cli-1.4/files-ignore b/tools/legal-review/engine/commons-cli.commons-cli-1.4/files-ignore new file mode 100644 index 0000000000..0256724c8d --- /dev/null +++ b/tools/legal-review/engine/commons-cli.commons-cli-1.4/files-ignore @@ -0,0 +1 @@ +META-INF/LICENSE.txt diff --git a/tools/legal-review/engine/commons-cli.commons-cli-1.4/files-keep b/tools/legal-review/engine/commons-cli.commons-cli-1.4/files-keep new file mode 100644 index 0000000000..f9a3ec844f --- /dev/null +++ b/tools/legal-review/engine/commons-cli.commons-cli-1.4/files-keep @@ -0,0 +1 @@ +META-INF/NOTICE.txt diff --git a/tools/legal-review/engine/commons-io.commons-io-2.7/copyright-add b/tools/legal-review/engine/commons-io.commons-io-2.7/copyright-add new file mode 100644 index 0000000000..ae6f28c4a1 --- /dev/null +++ b/tools/legal-review/engine/commons-io.commons-io-2.7/copyright-add @@ -0,0 +1,16 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/tools/legal-review/engine/commons-io.commons-io-2.7/copyright-ignore b/tools/legal-review/engine/commons-io.commons-io-2.7/copyright-ignore new file mode 100644 index 0000000000..47f54b72cf --- /dev/null +++ b/tools/legal-review/engine/commons-io.commons-io-2.7/copyright-ignore @@ -0,0 +1,2 @@ +regarding copyright ownership. The ASF licenses this file +this work for additional information regarding copyright ownership. diff --git a/tools/legal-review/engine/commons-io.commons-io-2.7/custom-license b/tools/legal-review/engine/commons-io.commons-io-2.7/custom-license new file mode 100644 index 0000000000..35252fda76 --- /dev/null +++ b/tools/legal-review/engine/commons-io.commons-io-2.7/custom-license @@ -0,0 +1 @@ +LICENSE.txt diff --git a/tools/legal-review/engine/commons-io.commons-io-2.7/files-keep b/tools/legal-review/engine/commons-io.commons-io-2.7/files-keep new file mode 100644 index 0000000000..e5a53c1b17 --- /dev/null +++ b/tools/legal-review/engine/commons-io.commons-io-2.7/files-keep @@ -0,0 +1,2 @@ +META-INF/LICENSE.txt +META-INF/NOTICE.txt diff --git a/tools/legal-review/engine/dev.zio.izumi-reflect-thirdparty-boopickle-shaded_2.13-1.0.0-M5/copyright-add b/tools/legal-review/engine/dev.zio.izumi-reflect-thirdparty-boopickle-shaded_2.13-1.0.0-M5/copyright-add new file mode 100644 index 0000000000..8549dfc1fa --- /dev/null +++ b/tools/legal-review/engine/dev.zio.izumi-reflect-thirdparty-boopickle-shaded_2.13-1.0.0-M5/copyright-add @@ -0,0 +1,60 @@ +/* + * Copyright 2019-2020 Septimal Mind Ltd + * Copyright 2020 John A. De Goes and the ZIO Contributors + * + * 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-2020 John A. De Goes and the ZIO Contributors + * Copyright 2013-2020 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 2017-2020 John A. De Goes and the ZIO Contributors + +/* + * Copyright 2017-2020 John A. De Goes and the ZIO Contributors + * Copyright 2017-2018 Łukasz Biały, Paul Chiusano, Michael Pilquist, + * Oleg Pyzhcov, Fabio Labella, Alexandru Nedelcu, Pavel Chlupacek. + * + * 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. + */ + +----------------------- + +See dev.zio.izumi-reflect_2.13-1.0.0-M5 for more information. diff --git a/tools/legal-review/engine/dev.zio.izumi-reflect-thirdparty-boopickle-shaded_2.13-1.0.0-M5/copyright-ignore b/tools/legal-review/engine/dev.zio.izumi-reflect-thirdparty-boopickle-shaded_2.13-1.0.0-M5/copyright-ignore new file mode 100644 index 0000000000..08b5e30140 --- /dev/null +++ b/tools/legal-review/engine/dev.zio.izumi-reflect-thirdparty-boopickle-shaded_2.13-1.0.0-M5/copyright-ignore @@ -0,0 +1,2 @@ +Copyright 2019-2020 Septimal Mind Ltd +Copyright 2020 John A. De Goes and the ZIO Contributors diff --git a/tools/legal-review/engine/dev.zio.izumi-reflect-thirdparty-boopickle-shaded_2.13-1.0.0-M5/custom-license b/tools/legal-review/engine/dev.zio.izumi-reflect-thirdparty-boopickle-shaded_2.13-1.0.0-M5/custom-license new file mode 100644 index 0000000000..663c2fd090 --- /dev/null +++ b/tools/legal-review/engine/dev.zio.izumi-reflect-thirdparty-boopickle-shaded_2.13-1.0.0-M5/custom-license @@ -0,0 +1 @@ +NOTICES diff --git a/tools/legal-review/engine/dev.zio.izumi-reflect_2.13-1.0.0-M5/copyright-add b/tools/legal-review/engine/dev.zio.izumi-reflect_2.13-1.0.0-M5/copyright-add new file mode 100644 index 0000000000..46285274bf --- /dev/null +++ b/tools/legal-review/engine/dev.zio.izumi-reflect_2.13-1.0.0-M5/copyright-add @@ -0,0 +1 @@ +The Apache 2.0 license file can be located in the licenses directory. diff --git a/tools/legal-review/engine/dev.zio.izumi-reflect_2.13-1.0.0-M5/copyright-keep-context b/tools/legal-review/engine/dev.zio.izumi-reflect_2.13-1.0.0-M5/copyright-keep-context new file mode 100644 index 0000000000..608ce11803 --- /dev/null +++ b/tools/legal-review/engine/dev.zio.izumi-reflect_2.13-1.0.0-M5/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2019-2020 Septimal Mind Ltd diff --git a/tools/legal-review/engine/dev.zio.izumi-reflect_2.13-1.0.0-M5/custom-license b/tools/legal-review/engine/dev.zio.izumi-reflect_2.13-1.0.0-M5/custom-license new file mode 100644 index 0000000000..35252fda76 --- /dev/null +++ b/tools/legal-review/engine/dev.zio.izumi-reflect_2.13-1.0.0-M5/custom-license @@ -0,0 +1 @@ +LICENSE.txt diff --git a/tools/legal-review/engine/dev.zio.izumi-reflect_2.13-1.0.0-M5/files-add/LICENSE.txt b/tools/legal-review/engine/dev.zio.izumi-reflect_2.13-1.0.0-M5/files-add/LICENSE.txt new file mode 100644 index 0000000000..6c6309ed2b --- /dev/null +++ b/tools/legal-review/engine/dev.zio.izumi-reflect_2.13-1.0.0-M5/files-add/LICENSE.txt @@ -0,0 +1,11 @@ +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. \ No newline at end of file diff --git a/tools/legal-review/engine/dev.zio.zio-interop-cats_2.13-2.1.4.0/copyright-keep-context b/tools/legal-review/engine/dev.zio.zio-interop-cats_2.13-2.1.4.0/copyright-keep-context new file mode 100644 index 0000000000..444cdd0122 --- /dev/null +++ b/tools/legal-review/engine/dev.zio.zio-interop-cats_2.13-2.1.4.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2017-2019 John A. De Goes and the ZIO Contributors diff --git a/tools/legal-review/engine/dev.zio.zio-stacktracer_2.13-1.0.1/copyright-keep-context b/tools/legal-review/engine/dev.zio.zio-stacktracer_2.13-1.0.1/copyright-keep-context new file mode 100644 index 0000000000..b1c7c10c72 --- /dev/null +++ b/tools/legal-review/engine/dev.zio.zio-stacktracer_2.13-1.0.1/copyright-keep-context @@ -0,0 +1,2 @@ +Copyright (C) 2014-2020 Lightbend Inc. +Copyright 2017-2020 John A. De Goes and the ZIO Contributors diff --git a/tools/legal-review/engine/dev.zio.zio_2.13-1.0.1/copyright-ignore b/tools/legal-review/engine/dev.zio.zio_2.13-1.0.1/copyright-ignore new file mode 100644 index 0000000000..3843abacb2 --- /dev/null +++ b/tools/legal-review/engine/dev.zio.zio_2.13-1.0.1/copyright-ignore @@ -0,0 +1 @@ +Copyright 2017-2020 John A. De Goes and the ZIO Contributors diff --git a/tools/legal-review/engine/dev.zio.zio_2.13-1.0.1/copyright-keep b/tools/legal-review/engine/dev.zio.zio_2.13-1.0.1/copyright-keep new file mode 100644 index 0000000000..444cdd0122 --- /dev/null +++ b/tools/legal-review/engine/dev.zio.zio_2.13-1.0.1/copyright-keep @@ -0,0 +1 @@ +Copyright 2017-2019 John A. De Goes and the ZIO Contributors diff --git a/tools/legal-review/engine/dev.zio.zio_2.13-1.0.1/copyright-keep-context b/tools/legal-review/engine/dev.zio.zio_2.13-1.0.1/copyright-keep-context new file mode 100644 index 0000000000..f8a84249c8 --- /dev/null +++ b/tools/legal-review/engine/dev.zio.zio_2.13-1.0.1/copyright-keep-context @@ -0,0 +1,2 @@ +Copyright 2013-2020 Miles Sabin +Copyright 2017-2018 Łukasz Biały, Paul Chiusano, Michael Pilquist, diff --git a/tools/legal-review/engine/eu.timepit.refined_2.13-0.9.14/custom-license b/tools/legal-review/engine/eu.timepit.refined_2.13-0.9.14/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/engine/eu.timepit.refined_2.13-0.9.14/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/engine/eu.timepit.refined_2.13-0.9.14/files-keep b/tools/legal-review/engine/eu.timepit.refined_2.13-0.9.14/files-keep new file mode 100644 index 0000000000..338c678188 --- /dev/null +++ b/tools/legal-review/engine/eu.timepit.refined_2.13-0.9.14/files-keep @@ -0,0 +1 @@ +/fthomas/refined/blob/master/LICENSE diff --git a/tools/legal-review/engine/io.circe.circe-core_2.13-0.14.0-M1/default-and-custom-license b/tools/legal-review/engine/io.circe.circe-core_2.13-0.14.0-M1/default-and-custom-license new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tools/legal-review/engine/io.circe.circe-core_2.13-0.14.0-M1/files-ignore b/tools/legal-review/engine/io.circe.circe-core_2.13-0.14.0-M1/files-ignore new file mode 100644 index 0000000000..a1e9c41e49 --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-core_2.13-0.14.0-M1/files-ignore @@ -0,0 +1 @@ +/circe/circe/blob/master/LICENSE diff --git a/tools/legal-review/engine/io.circe.circe-core_2.13-0.14.0-M1/files-keep b/tools/legal-review/engine/io.circe.circe-core_2.13-0.14.0-M1/files-keep new file mode 100644 index 0000000000..30a82fa09a --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-core_2.13-0.14.0-M1/files-keep @@ -0,0 +1,3 @@ +/circe/circe/blob/master/LICENSE.argonaut +/circe/circe/blob/master/LICENSE.ephox +/circe/circe/blob/master/NOTICE diff --git a/tools/legal-review/engine/io.circe.circe-generic-extras_2.13-0.13.0/copyright-add b/tools/legal-review/engine/io.circe.circe-generic-extras_2.13-0.13.0/copyright-add new file mode 100644 index 0000000000..2b14b3d812 --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-generic-extras_2.13-0.13.0/copyright-add @@ -0,0 +1,3 @@ +The project repository is located at https://github.com/circe/circe-generic-extras + +We were unable to find any copyright notices that should be attached as per the license. diff --git a/tools/legal-review/engine/io.circe.circe-generic-extras_2.13-0.13.0/files-ignore b/tools/legal-review/engine/io.circe.circe-generic-extras_2.13-0.13.0/files-ignore new file mode 100644 index 0000000000..74dbd1defb --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-generic-extras_2.13-0.13.0/files-ignore @@ -0,0 +1 @@ +/circe/circe-generic-extras/blob/master/LICENSE diff --git a/tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.0-M1/default-and-custom-license b/tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.0-M1/default-and-custom-license new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.0-M1/files-ignore b/tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.0-M1/files-ignore new file mode 100644 index 0000000000..a1e9c41e49 --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.0-M1/files-ignore @@ -0,0 +1 @@ +/circe/circe/blob/master/LICENSE diff --git a/tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.0-M1/files-keep b/tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.0-M1/files-keep new file mode 100644 index 0000000000..30a82fa09a --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-generic_2.13-0.14.0-M1/files-keep @@ -0,0 +1,3 @@ +/circe/circe/blob/master/LICENSE.argonaut +/circe/circe/blob/master/LICENSE.ephox +/circe/circe/blob/master/NOTICE diff --git a/tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.0-M1/default-and-custom-license b/tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.0-M1/default-and-custom-license new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.0-M1/files-ignore b/tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.0-M1/files-ignore new file mode 100644 index 0000000000..a1e9c41e49 --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.0-M1/files-ignore @@ -0,0 +1 @@ +/circe/circe/blob/master/LICENSE diff --git a/tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.0-M1/files-keep b/tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.0-M1/files-keep new file mode 100644 index 0000000000..30a82fa09a --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-jawn_2.13-0.14.0-M1/files-keep @@ -0,0 +1,3 @@ +/circe/circe/blob/master/LICENSE.argonaut +/circe/circe/blob/master/LICENSE.ephox +/circe/circe/blob/master/NOTICE diff --git a/tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.0-M1/default-and-custom-license b/tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.0-M1/default-and-custom-license new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.0-M1/files-ignore b/tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.0-M1/files-ignore new file mode 100644 index 0000000000..a1e9c41e49 --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.0-M1/files-ignore @@ -0,0 +1 @@ +/circe/circe/blob/master/LICENSE diff --git a/tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.0-M1/files-keep b/tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.0-M1/files-keep new file mode 100644 index 0000000000..30a82fa09a --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-literal_2.13-0.14.0-M1/files-keep @@ -0,0 +1,3 @@ +/circe/circe/blob/master/LICENSE.argonaut +/circe/circe/blob/master/LICENSE.ephox +/circe/circe/blob/master/NOTICE diff --git a/tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.0-M1/default-and-custom-license b/tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.0-M1/default-and-custom-license new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.0-M1/files-ignore b/tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.0-M1/files-ignore new file mode 100644 index 0000000000..a1e9c41e49 --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.0-M1/files-ignore @@ -0,0 +1 @@ +/circe/circe/blob/master/LICENSE diff --git a/tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.0-M1/files-keep b/tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.0-M1/files-keep new file mode 100644 index 0000000000..30a82fa09a --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-numbers_2.13-0.14.0-M1/files-keep @@ -0,0 +1,3 @@ +/circe/circe/blob/master/LICENSE.argonaut +/circe/circe/blob/master/LICENSE.ephox +/circe/circe/blob/master/NOTICE diff --git a/tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.0-M1/default-and-custom-license b/tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.0-M1/default-and-custom-license new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.0-M1/files-ignore b/tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.0-M1/files-ignore new file mode 100644 index 0000000000..a1e9c41e49 --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.0-M1/files-ignore @@ -0,0 +1 @@ +/circe/circe/blob/master/LICENSE diff --git a/tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.0-M1/files-keep b/tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.0-M1/files-keep new file mode 100644 index 0000000000..30a82fa09a --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-parser_2.13-0.14.0-M1/files-keep @@ -0,0 +1,3 @@ +/circe/circe/blob/master/LICENSE.argonaut +/circe/circe/blob/master/LICENSE.ephox +/circe/circe/blob/master/NOTICE diff --git a/tools/legal-review/engine/io.circe.circe-yaml_2.13-0.13.1/copyright-add b/tools/legal-review/engine/io.circe.circe-yaml_2.13-0.13.1/copyright-add new file mode 100644 index 0000000000..be962804ee --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-yaml_2.13-0.13.1/copyright-add @@ -0,0 +1,3 @@ +The project repository is located at https://github.com/circe/circe-yaml + +We were unable to find any copyright notices that should be attached as per the license. diff --git a/tools/legal-review/engine/io.circe.circe-yaml_2.13-0.13.1/custom-license b/tools/legal-review/engine/io.circe.circe-yaml_2.13-0.13.1/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-yaml_2.13-0.13.1/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/engine/io.circe.circe-yaml_2.13-0.13.1/files-keep b/tools/legal-review/engine/io.circe.circe-yaml_2.13-0.13.1/files-keep new file mode 100644 index 0000000000..6fd04cbb42 --- /dev/null +++ b/tools/legal-review/engine/io.circe.circe-yaml_2.13-0.13.1/files-keep @@ -0,0 +1 @@ +/circe/circe-yaml/blob/master/LICENSE diff --git a/tools/legal-review/engine/io.estatico.newtype_2.13-0.4.4/copyright-add b/tools/legal-review/engine/io.estatico.newtype_2.13-0.4.4/copyright-add new file mode 100644 index 0000000000..ae772a8a19 --- /dev/null +++ b/tools/legal-review/engine/io.estatico.newtype_2.13-0.4.4/copyright-add @@ -0,0 +1,3 @@ +The project repository is located at https://github.com/estatico/scala-newtype + +We were unable to find any copyright notices that should be attached as per the license. diff --git a/tools/legal-review/engine/io.estatico.newtype_2.13-0.4.4/custom-license b/tools/legal-review/engine/io.estatico.newtype_2.13-0.4.4/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/engine/io.estatico.newtype_2.13-0.4.4/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/engine/io.estatico.newtype_2.13-0.4.4/files-keep b/tools/legal-review/engine/io.estatico.newtype_2.13-0.4.4/files-keep new file mode 100644 index 0000000000..6b6c2877b7 --- /dev/null +++ b/tools/legal-review/engine/io.estatico.newtype_2.13-0.4.4/files-keep @@ -0,0 +1 @@ +/estatico/scala-newtype/blob/master/LICENSE diff --git a/tools/legal-review/engine/io.methvin.directory-watcher-0.9.10/copyright-keep-context b/tools/legal-review/engine/io.methvin.directory-watcher-0.9.10/copyright-keep-context new file mode 100644 index 0000000000..78c5fad1ac --- /dev/null +++ b/tools/legal-review/engine/io.methvin.directory-watcher-0.9.10/copyright-keep-context @@ -0,0 +1 @@ +Copyright (C) 2014-2016 Markus Junginger, greenrobot (http://greenrobot.org) diff --git a/tools/legal-review/engine/io.spray.spray-json_2.13-1.3.5/copyright-add b/tools/legal-review/engine/io.spray.spray-json_2.13-1.3.5/copyright-add new file mode 100644 index 0000000000..44c0cb9b3a --- /dev/null +++ b/tools/legal-review/engine/io.spray.spray-json_2.13-1.3.5/copyright-add @@ -0,0 +1,17 @@ +/* + * Copyright (C) 2009-2011 Mathias Doenitz + * Inspired by a similar implementation by Nathan Hamblen + * (https://github.com/dispatch/classic) + * + * 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/io.spray.spray-json_2.13-1.3.5/copyright-ignore b/tools/legal-review/engine/io.spray.spray-json_2.13-1.3.5/copyright-ignore new file mode 100644 index 0000000000..053ca9c02a --- /dev/null +++ b/tools/legal-review/engine/io.spray.spray-json_2.13-1.3.5/copyright-ignore @@ -0,0 +1 @@ +Copyright (C) 2009-2011 Mathias Doenitz diff --git a/tools/legal-review/engine/io.spray.spray-json_2.13-1.3.5/copyright-keep-context b/tools/legal-review/engine/io.spray.spray-json_2.13-1.3.5/copyright-keep-context new file mode 100644 index 0000000000..417ee2c82e --- /dev/null +++ b/tools/legal-review/engine/io.spray.spray-json_2.13-1.3.5/copyright-keep-context @@ -0,0 +1,3 @@ +Copyright (C) 2011 Mathias Doenitz +Copyright (C) 2011,2012 Mathias Doenitz, Johannes Rudolph +Copyright (C) 2014 Mathias Doenitz diff --git a/tools/legal-review/engine/net.java.dev.jna.jna-5.3.1/copyright-add b/tools/legal-review/engine/net.java.dev.jna.jna-5.3.1/copyright-add new file mode 100644 index 0000000000..b4ef2d2797 --- /dev/null +++ b/tools/legal-review/engine/net.java.dev.jna.jna-5.3.1/copyright-add @@ -0,0 +1,55 @@ +------------- + +/* + * Copyright (c) 2007 Wayne Meissner, All Rights Reserved + * + * The contents of this file is dual-licensed under 2 + * alternative Open Source/Free licenses: LGPL 2.1 or later and + * Apache License 2.0. (starting with JNA version 4.0.0). + * + * You can freely decide which license you want to apply to + * the project. + * + * You may obtain a copy of the LGPL License at: + * + * http://www.gnu.org/licenses/licenses.html + * + * A copy is also included in the downloadable source code package + * containing JNA, in file "LGPL2.1". + * + * You may obtain a copy of the Apache License at: + * + * http://www.apache.org/licenses/ + * + * A copy is also included in the downloadable source code package + * containing JNA, in file "AL2.0". + */ + +/* Copyright (c) 2007 Wayne Meissner, All Rights Reserved + * Copyright (c) 2007-2013 Timothy Wall, All Rights Reserved + * + * The contents of this file is dual-licensed under 2 + * alternative Open Source/Free licenses: LGPL 2.1 or later and + * Apache License 2.0. (starting with JNA version 4.0.0). + * + * You can freely decide which license you want to apply to + * the project. + * + * You may obtain a copy of the LGPL License at: + * + * http://www.gnu.org/licenses/licenses.html + * + * A copy is also included in the downloadable source code package + * containing JNA, in file "LGPL2.1". + * + * You may obtain a copy of the Apache License at: + * + * http://www.apache.org/licenses/ + * + * A copy is also included in the downloadable source code package + * containing JNA, in file "AL2.0". + */ + +(We are choosing the Apache license for this component.) + +------------- diff --git a/tools/legal-review/engine/net.java.dev.jna.jna-5.3.1/copyright-ignore b/tools/legal-review/engine/net.java.dev.jna.jna-5.3.1/copyright-ignore new file mode 100644 index 0000000000..db7769510c --- /dev/null +++ b/tools/legal-review/engine/net.java.dev.jna.jna-5.3.1/copyright-ignore @@ -0,0 +1,2 @@ +Copyright (c) 2007 Wayne Meissner, All Rights Reserved +Copyright (c) 2007-2013 Timothy Wall, All Rights Reserved diff --git a/tools/legal-review/engine/net.java.dev.jna.jna-5.3.1/copyright-keep b/tools/legal-review/engine/net.java.dev.jna.jna-5.3.1/copyright-keep new file mode 100644 index 0000000000..77ee87450f --- /dev/null +++ b/tools/legal-review/engine/net.java.dev.jna.jna-5.3.1/copyright-keep @@ -0,0 +1,2 @@ +Copyright (c) 2007 Timothy Wall +Copyright 2007 Timothy Wall diff --git a/tools/legal-review/engine/net.java.dev.jna.jna-5.3.1/copyright-keep-context b/tools/legal-review/engine/net.java.dev.jna.jna-5.3.1/copyright-keep-context new file mode 100644 index 0000000000..ac32d77d15 --- /dev/null +++ b/tools/legal-review/engine/net.java.dev.jna.jna-5.3.1/copyright-keep-context @@ -0,0 +1,10 @@ +Copyright (c) 2007 Timothy Wall, All Rights Reserved +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 diff --git a/tools/legal-review/engine/net.java.dev.jna.jna-5.5.0/copyright-add b/tools/legal-review/engine/net.java.dev.jna.jna-5.5.0/copyright-add new file mode 100644 index 0000000000..b4ef2d2797 --- /dev/null +++ b/tools/legal-review/engine/net.java.dev.jna.jna-5.5.0/copyright-add @@ -0,0 +1,55 @@ +------------- + +/* + * Copyright (c) 2007 Wayne Meissner, All Rights Reserved + * + * The contents of this file is dual-licensed under 2 + * alternative Open Source/Free licenses: LGPL 2.1 or later and + * Apache License 2.0. (starting with JNA version 4.0.0). + * + * You can freely decide which license you want to apply to + * the project. + * + * You may obtain a copy of the LGPL License at: + * + * http://www.gnu.org/licenses/licenses.html + * + * A copy is also included in the downloadable source code package + * containing JNA, in file "LGPL2.1". + * + * You may obtain a copy of the Apache License at: + * + * http://www.apache.org/licenses/ + * + * A copy is also included in the downloadable source code package + * containing JNA, in file "AL2.0". + */ + +/* Copyright (c) 2007 Wayne Meissner, All Rights Reserved + * Copyright (c) 2007-2013 Timothy Wall, All Rights Reserved + * + * The contents of this file is dual-licensed under 2 + * alternative Open Source/Free licenses: LGPL 2.1 or later and + * Apache License 2.0. (starting with JNA version 4.0.0). + * + * You can freely decide which license you want to apply to + * the project. + * + * You may obtain a copy of the LGPL License at: + * + * http://www.gnu.org/licenses/licenses.html + * + * A copy is also included in the downloadable source code package + * containing JNA, in file "LGPL2.1". + * + * You may obtain a copy of the Apache License at: + * + * http://www.apache.org/licenses/ + * + * A copy is also included in the downloadable source code package + * containing JNA, in file "AL2.0". + */ + +(We are choosing the Apache license for this component.) + +------------- diff --git a/tools/legal-review/engine/net.java.dev.jna.jna-5.5.0/copyright-ignore b/tools/legal-review/engine/net.java.dev.jna.jna-5.5.0/copyright-ignore new file mode 100644 index 0000000000..db7769510c --- /dev/null +++ b/tools/legal-review/engine/net.java.dev.jna.jna-5.5.0/copyright-ignore @@ -0,0 +1,2 @@ +Copyright (c) 2007 Wayne Meissner, All Rights Reserved +Copyright (c) 2007-2013 Timothy Wall, All Rights Reserved diff --git a/tools/legal-review/engine/net.java.dev.jna.jna-5.5.0/copyright-keep b/tools/legal-review/engine/net.java.dev.jna.jna-5.5.0/copyright-keep new file mode 100644 index 0000000000..77ee87450f --- /dev/null +++ b/tools/legal-review/engine/net.java.dev.jna.jna-5.5.0/copyright-keep @@ -0,0 +1,2 @@ +Copyright (c) 2007 Timothy Wall +Copyright 2007 Timothy Wall diff --git a/tools/legal-review/engine/net.java.dev.jna.jna-5.5.0/copyright-keep-context b/tools/legal-review/engine/net.java.dev.jna.jna-5.5.0/copyright-keep-context new file mode 100644 index 0000000000..ac32d77d15 --- /dev/null +++ b/tools/legal-review/engine/net.java.dev.jna.jna-5.5.0/copyright-keep-context @@ -0,0 +1,10 @@ +Copyright (c) 2007 Timothy Wall, All Rights Reserved +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 diff --git a/tools/legal-review/engine/nl.gn0s1s.bump_2.13-0.1.3/custom-license b/tools/legal-review/engine/nl.gn0s1s.bump_2.13-0.1.3/custom-license new file mode 100644 index 0000000000..0e4b780ed1 --- /dev/null +++ b/tools/legal-review/engine/nl.gn0s1s.bump_2.13-0.1.3/custom-license @@ -0,0 +1 @@ +LICENSE.md diff --git a/tools/legal-review/engine/nl.gn0s1s.bump_2.13-0.1.3/files-keep b/tools/legal-review/engine/nl.gn0s1s.bump_2.13-0.1.3/files-keep new file mode 100644 index 0000000000..0dbfcd9db1 --- /dev/null +++ b/tools/legal-review/engine/nl.gn0s1s.bump_2.13-0.1.3/files-keep @@ -0,0 +1 @@ +/Philippus/bump/blob/main/LICENSE.md diff --git a/tools/legal-review/engine/org.apache.commons.commons-lang3-3.10/copyright-add b/tools/legal-review/engine/org.apache.commons.commons-lang3-3.10/copyright-add new file mode 100644 index 0000000000..ae6f28c4a1 --- /dev/null +++ b/tools/legal-review/engine/org.apache.commons.commons-lang3-3.10/copyright-add @@ -0,0 +1,16 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/tools/legal-review/engine/org.apache.commons.commons-lang3-3.10/copyright-ignore b/tools/legal-review/engine/org.apache.commons.commons-lang3-3.10/copyright-ignore new file mode 100644 index 0000000000..de687b2129 --- /dev/null +++ b/tools/legal-review/engine/org.apache.commons.commons-lang3-3.10/copyright-ignore @@ -0,0 +1,2 @@ +this work for additional information regarding copyright ownership. +{"\u00A9", "©"}, // © - copyright sign diff --git a/tools/legal-review/engine/org.apache.commons.commons-lang3-3.10/custom-license b/tools/legal-review/engine/org.apache.commons.commons-lang3-3.10/custom-license new file mode 100644 index 0000000000..35252fda76 --- /dev/null +++ b/tools/legal-review/engine/org.apache.commons.commons-lang3-3.10/custom-license @@ -0,0 +1 @@ +LICENSE.txt diff --git a/tools/legal-review/engine/org.apache.commons.commons-lang3-3.10/files-keep b/tools/legal-review/engine/org.apache.commons.commons-lang3-3.10/files-keep new file mode 100644 index 0000000000..e5a53c1b17 --- /dev/null +++ b/tools/legal-review/engine/org.apache.commons.commons-lang3-3.10/files-keep @@ -0,0 +1,2 @@ +META-INF/LICENSE.txt +META-INF/NOTICE.txt diff --git a/tools/legal-review/engine/org.apache.tika.tika-core-1.24.1/copyright-ignore b/tools/legal-review/engine/org.apache.tika.tika-core-1.24.1/copyright-ignore new file mode 100644 index 0000000000..84a0142e22 --- /dev/null +++ b/tools/legal-review/engine/org.apache.tika.tika-core-1.24.1/copyright-ignore @@ -0,0 +1,31 @@ +PREFIX_IPTC_EXT + Metadata.NAMESPACE_PREFIX_DELIMITER + "AOCopyrightNotice"); +PREFIX_PLUS + Metadata.NAMESPACE_PREFIX_DELIMITER + "CopyrightOwner"); +PREFIX_PLUS + Metadata.NAMESPACE_PREFIX_DELIMITER + "CopyrightOwnerID"), +PREFIX_PLUS + Metadata.NAMESPACE_PREFIX_DELIMITER + "CopyrightOwnerId"; +PREFIX_PLUS + Metadata.NAMESPACE_PREFIX_DELIMITER + "CopyrightOwnerName"); +Property ARTWORK_OR_OBJECT_DETAIL_COPYRIGHT_NOTICE = Property.internalTextBag( +Property COPYRIGHT = Property.externalText("xmpDM:copyright"); +Property COPYRIGHT_NOTICE = DublinCore.RIGHTS; +Property COPYRIGHT_OWNER = Property.internalTextBag( +Property COPYRIGHT_OWNER_ID = Property.composite( +Property COPYRIGHT_OWNER_NAME = Property.internalTextBag( +Serves to identify the rights holder/s for the image. The Copyright +The ID of the owner or owners of the copyright in the licensed image. +current owner of the copyright of this work with associated intellectual +The name of the owner or owners of the copyright in the licensed image. +in the CopyrightNotice. +new Property[] { Property.internalTextBag(IPTC.COPYRIGHT_OWNER_ID_WRONG_CASE) }); +public static final String COPYRIGHT_OWNER_ID_WRONG_CASE = +the copyrights of this image other rights properties may be used. +this work for additional information regarding copyright ownership. +COPYRIGHT_NOTICE, +COPYRIGHT_OWNER_ID, +COPYRIGHT_OWNER_NAME, +Contains any necessary copyright notice for claiming the intellectual +Copyright Owner, Image Supplier and Licensor may be the same or different +Copyright ownership can be expressed in a more controlled way using the +Owner or owners of the copyright in the licensed image. +(IPR), Copyright, and various Property Rights. If the Rights element +@deprecated use {@link IPTC#COPYRIGHT_OWNER_ID} */ +ARTWORK_OR_OBJECT_DETAIL_COPYRIGHT_NOTICE, +"The copyright information." diff --git a/tools/legal-review/engine/org.apache.tika.tika-core-1.24.1/copyright-keep-context b/tools/legal-review/engine/org.apache.tika.tika-core-1.24.1/copyright-keep-context new file mode 100644 index 0000000000..be86725dcf --- /dev/null +++ b/tools/legal-review/engine/org.apache.tika.tika-core-1.24.1/copyright-keep-context @@ -0,0 +1,2 @@ +standard. These parts Copyright 2010 International Press Telecommunications +Copyright 2016 Norconex Inc. diff --git a/tools/legal-review/engine/org.apache.tika.tika-core-1.24.1/custom-license b/tools/legal-review/engine/org.apache.tika.tika-core-1.24.1/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/engine/org.apache.tika.tika-core-1.24.1/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/engine/org.apache.tika.tika-core-1.24.1/files-keep b/tools/legal-review/engine/org.apache.tika.tika-core-1.24.1/files-keep new file mode 100644 index 0000000000..26e9c87b61 --- /dev/null +++ b/tools/legal-review/engine/org.apache.tika.tika-core-1.24.1/files-keep @@ -0,0 +1,2 @@ +META-INF/NOTICE +META-INF/LICENSE diff --git a/tools/legal-review/engine/org.bouncycastle.bcpkix-jdk15on-1.65/copyright-add b/tools/legal-review/engine/org.bouncycastle.bcpkix-jdk15on-1.65/copyright-add new file mode 100644 index 0000000000..24d8e17467 --- /dev/null +++ b/tools/legal-review/engine/org.bouncycastle.bcpkix-jdk15on-1.65/copyright-add @@ -0,0 +1 @@ +Copyright (c) 2000 - 2020 The Legion of the Bouncy Castle Inc. (https://www.bouncycastle.org) diff --git a/tools/legal-review/engine/org.bouncycastle.bcprov-jdk15on-1.65/copyright-ignore b/tools/legal-review/engine/org.bouncycastle.bcprov-jdk15on-1.65/copyright-ignore new file mode 100644 index 0000000000..ffea3b1053 --- /dev/null +++ b/tools/legal-review/engine/org.bouncycastle.bcprov-jdk15on-1.65/copyright-ignore @@ -0,0 +1,3 @@ +"Copyright (c) 2000-2019 The Legion of the Bouncy Castle Inc. (http://www.bouncycastle.org) " ++ "PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE" ++ "The above copyright notice and this permission notice shall be included in all copies or substantial" diff --git a/tools/legal-review/engine/org.bouncycastle.bcprov-jdk15on-1.65/copyright-keep-context b/tools/legal-review/engine/org.bouncycastle.bcprov-jdk15on-1.65/copyright-keep-context new file mode 100644 index 0000000000..414cfec486 --- /dev/null +++ b/tools/legal-review/engine/org.bouncycastle.bcprov-jdk15on-1.65/copyright-keep-context @@ -0,0 +1,3 @@ +Copyright (c) 2000-2019 The Legion Of The Bouncy Castle Inc. (http://www.bouncycastle.org) +Copyright (c) 2011 Tim Buktu (tbuktu@hotmail.com) +Copyright: Dr B. R Gladman (gladman@seven77.demon.co.uk) */ diff --git a/tools/legal-review/engine/org.checkerframework.checker-qual-2.11.1/copyright-add b/tools/legal-review/engine/org.checkerframework.checker-qual-2.11.1/copyright-add new file mode 100644 index 0000000000..a4b7bb99c5 --- /dev/null +++ b/tools/legal-review/engine/org.checkerframework.checker-qual-2.11.1/copyright-add @@ -0,0 +1,4 @@ +This program only distributes portions of the module contained in one of the checker-qual*.jar files, +so as described in the attached LICENSE.txt, only the MIT license applies. +The LGPL license is included for completeness, but it does not apply in our usecase, +as we only distribute the MIT-licensed components. diff --git a/tools/legal-review/engine/org.checkerframework.checker-qual-2.11.1/custom-license b/tools/legal-review/engine/org.checkerframework.checker-qual-2.11.1/custom-license new file mode 100644 index 0000000000..35252fda76 --- /dev/null +++ b/tools/legal-review/engine/org.checkerframework.checker-qual-2.11.1/custom-license @@ -0,0 +1 @@ +LICENSE.txt diff --git a/tools/legal-review/engine/org.checkerframework.checker-qual-2.11.1/files-add/LICENSE.txt b/tools/legal-review/engine/org.checkerframework.checker-qual-2.11.1/files-add/LICENSE.txt new file mode 100644 index 0000000000..70d6a70fe2 --- /dev/null +++ b/tools/legal-review/engine/org.checkerframework.checker-qual-2.11.1/files-add/LICENSE.txt @@ -0,0 +1,414 @@ +The Checker Framework +Copyright 2004-present by the Checker Framework developers + + +Most of the Checker Framework is licensed under the GNU General Public +License, version 2 (GPL2), with the classpath exception. The text of this +license appears below. This is the same license used for OpenJDK. + +A few parts of the Checker Framework have more permissive licenses, notably +the parts that you might want to include with your own program. + + * The annotations and utility files are licensed under the MIT License. + (The text of this license also appears below.) This applies to the + checker-qual*.jar and all the files that appear in it: every file in a + qual/ directory, plus utility files FormatUtil.java, + I18nFormatUtil.java, NullnessUtil.java, Opt.java, PurityUnqualified.java, + RegexUtil.java, SignednessUtil.java, SignednessUtilExtra.java, and + UnitsTools.java. It also applies to the cleanroom implementations of + third-party annotations (in checker/src/testannotations/ and in + framework/src/main/java/org/jmlspecs/). + +The Checker Framework includes annotations for some libraries. Those in +.astub files use the MIT License. Those in https://github.com/typetools/jdk +(which appears in the annotated-jdk directory of file checker.jar) use the +GPL2 license. + +Some external libraries that are included with the Checker Framework +distribution have different licenses. Here are some examples. + + * javaparser is dual licensed under the LGPL or the Apache license -- you + may use it under whichever one you want. (The javaparser source code + contains a file with the text of the GPL, but it is not clear why, since + javaparser does not use the GPL.) See + https://github.com/typetools/stubparser . + + * Annotation Tools (https://github.com/typetools/annotation-tools) uses + the MIT license. + + * Libraries in plume-lib (https://github.com/plume-lib/) are licensed + under the MIT License. + +=========================================================================== + +The GNU General Public License (GPL) + +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share +and change it. By contrast, the GNU General Public License is intended to +guarantee your freedom to share and change free software--to make sure the +software is free for all its users. This General Public License applies to +most of the Free Software Foundation's software and to any other program whose +authors commit to using it. (Some other Free Software Foundation software is +covered by the GNU Library General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom to +distribute copies of free software (and charge for this service if you wish), +that you receive source code or can get it if you want it, that you can change +the software or use pieces of it in new free programs; and that you know you +can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions +translate to certain responsibilities for you if you distribute copies of the +software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for +a fee, you must give the recipients all the rights that you have. You must +make sure that they, too, receive or can get the source code. And you must +show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) +offer you this license which gives you legal permission to copy, distribute +and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the +software is modified by someone else and passed on, we want its recipients to +know that what they have is not the original, so that any problems introduced +by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We +wish to avoid the danger that redistributors of a free program will +individually obtain patent licenses, in effect making the program proprietary. +To prevent this, we have made it clear that any patent must be licensed for +everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice +placed by the copyright holder saying it may be distributed under the terms of +this General Public License. The "Program", below, refers to any such program +or work, and a "work based on the Program" means either the Program or any +derivative work under copyright law: that is to say, a work containing the +Program or a portion of it, either verbatim or with modifications and/or +translated into another language. (Hereinafter, translation is included +without limitation in the term "modification".) Each licensee is addressed as +"you". + +Activities other than copying, distribution and modification are not covered by +this License; they are outside its scope. The act of running the Program is +not restricted, and the output from the Program is covered only if its contents +constitute a work based on the Program (independent of having been made by +running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as +you receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice and +disclaimer of warranty; keep intact all the notices that refer to this License +and to the absence of any warranty; and give any other recipients of the +Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may +at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus +forming a work based on the Program, and copy and distribute such modifications +or work under the terms of Section 1 above, provided that you also meet all of +these conditions: + + a) You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in whole or + in part contains or is derived from the Program or any part thereof, to be + licensed as a whole at no charge to all third parties under the terms of + this License. + + c) If the modified program normally reads commands interactively when run, + you must cause it, when started running for such interactive use in the + most ordinary way, to print or display an announcement including an + appropriate copyright notice and a notice that there is no warranty (or + else, saying that you provide a warranty) and that users may redistribute + the program under these conditions, and telling the user how to view a copy + of this License. (Exception: if the Program itself is interactive but does + not normally print such an announcement, your work based on the Program is + not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable +sections of that work are not derived from the Program, and can be reasonably +considered independent and separate works in themselves, then this License, and +its terms, do not apply to those sections when you distribute them as separate +works. But when you distribute the same sections as part of a whole which is a +work based on the Program, the distribution of the whole must be on the terms +of this License, whose permissions for other licensees extend to the entire +whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your +rights to work written entirely by you; rather, the intent is to exercise the +right to control the distribution of derivative or collective works based on +the Program. + +In addition, mere aggregation of another work not based on the Program with the +Program (or with a work based on the Program) on a volume of a storage or +distribution medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections 1 and +2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable source + code, which must be distributed under the terms of Sections 1 and 2 above + on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of Sections 1 + and 2 above on a medium customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed only + for noncommercial distribution and only if you received the program in + object code or executable form with such an offer, in accord with + Subsection b above.) + +The source code for a work means the preferred form of the work for making +modifications to it. For an executable work, complete source code means all +the source code for all modules it contains, plus any associated interface +definition files, plus the scripts used to control compilation and installation +of the executable. However, as a special exception, the source code +distributed need not include anything that is normally distributed (in either +source or binary form) with the major components (compiler, kernel, and so on) +of the operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the source +code from the same place counts as distribution of the source code, even though +third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as +expressly provided under this License. Any attempt otherwise to copy, modify, +sublicense or distribute the Program is void, and will automatically terminate +your rights under this License. However, parties who have received copies, or +rights, from you under this License will not have their licenses terminated so +long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. +However, nothing else grants you permission to modify or distribute the Program +or its derivative works. These actions are prohibited by law if you do not +accept this License. Therefore, by modifying or distributing the Program (or +any work based on the Program), you indicate your acceptance of this License to +do so, and all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), +the recipient automatically receives a license from the original licensor to +copy, distribute or modify the Program subject to these terms and conditions. +You may not impose any further restrictions on the recipients' exercise of the +rights granted herein. You are not responsible for enforcing compliance by +third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), conditions +are imposed on you (whether by court order, agreement or otherwise) that +contradict the conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as to satisfy +simultaneously your obligations under this License and any other pertinent +obligations, then as a consequence you may not distribute the Program at all. +For example, if a patent license would not permit royalty-free redistribution +of the Program by all those who receive copies directly or indirectly through +you, then the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply and +the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or +other property right claims or to contest validity of any such claims; this +section has the sole purpose of protecting the integrity of the free software +distribution system, which is implemented by public license practices. Many +people have made generous contributions to the wide range of software +distributed through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee cannot impose that +choice. + +This section is intended to make thoroughly clear what is believed to be a +consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain +countries either by patents or by copyrighted interfaces, the original +copyright holder who places the Program under this License may add an explicit +geographical distribution limitation excluding those countries, so that +distribution is permitted only in or among countries not thus excluded. In +such case, this License incorporates the limitation as if written in the body +of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the +General Public License from time to time. Such new versions will be similar in +spirit to the present version, but may differ in detail to address new problems +or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any later +version", you have the option of following the terms and conditions either of +that version or of any later version published by the Free Software Foundation. +If the Program does not specify a version number of this License, you may +choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs +whose distribution conditions are different, write to the author to ask for +permission. For software which is copyrighted by the Free Software Foundation, +write to the Free Software Foundation; we sometimes make exceptions for this. +Our decision will be guided by the two goals of preserving the free status of +all derivatives of our free software and of promoting the sharing and reuse of +software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR +THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE +STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE +PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, +YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE +PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR +INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA +BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER +OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible +use to the public, the best way to achieve this is to make it free software +which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach +them to the start of each source file to most effectively convey the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + One line to give the program's name and a brief idea of what it does. + + Copyright (C) + + 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 + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it +starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author Gnomovision comes + with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free + software, and you are welcome to redistribute it under certain conditions; + type 'show c' for details. + +The hypothetical commands 'show w' and 'show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may be +called something other than 'show w' and 'show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, +if any, to sign a "copyright disclaimer" for the program, if necessary. Here +is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + 'Gnomovision' (which makes passes at compilers) written by James Hacker. + + signature of Ty Coon, 1 April 1989 + + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General Public +License instead of this License. + + +"CLASSPATH" EXCEPTION TO THE GPL + +Certain source files distributed by Oracle America and/or its affiliates are +subject to the following clarification and special exception to the GPL, but +only where Oracle has expressly included in the particular source file's header +the words "Oracle designates this particular file as subject to the "Classpath" +exception as provided by Oracle in the LICENSE file that accompanied this code." + + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. + +=========================================================================== + +MIT License: + +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/tools/legal-review/engine/org.jline.jline-3.15.0/copyright-add b/tools/legal-review/engine/org.jline.jline-3.15.0/copyright-add new file mode 100644 index 0000000000..0e137a55c2 --- /dev/null +++ b/tools/legal-review/engine/org.jline.jline-3.15.0/copyright-add @@ -0,0 +1,8 @@ +/* + * Copyright (c) 2002-2016, the original author or authors. + * + * This software is distributable under the BSD license. See the terms of the + * BSD license in the documentation provided with this software. + * + * https://opensource.org/licenses/BSD-3-Clause + */ diff --git a/tools/legal-review/engine/org.jline.jline-3.15.0/copyright-keep b/tools/legal-review/engine/org.jline.jline-3.15.0/copyright-keep new file mode 100644 index 0000000000..c0a4f8bfe0 --- /dev/null +++ b/tools/legal-review/engine/org.jline.jline-3.15.0/copyright-keep @@ -0,0 +1,4 @@ +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-2016, the original author or authors. diff --git a/tools/legal-review/engine/org.jline.jline-3.15.0/copyright-keep-context b/tools/legal-review/engine/org.jline.jline-3.15.0/copyright-keep-context new file mode 100644 index 0000000000..595083d9af --- /dev/null +++ b/tools/legal-review/engine/org.jline.jline-3.15.0/copyright-keep-context @@ -0,0 +1,5 @@ +Copyright (C) 2009-2018 the original author(s). +Copyright (c) 2000-2005 Dieter Wimberger +Copyright (c) 2002-2017, the original author or authors. +regarding copyright ownership. The ASF licenses this file +this work for additional information regarding copyright ownership. diff --git a/tools/legal-review/engine/org.jline.jline-3.15.0/custom-license b/tools/legal-review/engine/org.jline.jline-3.15.0/custom-license new file mode 100644 index 0000000000..35252fda76 --- /dev/null +++ b/tools/legal-review/engine/org.jline.jline-3.15.0/custom-license @@ -0,0 +1 @@ +LICENSE.txt diff --git a/tools/legal-review/engine/org.jline.jline-3.15.0/files-add/LICENSE.txt b/tools/legal-review/engine/org.jline.jline-3.15.0/files-add/LICENSE.txt new file mode 100644 index 0000000000..7e11b67fba --- /dev/null +++ b/tools/legal-review/engine/org.jline.jline-3.15.0/files-add/LICENSE.txt @@ -0,0 +1,35 @@ +Copyright (c) 2002-2018, the original author or authors. +All rights reserved. + +https://opensource.org/licenses/BSD-3-Clause + +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 JLine 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. + diff --git a/tools/legal-review/engine/org.reactivestreams.reactive-streams-1.0.2/copyright-keep-context b/tools/legal-review/engine/org.reactivestreams.reactive-streams-1.0.2/copyright-keep-context new file mode 100644 index 0000000000..2d1291cd53 --- /dev/null +++ b/tools/legal-review/engine/org.reactivestreams.reactive-streams-1.0.2/copyright-keep-context @@ -0,0 +1 @@ +this code has waived all copyright and related or neighboring * diff --git a/tools/legal-review/engine/org.reactivestreams.reactive-streams-1.0.3/copyright-keep-context b/tools/legal-review/engine/org.reactivestreams.reactive-streams-1.0.3/copyright-keep-context new file mode 100644 index 0000000000..2d1291cd53 --- /dev/null +++ b/tools/legal-review/engine/org.reactivestreams.reactive-streams-1.0.3/copyright-keep-context @@ -0,0 +1 @@ +this code has waived all copyright and related or neighboring * diff --git a/tools/legal-review/engine/org.scala-lang.modules.scala-collection-compat_2.13-2.0.0/copyright-add b/tools/legal-review/engine/org.scala-lang.modules.scala-collection-compat_2.13-2.0.0/copyright-add new file mode 100644 index 0000000000..86fdc160fe --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.modules.scala-collection-compat_2.13-2.0.0/copyright-add @@ -0,0 +1 @@ +See org.scala-lang.scala-library-2.13 for notices related to this module. diff --git a/tools/legal-review/engine/org.scala-lang.modules.scala-collection-compat_2.13-2.0.0/copyright-keep-context b/tools/legal-review/engine/org.scala-lang.modules.scala-collection-compat_2.13-2.0.0/copyright-keep-context new file mode 100644 index 0000000000..1bb2f1e623 --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.modules.scala-collection-compat_2.13-2.0.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright EPFL and Lightbend, Inc. diff --git a/tools/legal-review/engine/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/copyright-add b/tools/legal-review/engine/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/copyright-add new file mode 100644 index 0000000000..86fdc160fe --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/copyright-add @@ -0,0 +1 @@ +See org.scala-lang.scala-library-2.13 for notices related to this module. diff --git a/tools/legal-review/engine/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/copyright-keep-context b/tools/legal-review/engine/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/copyright-keep-context new file mode 100644 index 0000000000..1bb2f1e623 --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright EPFL and Lightbend, Inc. diff --git a/tools/legal-review/engine/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/files-add/NOTICE b/tools/legal-review/engine/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/files-add/NOTICE new file mode 100644 index 0000000000..3eccb0b52f --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/files-add/NOTICE @@ -0,0 +1,14 @@ +scala-java8-compat +Copyright (c) 2002-2020 EPFL +Copyright (c) 2011-2020 Lightbend, Inc. + +scala-java8-compat includes software developed at +LAMP/EPFL (https://lamp.epfl.ch/) and +Lightbend, Inc. (https://www.lightbend.com/). + +Licensed under the Apache License, Version 2.0 (the "License"). +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/tools/legal-review/engine/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/copyright-add b/tools/legal-review/engine/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/copyright-add new file mode 100644 index 0000000000..86fdc160fe --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/copyright-add @@ -0,0 +1 @@ +See org.scala-lang.scala-library-2.13 for notices related to this module. diff --git a/tools/legal-review/engine/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/copyright-keep-context b/tools/legal-review/engine/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/copyright-keep-context new file mode 100644 index 0000000000..1bb2f1e623 --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/copyright-keep-context @@ -0,0 +1 @@ +Copyright EPFL and Lightbend, Inc. diff --git a/tools/legal-review/engine/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/files-add/NOTICE b/tools/legal-review/engine/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/files-add/NOTICE new file mode 100644 index 0000000000..779e510da7 --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/files-add/NOTICE @@ -0,0 +1,14 @@ +Scala parser combinators +Copyright (c) 2002-2020 EPFL +Copyright (c) 2011-2020 Lightbend, Inc. + +Scala includes software developed at +LAMP/EPFL (https://lamp.epfl.ch/) and +Lightbend, Inc. (https://www.lightbend.com/). + +Licensed under the Apache License, Version 2.0 (the "License"). +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/tools/legal-review/engine/org.scala-lang.modules.scala-xml_2.13-1.3.0/copyright-add b/tools/legal-review/engine/org.scala-lang.modules.scala-xml_2.13-1.3.0/copyright-add new file mode 100644 index 0000000000..7571d39cce --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.modules.scala-xml_2.13-1.3.0/copyright-add @@ -0,0 +1,9 @@ +/* __ *\ +** ________ ___ / / ___ Scala API ** +** / __/ __// _ | / / / _ | (c) 2002-2019, LAMP/EPFL ** +** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ ** +** /____/\___/_/ |_/____/_/ | | ** +** |/ ** +** Copyright 2008 Google Inc. ** +** All Rights Reserved. ** +\* */ diff --git a/tools/legal-review/engine/org.scala-lang.modules.scala-xml_2.13-1.3.0/copyright-ignore b/tools/legal-review/engine/org.scala-lang.modules.scala-xml_2.13-1.3.0/copyright-ignore new file mode 100644 index 0000000000..aaa7103203 --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.modules.scala-xml_2.13-1.3.0/copyright-ignore @@ -0,0 +1 @@ +Copyright 2008 Google Inc. ** diff --git a/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.3/copyright-add b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.3/copyright-add new file mode 100644 index 0000000000..934835df41 --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.3/copyright-add @@ -0,0 +1 @@ +See org.scala-lang.scala-library-2.13 for additional documentation related to this module. diff --git a/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.3/copyright-ignore b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.3/copyright-ignore new file mode 100644 index 0000000000..cac1e7d45f --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.3/copyright-ignore @@ -0,0 +1,8 @@ +"A footer on every Scaladoc page, by default the EPFL/Lightbend copyright notice. Can be overridden with a custom footer.", +Copyright EPFL and Lightbend, Inc. +Div(id = "footer", elems = Txt("Scala programming documentation. Copyright (c) 2002-2020 ") :: A(href = "http://www.epfl.ch", target = "_top", elems = Txt("EPFL")) :: Txt(" and ") :: A(href = "http://www.lightbend.com", target = "_top", elems = Txt("Lightbend")) :: Txt(".")) +Properties.copyrightString +additional information regarding copyright ownership. +rem # Copyright EPFL and Lightbend, Inc. +rem # additional information regarding copyright ownership. +val versionMsg = s"Scaladoc ${Properties.versionString} -- ${Properties.copyrightString}" diff --git a/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.3/copyright-keep b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.3/copyright-keep new file mode 100644 index 0000000000..a48c005dcc --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.3/copyright-keep @@ -0,0 +1,3 @@ +Copyright 2002-2017 LAMP/EPFL and Lightbend, Inc. +Copyright 2005-2017 LAMP/EPFL and Lightbend, Inc +Copyright 2005-2017 LAMP/EPFL and Lightbend, Inc. diff --git a/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.3/copyright-keep-context b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.3/copyright-keep-context new file mode 100644 index 0000000000..4b0c242597 --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.3/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2005-2013 LAMP/EPFL diff --git a/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.3/files-ignore b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.3/files-ignore new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.3/files-ignore @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.3/files-keep b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.3/files-keep new file mode 100644 index 0000000000..6d5ee1d052 --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-compiler-2.13.3/files-keep @@ -0,0 +1 @@ +NOTICE diff --git a/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/copyright-ignore b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/copyright-ignore new file mode 100644 index 0000000000..5761cb82ad --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/copyright-ignore @@ -0,0 +1,3 @@ +val copyrightString = scalaPropOrElse("copyright.string", "Copyright 2002-2020, LAMP/EPFL and Lightbend, Inc.") +private[scala] def versionFor(command: String) = f"Scala $command $versionString -- $copyrightString" +case _ => "No copyright" diff --git a/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/copyright-keep-context b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/copyright-keep-context new file mode 100644 index 0000000000..1bb2f1e623 --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/copyright-keep-context @@ -0,0 +1 @@ +Copyright EPFL and Lightbend, Inc. diff --git a/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-add/doc/LICENSE.md b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-add/doc/LICENSE.md new file mode 100644 index 0000000000..83ef781d15 --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-add/doc/LICENSE.md @@ -0,0 +1,42 @@ +Scala is licensed under the [Apache License Version 2.0](https://www.apache.org/licenses/LICENSE-2.0). + +## Scala License + +Copyright (c) 2002-2020 EPFL + +Copyright (c) 2011-2020 Lightbend, Inc. + +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. + +# Other Licenses + +This software includes projects with the following licenses, +which are also included in the `licenses/` directory: + +### [Apache License](http://www.apache.org/licenses/LICENSE-2.0.html) +This license is used by the following third-party libraries: + + * JNA + +### [BSD 3-Clause License](http://opensource.org/licenses/BSD-3-Clause) +This license is used by the following third-party libraries: + + * ASM + * JLine 3 + +### [MIT License](http://www.opensource.org/licenses/MIT) +This license is used by the following third-party libraries: + + * jQuery diff --git a/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-add/doc/License.rtf b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-add/doc/License.rtf new file mode 100644 index 0000000000..376ec02cb5 --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-add/doc/License.rtf @@ -0,0 +1,85 @@ +{\rtf1\ansi\ansicpg1252\cocoartf2511 +\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fswiss\fcharset0 Helvetica-Bold;} +{\colortbl;\red255\green255\blue255;\red27\green31\blue34;\red10\green77\blue204;\red0\green0\blue0; +\red21\green23\blue26;} +{\*\expandedcolortbl;;\cssrgb\c14118\c16078\c18039;\cssrgb\c1176\c40000\c83922;\csgray\c0\c0; +\cssrgb\c10588\c12157\c13725\c4706;} +{\*\listtable{\list\listtemplateid1\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid1\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid1} +{\list\listtemplateid2\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid101\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid2} +{\list\listtemplateid3\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid201\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid3} +{\list\listtemplateid4\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid301\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid4}} +{\*\listoverridetable{\listoverride\listid1\listoverridecount0\ls1}{\listoverride\listid2\listoverridecount0\ls2}{\listoverride\listid3\listoverridecount0\ls3}{\listoverride\listid4\listoverridecount0\ls4}} +\paperw11900\paperh16840\margl1440\margr1440\vieww17360\viewh20980\viewkind0 +\deftab720 +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\fs28 \cf2 \expnd0\expndtw0\kerning0 +Scala is licensed under the\'a0{\field{\*\fldinst{HYPERLINK "https://www.apache.org/licenses/LICENSE-2.0"}}{\fldrslt \cf3 Apache License Version 2.0}}.\ +\pard\pardeftab720\sl360\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl440\sa320\partightenfactor0 + +\fs48 \cf2 Scala License\ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0\fs28 \cf2 Copyright (c) 2002-2020 EPFL\ +Copyright (c) 2011-2020 Lightbend, Inc.\ +All rights reserved.\ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +\cf2 \cb4 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 {\field{\*\fldinst{HYPERLINK "http://www.apache.org/licenses/LICENSE-2.0"}}{\fldrslt 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.\ +\pard\pardeftab720\sl480\partightenfactor0 + +\f1\b \cf3 \cb1 \ +\pard\pardeftab720\sl600\sa320\partightenfactor0 + +\fs48 \cf2 Other Licenses\ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0\fs28 \cf2 This software includes projects with the following licenses, which are also included in the\'a0\cb5 licenses/\cb1 \'a0directory:\ +\pard\pardeftab720\sl300\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +{\field{\*\fldinst{HYPERLINK "http://www.apache.org/licenses/LICENSE-2.0.html"}}{\fldrslt \cf3 Apache License}}\cf2 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0 \cf2 This license is used by the following third-party libraries:\ +\pard\tx220\tx720\pardeftab720\li720\fi-720\sl360\partightenfactor0 +\ls1\ilvl0\cf2 \kerning1\expnd0\expndtw0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0 +JNA\ +\pard\pardeftab720\sl300\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +{\field{\*\fldinst{HYPERLINK "http://www.opensource.org/licenses/bsd-license.php"}}{\fldrslt \cf3 BSD License}}\cf2 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0 \cf2 This license is used by the following third-party libraries:\ +\pard\tx220\tx720\pardeftab720\li720\fi-720\sl360\partightenfactor0 +\ls2\ilvl0\cf2 \kerning1\expnd0\expndtw0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0 +JLine 3\ +\pard\pardeftab720\sl300\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +{\field{\*\fldinst{HYPERLINK "http://opensource.org/licenses/BSD-3-Clause"}}{\fldrslt \cf3 BSD 3-Clause License}}\cf2 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0 \cf2 This license is used by the following third-party libraries:\ +\pard\tx220\tx720\pardeftab720\li720\fi-720\sl360\partightenfactor0 +\ls3\ilvl0\cf2 \kerning1\expnd0\expndtw0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0 +ASM\ +\pard\pardeftab720\sl300\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +{\field{\*\fldinst{HYPERLINK "http://www.opensource.org/licenses/MIT"}}{\fldrslt \cf3 MIT License}}\cf2 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0 \cf2 This license is used by the following third-party libraries:\ +\pard\tx220\tx720\pardeftab720\li720\fi-720\sl360\partightenfactor0 +\ls4\ilvl0\cf2 \kerning1\expnd0\expndtw0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0 +jQuery\ +} \ No newline at end of file diff --git a/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/apache_jna.txt b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/apache_jna.txt new file mode 100644 index 0000000000..592efd6604 --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/apache_jna.txt @@ -0,0 +1,205 @@ +Scala includes the JLine library, which includes the JNA library, +which is made available under multiple licenses, including the +Apache 2 license: + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/bsd_asm.txt b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/bsd_asm.txt new file mode 100644 index 0000000000..a3591e4b40 --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/bsd_asm.txt @@ -0,0 +1,31 @@ +Scala includes the ASM library. + +Copyright (c) 2000-2011 INRIA, France Telecom +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 the copyright holders 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. diff --git a/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/bsd_jline.txt b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/bsd_jline.txt new file mode 100644 index 0000000000..cf45a50bea --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/bsd_jline.txt @@ -0,0 +1,36 @@ +Scala includes the JLine 3 library: + +Copyright (c) 2002-2018, the original author or authors. +All rights reserved. + +https://opensource.org/licenses/BSD-3-Clause + +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 JLine 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. diff --git a/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/mit_jquery.txt b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/mit_jquery.txt new file mode 100644 index 0000000000..ea261d2cfa --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/mit_jquery.txt @@ -0,0 +1,22 @@ +Scala includes the jQuery library: + +Copyright JS Foundation and other contributors, https://js.foundation/ + +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/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-ignore b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-ignore new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-ignore @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-keep b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-keep new file mode 100644 index 0000000000..6d5ee1d052 --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-library-2.13.3/files-keep @@ -0,0 +1 @@ +NOTICE diff --git a/tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.3/copyright-add b/tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.3/copyright-add new file mode 100644 index 0000000000..86fdc160fe --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.3/copyright-add @@ -0,0 +1 @@ +See org.scala-lang.scala-library-2.13 for notices related to this module. diff --git a/tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.3/copyright-keep-context b/tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.3/copyright-keep-context new file mode 100644 index 0000000000..81428754fb --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.3/copyright-keep-context @@ -0,0 +1,2 @@ +Copyright EPFL and Lightbend, Inc. +Copyright 2005-2013 LAMP/EPFL diff --git a/tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.3/files-ignore b/tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.3/files-ignore new file mode 100644 index 0000000000..9ef2c9b4d8 --- /dev/null +++ b/tools/legal-review/engine/org.scala-lang.scala-reflect-2.13.3/files-ignore @@ -0,0 +1,2 @@ +LICENSE +NOTICE diff --git a/tools/legal-review/engine/org.slf4j.slf4j-api-1.7.25/copyright-keep-context b/tools/legal-review/engine/org.slf4j.slf4j-api-1.7.25/copyright-keep-context new file mode 100644 index 0000000000..7383b9c6d6 --- /dev/null +++ b/tools/legal-review/engine/org.slf4j.slf4j-api-1.7.25/copyright-keep-context @@ -0,0 +1 @@ +Copyright (c) 2004-2011 QOS.ch diff --git a/tools/legal-review/engine/org.slf4j.slf4j-api-1.7.30/copyright-keep-context b/tools/legal-review/engine/org.slf4j.slf4j-api-1.7.30/copyright-keep-context new file mode 100644 index 0000000000..7383b9c6d6 --- /dev/null +++ b/tools/legal-review/engine/org.slf4j.slf4j-api-1.7.30/copyright-keep-context @@ -0,0 +1 @@ +Copyright (c) 2004-2011 QOS.ch diff --git a/tools/legal-review/engine/org.typelevel.alleycats-core_2.13-2.1.1/copyright-add b/tools/legal-review/engine/org.typelevel.alleycats-core_2.13-2.1.1/copyright-add new file mode 100644 index 0000000000..1c247d9f8f --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.alleycats-core_2.13-2.1.1/copyright-add @@ -0,0 +1 @@ +See org.typelevel.cats-core_2.13-2.2.0-M3 for notices related to this module. diff --git a/tools/legal-review/engine/org.typelevel.alleycats-core_2.13-2.1.1/custom-license b/tools/legal-review/engine/org.typelevel.alleycats-core_2.13-2.1.1/custom-license new file mode 100644 index 0000000000..5ecd9c64ad --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.alleycats-core_2.13-2.1.1/custom-license @@ -0,0 +1 @@ +COPYING diff --git a/tools/legal-review/engine/org.typelevel.alleycats-core_2.13-2.1.1/files-ignore b/tools/legal-review/engine/org.typelevel.alleycats-core_2.13-2.1.1/files-ignore new file mode 100644 index 0000000000..4aa66a1c02 --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.alleycats-core_2.13-2.1.1/files-ignore @@ -0,0 +1 @@ +/typelevel/cats/blob/master/AUTHORS.md diff --git a/tools/legal-review/engine/org.typelevel.alleycats-core_2.13-2.1.1/files-keep b/tools/legal-review/engine/org.typelevel.alleycats-core_2.13-2.1.1/files-keep new file mode 100644 index 0000000000..31131e3fd8 --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.alleycats-core_2.13-2.1.1/files-keep @@ -0,0 +1 @@ +/typelevel/cats/blob/master/COPYING diff --git a/tools/legal-review/engine/org.typelevel.cats-core_2.13-2.2.0-M3/custom-license b/tools/legal-review/engine/org.typelevel.cats-core_2.13-2.2.0-M3/custom-license new file mode 100644 index 0000000000..5ecd9c64ad --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.cats-core_2.13-2.2.0-M3/custom-license @@ -0,0 +1 @@ +COPYING diff --git a/tools/legal-review/engine/org.typelevel.cats-core_2.13-2.2.0-M3/files-keep b/tools/legal-review/engine/org.typelevel.cats-core_2.13-2.2.0-M3/files-keep new file mode 100644 index 0000000000..d16d1ce34f --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.cats-core_2.13-2.2.0-M3/files-keep @@ -0,0 +1,2 @@ +/typelevel/cats/blob/master/COPYING +/typelevel/cats/blob/master/AUTHORS.md diff --git a/tools/legal-review/engine/org.typelevel.cats-free_2.13-2.1.1/copyright-add b/tools/legal-review/engine/org.typelevel.cats-free_2.13-2.1.1/copyright-add new file mode 100644 index 0000000000..1c247d9f8f --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.cats-free_2.13-2.1.1/copyright-add @@ -0,0 +1 @@ +See org.typelevel.cats-core_2.13-2.2.0-M3 for notices related to this module. diff --git a/tools/legal-review/engine/org.typelevel.cats-free_2.13-2.1.1/custom-license b/tools/legal-review/engine/org.typelevel.cats-free_2.13-2.1.1/custom-license new file mode 100644 index 0000000000..5ecd9c64ad --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.cats-free_2.13-2.1.1/custom-license @@ -0,0 +1 @@ +COPYING diff --git a/tools/legal-review/engine/org.typelevel.cats-free_2.13-2.1.1/files-ignore b/tools/legal-review/engine/org.typelevel.cats-free_2.13-2.1.1/files-ignore new file mode 100644 index 0000000000..4aa66a1c02 --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.cats-free_2.13-2.1.1/files-ignore @@ -0,0 +1 @@ +/typelevel/cats/blob/master/AUTHORS.md diff --git a/tools/legal-review/engine/org.typelevel.cats-free_2.13-2.1.1/files-keep b/tools/legal-review/engine/org.typelevel.cats-free_2.13-2.1.1/files-keep new file mode 100644 index 0000000000..31131e3fd8 --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.cats-free_2.13-2.1.1/files-keep @@ -0,0 +1 @@ +/typelevel/cats/blob/master/COPYING diff --git a/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.2.0-M3/copyright-add b/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.2.0-M3/copyright-add new file mode 100644 index 0000000000..1c247d9f8f --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.2.0-M3/copyright-add @@ -0,0 +1 @@ +See org.typelevel.cats-core_2.13-2.2.0-M3 for notices related to this module. diff --git a/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.2.0-M3/custom-license b/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.2.0-M3/custom-license new file mode 100644 index 0000000000..5ecd9c64ad --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.2.0-M3/custom-license @@ -0,0 +1 @@ +COPYING diff --git a/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.2.0-M3/files-ignore b/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.2.0-M3/files-ignore new file mode 100644 index 0000000000..4aa66a1c02 --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.2.0-M3/files-ignore @@ -0,0 +1 @@ +/typelevel/cats/blob/master/AUTHORS.md diff --git a/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.2.0-M3/files-keep b/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.2.0-M3/files-keep new file mode 100644 index 0000000000..31131e3fd8 --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.cats-kernel_2.13-2.2.0-M3/files-keep @@ -0,0 +1 @@ +/typelevel/cats/blob/master/COPYING diff --git a/tools/legal-review/engine/org.typelevel.cats-macros_2.13-2.1.1/copyright-add b/tools/legal-review/engine/org.typelevel.cats-macros_2.13-2.1.1/copyright-add new file mode 100644 index 0000000000..1c247d9f8f --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.cats-macros_2.13-2.1.1/copyright-add @@ -0,0 +1 @@ +See org.typelevel.cats-core_2.13-2.2.0-M3 for notices related to this module. diff --git a/tools/legal-review/engine/org.typelevel.cats-macros_2.13-2.1.1/custom-license b/tools/legal-review/engine/org.typelevel.cats-macros_2.13-2.1.1/custom-license new file mode 100644 index 0000000000..5ecd9c64ad --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.cats-macros_2.13-2.1.1/custom-license @@ -0,0 +1 @@ +COPYING diff --git a/tools/legal-review/engine/org.typelevel.cats-macros_2.13-2.1.1/files-ignore b/tools/legal-review/engine/org.typelevel.cats-macros_2.13-2.1.1/files-ignore new file mode 100644 index 0000000000..4aa66a1c02 --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.cats-macros_2.13-2.1.1/files-ignore @@ -0,0 +1 @@ +/typelevel/cats/blob/master/AUTHORS.md diff --git a/tools/legal-review/engine/org.typelevel.cats-macros_2.13-2.1.1/files-keep b/tools/legal-review/engine/org.typelevel.cats-macros_2.13-2.1.1/files-keep new file mode 100644 index 0000000000..31131e3fd8 --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.cats-macros_2.13-2.1.1/files-keep @@ -0,0 +1 @@ +/typelevel/cats/blob/master/COPYING diff --git a/tools/legal-review/engine/org.typelevel.jawn-parser_2.13-1.0.0/custom-license b/tools/legal-review/engine/org.typelevel.jawn-parser_2.13-1.0.0/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.jawn-parser_2.13-1.0.0/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/engine/org.typelevel.jawn-parser_2.13-1.0.0/files-add/LICENSE b/tools/legal-review/engine/org.typelevel.jawn-parser_2.13-1.0.0/files-add/LICENSE new file mode 100644 index 0000000000..d07c01e8c9 --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.jawn-parser_2.13-1.0.0/files-add/LICENSE @@ -0,0 +1,7 @@ +Copyright Erik Osheim, 2012-2020. + +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/tools/legal-review/engine/org.typelevel.kittens_2.13-2.1.0/copyright-add b/tools/legal-review/engine/org.typelevel.kittens_2.13-2.1.0/copyright-add new file mode 100644 index 0000000000..70dccd97ec --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.kittens_2.13-2.1.0/copyright-add @@ -0,0 +1,15 @@ +/* + * Copyright (c) 2016 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/org.typelevel.kittens_2.13-2.1.0/copyright-ignore b/tools/legal-review/engine/org.typelevel.kittens_2.13-2.1.0/copyright-ignore new file mode 100644 index 0000000000..64ac6f1f79 --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.kittens_2.13-2.1.0/copyright-ignore @@ -0,0 +1 @@ +Copyright (c) 2016 Miles Sabin diff --git a/tools/legal-review/engine/org.typelevel.kittens_2.13-2.1.0/copyright-keep b/tools/legal-review/engine/org.typelevel.kittens_2.13-2.1.0/copyright-keep new file mode 100644 index 0000000000..b31facb4e8 --- /dev/null +++ b/tools/legal-review/engine/org.typelevel.kittens_2.13-2.1.0/copyright-keep @@ -0,0 +1 @@ +Copyright (c) 2015 Miles Sabin diff --git a/tools/legal-review/engine/org.xerial.sqlite-jdbc-3.31.1/copyright-add b/tools/legal-review/engine/org.xerial.sqlite-jdbc-3.31.1/copyright-add new file mode 100644 index 0000000000..1f5cc2a40b --- /dev/null +++ b/tools/legal-review/engine/org.xerial.sqlite-jdbc-3.31.1/copyright-add @@ -0,0 +1,15 @@ +/* + * Copyright (c) 2007 David Crawshaw + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ diff --git a/tools/legal-review/engine/org.xerial.sqlite-jdbc-3.31.1/copyright-ignore b/tools/legal-review/engine/org.xerial.sqlite-jdbc-3.31.1/copyright-ignore new file mode 100644 index 0000000000..d9997fce67 --- /dev/null +++ b/tools/legal-review/engine/org.xerial.sqlite-jdbc-3.31.1/copyright-ignore @@ -0,0 +1,3 @@ +Copyright (c) 2007 David Crawshaw +copyright notice and this permission notice appear in all copies. +this work for additional information regarding copyright ownership. diff --git a/tools/legal-review/engine/org.xerial.sqlite-jdbc-3.31.1/copyright-keep b/tools/legal-review/engine/org.xerial.sqlite-jdbc-3.31.1/copyright-keep new file mode 100644 index 0000000000..df4a4d2bf4 --- /dev/null +++ b/tools/legal-review/engine/org.xerial.sqlite-jdbc-3.31.1/copyright-keep @@ -0,0 +1,3 @@ +Copyright 2008 Taro L. Saito +Copyright 2009 Taro L. Saito +Copyright 2010 Taro L. Saito diff --git a/tools/legal-review/engine/org.xerial.sqlite-jdbc-3.31.1/copyright-keep-context b/tools/legal-review/engine/org.xerial.sqlite-jdbc-3.31.1/copyright-keep-context new file mode 100644 index 0000000000..89b10836aa --- /dev/null +++ b/tools/legal-review/engine/org.xerial.sqlite-jdbc-3.31.1/copyright-keep-context @@ -0,0 +1,2 @@ +Copyright 2007 Taro L. Saito +Copyright 2016 Magnus Reftel diff --git a/tools/legal-review/engine/org.xerial.sqlite-jdbc-3.31.1/custom-license b/tools/legal-review/engine/org.xerial.sqlite-jdbc-3.31.1/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/engine/org.xerial.sqlite-jdbc-3.31.1/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/engine/org.xerial.sqlite-jdbc-3.31.1/files-keep b/tools/legal-review/engine/org.xerial.sqlite-jdbc-3.31.1/files-keep new file mode 100644 index 0000000000..348b16cee4 --- /dev/null +++ b/tools/legal-review/engine/org.xerial.sqlite-jdbc-3.31.1/files-keep @@ -0,0 +1,2 @@ +META-INF/maven/org.xerial/sqlite-jdbc/LICENSE +META-INF/maven/org.xerial/sqlite-jdbc/LICENSE.zentus diff --git a/tools/legal-review/engine/org.yaml.snakeyaml-1.26/copyright-keep-context b/tools/legal-review/engine/org.yaml.snakeyaml-1.26/copyright-keep-context new file mode 100644 index 0000000000..fc17ce5e0a --- /dev/null +++ b/tools/legal-review/engine/org.yaml.snakeyaml-1.26/copyright-keep-context @@ -0,0 +1,3 @@ +Copyright (c) 2008 Google Inc. +Copyright (c) 2008, http://www.snakeyaml.org +Copyright 2003-2010 Christian d'Heureuse, Inventec Informatik AG, Zurich, Switzerland diff --git a/tools/legal-review/engine/report-state b/tools/legal-review/engine/report-state new file mode 100644 index 0000000000..f3b7333fd8 --- /dev/null +++ b/tools/legal-review/engine/report-state @@ -0,0 +1,3 @@ +A4F101277892D22D8F921ED9FBCD636C4277739AF29CA163F77DCFBD42CA9671 +1BF6D99D3E0CF136BD686EAADE5A1C4AE8B54F27746A5848618646BE407B1343 +0 diff --git a/tools/legal-review/engine/reviewed-licenses/Apache-2.0 b/tools/legal-review/engine/reviewed-licenses/Apache-2.0 new file mode 100644 index 0000000000..ff46ef6ff4 --- /dev/null +++ b/tools/legal-review/engine/reviewed-licenses/Apache-2.0 @@ -0,0 +1 @@ +tools/legal-review/license-texts/APACHE2.0 diff --git a/tools/legal-review/engine/reviewed-licenses/Apache_2 b/tools/legal-review/engine/reviewed-licenses/Apache_2 new file mode 100644 index 0000000000..ff46ef6ff4 --- /dev/null +++ b/tools/legal-review/engine/reviewed-licenses/Apache_2 @@ -0,0 +1 @@ +tools/legal-review/license-texts/APACHE2.0 diff --git a/tools/legal-review/engine/reviewed-licenses/Apache_2.0 b/tools/legal-review/engine/reviewed-licenses/Apache_2.0 new file mode 100644 index 0000000000..ff46ef6ff4 --- /dev/null +++ b/tools/legal-review/engine/reviewed-licenses/Apache_2.0 @@ -0,0 +1 @@ +tools/legal-review/license-texts/APACHE2.0 diff --git a/tools/legal-review/engine/reviewed-licenses/Apache_2.0_License b/tools/legal-review/engine/reviewed-licenses/Apache_2.0_License new file mode 100644 index 0000000000..ff46ef6ff4 --- /dev/null +++ b/tools/legal-review/engine/reviewed-licenses/Apache_2.0_License @@ -0,0 +1 @@ +tools/legal-review/license-texts/APACHE2.0 diff --git a/tools/legal-review/engine/reviewed-licenses/Apache_License_V2.0 b/tools/legal-review/engine/reviewed-licenses/Apache_License_V2.0 new file mode 100644 index 0000000000..ff46ef6ff4 --- /dev/null +++ b/tools/legal-review/engine/reviewed-licenses/Apache_License_V2.0 @@ -0,0 +1 @@ +tools/legal-review/license-texts/APACHE2.0 diff --git a/tools/legal-review/engine/reviewed-licenses/Apache_License__Version_2.0 b/tools/legal-review/engine/reviewed-licenses/Apache_License__Version_2.0 new file mode 100644 index 0000000000..ff46ef6ff4 --- /dev/null +++ b/tools/legal-review/engine/reviewed-licenses/Apache_License__Version_2.0 @@ -0,0 +1 @@ +tools/legal-review/license-texts/APACHE2.0 diff --git a/tools/legal-review/engine/reviewed-licenses/Apache_License_v2.0 b/tools/legal-review/engine/reviewed-licenses/Apache_License_v2.0 new file mode 100644 index 0000000000..ff46ef6ff4 --- /dev/null +++ b/tools/legal-review/engine/reviewed-licenses/Apache_License_v2.0 @@ -0,0 +1 @@ +tools/legal-review/license-texts/APACHE2.0 diff --git a/tools/legal-review/engine/reviewed-licenses/Bouncy_Castle_Licence b/tools/legal-review/engine/reviewed-licenses/Bouncy_Castle_Licence new file mode 100644 index 0000000000..0df4a92e91 --- /dev/null +++ b/tools/legal-review/engine/reviewed-licenses/Bouncy_Castle_Licence @@ -0,0 +1 @@ +tools/legal-review/license-texts/Bouncy_Castle_Licence.txt diff --git a/tools/legal-review/engine/reviewed-licenses/CC0 b/tools/legal-review/engine/reviewed-licenses/CC0 new file mode 100644 index 0000000000..a3b512f30c --- /dev/null +++ b/tools/legal-review/engine/reviewed-licenses/CC0 @@ -0,0 +1 @@ +tools/legal-review/license-texts/CC0 diff --git a/tools/legal-review/engine/reviewed-licenses/MIT b/tools/legal-review/engine/reviewed-licenses/MIT new file mode 100644 index 0000000000..3889131c8a --- /dev/null +++ b/tools/legal-review/engine/reviewed-licenses/MIT @@ -0,0 +1 @@ +tools/legal-review/license-texts/MIT diff --git a/tools/legal-review/engine/reviewed-licenses/MIT_License b/tools/legal-review/engine/reviewed-licenses/MIT_License new file mode 100644 index 0000000000..3889131c8a --- /dev/null +++ b/tools/legal-review/engine/reviewed-licenses/MIT_License @@ -0,0 +1 @@ +tools/legal-review/license-texts/MIT diff --git a/tools/legal-review/engine/reviewed-licenses/The_Apache_Software_License__Version_2.0 b/tools/legal-review/engine/reviewed-licenses/The_Apache_Software_License__Version_2.0 new file mode 100644 index 0000000000..ff46ef6ff4 --- /dev/null +++ b/tools/legal-review/engine/reviewed-licenses/The_Apache_Software_License__Version_2.0 @@ -0,0 +1 @@ +tools/legal-review/license-texts/APACHE2.0 diff --git a/tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.3/copyright-ignore b/tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.3/copyright-ignore new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.3/copyright-keep b/tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.3/copyright-keep new file mode 100644 index 0000000000..11dc7a6cda --- /dev/null +++ b/tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.3/copyright-keep @@ -0,0 +1,23 @@ +Copyright (c) 2011-15 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-17 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) 2015-6 Alexandre Archambault +Copyright (c) 2016 Miles Sabin +Copyright (c) 2016-18 Miles Sabin +Copyright (c) 2018 Miles Sabin +Copyright (c) 2011-16 Miles Sabin +Copyright (c) 2011-14 Miles Sabin diff --git a/tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.3/copyright-keep-context b/tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.3/copyright-keep-context new file mode 100644 index 0000000000..ea4e15c968 --- /dev/null +++ b/tools/legal-review/launcher/com.chuusai.shapeless_2.13-2.3.3/copyright-keep-context @@ -0,0 +1,6 @@ +Copyright (c) 2011-13 Miles Sabin +Copyright (c) 2011-16 Dale Wijnand +Copyright (c) 2012-18 Lars Hupel, Miles Sabin +Copyright (c) 2016 Frank S. Thomas +Copyright (c) 2017 Fabio Labella +Copyright (c) 2017 Georgi Krastev diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.6/copyright-keep-context b/tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.6/copyright-keep-context new file mode 100644 index 0000000000..02d139c087 --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.akka.akka-actor_2.13-2.6.6/copyright-keep-context @@ -0,0 +1,7 @@ +Copyright (C) 2009-2020 Lightbend Inc. +Copyright (C) 2014-2020 Lightbend Inc. +Copyright (C) 2015-2020 Lightbend Inc. +Copyright (C) 2016-2020 Lightbend Inc. +Copyright (C) 2017-2020 Lightbend Inc. +Copyright (C) 2019-2020 Lightbend Inc. +Copyright (C) 2018-2020 Lightbend Inc. diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-add b/tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-add new file mode 100644 index 0000000000..c7753ae669 --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-add @@ -0,0 +1,6 @@ +/* + * Copyright (C) 2017-2020 Lightbend Inc. + * + * Copied and adapted from akka-remote + * https://github.com/akka/akka/blob/c90121485fcfc44a3cee62a0c638e1982d13d812/akka-remote/src/main/scala/akka/remote/artery/StageLogging.scala + */ diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-ignore b/tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-ignore new file mode 100644 index 0000000000..94391e99ab --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-ignore @@ -0,0 +1 @@ +Copyright (C) 2017-2020 Lightbend Inc. diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-keep b/tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-keep new file mode 100644 index 0000000000..dde167626e --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2009-2020 Lightbend Inc. diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-keep-context b/tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-keep-context new file mode 100644 index 0000000000..0a59388fd6 --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.akka.akka-http-core_2.13-10.2.0-RC1/copyright-keep-context @@ -0,0 +1,9 @@ +Copyright (C) 2008-2017 Bjoern Hoehrmann +Copyright (C) 2009-2017 Mathias Doenitz, Alexander Myltsev +Copyright (C) 2015-2020 Lightbend Inc. +Copyright (C) 2016-2020 Lightbend Inc. +Copyright (C) 2018-2020 Lightbend Inc. +Copyright (C) 2019-2020 Lightbend Inc. +Copyright (C) 2020 Lightbend Inc. +Copyright 2009-2020 Lightbend Inc. +Copyright 2015 Heiko Seeberger diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-http_2.13-10.2.0-RC1/copyright-keep-context b/tools/legal-review/launcher/com.typesafe.akka.akka-http_2.13-10.2.0-RC1/copyright-keep-context new file mode 100644 index 0000000000..64424c7fd7 --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.akka.akka-http_2.13-10.2.0-RC1/copyright-keep-context @@ -0,0 +1,6 @@ +Copyright (C) 2009-2020 Lightbend Inc. +Copyright (C) 2009-2020 Lightbend Inc. +Copyright (C) 2015-2020 Lightbend Inc. +Copyright (C) 2017-2020 Lightbend Inc. +Copyright (C) 2018-2020 Lightbend Inc. +Copyright (C) 2020 Lightbend Inc. diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/copyright-add b/tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/copyright-add new file mode 100644 index 0000000000..42ff2fd055 --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/copyright-add @@ -0,0 +1,41 @@ +---------------- + +akka/parboiled2/util/Base64.java is licensed under the following terms: + * + * Licence (BSD): + * ============== + * + * Copyright (c) 2004, Mikael Grev, MiG InfoCom AB. (base64 @ miginfocom . com) + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright notice, this list + * of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, this + * list of conditions and the following disclaimer in the documentation and/or other + * materials provided with the distribution. + * Neither the name of the MiG InfoCom AB nor the names of its contributors may be + * used to endorse or promote products derived from this software without specific + * prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY + * OF SUCH DAMAGE. + * + * @version 2.2 + * @author Mikael Grev + * Date: 2004-aug-02 + * Time: 11:31:11 + * + * Adapted in 2009 by Mathias Doenitz. + */ + +---------------- diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/copyright-ignore b/tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/copyright-ignore new file mode 100644 index 0000000000..34525a6f01 --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/copyright-ignore @@ -0,0 +1 @@ +Copyright (c) 2004, Mikael Grev, MiG InfoCom AB. (base64 @ miginfocom . com) diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/copyright-keep-context b/tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/copyright-keep-context new file mode 100644 index 0000000000..84caeb77a5 --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.akka.akka-parsing_2.13-10.2.0-RC1/copyright-keep-context @@ -0,0 +1,5 @@ +Copyright (c) 2013-14 Miles Sabin +Copyright (C) 2009-2017 Mathias Doenitz, Alexander Myltsev +Copyright (C) 2009-2020 Lightbend Inc. +Copyright (C) 2019-2020 Lightbend Inc. +Copyright (c) 2011-13 Miles Sabin diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/custom-license b/tools/legal-review/launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/files-add/LICENSE b/tools/legal-review/launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/files-add/LICENSE new file mode 100644 index 0000000000..c7d5a563cc --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.akka.akka-protobuf-v3_2.13-2.6.6/files-add/LICENSE @@ -0,0 +1,212 @@ + 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. + +--------------- + +Licenses for dependency projects can be found here: +[http://akka.io/docs/akka/snapshot/project/licenses.html] + +--------------- + +akka-protobuf contains the sources of Google protobuf 2.5.0 runtime support, +moved into the source package `akka.protobuf` so as to avoid version conflicts. +For license information see COPYING.protobuf diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-slf4j_2.13-2.6.6/copyright-keep-context b/tools/legal-review/launcher/com.typesafe.akka.akka-slf4j_2.13-2.6.6/copyright-keep-context new file mode 100644 index 0000000000..dde167626e --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.akka.akka-slf4j_2.13-2.6.6/copyright-keep-context @@ -0,0 +1 @@ +Copyright (C) 2009-2020 Lightbend Inc. diff --git a/tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.6/copyright-keep-context b/tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.6/copyright-keep-context new file mode 100644 index 0000000000..6b02e72c95 --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.akka.akka-stream_2.13-2.6.6/copyright-keep-context @@ -0,0 +1,8 @@ +Copyright (C) 2018-2020 Lightbend Inc. +Copyright (C) 2015-2020 Lightbend Inc. +Copyright (C) 2017-2020 Lightbend Inc. +Copyright (C) 2020 Lightbend Inc. +Copyright (C) 2009-2020 Lightbend Inc. +Copyright (C) 2014-2020 Lightbend Inc. +Copyright (C) 2016-2020 Lightbend Inc. +Copyright (C) 2019-2020 Lightbend Inc. diff --git a/tools/legal-review/launcher/com.typesafe.config-1.4.0/copyright-keep-context b/tools/legal-review/launcher/com.typesafe.config-1.4.0/copyright-keep-context new file mode 100644 index 0000000000..77674fa313 --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.config-1.4.0/copyright-keep-context @@ -0,0 +1,3 @@ +Copyright (C) 2011-2012 Typesafe Inc. +Copyright (C) 2014 Typesafe Inc. +Copyright (C) 2015 Typesafe Inc. diff --git a/tools/legal-review/launcher/com.typesafe.scala-logging.scala-logging_2.13-3.9.2/copyright-keep-context b/tools/legal-review/launcher/com.typesafe.scala-logging.scala-logging_2.13-3.9.2/copyright-keep-context new file mode 100644 index 0000000000..965fc5c2cb --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.scala-logging.scala-logging_2.13-3.9.2/copyright-keep-context @@ -0,0 +1 @@ +Copyright 2014 Typesafe Inc. diff --git a/tools/legal-review/launcher/com.typesafe.scala-logging.scala-logging_2.13-3.9.2/files-ignore b/tools/legal-review/launcher/com.typesafe.scala-logging.scala-logging_2.13-3.9.2/files-ignore new file mode 100644 index 0000000000..5d2f04c52d --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.scala-logging.scala-logging_2.13-3.9.2/files-ignore @@ -0,0 +1 @@ +LICENSE-2.0.txt diff --git a/tools/legal-review/launcher/com.typesafe.ssl-config-core_2.13-0.4.1/copyright-keep b/tools/legal-review/launcher/com.typesafe.ssl-config-core_2.13-0.4.1/copyright-keep new file mode 100644 index 0000000000..4bd14e085b --- /dev/null +++ b/tools/legal-review/launcher/com.typesafe.ssl-config-core_2.13-0.4.1/copyright-keep @@ -0,0 +1 @@ +Copyright (C) 2015 - 2019 Lightbend Inc. diff --git a/tools/legal-review/launcher/commons-io.commons-io-2.7/copyright-add b/tools/legal-review/launcher/commons-io.commons-io-2.7/copyright-add new file mode 100644 index 0000000000..ae6f28c4a1 --- /dev/null +++ b/tools/legal-review/launcher/commons-io.commons-io-2.7/copyright-add @@ -0,0 +1,16 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/tools/legal-review/launcher/commons-io.commons-io-2.7/copyright-ignore b/tools/legal-review/launcher/commons-io.commons-io-2.7/copyright-ignore new file mode 100644 index 0000000000..47f54b72cf --- /dev/null +++ b/tools/legal-review/launcher/commons-io.commons-io-2.7/copyright-ignore @@ -0,0 +1,2 @@ +regarding copyright ownership. The ASF licenses this file +this work for additional information regarding copyright ownership. diff --git a/tools/legal-review/launcher/commons-io.commons-io-2.7/custom-license b/tools/legal-review/launcher/commons-io.commons-io-2.7/custom-license index e69de29bb2..35252fda76 100644 --- a/tools/legal-review/launcher/commons-io.commons-io-2.7/custom-license +++ b/tools/legal-review/launcher/commons-io.commons-io-2.7/custom-license @@ -0,0 +1 @@ +LICENSE.txt diff --git a/tools/legal-review/launcher/commons-io.commons-io-2.7/files-keep b/tools/legal-review/launcher/commons-io.commons-io-2.7/files-keep new file mode 100644 index 0000000000..e5a53c1b17 --- /dev/null +++ b/tools/legal-review/launcher/commons-io.commons-io-2.7/files-keep @@ -0,0 +1,2 @@ +META-INF/LICENSE.txt +META-INF/NOTICE.txt diff --git a/tools/legal-review/launcher/files-add/COPYRIGHT-MUSL b/tools/legal-review/launcher/files-add/COPYRIGHT-MUSL new file mode 100644 index 0000000000..e647237146 --- /dev/null +++ b/tools/legal-review/launcher/files-add/COPYRIGHT-MUSL @@ -0,0 +1,190 @@ +musl as a whole is licensed under the following standard MIT license: + +---------------------------------------------------------------------- +Copyright © 2005-2020 Rich Felker, et al. + +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. +---------------------------------------------------------------------- + +Authors/contributors include: + +A. Wilcox +Ada Worcester +Alex Dowad +Alex Suykov +Alexander Monakov +Andre McCurdy +Andrew Kelley +Anthony G. Basile +Aric Belsito +Arvid Picciani +Bartosz Brachaczek +Benjamin Peterson +Bobby Bingham +Boris Brezillon +Brent Cook +Chris Spiegel +Clément Vasseur +Daniel Micay +Daniel Sabogal +Daurnimator +David Carlier +David Edelsohn +Denys Vlasenko +Dmitry Ivanov +Dmitry V. Levin +Drew DeVault +Emil Renner Berthing +Fangrui Song +Felix Fietkau +Felix Janda +Gianluca Anzolin +Hauke Mehrtens +He X +Hiltjo Posthuma +Isaac Dunham +Jaydeep Patil +Jens Gustedt +Jeremy Huntwork +Jo-Philipp Wich +Joakim Sindholt +John Spencer +Julien Ramseier +Justin Cormack +Kaarle Ritvanen +Khem Raj +Kylie McClain +Leah Neukirchen +Luca Barbato +Luka Perkov +M Farkas-Dyck (Strake) +Mahesh Bodapati +Markus Wichmann +Masanori Ogino +Michael Clark +Michael Forney +Mikhail Kremnyov +Natanael Copa +Nicholas J. Kain +orc +Pascal Cuoq +Patrick Oppenlander +Petr Hosek +Petr Skocik +Pierre Carrier +Reini Urban +Rich Felker +Richard Pennington +Ryan Fairfax +Samuel Holland +Segev Finer +Shiz +sin +Solar Designer +Stefan Kristiansson +Stefan O'Rear +Szabolcs Nagy +Timo Teräs +Trutz Behn +Valentin Ochs +Will Dietz +William Haddon +William Pitcock + +Portions of this software are derived from third-party works licensed +under terms compatible with the above MIT license: + +The TRE regular expression implementation (src/regex/reg* and +src/regex/tre*) is Copyright © 2001-2008 Ville Laurikari and licensed +under a 2-clause BSD license (license text in the source files). The +included version has been heavily modified by Rich Felker in 2012, in +the interests of size, simplicity, and namespace cleanliness. + +Much of the math library code (src/math/* and src/complex/*) is +Copyright © 1993,2004 Sun Microsystems or +Copyright © 2003-2011 David Schultz or +Copyright © 2003-2009 Steven G. Kargl or +Copyright © 2003-2009 Bruce D. Evans or +Copyright © 2008 Stephen L. Moshier or +Copyright © 2017-2018 Arm Limited +and labelled as such in comments in the individual source files. All +have been licensed under extremely permissive terms. + +The ARM memcpy code (src/string/arm/memcpy_el.S) is Copyright © 2008 +The Android Open Source Project and is licensed under a two-clause BSD +license. It was taken from Bionic libc, used on Android. + +The implementation of DES for crypt (src/crypt/crypt_des.c) is +Copyright © 1994 David Burren. It is licensed under a BSD license. + +The implementation of blowfish crypt (src/crypt/crypt_blowfish.c) was +originally written by Solar Designer and placed into the public +domain. The code also comes with a fallback permissive license for use +in jurisdictions that may not recognize the public domain. + +The smoothsort implementation (src/stdlib/qsort.c) is Copyright © 2011 +Valentin Ochs and is licensed under an MIT-style license. + +The x86_64 port was written by Nicholas J. Kain and is licensed under +the standard MIT terms. + +The mips and microblaze ports were originally written by Richard +Pennington for use in the ellcc project. The original code was adapted +by Rich Felker for build system and code conventions during upstream +integration. It is licensed under the standard MIT terms. + +The mips64 port was contributed by Imagination Technologies and is +licensed under the standard MIT terms. + +The powerpc port was also originally written by Richard Pennington, +and later supplemented and integrated by John Spencer. It is licensed +under the standard MIT terms. + +All other files which have no copyright comments are original works +produced specifically for use as part of this library, written either +by Rich Felker, the main author of the library, or by one or more +contibutors listed above. Details on authorship of individual files +can be found in the git version control history of the project. The +omission of copyright and license comments in each file is in the +interest of source tree size. + +In addition, permission is hereby granted for all public header files +(include/* and arch/*/bits/*) and crt files intended to be linked into +applications (crt/*, ldso/dlstart.c, and arch/*/crt_arch.h) to omit +the copyright notice and permission notice otherwise required by the +license, and to use these files without any requirement of +attribution. These files include substantial contributions from: + +Bobby Bingham +John Spencer +Nicholas J. Kain +Rich Felker +Richard Pennington +Stefan Kristiansson +Szabolcs Nagy + +all of whom have explicitly granted such permission. + +This file previously contained text expressing a belief that most of +the files covered by the above exception were sufficiently trivial not +to be subject to copyright, resulting in confusion over whether it +negated the permissions granted in the license. In the spirit of +permissive licensing, and of not having licensing issues being an +obstacle to adoption, that text has been removed. diff --git a/tools/legal-review/launcher/files-add/COPYRIGHT-ZLIB b/tools/legal-review/launcher/files-add/COPYRIGHT-ZLIB new file mode 100644 index 0000000000..91dc1c4021 --- /dev/null +++ b/tools/legal-review/launcher/files-add/COPYRIGHT-ZLIB @@ -0,0 +1,25 @@ +/* zlib.h -- interface of the 'zlib' general purpose compression library + version 1.2.11, January 15th, 2017 + + Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + +*/ diff --git a/tools/legal-review/launcher/io.circe.circe-core_2.13-0.14.0-M1/custom-license b/tools/legal-review/launcher/io.circe.circe-core_2.13-0.14.0-M1/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/launcher/io.circe.circe-core_2.13-0.14.0-M1/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/launcher/io.circe.circe-core_2.13-0.14.0-M1/files-keep b/tools/legal-review/launcher/io.circe.circe-core_2.13-0.14.0-M1/files-keep new file mode 100644 index 0000000000..02a4e952c9 --- /dev/null +++ b/tools/legal-review/launcher/io.circe.circe-core_2.13-0.14.0-M1/files-keep @@ -0,0 +1,4 @@ +/circe/circe/blob/master/LICENSE +/circe/circe/blob/master/LICENSE.argonaut +/circe/circe/blob/master/LICENSE.ephox +/circe/circe/blob/master/NOTICE diff --git a/tools/legal-review/launcher/io.circe.circe-generic_2.13-0.14.0-M1/custom-license b/tools/legal-review/launcher/io.circe.circe-generic_2.13-0.14.0-M1/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/launcher/io.circe.circe-generic_2.13-0.14.0-M1/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/launcher/io.circe.circe-generic_2.13-0.14.0-M1/files-keep b/tools/legal-review/launcher/io.circe.circe-generic_2.13-0.14.0-M1/files-keep new file mode 100644 index 0000000000..02a4e952c9 --- /dev/null +++ b/tools/legal-review/launcher/io.circe.circe-generic_2.13-0.14.0-M1/files-keep @@ -0,0 +1,4 @@ +/circe/circe/blob/master/LICENSE +/circe/circe/blob/master/LICENSE.argonaut +/circe/circe/blob/master/LICENSE.ephox +/circe/circe/blob/master/NOTICE diff --git a/tools/legal-review/launcher/io.circe.circe-jawn_2.13-0.14.0-M1/custom-license b/tools/legal-review/launcher/io.circe.circe-jawn_2.13-0.14.0-M1/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/launcher/io.circe.circe-jawn_2.13-0.14.0-M1/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/launcher/io.circe.circe-jawn_2.13-0.14.0-M1/files-keep b/tools/legal-review/launcher/io.circe.circe-jawn_2.13-0.14.0-M1/files-keep new file mode 100644 index 0000000000..02a4e952c9 --- /dev/null +++ b/tools/legal-review/launcher/io.circe.circe-jawn_2.13-0.14.0-M1/files-keep @@ -0,0 +1,4 @@ +/circe/circe/blob/master/LICENSE +/circe/circe/blob/master/LICENSE.argonaut +/circe/circe/blob/master/LICENSE.ephox +/circe/circe/blob/master/NOTICE diff --git a/tools/legal-review/launcher/io.circe.circe-numbers_2.13-0.14.0-M1/custom-license b/tools/legal-review/launcher/io.circe.circe-numbers_2.13-0.14.0-M1/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/launcher/io.circe.circe-numbers_2.13-0.14.0-M1/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/launcher/io.circe.circe-numbers_2.13-0.14.0-M1/files-keep b/tools/legal-review/launcher/io.circe.circe-numbers_2.13-0.14.0-M1/files-keep new file mode 100644 index 0000000000..02a4e952c9 --- /dev/null +++ b/tools/legal-review/launcher/io.circe.circe-numbers_2.13-0.14.0-M1/files-keep @@ -0,0 +1,4 @@ +/circe/circe/blob/master/LICENSE +/circe/circe/blob/master/LICENSE.argonaut +/circe/circe/blob/master/LICENSE.ephox +/circe/circe/blob/master/NOTICE diff --git a/tools/legal-review/launcher/io.circe.circe-parser_2.13-0.14.0-M1/custom-license b/tools/legal-review/launcher/io.circe.circe-parser_2.13-0.14.0-M1/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/launcher/io.circe.circe-parser_2.13-0.14.0-M1/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/launcher/io.circe.circe-parser_2.13-0.14.0-M1/files-keep b/tools/legal-review/launcher/io.circe.circe-parser_2.13-0.14.0-M1/files-keep new file mode 100644 index 0000000000..02a4e952c9 --- /dev/null +++ b/tools/legal-review/launcher/io.circe.circe-parser_2.13-0.14.0-M1/files-keep @@ -0,0 +1,4 @@ +/circe/circe/blob/master/LICENSE +/circe/circe/blob/master/LICENSE.argonaut +/circe/circe/blob/master/LICENSE.ephox +/circe/circe/blob/master/NOTICE diff --git a/tools/legal-review/launcher/io.circe.circe-yaml_2.13-0.13.1/copyright-add b/tools/legal-review/launcher/io.circe.circe-yaml_2.13-0.13.1/copyright-add new file mode 100644 index 0000000000..be962804ee --- /dev/null +++ b/tools/legal-review/launcher/io.circe.circe-yaml_2.13-0.13.1/copyright-add @@ -0,0 +1,3 @@ +The project repository is located at https://github.com/circe/circe-yaml + +We were unable to find any copyright notices that should be attached as per the license. diff --git a/tools/legal-review/launcher/io.circe.circe-yaml_2.13-0.13.1/custom-license b/tools/legal-review/launcher/io.circe.circe-yaml_2.13-0.13.1/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/launcher/io.circe.circe-yaml_2.13-0.13.1/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/launcher/io.circe.circe-yaml_2.13-0.13.1/files-keep b/tools/legal-review/launcher/io.circe.circe-yaml_2.13-0.13.1/files-keep new file mode 100644 index 0000000000..6fd04cbb42 --- /dev/null +++ b/tools/legal-review/launcher/io.circe.circe-yaml_2.13-0.13.1/files-keep @@ -0,0 +1 @@ +/circe/circe-yaml/blob/master/LICENSE diff --git a/tools/legal-review/launcher/nl.gn0s1s.bump_2.13-0.1.3/custom-license b/tools/legal-review/launcher/nl.gn0s1s.bump_2.13-0.1.3/custom-license new file mode 100644 index 0000000000..0e4b780ed1 --- /dev/null +++ b/tools/legal-review/launcher/nl.gn0s1s.bump_2.13-0.1.3/custom-license @@ -0,0 +1 @@ +LICENSE.md diff --git a/tools/legal-review/launcher/nl.gn0s1s.bump_2.13-0.1.3/files-keep b/tools/legal-review/launcher/nl.gn0s1s.bump_2.13-0.1.3/files-keep new file mode 100644 index 0000000000..0dbfcd9db1 --- /dev/null +++ b/tools/legal-review/launcher/nl.gn0s1s.bump_2.13-0.1.3/files-keep @@ -0,0 +1 @@ +/Philippus/bump/blob/main/LICENSE.md diff --git a/tools/legal-review/launcher/notice-header b/tools/legal-review/launcher/notice-header new file mode 100644 index 0000000000..32f7ec77fc --- /dev/null +++ b/tools/legal-review/launcher/notice-header @@ -0,0 +1,15 @@ +Enso +Copyright 2020 New Byte Order sp. z o. o. + +As the launcher is built into a native binary using GraalVM Native Image, some +of the dependencies that are listed here may not actually be distributed with it +if their code was removed during compilation. For completeness, this document +lists all source dependencies that were used for its compilation. + +The version of this launcher built for the Linux platform uses `zlib` created by +Jean-loup Gailly and Mark Adler, see: `COPYRIGHT-ZLIB`. + +The version of this launcher built for the Linux platform uses the `musl` libc +licensed under the MIT license. Its copyright notice is included in file `COPYRIGHT-MUSL`. + +------------------------------ diff --git a/tools/legal-review/launcher/org.apache.commons.commons-compress-1.20/copyright-ignore b/tools/legal-review/launcher/org.apache.commons.commons-compress-1.20/copyright-ignore new file mode 100644 index 0000000000..47f54b72cf --- /dev/null +++ b/tools/legal-review/launcher/org.apache.commons.commons-compress-1.20/copyright-ignore @@ -0,0 +1,2 @@ +regarding copyright ownership. The ASF licenses this file +this work for additional information regarding copyright ownership. diff --git a/tools/legal-review/launcher/org.apache.commons.commons-compress-1.20/copyright-keep-context b/tools/legal-review/launcher/org.apache.commons.commons-compress-1.20/copyright-keep-context new file mode 100644 index 0000000000..6ab681a5b3 --- /dev/null +++ b/tools/legal-review/launcher/org.apache.commons.commons-compress-1.20/copyright-keep-context @@ -0,0 +1 @@ +Some portions of this file Copyright (c) 2004-2006 Intel Corportation diff --git a/tools/legal-review/launcher/org.apache.commons.commons-compress-1.20/custom-license b/tools/legal-review/launcher/org.apache.commons.commons-compress-1.20/custom-license new file mode 100644 index 0000000000..35252fda76 --- /dev/null +++ b/tools/legal-review/launcher/org.apache.commons.commons-compress-1.20/custom-license @@ -0,0 +1 @@ +LICENSE.txt diff --git a/tools/legal-review/launcher/org.apache.commons.commons-compress-1.20/files-keep b/tools/legal-review/launcher/org.apache.commons.commons-compress-1.20/files-keep new file mode 100644 index 0000000000..6de1a981f4 --- /dev/null +++ b/tools/legal-review/launcher/org.apache.commons.commons-compress-1.20/files-keep @@ -0,0 +1,2 @@ +META-INF/NOTICE.txt +META-INF/LICENSE.txt diff --git a/tools/legal-review/launcher/org.reactivestreams.reactive-streams-1.0.3/copyright-keep-context b/tools/legal-review/launcher/org.reactivestreams.reactive-streams-1.0.3/copyright-keep-context new file mode 100644 index 0000000000..2d1291cd53 --- /dev/null +++ b/tools/legal-review/launcher/org.reactivestreams.reactive-streams-1.0.3/copyright-keep-context @@ -0,0 +1 @@ +this code has waived all copyright and related or neighboring * diff --git a/tools/legal-review/launcher/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/copyright-add b/tools/legal-review/launcher/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/copyright-add new file mode 100644 index 0000000000..86fdc160fe --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/copyright-add @@ -0,0 +1 @@ +See org.scala-lang.scala-library-2.13 for notices related to this module. diff --git a/tools/legal-review/launcher/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/copyright-keep-context b/tools/legal-review/launcher/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/copyright-keep-context new file mode 100644 index 0000000000..1bb2f1e623 --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/copyright-keep-context @@ -0,0 +1 @@ +Copyright EPFL and Lightbend, Inc. diff --git a/tools/legal-review/launcher/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/files-add/NOTICE b/tools/legal-review/launcher/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/files-add/NOTICE new file mode 100644 index 0000000000..3eccb0b52f --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.modules.scala-java8-compat_2.13-0.9.0/files-add/NOTICE @@ -0,0 +1,14 @@ +scala-java8-compat +Copyright (c) 2002-2020 EPFL +Copyright (c) 2011-2020 Lightbend, Inc. + +scala-java8-compat includes software developed at +LAMP/EPFL (https://lamp.epfl.ch/) and +Lightbend, Inc. (https://www.lightbend.com/). + +Licensed under the Apache License, Version 2.0 (the "License"). +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/launcher/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/copyright-add b/tools/legal-review/launcher/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/copyright-add new file mode 100644 index 0000000000..86fdc160fe --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/copyright-add @@ -0,0 +1 @@ +See org.scala-lang.scala-library-2.13 for notices related to this module. diff --git a/tools/legal-review/launcher/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/copyright-keep-context b/tools/legal-review/launcher/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/copyright-keep-context new file mode 100644 index 0000000000..1bb2f1e623 --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/copyright-keep-context @@ -0,0 +1 @@ +Copyright EPFL and Lightbend, Inc. diff --git a/tools/legal-review/launcher/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/files-add/NOTICE b/tools/legal-review/launcher/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/files-add/NOTICE new file mode 100644 index 0000000000..779e510da7 --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.modules.scala-parser-combinators_2.13-1.1.2/files-add/NOTICE @@ -0,0 +1,14 @@ +Scala parser combinators +Copyright (c) 2002-2020 EPFL +Copyright (c) 2011-2020 Lightbend, Inc. + +Scala includes software developed at +LAMP/EPFL (https://lamp.epfl.ch/) and +Lightbend, Inc. (https://www.lightbend.com/). + +Licensed under the Apache License, Version 2.0 (the "License"). +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/launcher/org.scala-lang.scala-library-2.13.3/copyright-ignore b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/copyright-ignore new file mode 100644 index 0000000000..5761cb82ad --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/copyright-ignore @@ -0,0 +1,3 @@ +val copyrightString = scalaPropOrElse("copyright.string", "Copyright 2002-2020, LAMP/EPFL and Lightbend, Inc.") +private[scala] def versionFor(command: String) = f"Scala $command $versionString -- $copyrightString" +case _ => "No copyright" diff --git a/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/copyright-keep-context b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/copyright-keep-context new file mode 100644 index 0000000000..1bb2f1e623 --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/copyright-keep-context @@ -0,0 +1 @@ +Copyright EPFL and Lightbend, Inc. diff --git a/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-add/doc/LICENSE.md b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-add/doc/LICENSE.md new file mode 100644 index 0000000000..83ef781d15 --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-add/doc/LICENSE.md @@ -0,0 +1,42 @@ +Scala is licensed under the [Apache License Version 2.0](https://www.apache.org/licenses/LICENSE-2.0). + +## Scala License + +Copyright (c) 2002-2020 EPFL + +Copyright (c) 2011-2020 Lightbend, Inc. + +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. + +# Other Licenses + +This software includes projects with the following licenses, +which are also included in the `licenses/` directory: + +### [Apache License](http://www.apache.org/licenses/LICENSE-2.0.html) +This license is used by the following third-party libraries: + + * JNA + +### [BSD 3-Clause License](http://opensource.org/licenses/BSD-3-Clause) +This license is used by the following third-party libraries: + + * ASM + * JLine 3 + +### [MIT License](http://www.opensource.org/licenses/MIT) +This license is used by the following third-party libraries: + + * jQuery diff --git a/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-add/doc/License.rtf b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-add/doc/License.rtf new file mode 100644 index 0000000000..376ec02cb5 --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-add/doc/License.rtf @@ -0,0 +1,85 @@ +{\rtf1\ansi\ansicpg1252\cocoartf2511 +\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fswiss\fcharset0 Helvetica-Bold;} +{\colortbl;\red255\green255\blue255;\red27\green31\blue34;\red10\green77\blue204;\red0\green0\blue0; +\red21\green23\blue26;} +{\*\expandedcolortbl;;\cssrgb\c14118\c16078\c18039;\cssrgb\c1176\c40000\c83922;\csgray\c0\c0; +\cssrgb\c10588\c12157\c13725\c4706;} +{\*\listtable{\list\listtemplateid1\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid1\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid1} +{\list\listtemplateid2\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid101\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid2} +{\list\listtemplateid3\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid201\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid3} +{\list\listtemplateid4\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid301\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid4}} +{\*\listoverridetable{\listoverride\listid1\listoverridecount0\ls1}{\listoverride\listid2\listoverridecount0\ls2}{\listoverride\listid3\listoverridecount0\ls3}{\listoverride\listid4\listoverridecount0\ls4}} +\paperw11900\paperh16840\margl1440\margr1440\vieww17360\viewh20980\viewkind0 +\deftab720 +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\fs28 \cf2 \expnd0\expndtw0\kerning0 +Scala is licensed under the\'a0{\field{\*\fldinst{HYPERLINK "https://www.apache.org/licenses/LICENSE-2.0"}}{\fldrslt \cf3 Apache License Version 2.0}}.\ +\pard\pardeftab720\sl360\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl440\sa320\partightenfactor0 + +\fs48 \cf2 Scala License\ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0\fs28 \cf2 Copyright (c) 2002-2020 EPFL\ +Copyright (c) 2011-2020 Lightbend, Inc.\ +All rights reserved.\ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +\cf2 \cb4 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 {\field{\*\fldinst{HYPERLINK "http://www.apache.org/licenses/LICENSE-2.0"}}{\fldrslt 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.\ +\pard\pardeftab720\sl480\partightenfactor0 + +\f1\b \cf3 \cb1 \ +\pard\pardeftab720\sl600\sa320\partightenfactor0 + +\fs48 \cf2 Other Licenses\ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0\fs28 \cf2 This software includes projects with the following licenses, which are also included in the\'a0\cb5 licenses/\cb1 \'a0directory:\ +\pard\pardeftab720\sl300\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +{\field{\*\fldinst{HYPERLINK "http://www.apache.org/licenses/LICENSE-2.0.html"}}{\fldrslt \cf3 Apache License}}\cf2 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0 \cf2 This license is used by the following third-party libraries:\ +\pard\tx220\tx720\pardeftab720\li720\fi-720\sl360\partightenfactor0 +\ls1\ilvl0\cf2 \kerning1\expnd0\expndtw0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0 +JNA\ +\pard\pardeftab720\sl300\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +{\field{\*\fldinst{HYPERLINK "http://www.opensource.org/licenses/bsd-license.php"}}{\fldrslt \cf3 BSD License}}\cf2 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0 \cf2 This license is used by the following third-party libraries:\ +\pard\tx220\tx720\pardeftab720\li720\fi-720\sl360\partightenfactor0 +\ls2\ilvl0\cf2 \kerning1\expnd0\expndtw0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0 +JLine 3\ +\pard\pardeftab720\sl300\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +{\field{\*\fldinst{HYPERLINK "http://opensource.org/licenses/BSD-3-Clause"}}{\fldrslt \cf3 BSD 3-Clause License}}\cf2 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0 \cf2 This license is used by the following third-party libraries:\ +\pard\tx220\tx720\pardeftab720\li720\fi-720\sl360\partightenfactor0 +\ls3\ilvl0\cf2 \kerning1\expnd0\expndtw0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0 +ASM\ +\pard\pardeftab720\sl300\partightenfactor0 + +\f1\b \cf3 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 +{\field{\*\fldinst{HYPERLINK "http://www.opensource.org/licenses/MIT"}}{\fldrslt \cf3 MIT License}}\cf2 \ +\pard\pardeftab720\sl360\sa320\partightenfactor0 + +\f0\b0 \cf2 This license is used by the following third-party libraries:\ +\pard\tx220\tx720\pardeftab720\li720\fi-720\sl360\partightenfactor0 +\ls4\ilvl0\cf2 \kerning1\expnd0\expndtw0 {\listtext \uc0\u8226 }\expnd0\expndtw0\kerning0 +jQuery\ +} \ No newline at end of file diff --git a/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/apache_jna.txt b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/apache_jna.txt new file mode 100644 index 0000000000..592efd6604 --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/apache_jna.txt @@ -0,0 +1,205 @@ +Scala includes the JLine library, which includes the JNA library, +which is made available under multiple licenses, including the +Apache 2 license: + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/bsd_asm.txt b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/bsd_asm.txt new file mode 100644 index 0000000000..a3591e4b40 --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/bsd_asm.txt @@ -0,0 +1,31 @@ +Scala includes the ASM library. + +Copyright (c) 2000-2011 INRIA, France Telecom +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 the copyright holders 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. diff --git a/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/bsd_jline.txt b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/bsd_jline.txt new file mode 100644 index 0000000000..cf45a50bea --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/bsd_jline.txt @@ -0,0 +1,36 @@ +Scala includes the JLine 3 library: + +Copyright (c) 2002-2018, the original author or authors. +All rights reserved. + +https://opensource.org/licenses/BSD-3-Clause + +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 JLine 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. diff --git a/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/mit_jquery.txt b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/mit_jquery.txt new file mode 100644 index 0000000000..ea261d2cfa --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-add/doc/licenses/mit_jquery.txt @@ -0,0 +1,22 @@ +Scala includes the jQuery library: + +Copyright JS Foundation and other contributors, https://js.foundation/ + +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/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-ignore b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-ignore new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-ignore @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-keep b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-keep new file mode 100644 index 0000000000..6d5ee1d052 --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.scala-library-2.13.3/files-keep @@ -0,0 +1 @@ +NOTICE diff --git a/tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.3/copyright-add b/tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.3/copyright-add new file mode 100644 index 0000000000..86fdc160fe --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.3/copyright-add @@ -0,0 +1 @@ +See org.scala-lang.scala-library-2.13 for notices related to this module. diff --git a/tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.3/copyright-keep-context b/tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.3/copyright-keep-context new file mode 100644 index 0000000000..81428754fb --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.3/copyright-keep-context @@ -0,0 +1,2 @@ +Copyright EPFL and Lightbend, Inc. +Copyright 2005-2013 LAMP/EPFL diff --git a/tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.3/files-ignore b/tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.3/files-ignore new file mode 100644 index 0000000000..9ef2c9b4d8 --- /dev/null +++ b/tools/legal-review/launcher/org.scala-lang.scala-reflect-2.13.3/files-ignore @@ -0,0 +1,2 @@ +LICENSE +NOTICE diff --git a/tools/legal-review/launcher/org.slf4j.slf4j-api-1.7.30/copyright-keep-context b/tools/legal-review/launcher/org.slf4j.slf4j-api-1.7.30/copyright-keep-context new file mode 100644 index 0000000000..7383b9c6d6 --- /dev/null +++ b/tools/legal-review/launcher/org.slf4j.slf4j-api-1.7.30/copyright-keep-context @@ -0,0 +1 @@ +Copyright (c) 2004-2011 QOS.ch diff --git a/tools/legal-review/launcher/org.typelevel.cats-core_2.13-2.2.0-M3/custom-license b/tools/legal-review/launcher/org.typelevel.cats-core_2.13-2.2.0-M3/custom-license new file mode 100644 index 0000000000..5ecd9c64ad --- /dev/null +++ b/tools/legal-review/launcher/org.typelevel.cats-core_2.13-2.2.0-M3/custom-license @@ -0,0 +1 @@ +COPYING diff --git a/tools/legal-review/launcher/org.typelevel.cats-core_2.13-2.2.0-M3/files-keep b/tools/legal-review/launcher/org.typelevel.cats-core_2.13-2.2.0-M3/files-keep new file mode 100644 index 0000000000..d16d1ce34f --- /dev/null +++ b/tools/legal-review/launcher/org.typelevel.cats-core_2.13-2.2.0-M3/files-keep @@ -0,0 +1,2 @@ +/typelevel/cats/blob/master/COPYING +/typelevel/cats/blob/master/AUTHORS.md diff --git a/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.2.0-M3/custom-license b/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.2.0-M3/custom-license new file mode 100644 index 0000000000..5ecd9c64ad --- /dev/null +++ b/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.2.0-M3/custom-license @@ -0,0 +1 @@ +COPYING diff --git a/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.2.0-M3/files-add/AUTHORS b/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.2.0-M3/files-add/AUTHORS new file mode 100644 index 0000000000..bcce914f5a --- /dev/null +++ b/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.2.0-M3/files-add/AUTHORS @@ -0,0 +1 @@ +Please refer to the file AUTHORS.md in directory org.typelevel.cats-core_2.13-2.2 diff --git a/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.2.0-M3/files-ignore b/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.2.0-M3/files-ignore new file mode 100644 index 0000000000..4aa66a1c02 --- /dev/null +++ b/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.2.0-M3/files-ignore @@ -0,0 +1 @@ +/typelevel/cats/blob/master/AUTHORS.md diff --git a/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.2.0-M3/files-keep b/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.2.0-M3/files-keep new file mode 100644 index 0000000000..31131e3fd8 --- /dev/null +++ b/tools/legal-review/launcher/org.typelevel.cats-kernel_2.13-2.2.0-M3/files-keep @@ -0,0 +1 @@ +/typelevel/cats/blob/master/COPYING diff --git a/tools/legal-review/launcher/org.typelevel.jawn-parser_2.13-1.0.0/custom-license b/tools/legal-review/launcher/org.typelevel.jawn-parser_2.13-1.0.0/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/launcher/org.typelevel.jawn-parser_2.13-1.0.0/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/launcher/org.typelevel.jawn-parser_2.13-1.0.0/files-add/LICENSE b/tools/legal-review/launcher/org.typelevel.jawn-parser_2.13-1.0.0/files-add/LICENSE new file mode 100644 index 0000000000..d07c01e8c9 --- /dev/null +++ b/tools/legal-review/launcher/org.typelevel.jawn-parser_2.13-1.0.0/files-add/LICENSE @@ -0,0 +1,7 @@ +Copyright Erik Osheim, 2012-2020. + +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/tools/legal-review/launcher/org.yaml.snakeyaml-1.26/copyright-keep-context b/tools/legal-review/launcher/org.yaml.snakeyaml-1.26/copyright-keep-context new file mode 100644 index 0000000000..fc17ce5e0a --- /dev/null +++ b/tools/legal-review/launcher/org.yaml.snakeyaml-1.26/copyright-keep-context @@ -0,0 +1,3 @@ +Copyright (c) 2008 Google Inc. +Copyright (c) 2008, http://www.snakeyaml.org +Copyright 2003-2010 Christian d'Heureuse, Inventec Informatik AG, Zurich, Switzerland diff --git a/tools/legal-review/launcher/report-state b/tools/legal-review/launcher/report-state new file mode 100644 index 0000000000..74e5562040 --- /dev/null +++ b/tools/legal-review/launcher/report-state @@ -0,0 +1,3 @@ +34EAA0239F225BF0D3DC046BA7AA6D0199B2E3C8A58540EB52216F19631621E4 +446F93AAE5C0E642B50E9E61BC9F8D56FC392EF67A460F25F3C910428095FA1C +0 diff --git a/tools/legal-review/launcher/reviewed-licenses/Apache-2.0 b/tools/legal-review/launcher/reviewed-licenses/Apache-2.0 new file mode 100644 index 0000000000..ff46ef6ff4 --- /dev/null +++ b/tools/legal-review/launcher/reviewed-licenses/Apache-2.0 @@ -0,0 +1 @@ +tools/legal-review/license-texts/APACHE2.0 diff --git a/tools/legal-review/launcher/reviewed-licenses/Apache_2 b/tools/legal-review/launcher/reviewed-licenses/Apache_2 new file mode 100644 index 0000000000..ff46ef6ff4 --- /dev/null +++ b/tools/legal-review/launcher/reviewed-licenses/Apache_2 @@ -0,0 +1 @@ +tools/legal-review/license-texts/APACHE2.0 diff --git a/tools/legal-review/launcher/reviewed-licenses/Apache_2.0 b/tools/legal-review/launcher/reviewed-licenses/Apache_2.0 new file mode 100644 index 0000000000..ff46ef6ff4 --- /dev/null +++ b/tools/legal-review/launcher/reviewed-licenses/Apache_2.0 @@ -0,0 +1 @@ +tools/legal-review/license-texts/APACHE2.0 diff --git a/tools/legal-review/launcher/reviewed-licenses/Apache_2.0_License b/tools/legal-review/launcher/reviewed-licenses/Apache_2.0_License new file mode 100644 index 0000000000..ff46ef6ff4 --- /dev/null +++ b/tools/legal-review/launcher/reviewed-licenses/Apache_2.0_License @@ -0,0 +1 @@ +tools/legal-review/license-texts/APACHE2.0 diff --git a/tools/legal-review/launcher/reviewed-licenses/Apache_License__Version_2.0 b/tools/legal-review/launcher/reviewed-licenses/Apache_License__Version_2.0 new file mode 100644 index 0000000000..ff46ef6ff4 --- /dev/null +++ b/tools/legal-review/launcher/reviewed-licenses/Apache_License__Version_2.0 @@ -0,0 +1 @@ +tools/legal-review/license-texts/APACHE2.0 diff --git a/tools/legal-review/launcher/reviewed-licenses/CC0 b/tools/legal-review/launcher/reviewed-licenses/CC0 new file mode 100644 index 0000000000..a3b512f30c --- /dev/null +++ b/tools/legal-review/launcher/reviewed-licenses/CC0 @@ -0,0 +1 @@ +tools/legal-review/license-texts/CC0 diff --git a/tools/legal-review/launcher/reviewed-licenses/MIT_License b/tools/legal-review/launcher/reviewed-licenses/MIT_License new file mode 100644 index 0000000000..3889131c8a --- /dev/null +++ b/tools/legal-review/launcher/reviewed-licenses/MIT_License @@ -0,0 +1 @@ +tools/legal-review/license-texts/MIT diff --git a/tools/legal-review/license-texts/Bouncy_Castle_Licence.txt b/tools/legal-review/license-texts/Bouncy_Castle_Licence.txt new file mode 100644 index 0000000000..060c529ea0 --- /dev/null +++ b/tools/legal-review/license-texts/Bouncy_Castle_Licence.txt @@ -0,0 +1,7 @@ +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/tools/legal-review/license-texts/CC0 b/tools/legal-review/license-texts/CC0 new file mode 100644 index 0000000000..0e259d42c9 --- /dev/null +++ b/tools/legal-review/license-texts/CC0 @@ -0,0 +1,121 @@ +Creative Commons Legal Code + +CC0 1.0 Universal + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS + PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM + THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED + HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer +exclusive Copyright and Related Rights (defined below) upon the creator +and subsequent owner(s) (each and all, an "owner") of an original work of +authorship and/or a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for +the purpose of contributing to a commons of creative, cultural and +scientific works ("Commons") that the public can reliably and without fear +of later claims of infringement build upon, modify, incorporate in other +works, reuse and redistribute as freely as possible in any form whatsoever +and for any purposes, including without limitation commercial purposes. +These owners may contribute to the Commons to promote the ideal of a free +culture and the further production of creative, cultural and scientific +works, or to gain reputation or greater distribution for their Work in +part through the use and efforts of others. + +For these and/or other purposes and motivations, and without any +expectation of additional consideration or compensation, the person +associating CC0 with a Work (the "Affirmer"), to the extent that he or she +is an owner of Copyright and Related Rights in the Work, voluntarily +elects to apply CC0 to the Work and publicly distribute the Work under its +terms, with knowledge of his or her Copyright and Related Rights in the +Work and the meaning and intended legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be +protected by copyright and related or neighboring rights ("Copyright and +Related Rights"). Copyright and Related Rights include, but are not +limited to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, + communicate, and translate a Work; + ii. moral rights retained by the original author(s) and/or performer(s); +iii. publicity and privacy rights pertaining to a person's image or + likeness depicted in a Work; + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + v. rights protecting the extraction, dissemination, use and reuse of data + in a Work; + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation + thereof, including any amended or successor version of such + directive); and +vii. other similar, equivalent or corresponding rights throughout the + world based on applicable law or treaty, and any national + implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention +of, applicable law, Affirmer hereby overtly, fully, permanently, +irrevocably and unconditionally waives, abandons, and surrenders all of +Affirmer's Copyright and Related Rights and associated claims and causes +of action, whether now known or unknown (including existing as well as +future claims and causes of action), in the Work (i) in all territories +worldwide, (ii) for the maximum duration provided by applicable law or +treaty (including future time extensions), (iii) in any current or future +medium and for any number of copies, and (iv) for any purpose whatsoever, +including without limitation commercial, advertising or promotional +purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each +member of the public at large and to the detriment of Affirmer's heirs and +successors, fully intending that such Waiver shall not be subject to +revocation, rescission, cancellation, termination, or any other legal or +equitable action to disrupt the quiet enjoyment of the Work by the public +as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason +be judged legally invalid or ineffective under applicable law, then the +Waiver shall be preserved to the maximum extent permitted taking into +account Affirmer's express Statement of Purpose. In addition, to the +extent the Waiver is so judged Affirmer hereby grants to each affected +person a royalty-free, non transferable, non sublicensable, non exclusive, +irrevocable and unconditional license to exercise Affirmer's Copyright and +Related Rights in the Work (i) in all territories worldwide, (ii) for the +maximum duration provided by applicable law or treaty (including future +time extensions), (iii) in any current or future medium and for any number +of copies, and (iv) for any purpose whatsoever, including without +limitation commercial, advertising or promotional purposes (the +"License"). The License shall be deemed effective as of the date CC0 was +applied by Affirmer to the Work. Should any part of the License for any +reason be judged legally invalid or ineffective under applicable law, such +partial invalidity or ineffectiveness shall not invalidate the remainder +of the License, and in such case Affirmer hereby affirms that he or she +will not (i) exercise any of his or her remaining Copyright and Related +Rights in the Work or (ii) assert any associated claims and causes of +action with respect to the Work, in either case contrary to Affirmer's +express Statement of Purpose. + +4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + b. Affirmer offers the Work as-is and makes no representations or + warranties of any kind concerning the Work, express, implied, + statutory or otherwise, including without limitation warranties of + title, merchantability, fitness for a particular purpose, non + infringement, or the absence of latent or other defects, accuracy, or + the present or absence of errors, whether or not discoverable, all to + the greatest extent permissible under applicable law. + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without + limitation any person's Copyright and Related Rights in the Work. + Further, Affirmer disclaims responsibility for obtaining any necessary + consents, permissions or other rights required for any use of the + Work. + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to + this CC0 or use of the Work. diff --git a/tools/legal-review/license-texts/MIT b/tools/legal-review/license-texts/MIT new file mode 100644 index 0000000000..fe45399e37 --- /dev/null +++ b/tools/legal-review/license-texts/MIT @@ -0,0 +1,6 @@ +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/tools/legal-review/license-texts/Mozilla Public License, version 2.0.html b/tools/legal-review/license-texts/Mozilla Public License, version 2.0.html new file mode 100644 index 0000000000..46d9b14482 --- /dev/null +++ b/tools/legal-review/license-texts/Mozilla Public License, version 2.0.html @@ -0,0 +1,144 @@ + + + + + + Mozilla Public License, version 2.0 + + + + + + + +

Mozilla Public License
Version 2.0

+

1. Definitions

+
+
1.1. “Contributor”
+

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

+
+
1.2. “Contributor Version”
+

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

+
+
1.3. “Contribution”
+

means Covered Software of a particular Contributor.

+
+
1.4. “Covered Software”
+

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

+
+
1.5. “Incompatible With Secondary Licenses”
+

means

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

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

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

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

+
+
1.7. “Larger Work”
+

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

+
+
1.8. “License”
+

means this document.

+
+
1.9. “Licensable”
+

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

+
+
1.10. “Modifications”
+

means any of the following:

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

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

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

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

+
+
1.12. “Secondary License”
+

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

+
+
1.13. “Source Code Form”
+

means the form of the work preferred for making modifications.

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

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

+
+
+

2. License Grants and Conditions

+

2.1. Grants

+

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

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

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

  4. +
+

2.2. Effective Date

+

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

+

2.3. Limitations on Grant Scope

+

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

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

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

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

  6. +
+

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

+

2.4. Subsequent Licenses

+

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

+

2.5. Representation

+

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

+

2.6. Fair Use

+

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

+

2.7. Conditions

+

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

+

3. Responsibilities

+

3.1. Distribution of Source Form

+

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

+

3.2. Distribution of Executable Form

+

If You distribute Covered Software in Executable Form then:

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

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

  4. +
+

3.3. Distribution of a Larger Work

+

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

+

3.4. Notices

+

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

+

3.5. Application of Additional Terms

+

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

+

4. Inability to Comply Due to Statute or Regulation

+

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

+

5. Termination

+

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

+

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

+

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

+

6. Disclaimer of Warranty

+

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

+

7. Limitation of Liability

+

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

+

8. Litigation

+

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

+

9. Miscellaneous

+

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

+

10. Versions of the License

+

10.1. New Versions

+

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

+

10.2. Effect of New Versions

+

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

+

10.3. Modified Versions

+

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

+

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

+

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

+

Exhibit A - Source Code Form License Notice

+
+

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

+
+

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

+

You may add additional accurate notices of copyright ownership.

+

Exhibit B - “Incompatible With Secondary Licenses” Notice

+
+

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

+
+ + \ No newline at end of file diff --git a/tools/legal-review/license-texts/Mozilla Public License, version 2.0_files/mpl-2-0.e529fc4408b6.css b/tools/legal-review/license-texts/Mozilla Public License, version 2.0_files/mpl-2-0.e529fc4408b6.css new file mode 100644 index 0000000000..07290d9c48 --- /dev/null +++ b/tools/legal-review/license-texts/Mozilla Public License, version 2.0_files/mpl-2-0.e529fc4408b6.css @@ -0,0 +1 @@ +body{font-family:serif;-moz-hyphens:auto;font-size:110%;margin-left:auto;margin-right:auto;max-width:30em;text-align:justify}h1,h2,h3{font-variant:small-caps}h1{-moz-hyphens:none;font-size:160%;text-align:center}h2{-moz-hyphens:none;font-size:140%;text-align:left}h3{-moz-hyphens:none;font-size:120%;text-align:left}blockquote{-moz-hyphens:none;text-align:left}code{font-family:mono}em{background:#fefd80;border:30px solid #fefd80;float:left;font-style:normal;line-height:1.25em;margin-bottom:10px;margin-left:10px;margin-right:10px;margin-top:-10px}dt{font-size:100%;font-weight:700} \ No newline at end of file diff --git a/tools/legal-review/std-lib-Base/com.ibm.icu.icu4j-67.1/copyright-ignore b/tools/legal-review/std-lib-Base/com.ibm.icu.icu4j-67.1/copyright-ignore new file mode 100644 index 0000000000..5d25b818c9 --- /dev/null +++ b/tools/legal-review/std-lib-Base/com.ibm.icu.icu4j-67.1/copyright-ignore @@ -0,0 +1,207 @@ +2000.01.01 1.06 copyright update */ +Does not write a copyright string. +copyright=" Copyright (c) IBM Corporation 1996, 2000. All rights reserved. "; +2000.01.01 copyright update [Y2K has arrived] */ +Copyright (C) 2009-2010, International Business Machines Corporation and * +Copyright (C) 2001-2016, International Business Machines Corporation and +Copyright (C) 1996-2015, International Business Machines Corporation and * +Copyright (C) 2009-2016, International Business Machines Corporation and +Copyright (C) 1996-2016, International Business Machines Corporation and * +Copyright (C) 2009-2015, Google, International Business Machines Corporation +Copyright (C) 2007-2014, International Business Machines Corporation and * +Copyright (C) 2007-2015, Google Inc, International Business Machines Corporation +Copyright (c) 2002-2014, International Business Machines Corporation +Copyright (C) 2001-2012, International Business Machines +Copyright (C) 2000-2014, International Business Machines +Copyright (C) 1996-2012, International Business Machines Corporation and * +Copyright (C) 2009-2012, International Business Machines Corporation and * +Copyright (C) 2004-2009, International Business Machines Corporation and * +Copyright (C) 2009-2014, International Business Machines Corporation and +Copyright (c) 2007-2009 International Business Machines Corporation and * +Copyright (C) 2011-2016, International Business Machines Corporation +Copyright (C) 2005-2010, International Business Machines +Copyright (C) 1996-2015, Google, Inc., International Business Machines Corporation and +Copyright (C) 2012-2016, International Business Machines Corporation and +Copyright (C) 1996-2009, Google, International Business Machines Corporation and * +Copyright (C) 2002-2009 International Business Machines Corporation * +Copyright (C) 2001-2016, International Business Machines Corporation and * +Copyright (C) 2009-2016, Google, Inc.; International Business Machines Corporation +Copyright (C) 2001-2010, International Business Machines +Copyright (C) 2010, International Business Machines Corporation and * +Copyright (C) 2009-2011, Google, International Business Machines Corporation +Copyright (C) 2008-2009, International Business Machines +Copyright (C) 2009-2011, International Business Machines Corporation and * +Copyright (C) 2006-2015, International Business Machines Corporation and +Copyright (C) 2012, International Business Machines Corporation and * +Copyright (C) 2015, International Business Machines Corporation and +Copyright (C) 2009 , Yahoo! Inc. * +Copyright (C) 2014, International Business Machines Corporation and * +Copyright (C) 2007-2015, International Business Machines Corporation and * +Copyright (C) 2008-2016, Google Inc, International Business Machines Corporation +Copyright (C) 2012-2014, International Business Machines Corporation and * +Copyright (C) 2016, International Business Machines Corporation and * +Copyright (C) 2007-2016, International Business Machines Corporation and +Copyright (C) 1996-2005, International Business Machines Corporation and * +Copyright (c) 2013-2014, International Business Machines +Copyright (C) 2007, International Business Machines Corporation and * +Copyright (C) 2000-2016, International Business Machines Corporation and +Copyright (C) 2008-2015, International Business Machines Corporation and +Copyright (C) 1996-2007, International Business Machines Corporation and * +Copyright (C) 2007-2013, International Business Machines Corporation and * +Copyright (C) 2005-2016 International Business Machines Corporation and +Copyright (C) 2008-2015, Google, International Business Machines Corporation and +Copyright (C) 2012-2016, International Business Machines Corporation and * +Copyright (C) 2000-2009, International Business Machines Corporation and * +Copyright (C) 1996-2011, International Business Machines Corporation and * +Copyright (C) 2008-2016, International Business Machines +Copyright (C) 2006-2009, Google, International Business Machines Corporation * +Copyright (C) 2007-2014, International Business Machines Corporation and * +Copyright (C) 2009, International Business Machines Corporation and * +Copyright (C) 2005-2015, International Business Machines Corporation and +Copyright (C) 2006-2016, Google, International Business Machines Corporation +Copyright (C) 1996-2007, International Business Machines Corporation and * +Copyright (C) 1996-2013, International Business Machines Corporation and +Copyright (c) 2003-2016, International Business Machines +Copyright (C) 2011-2016, International Business Machines Corporation and * +Copyright (C) 2004-2010, International Business Machines Corporation and * +Copyright (C) 2016, International Business Machines Corporation and +Copyright (C) 2007-2010, International Business Machines Corporation and * +Copyright (c) 2003-2010, International Business Machines +Copyright (C) 2001-2013, International Business Machines Corporation and * +Copyright (C) 2011, International Business Machines Corporation and * +Copyright (C) 2001-2016, International Business Machines +Copyright (C) 2005-2006, International Business Machines +Copyright (C) 2005-2012, International Business Machines Corporation and * +Copyright (C) 2003-2016, Google, International Business Machines Corporation +Copyright (C) 2001-2016 International Business Machines Corporation and +Copyright (C) 2005-2011, International Business Machines Corporation and * +Copyright (C) 2004-2016, Google Inc, International Business Machines +Copyright (C) 2008-2014, International Business Machines Corporation and * +Copyright (c) 2001-2016, International Business Machines Corporation and +Copyright (C) 2015-2016, International Business Machines Corporation and +Copyright (C) 2010-2013, International Business Machines Corporation and * +Copyright (C) 1996-2009, International Business Machines Corporation and * +Copyright (C) 2014-2016, International Business Machines Corporation and +Copyright (C) 2003-2011, International Business Machines Corporation and * +Copyright (C) 2012-2016, Google, International Business Machines Corporation and +Copyright (C) 1996-2013, International Business Machines Corporation and * +Copyright (C) 2008-2014, Google, International Business Machines +Copyright (C) 2007-2011, International Business Machines Corporation and others. +Copyright (C) 2005-2012, International Business Machines Corporation and * +Copyright (C) 2009-2015, International Business Machines Corporation and +Copyright (C) 2013-2016, International Business Machines Corporation and +Copyright (C) 2009-2015, International Business Machines Corporation and * +Copyright (C) 2003-2016, International Business Machines Corporation and others. All Rights Reserved. +Copyright (C) 2007-2016, International Business Machines +Copyright (c) 2001-2016, International Business Machines +Copyright (C) 2001-2008, International Business Machines +Copyright (C) 2009, Google, International Business Machines Corporation and * +Copyright (C) 1996-2016, Google, International Business Machines Corporation and +Copyright (c) 2002-2016, International Business Machines +Copyright (C) 2010-2016, Google, Inc.; International Business Machines * +Copyright (c) 2003-2016 International Business Machines +Copyright (C) 2008-2016 International Business Machines Corporation +Copyright (C) 1996-2015, International Business Machines +Copyright (C) 2004-2010, International Business Machines +Copyright (c) 2004-2014, International Business Machines +Copyright (C) 2011, International Business Machines +Copyright (C) 2012-2016, International Business Machines +Copyright (c) 2002-2011, International Business Machines Corporation +Copyright IBM Corporation, 1996-2016. All Rights Reserved. */ +Copyright (c) 2002-2014, Google, International Business Machines +Copyright (c) 2003-2011, International Business Machines +Copyright (C) 1999-2015, International Business Machines +Copyright (c) 2004-2013, International Business Machines +Copyright (c) 2002-2010, International Business Machines Corporation +Copyright (C) 2007-2016, International Business Machines Corporation and * +Copyright (C) 2002-2016, International Business Machines Corporation and +Copyright (C) 2009-2014, International Business Machines +Copyright (C) 2008-2009, Google, International Business Machines +Copyright (C) 2001-2010, International Business Machines Corporation and * +Copyright IBM Corporation, 1997, 2000, 2005, 2007. All Rights Reserved. */ +Copyright (C) 2001-2015, International Business Machines Corporation and +Copyright (C) 2005 - 2012, International Business Machines Corporation and * +Copyright (C) 2009-2016, International Business Machines Corporation and * +Copyright (C) 2010, International Business Machines +Copyright (C) 2002-2010, International Business Machines Corporation and * +Copyright (C) 2013-2014, International Business Machines Corporation and * +Copyright (C) 2009-2013, International Business Machines Corporation and * +Copyright (C) 2009,2016 International Business Machines Corporation and +Copyright (C) 1996-2014, International Business Machines Corporation and * +Copyright (c) 2002-2007, International Business Machines Corporation +Copyright (C) 2011-2016, International Business Machines Corporation and +Copyright (C) 2013-2015, International Business Machines Corporation and +Copyright (C) 1996-2010, International Business Machines Corporation and +Copyright (C) 2007-2008, International Business Machines Corporation and * +Copyright (C) 2009, International Business Machines Corporation and * +Copyright (C) 2012-2015, International Business Machines Corporation and * +Copyright (C) 2001-2004, International Business Machines Corporation and * +Copyright (C) 2005-2013, International Business Machines Corporation and * +Copyright (C) 2005 - 2014, International Business Machines Corporation and * +Copyright (C) 2002-2010, International Business Machines +Copyright (C) 2001-2009, International Business Machines Corporation and * +Copyright (C) 2014-2015, International Business Machines Corporation and +Copyright (C) 2009-2010, Google, International Business Machines Corporation * +Copyright (C) 2002-2014, International Business Machines Corporation and others. +Copyright (C) 2004-2006, International Business Machines Corporation and * +Copyright (C) 2013, Google Inc, International Business Machines Corporation and * +Copyright (c) 2002, International Business Machines Corporation +Copyright (C) 1999-2014, International Business Machines +Copyright (C) 2010-2011, Google, International Business Machines * +Copyright (c) 2007-2015 International Business Machines Corporation and * +Copyright (C) 2010-2014, Google, International Business Machines Corporation * +Copyright (C) 2003-2010, International Business Machines +Copyright (c) 2002-2010, International Business Machines +Copyright (c) 2004-2015, International Business Machines +Copyright (C) 2007-2011, International Business Machines Corporation and * +Copyright (C) 2008-2016, International Business Machines Corporation and +Copyright (C) 2004-2009, International Business Machines Corporation and * +Copyright (C) 1996-2010, International Business Machines Corporation and * +Copyright (C) 2009-2016, International Business Machines Corporation, +Copyright (C) 2003-2014, International Business Machines Corporation and * +Copyright (C) 2013, International Business Machines Corporation and * +Copyright (C) 2003-2016, International Business Machines Corporation and * +Copyright (c) 2004-2010, International Business Machines +Copyright (C) 2007-2012, International Business Machines Corporation and * +Copyright (C) 1996-2016, International Business Machines Corporation and * +Copyright (C) 1996-2011, International Business Machines Corporation and +Copyright (C) 1996-2004, International Business Machines Corporation and * +License & terms of use: http://www.unicode.org/copyright.html#License +Copyright (C) 1996-2015, International Business Machines Corporation and +Copyright (C) 1996-2016, International Business Machines +Copyright (C) 2000-2014, International Business Machines Corporation and +Copyright (C) 1996-2016, International Business Machines Corporation and +Copyright (C) 2007-2010, International Business Machines Corporation and * +Copyright (C) 2012-2014, International Business Machines +Copyright (C) 2003-2011, International Business Machines Corporation and * +Copyright (c) 2001-2011, International Business Machines +Copyright (C) 2009-2015, International Business Machines +Copyright (C) 2012-2015, International Business Machines +Copyright (C) 2010-2016, International Business Machines +Copyright (C) 2003-2016, International Business Machines Corporation and +Copyright (C) 2004-2014, International Business Machines Corporation and +Copyright (C) 2013-2015, International Business Machines +Copyright (C) 2004-2015, International Business Machines +Copyright (c) 2002-2015, International Business Machines +Copyright (C) 2014, International Business Machines Corporation and +Copyright (C) 2013-2014, International Business Machines +Copyright (C) 1996-2014, International Business Machines Corporation and +Copyright (C) 2010-2015, International Business Machines +Copyright (C) 2011-2014, International Business Machines +Copyright (C) 2003-2015, International Business Machines Corporation and +Copyright (C) 2003-2014, International Business Machines Corporation and +Copyright (C) 2005-2016, International Business Machines Corporation and +Copyright (C) 2010-2014, International Business Machines +Copyright (C) 2009-2016, International Business Machines +Copyright (C) 2007-2015, International Business Machines Corporation and +Copyright (c) 2004-2016, International Business Machines +Copyright (C) 2004-2016, International Business Machines Corporation and +Copyright (C) 2001-2014, International Business Machines +

Copyright © IBM Corporation 1999. All rights reserved. +Copyright (C) 1996-2010, International Business Machines Corporation and * +Copyright (C) 1996-2011, International Business Machines Corporation and * +Copyright (C) 2001-2011, International Business Machines Corporation and * +Copyright (C) 2004-2016, International Business Machines Corporation and * +Copyright (C) 2005-2016, International Business Machines Corporation and * +Copyright (C) 2007-2009, International Business Machines Corporation and * +Copyright (C) 2009-2014, International Business Machines Corporation and * diff --git a/tools/legal-review/std-lib-Base/com.ibm.icu.icu4j-67.1/custom-license b/tools/legal-review/std-lib-Base/com.ibm.icu.icu4j-67.1/custom-license new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/std-lib-Base/com.ibm.icu.icu4j-67.1/custom-license @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/std-lib-Base/com.ibm.icu.icu4j-67.1/files-keep b/tools/legal-review/std-lib-Base/com.ibm.icu.icu4j-67.1/files-keep new file mode 100644 index 0000000000..6b1d0bfabc --- /dev/null +++ b/tools/legal-review/std-lib-Base/com.ibm.icu.icu4j-67.1/files-keep @@ -0,0 +1 @@ +LICENSE diff --git a/tools/legal-review/std-lib-Base/report-state b/tools/legal-review/std-lib-Base/report-state new file mode 100644 index 0000000000..d309c39cfe --- /dev/null +++ b/tools/legal-review/std-lib-Base/report-state @@ -0,0 +1,3 @@ +ABEF9EABB0C4C77A2251FF991A357B643FB3B1854DD262989A7587D166C14825 +615A176479B614CDB317B688F0713E000977B4729DFB0E0BC6DB116367559748 +0