diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 964fba38c..11b004333 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -25,12 +25,16 @@ updates: prod-deps: dependency-type: "production" ignore: - - dependency-name: "com.google.protobuf:protobuf-java" - versions: [ ">=4.0.0" ] # 4.x has breaking lite-runtime semantics; KSML on 3.25.9 - - dependency-name: "com.github.victools:*" - versions: [ ">=5.0.0" ] # 5.0 requires Jackson 3 + Java 17 - - dependency-name: "com.squareup.wire:*" - versions: [ ">=5.3.0" ] # 5.3 changed ProtoFileElement constructor (added a param) + # GraalPy 25.1 and 25.2 cannot load Python C extension modules such as + # _ctypes, which PythonContextTest.testNativeAccess catches (see #688). + # Fixed upstream by https://github.com/oracle/graalpython/pull/1018, but + # we do not know if that reached 25.2.5, so the range stops there and + # Dependabot may offer it once it exists. These jars are only half of + # GraalVM: going past 25.0.x also needs GRAALVM_JDK_VERSION bumped in the + # workflows, or polyglot's version check quietly drops Python to the + # slow interpreter. + - dependency-name: "org.graalvm.*:*" + versions: [ ">=25.1.0, <25.2.5" ] - package-ecosystem: "pip" directory: "/" schedule: diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index ef62d1c8a..93b221f67 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -37,11 +37,7 @@ jobs: path: build-output/ - name: Prepare JVM Tars - env: - GRAALVM_JDK_VERSION: 25.0.2 - run: | - wget https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-${GRAALVM_JDK_VERSION}/graalvm-community-jdk-${GRAALVM_JDK_VERSION}_linux-x64_bin.tar.gz -O graalvm-amd64.tar.gz - wget https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-${GRAALVM_JDK_VERSION}/graalvm-community-jdk-${GRAALVM_JDK_VERSION}_linux-aarch64_bin.tar.gz -O graalvm-arm64.tar.gz + run: scripts/graalvm-tarballs.sh download - name: Set up QEMU uses: docker/setup-qemu-action@v4 diff --git a/.github/workflows/build-push-docker.yml b/.github/workflows/build-push-docker.yml index faab9545d..7ed266f58 100644 --- a/.github/workflows/build-push-docker.yml +++ b/.github/workflows/build-push-docker.yml @@ -29,11 +29,7 @@ jobs: path: build-output/ - name: Prepare JVM Tars - env: - GRAALVM_JDK_VERSION: 25.0.2 - run: | - wget https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-${GRAALVM_JDK_VERSION}/graalvm-community-jdk-${GRAALVM_JDK_VERSION}_linux-x64_bin.tar.gz -O graalvm-amd64.tar.gz - wget https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-${GRAALVM_JDK_VERSION}/graalvm-community-jdk-${GRAALVM_JDK_VERSION}_linux-aarch64_bin.tar.gz -O graalvm-arm64.tar.gz + run: scripts/graalvm-tarballs.sh download - name: Set up QEMU uses: docker/setup-qemu-action@v4 diff --git a/.github/workflows/ci-pr-fork-build.yml b/.github/workflows/ci-pr-fork-build.yml index b8aa3e7b3..ceedeebe5 100644 --- a/.github/workflows/ci-pr-fork-build.yml +++ b/.github/workflows/ci-pr-fork-build.yml @@ -17,11 +17,23 @@ jobs: steps: - uses: actions/checkout@v7 + # Fork PRs skip build-and-test.yml, whose docker-build-test job is the only + # place on that path that fetches these tarballs. Runs before the build so a + # bad version fails in seconds instead of after the merge. + - name: Check GraalVM JDK tarballs exist + run: scripts/graalvm-tarballs.sh check + + # Same JVM the Docker image ships, from the same single source. Note "graalvm" + # would be Oracle GraalVM, a different product under a different licence. + - name: Read GraalVM version + id: graalvm + run: echo "version=$(cat .graalvm-jdk-version)" >> "$GITHUB_OUTPUT" + - name: Set up GraalVM uses: actions/setup-java@v5 with: - distribution: graalvm - java-version: '25' + distribution: graalvm-community + java-version: ${{ steps.graalvm.outputs.version }} cache: maven - name: Build and test diff --git a/.github/workflows/maven-build.yml b/.github/workflows/maven-build.yml index 276d830b4..f7c6d1b88 100644 --- a/.github/workflows/maven-build.yml +++ b/.github/workflows/maven-build.yml @@ -25,11 +25,18 @@ jobs: with: fetch-depth: 0 # Fetch full history for SonarCloud analysis, because SonarCloud needs full git history to properly analyze changes. + # Build and test on the same JVM the Docker image ships, read from the same + # single source, so the two cannot drift apart. Note "graalvm" would be Oracle + # GraalVM, a different product under a different licence. + - name: Read GraalVM version + id: graalvm + run: echo "version=$(cat .graalvm-jdk-version)" >> "$GITHUB_OUTPUT" + - name: Set up GraalVM uses: actions/setup-java@v5 with: - distribution: 'graalvm' - java-version: '25' + distribution: 'graalvm-community' + java-version: ${{ steps.graalvm.outputs.version }} cache: 'maven' - name: Log in to Docker Hub diff --git a/.github/workflows/release-push-docker.yml b/.github/workflows/release-push-docker.yml index 3fa133452..cac918505 100644 --- a/.github/workflows/release-push-docker.yml +++ b/.github/workflows/release-push-docker.yml @@ -36,11 +36,7 @@ jobs: path: build-output/ - name: Prepare JVM Tars - env: - GRAALVM_JDK_VERSION: 25.0.2 - run: | - wget https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-${GRAALVM_JDK_VERSION}/graalvm-community-jdk-${GRAALVM_JDK_VERSION}_linux-x64_bin.tar.gz -O graalvm-amd64.tar.gz - wget https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-${GRAALVM_JDK_VERSION}/graalvm-community-jdk-${GRAALVM_JDK_VERSION}_linux-aarch64_bin.tar.gz -O graalvm-arm64.tar.gz + run: scripts/graalvm-tarballs.sh download - name: Set up QEMU uses: docker/setup-qemu-action@v4 diff --git a/.graalvm-jdk-version b/.graalvm-jdk-version new file mode 100644 index 000000000..6584dd0ca --- /dev/null +++ b/.graalvm-jdk-version @@ -0,0 +1 @@ +25.0.2 diff --git a/build-local-docker.sh b/build-local-docker.sh index cc5b13e3b..90f4db8c7 100755 --- a/build-local-docker.sh +++ b/build-local-docker.sh @@ -22,17 +22,9 @@ cp -r ksml-runner/target/libs build-output/ cp ksml-test-runner/target/libs/*.jar build-output/libs/ cp ksml-runner/NOTICE.txt build-output/ cp LICENSE.txt build-output/ -GRAALVM_JDK_VERSION=${GRAALVM_JDK_VERSION:-25.0.2} - -# Download graalvm tarfiles -if [ ! -f graalvm-amd64.tar.gz ]; then - echo "Downloading GraalVM for AMD64" - wget https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-${GRAALVM_JDK_VERSION}/graalvm-community-jdk-${GRAALVM_JDK_VERSION}_linux-x64_bin.tar.gz -O graalvm-amd64.tar.gz -fi -if [ ! -f graalvm-arm64.tar.gz ]; then - echo "Downloading GraalVM for ARM64" - wget https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-${GRAALVM_JDK_VERSION}/graalvm-community-jdk-${GRAALVM_JDK_VERSION}_linux-aarch64_bin.tar.gz -O graalvm-arm64.tar.gz -fi +# Download graalvm tarfiles. Version comes from .graalvm-jdk-version; override it with +# GRAALVM_JDK_VERSION=... to try another one. +scripts/graalvm-tarballs.sh download # Create builder if it doesn't exist if ! docker buildx ls --format {{.Name}} | grep -E "^ksml$"; then diff --git a/ksml-data-apicurio/NOTICE.txt b/ksml-data-apicurio/NOTICE.txt index 5e83331cd..6946a86e4 100644 --- a/ksml-data-apicurio/NOTICE.txt +++ b/ksml-data-apicurio/NOTICE.txt @@ -3,8 +3,8 @@ Lists of 64 third-party dependencies. (Apache License, Version 2.0) LZ4 Java Compression (at.yawk.lz4:lz4-java:1.10.2 - https://github.com/yawkat/lz4-java) (Apache License, Version 2.0) com.dashjoin:jsonata (com.dashjoin:jsonata:0.9.10 - https://github.com/dashjoin/jsonata-java) (The Apache Software License, Version 2.0) Jackson-annotations (com.fasterxml.jackson.core:jackson-annotations:2.22 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.0 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.1 - https://github.com/FasterXML/jackson) (BSD 2-Clause License) zstd-jni (com.github.luben:zstd-jni:1.5.6-10 - https://github.com/luben/zstd-jni) (The Apache Software License, Version 2.0) FindBugs-jsr305 (com.google.code.findbugs:jsr305:3.0.2 - http://findbugs.sourceforge.net/) (Apache 2.0) error-prone annotations (com.google.errorprone:error_prone_annotations:2.47.0 - https://errorprone.info/error_prone_annotations) @@ -61,6 +61,6 @@ Lists of 64 third-party dependencies. (MIT License) SLF4J API Module (org.slf4j:slf4j-api:2.1.0-alpha1 - http://www.slf4j.org) (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) diff --git a/ksml-data-avro-apicurio/NOTICE.txt b/ksml-data-avro-apicurio/NOTICE.txt index 38802edc0..549a0c15b 100644 --- a/ksml-data-avro-apicurio/NOTICE.txt +++ b/ksml-data-avro-apicurio/NOTICE.txt @@ -3,8 +3,8 @@ Lists of 79 third-party dependencies. (Apache License, Version 2.0) LZ4 Java Compression (at.yawk.lz4:lz4-java:1.10.2 - https://github.com/yawkat/lz4-java) (Apache License, Version 2.0) com.dashjoin:jsonata (com.dashjoin:jsonata:0.9.10 - https://github.com/dashjoin/jsonata-java) (The Apache Software License, Version 2.0) Jackson-annotations (com.fasterxml.jackson.core:jackson-annotations:2.22 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.0 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.1 - https://github.com/FasterXML/jackson) (BSD 2-Clause License) zstd-jni (com.github.luben:zstd-jni:1.5.6-10 - https://github.com/luben/zstd-jni) (The Apache Software License, Version 2.0) FindBugs-jsr305 (com.google.code.findbugs:jsr305:3.0.2 - http://findbugs.sourceforge.net/) (Apache 2.0) error-prone annotations (com.google.errorprone:error_prone_annotations:2.47.0 - https://errorprone.info/error_prone_annotations) @@ -76,6 +76,6 @@ Lists of 79 third-party dependencies. (MIT License) SLF4J API Module (org.slf4j:slf4j-api:2.1.0-alpha1 - http://www.slf4j.org) (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) diff --git a/ksml-data-avro-confluent/NOTICE.txt b/ksml-data-avro-confluent/NOTICE.txt index 3d6bcb17c..37c3ab965 100644 --- a/ksml-data-avro-confluent/NOTICE.txt +++ b/ksml-data-avro-confluent/NOTICE.txt @@ -3,10 +3,10 @@ Lists of 48 third-party dependencies. (Apache License, Version 2.0) LZ4 Java Compression (at.yawk.lz4:lz4-java:1.10.2 - https://github.com/yawkat/lz4-java) (MIT License) minimal-json (com.eclipsesource.minimal-json:minimal-json:0.9.5 - https://github.com/ralfstx/minimal-json) (The Apache Software License, Version 2.0) Jackson-annotations (com.fasterxml.jackson.core:jackson-annotations:2.22 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.22.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson datatype: jdk8 (com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) + (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.22.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson datatype: jdk8 (com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) (BSD 2-Clause License) zstd-jni (com.github.luben:zstd-jni:1.5.6-10 - https://github.com/luben/zstd-jni) (The Apache Software License, Version 2.0) FindBugs-jsr305 (com.google.code.findbugs:jsr305:3.0.2 - http://findbugs.sourceforge.net/) (Apache 2.0) error-prone annotations (com.google.errorprone:error_prone_annotations:2.47.0 - https://errorprone.info/error_prone_annotations) @@ -20,12 +20,12 @@ Lists of 48 third-party dependencies. (Apache 2.0) KSML Data Library (io.axual.ksml:ksml-data:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-data) (Apache 2.0) KSML Data Library - AVRO (io.axual.ksml:ksml-data-avro:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-data-avro) (Apache 2.0) KSML Kafka clients (io.axual.ksml:ksml-kafka-clients:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-kafka-clients) - (Apache License 2.0) utils (io.confluent:common-utils:8.3.0 - https://confluent.io/common-utils) - (Apache License 2.0) kafka-avro-serializer (io.confluent:kafka-avro-serializer:8.3.0 - http://confluent.io/kafka-avro-serializer) - (Apache License 2.0) kafka-avro-types (io.confluent:kafka-avro-types:8.3.0 - http://confluent.io/kafka-avro-types) - (Apache License 2.0) kafka-schema-registry-client (io.confluent:kafka-schema-registry-client:8.3.0 - http://confluent.io/kafka-schema-registry-client) - (Apache License 2.0) kafka-schema-serializer (io.confluent:kafka-schema-serializer:8.3.0 - http://confluent.io/kafka-schema-serializer) - (Apache License 2.0) kafka-schema-types (io.confluent:kafka-schema-types:8.3.0 - http://confluent.io/kafka-schema-types) + (Apache License 2.0) utils (io.confluent:common-utils:8.3.1 - https://confluent.io/common-utils) + (Apache License 2.0) kafka-avro-serializer (io.confluent:kafka-avro-serializer:8.3.1 - http://confluent.io/kafka-avro-serializer) + (Apache License 2.0) kafka-avro-types (io.confluent:kafka-avro-types:8.3.1 - http://confluent.io/kafka-avro-types) + (Apache License 2.0) kafka-schema-registry-client (io.confluent:kafka-schema-registry-client:8.3.1 - http://confluent.io/kafka-schema-registry-client) + (Apache License 2.0) kafka-schema-serializer (io.confluent:kafka-schema-serializer:8.3.1 - http://confluent.io/kafka-schema-serializer) + (Apache License 2.0) kafka-schema-types (io.confluent:kafka-schema-types:8.3.1 - http://confluent.io/kafka-schema-types) (The Apache Software License, Version 2.0) Log Redactor (io.confluent:logredactor:1.0.18 - https://github.com/confluentinc/logredactor) (The Apache Software License, Version 2.0) Log Redactor Metrics (io.confluent:logredactor-metrics:1.0.18 - https://github.com/confluentinc/logredactor) (Apache License 2.0) swagger-annotations-jakarta (io.swagger.core.v3:swagger-annotations-jakarta:2.2.42 - https://github.com/swagger-api/swagger-core/modules/swagger-annotations-jakarta) @@ -45,6 +45,6 @@ Lists of 48 third-party dependencies. (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) (Apache License, Version 2.0) SnakeYAML (org.yaml:snakeyaml:2.0 - https://bitbucket.org/snakeyaml/snakeyaml) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) diff --git a/ksml-data-avro/NOTICE.txt b/ksml-data-avro/NOTICE.txt index 4db19e116..79a6be549 100644 --- a/ksml-data-avro/NOTICE.txt +++ b/ksml-data-avro/NOTICE.txt @@ -2,8 +2,8 @@ Lists of 26 third-party dependencies. (Apache License, Version 2.0) LZ4 Java Compression (at.yawk.lz4:lz4-java:1.10.2 - https://github.com/yawkat/lz4-java) (The Apache Software License, Version 2.0) Jackson-annotations (com.fasterxml.jackson.core:jackson-annotations:2.22 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.0 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.1 - https://github.com/FasterXML/jackson) (BSD 2-Clause License) zstd-jni (com.github.luben:zstd-jni:1.5.6-10 - https://github.com/luben/zstd-jni) (The Apache Software License, Version 2.0) FindBugs-jsr305 (com.google.code.findbugs:jsr305:3.0.2 - http://findbugs.sourceforge.net/) (Apache 2.0) error-prone annotations (com.google.errorprone:error_prone_annotations:2.47.0 - https://errorprone.info/error_prone_annotations) @@ -23,6 +23,6 @@ Lists of 26 third-party dependencies. (MIT License) SLF4J API Module (org.slf4j:slf4j-api:2.1.0-alpha1 - http://www.slf4j.org) (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) diff --git a/ksml-data-binary/NOTICE.txt b/ksml-data-binary/NOTICE.txt index b00a35258..015039248 100644 --- a/ksml-data-binary/NOTICE.txt +++ b/ksml-data-binary/NOTICE.txt @@ -20,6 +20,6 @@ Lists of 23 third-party dependencies. (MIT License) SLF4J API Module (org.slf4j:slf4j-api:2.1.0-alpha1 - http://www.slf4j.org) (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) diff --git a/ksml-data-csv/NOTICE.txt b/ksml-data-csv/NOTICE.txt index a80388104..3a17c2333 100644 --- a/ksml-data-csv/NOTICE.txt +++ b/ksml-data-csv/NOTICE.txt @@ -16,7 +16,7 @@ Lists of 20 third-party dependencies. (MIT License) SLF4J API Module (org.slf4j:slf4j-api:2.1.0-alpha1 - http://www.slf4j.org) (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (tools.jackson.dataformat:jackson-dataformat-csv:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (tools.jackson.dataformat:jackson-dataformat-csv:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) diff --git a/ksml-data-json/NOTICE.txt b/ksml-data-json/NOTICE.txt index 503b2397c..0e58374fc 100644 --- a/ksml-data-json/NOTICE.txt +++ b/ksml-data-json/NOTICE.txt @@ -16,6 +16,6 @@ Lists of 19 third-party dependencies. (MIT License) SLF4J API Module (org.slf4j:slf4j-api:2.1.0-alpha1 - http://www.slf4j.org) (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) diff --git a/ksml-data-jsonschema-apicurio/NOTICE.txt b/ksml-data-jsonschema-apicurio/NOTICE.txt index 6af6a436b..c76ecf1cb 100644 --- a/ksml-data-jsonschema-apicurio/NOTICE.txt +++ b/ksml-data-jsonschema-apicurio/NOTICE.txt @@ -4,9 +4,9 @@ Lists of 76 third-party dependencies. (Apache License, Version 2.0) com.dashjoin:jsonata (com.dashjoin:jsonata:0.9.10 - https://github.com/dashjoin/jsonata-java) (Apache License, Version 2.0) Internet Time Utility (com.ethlo.time:itu:1.14.0 - https://github.com/ethlo/itu) (The Apache Software License, Version 2.0) Jackson-annotations (com.fasterxml.jackson.core:jackson-annotations:2.22 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.22.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.22.1 - https://github.com/FasterXML/jackson-dataformats-text) (BSD 2-Clause License) zstd-jni (com.github.luben:zstd-jni:1.5.6-10 - https://github.com/luben/zstd-jni) (The Apache Software License, Version 2.0) FindBugs-jsr305 (com.google.code.findbugs:jsr305:3.0.2 - http://findbugs.sourceforge.net/) (Apache 2.0) error-prone annotations (com.google.errorprone:error_prone_annotations:2.47.0 - https://errorprone.info/error_prone_annotations) @@ -73,6 +73,6 @@ Lists of 76 third-party dependencies. (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) (Apache License, Version 2.0) SnakeYAML (org.yaml:snakeyaml:2.5 - https://bitbucket.org/snakeyaml/snakeyaml) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) diff --git a/ksml-data-jsonschema-confluent/NOTICE.txt b/ksml-data-jsonschema-confluent/NOTICE.txt index 8197c373a..115329098 100644 --- a/ksml-data-jsonschema-confluent/NOTICE.txt +++ b/ksml-data-jsonschema-confluent/NOTICE.txt @@ -3,14 +3,14 @@ Lists of 70 third-party dependencies. (Apache License, Version 2.0) LZ4 Java Compression (at.yawk.lz4:lz4-java:1.10.2 - https://github.com/yawkat/lz4-java) (The Apache Software License, Version 2.0) Handy URI Templates (com.damnhandy:handy-uri-templates:2.1.8 - https://github.com/damnhandy/Handy-URI-Templates) (The Apache Software License, Version 2.0) Jackson-annotations (com.fasterxml.jackson.core:jackson-annotations:2.22 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.22.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson datatype: Guava (com.fasterxml.jackson.datatype:jackson-datatype-guava:2.22.0 - https://github.com/FasterXML/jackson-datatypes-collections) - (The Apache Software License, Version 2.0) Jackson datatype: jdk8 (com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) - (The Apache Software License, Version 2.0) Jackson datatype: Joda (com.fasterxml.jackson.datatype:jackson-datatype-joda:2.22.0 - https://github.com/FasterXML/jackson-datatype-joda) - (The Apache Software License, Version 2.0) Jackson datatype: JSR310 (com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) - (The Apache Software License, Version 2.0) Jackson-module-parameter-names (com.fasterxml.jackson.module:jackson-module-parameter-names:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) + (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.22.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson datatype: Guava (com.fasterxml.jackson.datatype:jackson-datatype-guava:2.22.1 - https://github.com/FasterXML/jackson-datatypes-collections) + (The Apache Software License, Version 2.0) Jackson datatype: jdk8 (com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) + (The Apache Software License, Version 2.0) Jackson datatype: Joda (com.fasterxml.jackson.datatype:jackson-datatype-joda:2.22.1 - https://github.com/FasterXML/jackson-datatype-joda) + (The Apache Software License, Version 2.0) Jackson datatype: JSR310 (com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) + (The Apache Software License, Version 2.0) Jackson-module-parameter-names (com.fasterxml.jackson.module:jackson-module-parameter-names:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) (Apache License, Version 2.0) everit-json-schema (com.github.erosb:everit-json-schema:1.14.6 - https://github.com/erosb/everit-json-schema) (MIT) json-sKema (com.github.erosb:json-sKema:0.30.0 - https://github.com/erosb/json-sKema) (BSD 2-Clause License) zstd-jni (com.github.luben:zstd-jni:1.5.6-10 - https://github.com/luben/zstd-jni) @@ -31,15 +31,15 @@ Lists of 70 third-party dependencies. (Apache 2.0) KSML Data Library (io.axual.ksml:ksml-data:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-data) (Apache 2.0) KSML Data Library - JSON (io.axual.ksml:ksml-data-json:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-data-json) (Apache 2.0) KSML Data Library - JSON Schema (io.axual.ksml:ksml-data-jsonschema:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-data-jsonschema) - (Apache License 2.0) config (io.confluent:common-config:8.3.0 - https://confluent.io/common-config) - (Apache License 2.0) utils (io.confluent:common-utils:8.3.0 - https://confluent.io/common-utils) - (Apache License 2.0) kafka-avro-types (io.confluent:kafka-avro-types:8.3.0 - http://confluent.io/kafka-avro-types) - (Apache License 2.0) (Confluent Community License) kafka-json-schema-provider (io.confluent:kafka-json-schema-provider:8.3.0 - http://confluent.io/kafka-json-schema-provider) - (Apache License 2.0) (Confluent Community License) kafka-json-schema-serializer (io.confluent:kafka-json-schema-serializer:8.3.0 - http://confluent.io/kafka-json-schema-serializer) - (Apache License 2.0) kafka-json-serializer (io.confluent:kafka-json-serializer:8.3.0 - http://confluent.io/kafka-json-serializer) - (Apache License 2.0) kafka-schema-registry-client (io.confluent:kafka-schema-registry-client:8.3.0 - http://confluent.io/kafka-schema-registry-client) - (Apache License 2.0) kafka-schema-serializer (io.confluent:kafka-schema-serializer:8.3.0 - http://confluent.io/kafka-schema-serializer) - (Apache License 2.0) kafka-schema-types (io.confluent:kafka-schema-types:8.3.0 - http://confluent.io/kafka-schema-types) + (Apache License 2.0) config (io.confluent:common-config:8.3.1 - https://confluent.io/common-config) + (Apache License 2.0) utils (io.confluent:common-utils:8.3.1 - https://confluent.io/common-utils) + (Apache License 2.0) kafka-avro-types (io.confluent:kafka-avro-types:8.3.1 - http://confluent.io/kafka-avro-types) + (Apache License 2.0) (Confluent Community License) kafka-json-schema-provider (io.confluent:kafka-json-schema-provider:8.3.1 - http://confluent.io/kafka-json-schema-provider) + (Apache License 2.0) (Confluent Community License) kafka-json-schema-serializer (io.confluent:kafka-json-schema-serializer:8.3.1 - http://confluent.io/kafka-json-schema-serializer) + (Apache License 2.0) kafka-json-serializer (io.confluent:kafka-json-serializer:8.3.1 - http://confluent.io/kafka-json-serializer) + (Apache License 2.0) kafka-schema-registry-client (io.confluent:kafka-schema-registry-client:8.3.1 - http://confluent.io/kafka-schema-registry-client) + (Apache License 2.0) kafka-schema-serializer (io.confluent:kafka-schema-serializer:8.3.1 - http://confluent.io/kafka-schema-serializer) + (Apache License 2.0) kafka-schema-types (io.confluent:kafka-schema-types:8.3.1 - http://confluent.io/kafka-schema-types) (The MIT License (MIT)) ClassGraph (io.github.classgraph:classgraph:4.8.138 - https://github.com/classgraph/classgraph) (Apache License 2.0) swagger-annotations-jakarta (io.swagger.core.v3:swagger-annotations-jakarta:2.2.42 - https://github.com/swagger-api/swagger-core/modules/swagger-annotations-jakarta) (MIT) mbknor-jackson-jsonSchema (io.yokota:mbknor-jackson-jsonschema-java8:1.0.39.3 - https://github.com/mbknor/mbknor-jackson-jsonSchema) @@ -67,6 +67,6 @@ Lists of 70 third-party dependencies. (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) (Apache License, Version 2.0) SnakeYAML (org.yaml:snakeyaml:2.0 - https://bitbucket.org/snakeyaml/snakeyaml) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) diff --git a/ksml-data-jsonschema/NOTICE.txt b/ksml-data-jsonschema/NOTICE.txt index 92a5fe1f8..b7ef3b4df 100644 --- a/ksml-data-jsonschema/NOTICE.txt +++ b/ksml-data-jsonschema/NOTICE.txt @@ -17,6 +17,6 @@ Lists of 20 third-party dependencies. (MIT License) SLF4J API Module (org.slf4j:slf4j-api:2.1.0-alpha1 - http://www.slf4j.org) (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) diff --git a/ksml-data-protobuf-apicurio/NOTICE.txt b/ksml-data-protobuf-apicurio/NOTICE.txt index 7e5f45dc3..2e92c10ff 100644 --- a/ksml-data-protobuf-apicurio/NOTICE.txt +++ b/ksml-data-protobuf-apicurio/NOTICE.txt @@ -3,13 +3,13 @@ Lists of 100 third-party dependencies. (Apache License, Version 2.0) LZ4 Java Compression (at.yawk.lz4:lz4-java:1.10.2 - https://github.com/yawkat/lz4-java) (Apache License, Version 2.0) com.dashjoin:jsonata (com.dashjoin:jsonata:0.9.10 - https://github.com/dashjoin/jsonata-java) (The Apache Software License, Version 2.0) Jackson-annotations (com.fasterxml.jackson.core:jackson-annotations:2.22 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.22.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson datatype: jdk8 (com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) - (The Apache Software License, Version 2.0) Jackson datatype: org.json (com.fasterxml.jackson.datatype:jackson-datatype-json-org:2.22.0 - https://github.com/FasterXML/jackson-datatypes-misc) - (The Apache Software License, Version 2.0) Jackson datatype: JSR310 (com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) - (The Apache Software License, Version 2.0) Jackson-module-parameter-names (com.fasterxml.jackson.module:jackson-module-parameter-names:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) + (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.22.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson datatype: jdk8 (com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) + (The Apache Software License, Version 2.0) Jackson datatype: org.json (com.fasterxml.jackson.datatype:jackson-datatype-json-org:2.22.1 - https://github.com/FasterXML/jackson-datatypes-misc) + (The Apache Software License, Version 2.0) Jackson datatype: JSR310 (com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) + (The Apache Software License, Version 2.0) Jackson-module-parameter-names (com.fasterxml.jackson.module:jackson-module-parameter-names:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) (BSD 2-Clause License) zstd-jni (com.github.luben:zstd-jni:1.5.6-10 - https://github.com/luben/zstd-jni) (Apache-2.0) proto-google-common-protos (com.google.api.grpc:proto-google-common-protos:2.72.0 - https://github.com/googleapis/sdk-platform-java) (The Apache Software License, Version 2.0) FindBugs-jsr305 (com.google.code.findbugs:jsr305:3.0.2 - http://findbugs.sourceforge.net/) @@ -97,6 +97,6 @@ Lists of 100 third-party dependencies. (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) (Apache License, Version 2.0) SnakeYAML (org.yaml:snakeyaml:2.6 - https://bitbucket.org/snakeyaml/snakeyaml) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) diff --git a/ksml-data-protobuf-confluent/NOTICE.txt b/ksml-data-protobuf-confluent/NOTICE.txt index 8e896a401..fb5cc2cc0 100644 --- a/ksml-data-protobuf-confluent/NOTICE.txt +++ b/ksml-data-protobuf-confluent/NOTICE.txt @@ -2,10 +2,10 @@ Lists of 57 third-party dependencies. (Apache License, Version 2.0) LZ4 Java Compression (at.yawk.lz4:lz4-java:1.10.2 - https://github.com/yawkat/lz4-java) (The Apache Software License, Version 2.0) Jackson-annotations (com.fasterxml.jackson.core:jackson-annotations:2.22 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.22.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson datatype: jdk8 (com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) + (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.22.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson datatype: jdk8 (com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) (BSD 2-Clause License) zstd-jni (com.github.luben:zstd-jni:1.5.6-10 - https://github.com/luben/zstd-jni) (Apache-2.0) proto-google-common-protos (com.google.api.grpc:proto-google-common-protos:2.53.0 - https://github.com/googleapis/sdk-platform-java) (The Apache Software License, Version 2.0) FindBugs-jsr305 (com.google.code.findbugs:jsr305:3.0.2 - http://findbugs.sourceforge.net/) @@ -29,14 +29,14 @@ Lists of 57 third-party dependencies. (Apache-2.0) Apache Commons IO (commons-io:commons-io:2.22.0 - https://commons.apache.org/proper/commons-io/) (Apache 2.0) KSML Data Library (io.axual.ksml:ksml-data:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-data) (Apache 2.0) KSML Data Library - PROTOBUF (io.axual.ksml:ksml-data-protobuf:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-data-protobuf) - (Apache License 2.0) utils (io.confluent:common-utils:8.3.0 - https://confluent.io/common-utils) - (Apache License 2.0) kafka-avro-types (io.confluent:kafka-avro-types:8.3.0 - http://confluent.io/kafka-avro-types) - (Apache License 2.0) (Confluent Community License) kafka-protobuf-provider (io.confluent:kafka-protobuf-provider:8.3.0 - http://confluent.io/kafka-protobuf-provider) - (Apache License 2.0) (Confluent Community License) kafka-protobuf-serializer (io.confluent:kafka-protobuf-serializer:8.3.0 - http://confluent.io/kafka-protobuf-serializer) - (Apache License 2.0) (Confluent Community License) kafka-protobuf-types (io.confluent:kafka-protobuf-types:8.3.0 - http://confluent.io/kafka-protobuf-types) - (Apache License 2.0) kafka-schema-registry-client (io.confluent:kafka-schema-registry-client:8.3.0 - http://confluent.io/kafka-schema-registry-client) - (Apache License 2.0) kafka-schema-serializer (io.confluent:kafka-schema-serializer:8.3.0 - http://confluent.io/kafka-schema-serializer) - (Apache License 2.0) kafka-schema-types (io.confluent:kafka-schema-types:8.3.0 - http://confluent.io/kafka-schema-types) + (Apache License 2.0) utils (io.confluent:common-utils:8.3.1 - https://confluent.io/common-utils) + (Apache License 2.0) kafka-avro-types (io.confluent:kafka-avro-types:8.3.1 - http://confluent.io/kafka-avro-types) + (Apache License 2.0) (Confluent Community License) kafka-protobuf-provider (io.confluent:kafka-protobuf-provider:8.3.1 - http://confluent.io/kafka-protobuf-provider) + (Apache License 2.0) (Confluent Community License) kafka-protobuf-serializer (io.confluent:kafka-protobuf-serializer:8.3.1 - http://confluent.io/kafka-protobuf-serializer) + (Apache License 2.0) (Confluent Community License) kafka-protobuf-types (io.confluent:kafka-protobuf-types:8.3.1 - http://confluent.io/kafka-protobuf-types) + (Apache License 2.0) kafka-schema-registry-client (io.confluent:kafka-schema-registry-client:8.3.1 - http://confluent.io/kafka-schema-registry-client) + (Apache License 2.0) kafka-schema-serializer (io.confluent:kafka-schema-serializer:8.3.1 - http://confluent.io/kafka-schema-serializer) + (Apache License 2.0) kafka-schema-types (io.confluent:kafka-schema-types:8.3.1 - http://confluent.io/kafka-schema-types) (Apache License 2.0) swagger-annotations-jakarta (io.swagger.core.v3:swagger-annotations-jakarta:2.2.42 - https://github.com/swagger-api/swagger-core/modules/swagger-annotations-jakarta) (Apache-2.0) Apache Avro (org.apache.avro:avro:1.12.1 - https://avro.apache.org) (Apache-2.0) Apache Commons Compress (org.apache.commons:commons-compress:1.28.0 - https://commons.apache.org/proper/commons-compress/) @@ -54,6 +54,6 @@ Lists of 57 third-party dependencies. (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) (Apache License, Version 2.0) SnakeYAML (org.yaml:snakeyaml:2.0 - https://bitbucket.org/snakeyaml/snakeyaml) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) diff --git a/ksml-data-protobuf/NOTICE.txt b/ksml-data-protobuf/NOTICE.txt index 836aac260..89009be72 100644 --- a/ksml-data-protobuf/NOTICE.txt +++ b/ksml-data-protobuf/NOTICE.txt @@ -28,6 +28,6 @@ Lists of 31 third-party dependencies. (MIT License) SLF4J API Module (org.slf4j:slf4j-api:2.1.0-alpha1 - http://www.slf4j.org) (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) diff --git a/ksml-data-xml/NOTICE.txt b/ksml-data-xml/NOTICE.txt index d84d8068f..b527d7316 100644 --- a/ksml-data-xml/NOTICE.txt +++ b/ksml-data-xml/NOTICE.txt @@ -19,7 +19,7 @@ Lists of 23 third-party dependencies. (MIT License) SLF4J API Module (org.slf4j:slf4j-api:2.1.0-alpha1 - http://www.slf4j.org) (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-XML (tools.jackson.dataformat:jackson-dataformat-xml:3.2.0 - https://github.com/FasterXML/jackson-dataformat-xml) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-XML (tools.jackson.dataformat:jackson-dataformat-xml:3.2.1 - https://github.com/FasterXML/jackson-dataformat-xml) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) diff --git a/ksml-data/NOTICE.txt b/ksml-data/NOTICE.txt index f9760d036..70b6ae997 100644 --- a/ksml-data/NOTICE.txt +++ b/ksml-data/NOTICE.txt @@ -15,6 +15,6 @@ Lists of 18 third-party dependencies. (MIT License) SLF4J API Module (org.slf4j:slf4j-api:2.1.0-alpha1 - http://www.slf4j.org) (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) diff --git a/ksml-examples-test/NOTICE.txt b/ksml-examples-test/NOTICE.txt index 35d6fbec0..4d47c7dc2 100644 --- a/ksml-examples-test/NOTICE.txt +++ b/ksml-examples-test/NOTICE.txt @@ -1,21 +1,21 @@ -Lists of 196 third-party dependencies. +Lists of 193 third-party dependencies. (Apache License, Version 2.0) LZ4 Java Compression (at.yawk.lz4:lz4-java:1.10.2 - https://github.com/yawkat/lz4-java) (The Apache Software License, Version 2.0) Handy URI Templates (com.damnhandy:handy-uri-templates:2.1.8 - https://github.com/damnhandy/Handy-URI-Templates) (Apache License, Version 2.0) com.dashjoin:jsonata (com.dashjoin:jsonata:0.9.10 - https://github.com/dashjoin/jsonata-java) (MIT License) minimal-json (com.eclipsesource.minimal-json:minimal-json:0.9.5 - https://github.com/ralfstx/minimal-json) (Apache License, Version 2.0) Internet Time Utility (com.ethlo.time:itu:1.14.0 - https://github.com/ethlo/itu) (The Apache Software License, Version 2.0) Jackson-annotations (com.fasterxml.jackson.core:jackson-annotations:2.22 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.22.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.22.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson datatype: Guava (com.fasterxml.jackson.datatype:jackson-datatype-guava:2.22.0 - https://github.com/FasterXML/jackson-datatypes-collections) - (The Apache Software License, Version 2.0) Jackson datatype: jdk8 (com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) - (The Apache Software License, Version 2.0) Jackson datatype: Joda (com.fasterxml.jackson.datatype:jackson-datatype-joda:2.22.0 - https://github.com/FasterXML/jackson-datatype-joda) - (The Apache Software License, Version 2.0) Jackson datatype: org.json (com.fasterxml.jackson.datatype:jackson-datatype-json-org:2.22.0 - https://github.com/FasterXML/jackson-datatypes-misc) - (The Apache Software License, Version 2.0) Jackson datatype: JSR310 (com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) - (The Apache Software License, Version 2.0) Jackson-module-parameter-names (com.fasterxml.jackson.module:jackson-module-parameter-names:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) + (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.22.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.22.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson datatype: Guava (com.fasterxml.jackson.datatype:jackson-datatype-guava:2.22.1 - https://github.com/FasterXML/jackson-datatypes-collections) + (The Apache Software License, Version 2.0) Jackson datatype: jdk8 (com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) + (The Apache Software License, Version 2.0) Jackson datatype: Joda (com.fasterxml.jackson.datatype:jackson-datatype-joda:2.22.1 - https://github.com/FasterXML/jackson-datatype-joda) + (The Apache Software License, Version 2.0) Jackson datatype: org.json (com.fasterxml.jackson.datatype:jackson-datatype-json-org:2.22.1 - https://github.com/FasterXML/jackson-datatypes-misc) + (The Apache Software License, Version 2.0) Jackson datatype: JSR310 (com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) + (The Apache Software License, Version 2.0) Jackson-module-parameter-names (com.fasterxml.jackson.module:jackson-module-parameter-names:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) (The Apache License, Version 2.0) Woodstox (com.fasterxml.woodstox:woodstox-core:7.2.1 - https://github.com/FasterXML/woodstox) (Apache License, Version 2.0) everit-json-schema (com.github.erosb:everit-json-schema:1.14.6 - https://github.com/erosb/everit-json-schema) (MIT) json-sKema (com.github.erosb:json-sKema:0.30.0 - https://github.com/erosb/json-sKema) @@ -90,19 +90,19 @@ Lists of 196 third-party dependencies. (Apache 2.0) KSML Data Library - PROTOBUF Confluent (io.axual.ksml:ksml-data-protobuf-confluent:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-data-protobuf-confluent) (Apache 2.0) KSML Data Library - XML (io.axual.ksml:ksml-data-xml:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-data-xml) (Apache 2.0) KSML Kafka clients (io.axual.ksml:ksml-kafka-clients:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-kafka-clients) - (Apache License 2.0) config (io.confluent:common-config:8.3.0 - https://confluent.io/common-config) - (Apache License 2.0) utils (io.confluent:common-utils:8.3.0 - https://confluent.io/common-utils) - (Apache License 2.0) kafka-avro-serializer (io.confluent:kafka-avro-serializer:8.3.0 - http://confluent.io/kafka-avro-serializer) - (Apache License 2.0) kafka-avro-types (io.confluent:kafka-avro-types:8.3.0 - http://confluent.io/kafka-avro-types) - (Apache License 2.0) (Confluent Community License) kafka-json-schema-provider (io.confluent:kafka-json-schema-provider:8.3.0 - http://confluent.io/kafka-json-schema-provider) - (Apache License 2.0) (Confluent Community License) kafka-json-schema-serializer (io.confluent:kafka-json-schema-serializer:8.3.0 - http://confluent.io/kafka-json-schema-serializer) - (Apache License 2.0) kafka-json-serializer (io.confluent:kafka-json-serializer:8.3.0 - http://confluent.io/kafka-json-serializer) - (Apache License 2.0) (Confluent Community License) kafka-protobuf-provider (io.confluent:kafka-protobuf-provider:8.3.0 - http://confluent.io/kafka-protobuf-provider) - (Apache License 2.0) (Confluent Community License) kafka-protobuf-serializer (io.confluent:kafka-protobuf-serializer:8.3.0 - http://confluent.io/kafka-protobuf-serializer) - (Apache License 2.0) (Confluent Community License) kafka-protobuf-types (io.confluent:kafka-protobuf-types:8.3.0 - http://confluent.io/kafka-protobuf-types) - (Apache License 2.0) kafka-schema-registry-client (io.confluent:kafka-schema-registry-client:8.3.0 - http://confluent.io/kafka-schema-registry-client) - (Apache License 2.0) kafka-schema-serializer (io.confluent:kafka-schema-serializer:8.3.0 - http://confluent.io/kafka-schema-serializer) - (Apache License 2.0) kafka-schema-types (io.confluent:kafka-schema-types:8.3.0 - http://confluent.io/kafka-schema-types) + (Apache License 2.0) config (io.confluent:common-config:8.3.1 - https://confluent.io/common-config) + (Apache License 2.0) utils (io.confluent:common-utils:8.3.1 - https://confluent.io/common-utils) + (Apache License 2.0) kafka-avro-serializer (io.confluent:kafka-avro-serializer:8.3.1 - http://confluent.io/kafka-avro-serializer) + (Apache License 2.0) kafka-avro-types (io.confluent:kafka-avro-types:8.3.1 - http://confluent.io/kafka-avro-types) + (Apache License 2.0) (Confluent Community License) kafka-json-schema-provider (io.confluent:kafka-json-schema-provider:8.3.1 - http://confluent.io/kafka-json-schema-provider) + (Apache License 2.0) (Confluent Community License) kafka-json-schema-serializer (io.confluent:kafka-json-schema-serializer:8.3.1 - http://confluent.io/kafka-json-schema-serializer) + (Apache License 2.0) kafka-json-serializer (io.confluent:kafka-json-serializer:8.3.1 - http://confluent.io/kafka-json-serializer) + (Apache License 2.0) (Confluent Community License) kafka-protobuf-provider (io.confluent:kafka-protobuf-provider:8.3.1 - http://confluent.io/kafka-protobuf-provider) + (Apache License 2.0) (Confluent Community License) kafka-protobuf-serializer (io.confluent:kafka-protobuf-serializer:8.3.1 - http://confluent.io/kafka-protobuf-serializer) + (Apache License 2.0) (Confluent Community License) kafka-protobuf-types (io.confluent:kafka-protobuf-types:8.3.1 - http://confluent.io/kafka-protobuf-types) + (Apache License 2.0) kafka-schema-registry-client (io.confluent:kafka-schema-registry-client:8.3.1 - http://confluent.io/kafka-schema-registry-client) + (Apache License 2.0) kafka-schema-serializer (io.confluent:kafka-schema-serializer:8.3.1 - http://confluent.io/kafka-schema-serializer) + (Apache License 2.0) kafka-schema-types (io.confluent:kafka-schema-types:8.3.1 - http://confluent.io/kafka-schema-types) (The Apache Software License, Version 2.0) Log Redactor (io.confluent:logredactor:1.0.18 - https://github.com/confluentinc/logredactor) (The Apache Software License, Version 2.0) Log Redactor Metrics (io.confluent:logredactor-metrics:1.0.18 - https://github.com/confluentinc/logredactor) (Apache License 2.0) Metrics Core (io.dropwizard.metrics:metrics-core:4.2.39 - https://metrics.dropwizard.io/metrics-core) @@ -151,28 +151,25 @@ Lists of 196 third-party dependencies. (The Apache License, Version 2.0) Apache Kafka (org.apache.kafka:kafka-clients:4.3.1 - https://kafka.apache.org) (The Apache License, Version 2.0) Apache Kafka (org.apache.kafka:kafka-streams:4.3.1 - https://kafka.apache.org) (Apache-2.0) XmlSchema Core (org.apache.ws.xmlschema:xmlschema-core:2.3.2 - https://ws.apache.org/commons/xmlschema20/xmlschema-core/) - (Bouncy Castle Licence) Bouncy Castle PKIX, CMS, EAC, TSP, PKCS, OCSP, CMP, and CRMF APIs (org.bouncycastle:bcpkix-jdk18on:1.78.1 - https://www.bouncycastle.org/java.html) - (Bouncy Castle Licence) Bouncy Castle Provider (org.bouncycastle:bcprov-jdk18on:1.78.1 - https://www.bouncycastle.org/java.html) - (Bouncy Castle Licence) Bouncy Castle ASN.1 Extension and Utility APIs (org.bouncycastle:bcutil-jdk18on:1.78.1 - https://www.bouncycastle.org/java.html) (The BSD 2-Clause License) Stax2 API (org.codehaus.woodstox:stax2-api:4.3.0 - http://github.com/FasterXML/stax2-api) - (Universal Permissive License, Version 1.0) Polyglot (org.graalvm.polyglot:polyglot:25.0.3 - https://github.com/oracle/graal) - (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython (org.graalvm.python:python-language:25.0.3 - http://www.graalvm.org/python) - (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython Resources (org.graalvm.python:python-resources:25.0.3 - http://www.graalvm.org/python) - (Universal Permissive License, Version 1.0) Tregex (org.graalvm.regex:regex:25.0.3 - http://www.graalvm.org/) - (Universal Permissive License, Version 1.0) Collections (org.graalvm.sdk:collections:25.0.3 - https://github.com/oracle/graal) - (Universal Permissive License, Version 1.0) Jniutils (org.graalvm.sdk:jniutils:25.0.3 - https://github.com/oracle/graal) - (Universal Permissive License, Version 1.0) Nativeimage (org.graalvm.sdk:nativeimage:25.0.3 - https://github.com/oracle/graal) - (Universal Permissive License, Version 1.0) Word (org.graalvm.sdk:word:25.0.3 - https://github.com/oracle/graal) - (Unicode/ICU License) Truffle Icu4j (org.graalvm.shadowed:icu4j:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Json (org.graalvm.shadowed:json:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Xz (org.graalvm.shadowed:xz:25.0.3 - http://openjdk.java.net/projects/graal) - (GNU General Public License, version 2, with the Classpath Exception) Truffle Profiler (org.graalvm.tools:profiler-tool:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle API (org.graalvm.truffle:truffle-api:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Compiler (org.graalvm.truffle:truffle-compiler:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Nfi (org.graalvm.truffle:truffle-nfi:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Nfi Libffi (org.graalvm.truffle:truffle-nfi-libffi:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Nfi Panama (org.graalvm.truffle:truffle-nfi-panama:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Runtime (org.graalvm.truffle:truffle-runtime:25.0.3 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Polyglot (org.graalvm.polyglot:polyglot:25.0.4 - https://github.com/oracle/graal) + (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython (org.graalvm.python:python-language:25.0.4 - http://www.graalvm.org/python) + (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython Resources (org.graalvm.python:python-resources:25.0.4 - http://www.graalvm.org/python) + (Universal Permissive License, Version 1.0) Tregex (org.graalvm.regex:regex:25.0.4 - http://www.graalvm.org/) + (Universal Permissive License, Version 1.0) Collections (org.graalvm.sdk:collections:25.0.4 - https://github.com/oracle/graal) + (Universal Permissive License, Version 1.0) Jniutils (org.graalvm.sdk:jniutils:25.0.4 - https://github.com/oracle/graal) + (Universal Permissive License, Version 1.0) Nativeimage (org.graalvm.sdk:nativeimage:25.0.4 - https://github.com/oracle/graal) + (Universal Permissive License, Version 1.0) Word (org.graalvm.sdk:word:25.0.4 - https://github.com/oracle/graal) + (Unicode/ICU License) Truffle Icu4j (org.graalvm.shadowed:icu4j:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Json (org.graalvm.shadowed:json:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Xz (org.graalvm.shadowed:xz:25.0.4 - http://openjdk.java.net/projects/graal) + (GNU General Public License, version 2, with the Classpath Exception) Truffle Profiler (org.graalvm.tools:profiler-tool:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle API (org.graalvm.truffle:truffle-api:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Compiler (org.graalvm.truffle:truffle-compiler:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Nfi (org.graalvm.truffle:truffle-nfi:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Nfi Libffi (org.graalvm.truffle:truffle-nfi-libffi:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Nfi Panama (org.graalvm.truffle:truffle-nfi-panama:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Runtime (org.graalvm.truffle:truffle-runtime:25.0.4 - http://openjdk.java.net/projects/graal) (The Apache Software License, Version 2.0) IntelliJ IDEA Annotations (org.jetbrains:annotations:13.0 - http://www.jetbrains.org) (The Apache License, Version 2.0) Kotlin Reflect (org.jetbrains.kotlin:kotlin-reflect:2.1.21 - https://kotlinlang.org/) (The Apache License, Version 2.0) Kotlin Script Runtime (org.jetbrains.kotlin:kotlin-script-runtime:1.9.10 - https://kotlinlang.org/) @@ -191,8 +188,8 @@ Lists of 196 third-party dependencies. (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) (Apache License, Version 2.0) SnakeYAML (org.yaml:snakeyaml:2.0 - https://bitbucket.org/snakeyaml/snakeyaml) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (tools.jackson.dataformat:jackson-dataformat-csv:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson-dataformat-XML (tools.jackson.dataformat:jackson-dataformat-xml:3.2.0 - https://github.com/FasterXML/jackson-dataformat-xml) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (tools.jackson.dataformat:jackson-dataformat-csv:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-dataformat-XML (tools.jackson.dataformat:jackson-dataformat-xml:3.2.1 - https://github.com/FasterXML/jackson-dataformat-xml) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) diff --git a/ksml-query/NOTICE.txt b/ksml-query/NOTICE.txt index 04bea6b06..c799d3545 100644 --- a/ksml-query/NOTICE.txt +++ b/ksml-query/NOTICE.txt @@ -1,21 +1,21 @@ -Lists of 219 third-party dependencies. +Lists of 216 third-party dependencies. (Apache License, Version 2.0) LZ4 Java Compression (at.yawk.lz4:lz4-java:1.10.2 - https://github.com/yawkat/lz4-java) (The Apache Software License, Version 2.0) Handy URI Templates (com.damnhandy:handy-uri-templates:2.1.8 - https://github.com/damnhandy/Handy-URI-Templates) (Apache License, Version 2.0) com.dashjoin:jsonata (com.dashjoin:jsonata:0.9.10 - https://github.com/dashjoin/jsonata-java) (MIT License) minimal-json (com.eclipsesource.minimal-json:minimal-json:0.9.5 - https://github.com/ralfstx/minimal-json) (Apache License, Version 2.0) Internet Time Utility (com.ethlo.time:itu:1.14.0 - https://github.com/ethlo/itu) (The Apache Software License, Version 2.0) Jackson-annotations (com.fasterxml.jackson.core:jackson-annotations:2.22 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.22.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.22.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson datatype: Guava (com.fasterxml.jackson.datatype:jackson-datatype-guava:2.22.0 - https://github.com/FasterXML/jackson-datatypes-collections) - (The Apache Software License, Version 2.0) Jackson datatype: jdk8 (com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) - (The Apache Software License, Version 2.0) Jackson datatype: Joda (com.fasterxml.jackson.datatype:jackson-datatype-joda:2.22.0 - https://github.com/FasterXML/jackson-datatype-joda) - (The Apache Software License, Version 2.0) Jackson datatype: org.json (com.fasterxml.jackson.datatype:jackson-datatype-json-org:2.22.0 - https://github.com/FasterXML/jackson-datatypes-misc) - (The Apache Software License, Version 2.0) Jackson datatype: JSR310 (com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) - (The Apache Software License, Version 2.0) Jackson-module-parameter-names (com.fasterxml.jackson.module:jackson-module-parameter-names:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) + (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.22.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.22.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson datatype: Guava (com.fasterxml.jackson.datatype:jackson-datatype-guava:2.22.1 - https://github.com/FasterXML/jackson-datatypes-collections) + (The Apache Software License, Version 2.0) Jackson datatype: jdk8 (com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) + (The Apache Software License, Version 2.0) Jackson datatype: Joda (com.fasterxml.jackson.datatype:jackson-datatype-joda:2.22.1 - https://github.com/FasterXML/jackson-datatype-joda) + (The Apache Software License, Version 2.0) Jackson datatype: org.json (com.fasterxml.jackson.datatype:jackson-datatype-json-org:2.22.1 - https://github.com/FasterXML/jackson-datatypes-misc) + (The Apache Software License, Version 2.0) Jackson datatype: JSR310 (com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) + (The Apache Software License, Version 2.0) Jackson-module-parameter-names (com.fasterxml.jackson.module:jackson-module-parameter-names:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) (The Apache License, Version 2.0) Woodstox (com.fasterxml.woodstox:woodstox-core:7.2.1 - https://github.com/FasterXML/woodstox) (Apache License, Version 2.0) everit-json-schema (com.github.erosb:everit-json-schema:1.14.6 - https://github.com/erosb/everit-json-schema) (MIT) json-sKema (com.github.erosb:json-sKema:0.30.0 - https://github.com/erosb/json-sKema) @@ -90,19 +90,19 @@ Lists of 219 third-party dependencies. (Apache 2.0) KSML Data Library - PROTOBUF Confluent (io.axual.ksml:ksml-data-protobuf-confluent:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-data-protobuf-confluent) (Apache 2.0) KSML Data Library - XML (io.axual.ksml:ksml-data-xml:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-data-xml) (Apache 2.0) KSML Kafka clients (io.axual.ksml:ksml-kafka-clients:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-kafka-clients) - (Apache License 2.0) config (io.confluent:common-config:8.3.0 - https://confluent.io/common-config) - (Apache License 2.0) utils (io.confluent:common-utils:8.3.0 - https://confluent.io/common-utils) - (Apache License 2.0) kafka-avro-serializer (io.confluent:kafka-avro-serializer:8.3.0 - http://confluent.io/kafka-avro-serializer) - (Apache License 2.0) kafka-avro-types (io.confluent:kafka-avro-types:8.3.0 - http://confluent.io/kafka-avro-types) - (Apache License 2.0) (Confluent Community License) kafka-json-schema-provider (io.confluent:kafka-json-schema-provider:8.3.0 - http://confluent.io/kafka-json-schema-provider) - (Apache License 2.0) (Confluent Community License) kafka-json-schema-serializer (io.confluent:kafka-json-schema-serializer:8.3.0 - http://confluent.io/kafka-json-schema-serializer) - (Apache License 2.0) kafka-json-serializer (io.confluent:kafka-json-serializer:8.3.0 - http://confluent.io/kafka-json-serializer) - (Apache License 2.0) (Confluent Community License) kafka-protobuf-provider (io.confluent:kafka-protobuf-provider:8.3.0 - http://confluent.io/kafka-protobuf-provider) - (Apache License 2.0) (Confluent Community License) kafka-protobuf-serializer (io.confluent:kafka-protobuf-serializer:8.3.0 - http://confluent.io/kafka-protobuf-serializer) - (Apache License 2.0) (Confluent Community License) kafka-protobuf-types (io.confluent:kafka-protobuf-types:8.3.0 - http://confluent.io/kafka-protobuf-types) - (Apache License 2.0) kafka-schema-registry-client (io.confluent:kafka-schema-registry-client:8.3.0 - http://confluent.io/kafka-schema-registry-client) - (Apache License 2.0) kafka-schema-serializer (io.confluent:kafka-schema-serializer:8.3.0 - http://confluent.io/kafka-schema-serializer) - (Apache License 2.0) kafka-schema-types (io.confluent:kafka-schema-types:8.3.0 - http://confluent.io/kafka-schema-types) + (Apache License 2.0) config (io.confluent:common-config:8.3.1 - https://confluent.io/common-config) + (Apache License 2.0) utils (io.confluent:common-utils:8.3.1 - https://confluent.io/common-utils) + (Apache License 2.0) kafka-avro-serializer (io.confluent:kafka-avro-serializer:8.3.1 - http://confluent.io/kafka-avro-serializer) + (Apache License 2.0) kafka-avro-types (io.confluent:kafka-avro-types:8.3.1 - http://confluent.io/kafka-avro-types) + (Apache License 2.0) (Confluent Community License) kafka-json-schema-provider (io.confluent:kafka-json-schema-provider:8.3.1 - http://confluent.io/kafka-json-schema-provider) + (Apache License 2.0) (Confluent Community License) kafka-json-schema-serializer (io.confluent:kafka-json-schema-serializer:8.3.1 - http://confluent.io/kafka-json-schema-serializer) + (Apache License 2.0) kafka-json-serializer (io.confluent:kafka-json-serializer:8.3.1 - http://confluent.io/kafka-json-serializer) + (Apache License 2.0) (Confluent Community License) kafka-protobuf-provider (io.confluent:kafka-protobuf-provider:8.3.1 - http://confluent.io/kafka-protobuf-provider) + (Apache License 2.0) (Confluent Community License) kafka-protobuf-serializer (io.confluent:kafka-protobuf-serializer:8.3.1 - http://confluent.io/kafka-protobuf-serializer) + (Apache License 2.0) (Confluent Community License) kafka-protobuf-types (io.confluent:kafka-protobuf-types:8.3.1 - http://confluent.io/kafka-protobuf-types) + (Apache License 2.0) kafka-schema-registry-client (io.confluent:kafka-schema-registry-client:8.3.1 - http://confluent.io/kafka-schema-registry-client) + (Apache License 2.0) kafka-schema-serializer (io.confluent:kafka-schema-serializer:8.3.1 - http://confluent.io/kafka-schema-serializer) + (Apache License 2.0) kafka-schema-types (io.confluent:kafka-schema-types:8.3.1 - http://confluent.io/kafka-schema-types) (The Apache Software License, Version 2.0) Log Redactor (io.confluent:logredactor:1.0.18 - https://github.com/confluentinc/logredactor) (The Apache Software License, Version 2.0) Log Redactor Metrics (io.confluent:logredactor-metrics:1.0.18 - https://github.com/confluentinc/logredactor) (Apache License 2.0) Metrics Core (io.dropwizard.metrics:metrics-core:4.2.39 - https://metrics.dropwizard.io/metrics-core) @@ -155,9 +155,6 @@ Lists of 219 third-party dependencies. (The Apache License, Version 2.0) Apache Kafka (org.apache.kafka:kafka-clients:4.3.1 - https://kafka.apache.org) (The Apache License, Version 2.0) Apache Kafka (org.apache.kafka:kafka-streams:4.3.1 - https://kafka.apache.org) (Apache-2.0) XmlSchema Core (org.apache.ws.xmlschema:xmlschema-core:2.3.2 - https://ws.apache.org/commons/xmlschema20/xmlschema-core/) - (Bouncy Castle Licence) Bouncy Castle PKIX, CMS, EAC, TSP, PKCS, OCSP, CMP, and CRMF APIs (org.bouncycastle:bcpkix-jdk18on:1.78.1 - https://www.bouncycastle.org/java.html) - (Bouncy Castle Licence) Bouncy Castle Provider (org.bouncycastle:bcprov-jdk18on:1.78.1 - https://www.bouncycastle.org/java.html) - (Bouncy Castle Licence) Bouncy Castle ASN.1 Extension and Utility APIs (org.bouncycastle:bcutil-jdk18on:1.78.1 - https://www.bouncycastle.org/java.html) (The BSD 2-Clause License) Stax2 API (org.codehaus.woodstox:stax2-api:4.3.0 - http://github.com/FasterXML/stax2-api) (EPL-2.0) grizzly-framework (org.glassfish.grizzly:grizzly-framework:4.0.2 - https://projects.eclipse.org/projects/ee4j.grizzly/grizzly-framework) (EPL-2.0) grizzly-http (org.glassfish.grizzly:grizzly-http:4.0.2 - https://projects.eclipse.org/projects/ee4j.grizzly/grizzly-http) @@ -175,24 +172,24 @@ Lists of 219 third-party dependencies. (Apache License, 2.0) (EPL 2.0) (Public Domain) (The GNU General Public License (GPL), Version 2, With Classpath Exception) jersey-core-common (org.glassfish.jersey.core:jersey-common:4.0.2 - https://projects.eclipse.org/projects/ee4j.jersey/jersey-common) (Apache License, 2.0) (EPL 2.0) (Modified BSD) (The GNU General Public License (GPL), Version 2, With Classpath Exception) jersey-core-server (org.glassfish.jersey.core:jersey-server:4.0.2 - https://projects.eclipse.org/projects/ee4j.jersey/jersey-server) (Apache License, 2.0) (BSD 2-Clause) (EDL 1.0) (EPL 2.0) (GPL2 w/ CPE) (MIT license) (Modified BSD) (Public Domain) (W3C license) (jQuery license) jersey-inject-hk2 (org.glassfish.jersey.inject:jersey-hk2:4.0.2 - https://projects.eclipse.org/projects/ee4j.jersey/project/jersey-hk2) - (Universal Permissive License, Version 1.0) Polyglot (org.graalvm.polyglot:polyglot:25.0.3 - https://github.com/oracle/graal) - (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython (org.graalvm.python:python-language:25.0.3 - http://www.graalvm.org/python) - (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython Resources (org.graalvm.python:python-resources:25.0.3 - http://www.graalvm.org/python) - (Universal Permissive License, Version 1.0) Tregex (org.graalvm.regex:regex:25.0.3 - http://www.graalvm.org/) - (Universal Permissive License, Version 1.0) Collections (org.graalvm.sdk:collections:25.0.3 - https://github.com/oracle/graal) - (Universal Permissive License, Version 1.0) Jniutils (org.graalvm.sdk:jniutils:25.0.3 - https://github.com/oracle/graal) - (Universal Permissive License, Version 1.0) Nativeimage (org.graalvm.sdk:nativeimage:25.0.3 - https://github.com/oracle/graal) - (Universal Permissive License, Version 1.0) Word (org.graalvm.sdk:word:25.0.3 - https://github.com/oracle/graal) - (Unicode/ICU License) Truffle Icu4j (org.graalvm.shadowed:icu4j:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Json (org.graalvm.shadowed:json:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Xz (org.graalvm.shadowed:xz:25.0.3 - http://openjdk.java.net/projects/graal) - (GNU General Public License, version 2, with the Classpath Exception) Truffle Profiler (org.graalvm.tools:profiler-tool:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle API (org.graalvm.truffle:truffle-api:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Compiler (org.graalvm.truffle:truffle-compiler:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Nfi (org.graalvm.truffle:truffle-nfi:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Nfi Libffi (org.graalvm.truffle:truffle-nfi-libffi:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Nfi Panama (org.graalvm.truffle:truffle-nfi-panama:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Runtime (org.graalvm.truffle:truffle-runtime:25.0.3 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Polyglot (org.graalvm.polyglot:polyglot:25.0.4 - https://github.com/oracle/graal) + (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython (org.graalvm.python:python-language:25.0.4 - http://www.graalvm.org/python) + (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython Resources (org.graalvm.python:python-resources:25.0.4 - http://www.graalvm.org/python) + (Universal Permissive License, Version 1.0) Tregex (org.graalvm.regex:regex:25.0.4 - http://www.graalvm.org/) + (Universal Permissive License, Version 1.0) Collections (org.graalvm.sdk:collections:25.0.4 - https://github.com/oracle/graal) + (Universal Permissive License, Version 1.0) Jniutils (org.graalvm.sdk:jniutils:25.0.4 - https://github.com/oracle/graal) + (Universal Permissive License, Version 1.0) Nativeimage (org.graalvm.sdk:nativeimage:25.0.4 - https://github.com/oracle/graal) + (Universal Permissive License, Version 1.0) Word (org.graalvm.sdk:word:25.0.4 - https://github.com/oracle/graal) + (Unicode/ICU License) Truffle Icu4j (org.graalvm.shadowed:icu4j:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Json (org.graalvm.shadowed:json:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Xz (org.graalvm.shadowed:xz:25.0.4 - http://openjdk.java.net/projects/graal) + (GNU General Public License, version 2, with the Classpath Exception) Truffle Profiler (org.graalvm.tools:profiler-tool:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle API (org.graalvm.truffle:truffle-api:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Compiler (org.graalvm.truffle:truffle-compiler:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Nfi (org.graalvm.truffle:truffle-nfi:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Nfi Libffi (org.graalvm.truffle:truffle-nfi-libffi:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Nfi Panama (org.graalvm.truffle:truffle-nfi-panama:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Runtime (org.graalvm.truffle:truffle-runtime:25.0.4 - http://openjdk.java.net/projects/graal) (Apache License 2.0) (LGPL 2.1) (MPL 1.1) Javassist (org.javassist:javassist:3.30.2-GA - https://www.javassist.org/) (The Apache Software License, Version 2.0) IntelliJ IDEA Annotations (org.jetbrains:annotations:13.0 - http://www.jetbrains.org) (The Apache License, Version 2.0) Kotlin Reflect (org.jetbrains.kotlin:kotlin-reflect:2.1.21 - https://kotlinlang.org/) @@ -212,10 +209,10 @@ Lists of 219 third-party dependencies. (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) (Apache License, Version 2.0) SnakeYAML (org.yaml:snakeyaml:2.0 - https://bitbucket.org/snakeyaml/snakeyaml) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (tools.jackson.dataformat:jackson-dataformat-csv:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson-dataformat-XML (tools.jackson.dataformat:jackson-dataformat-xml:3.2.0 - https://github.com/FasterXML/jackson-dataformat-xml) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson Jakarta-RS: base (tools.jackson.jakarta.rs:jackson-jakarta-rs-base:3.2.0 - http://github.com/FasterXML/jackson-jakarta-rs-providers/jackson-jakarta-rs-base) - (The Apache Software License, Version 2.0) Jackson Jakarta-RS: JSON (tools.jackson.jakarta.rs:jackson-jakarta-rs-json-provider:3.2.0 - http://github.com/FasterXML/jackson-jakarta-rs-providers/jackson-jakarta-rs-json-provider) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (tools.jackson.dataformat:jackson-dataformat-csv:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-dataformat-XML (tools.jackson.dataformat:jackson-dataformat-xml:3.2.1 - https://github.com/FasterXML/jackson-dataformat-xml) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson Jakarta-RS: base (tools.jackson.jakarta.rs:jackson-jakarta-rs-base:3.2.1 - http://github.com/FasterXML/jackson-jakarta-rs-providers/jackson-jakarta-rs-base) + (The Apache Software License, Version 2.0) Jackson Jakarta-RS: JSON (tools.jackson.jakarta.rs:jackson-jakarta-rs-json-provider:3.2.1 - http://github.com/FasterXML/jackson-jakarta-rs-providers/jackson-jakarta-rs-json-provider) diff --git a/ksml-runner/NOTICE.txt b/ksml-runner/NOTICE.txt index af098ca5c..b8f92571b 100644 --- a/ksml-runner/NOTICE.txt +++ b/ksml-runner/NOTICE.txt @@ -1,24 +1,24 @@ -Lists of 245 third-party dependencies. +Lists of 242 third-party dependencies. (Apache License, Version 2.0) LZ4 Java Compression (at.yawk.lz4:lz4-java:1.10.2 - https://github.com/yawkat/lz4-java) - (EPL-2.0) (LGPL-2.1-only) Logback Classic Module (ch.qos.logback:logback-classic:1.5.37 - http://logback.qos.ch/logback-classic) - (EPL-2.0) (LGPL-2.1-only) Logback Core Module (ch.qos.logback:logback-core:1.5.37 - http://logback.qos.ch/logback-core) + (EPL-2.0) (LGPL-2.1-only) Logback Classic Module (ch.qos.logback:logback-classic:1.6.1 - http://logback.qos.ch/logback-classic) + (EPL-2.0) (LGPL-2.1-only) Logback Core Module (ch.qos.logback:logback-core:1.6.1 - http://logback.qos.ch/logback-core) (The Apache Software License, Version 2.0) Handy URI Templates (com.damnhandy:handy-uri-templates:2.1.8 - https://github.com/damnhandy/Handy-URI-Templates) (Apache License, Version 2.0) com.dashjoin:jsonata (com.dashjoin:jsonata:0.9.10 - https://github.com/dashjoin/jsonata-java) (MIT License) minimal-json (com.eclipsesource.minimal-json:minimal-json:0.9.5 - https://github.com/ralfstx/minimal-json) (Apache License, Version 2.0) Internet Time Utility (com.ethlo.time:itu:1.14.0 - https://github.com/ethlo/itu) (Apache License, Version 2.0) ClassMate (com.fasterxml:classmate:1.7.2 - https://github.com/FasterXML/java-classmate) (The Apache Software License, Version 2.0) Jackson-annotations (com.fasterxml.jackson.core:jackson-annotations:2.22 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.22.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.22.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson datatype: Guava (com.fasterxml.jackson.datatype:jackson-datatype-guava:2.22.0 - https://github.com/FasterXML/jackson-datatypes-collections) - (The Apache Software License, Version 2.0) Jackson datatype: jdk8 (com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) - (The Apache Software License, Version 2.0) Jackson datatype: Joda (com.fasterxml.jackson.datatype:jackson-datatype-joda:2.22.0 - https://github.com/FasterXML/jackson-datatype-joda) - (The Apache Software License, Version 2.0) Jackson datatype: org.json (com.fasterxml.jackson.datatype:jackson-datatype-json-org:2.22.0 - https://github.com/FasterXML/jackson-datatypes-misc) - (The Apache Software License, Version 2.0) Jackson datatype: JSR310 (com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) - (The Apache Software License, Version 2.0) Jackson-module-parameter-names (com.fasterxml.jackson.module:jackson-module-parameter-names:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) + (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.22.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.22.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson datatype: Guava (com.fasterxml.jackson.datatype:jackson-datatype-guava:2.22.1 - https://github.com/FasterXML/jackson-datatypes-collections) + (The Apache Software License, Version 2.0) Jackson datatype: jdk8 (com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) + (The Apache Software License, Version 2.0) Jackson datatype: Joda (com.fasterxml.jackson.datatype:jackson-datatype-joda:2.22.1 - https://github.com/FasterXML/jackson-datatype-joda) + (The Apache Software License, Version 2.0) Jackson datatype: org.json (com.fasterxml.jackson.datatype:jackson-datatype-json-org:2.22.1 - https://github.com/FasterXML/jackson-datatypes-misc) + (The Apache Software License, Version 2.0) Jackson datatype: JSR310 (com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) + (The Apache Software License, Version 2.0) Jackson-module-parameter-names (com.fasterxml.jackson.module:jackson-module-parameter-names:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) (The Apache License, Version 2.0) Woodstox (com.fasterxml.woodstox:woodstox-core:7.2.1 - https://github.com/FasterXML/woodstox) (Apache License, Version 2.0) everit-json-schema (com.github.erosb:everit-json-schema:1.14.6 - https://github.com/erosb/everit-json-schema) (MIT) json-sKema (com.github.erosb:json-sKema:0.30.0 - https://github.com/erosb/json-sKema) @@ -99,19 +99,19 @@ Lists of 245 third-party dependencies. (Apache 2.0) KSML Kafka clients (io.axual.ksml:ksml-kafka-clients:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-kafka-clients) (Apache 2.0) KSML Queryable State Store (io.axual.ksml:ksml-query:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-query) (Apache 2.0) Axual Header Cleaning (io.axual.utils:axual-header-cleaning:1.0.0 - https://gitlab.com/axual/public/axual-utils/axual-header-cleaning) - (Apache License 2.0) config (io.confluent:common-config:8.3.0 - https://confluent.io/common-config) - (Apache License 2.0) utils (io.confluent:common-utils:8.3.0 - https://confluent.io/common-utils) - (Apache License 2.0) kafka-avro-serializer (io.confluent:kafka-avro-serializer:8.3.0 - http://confluent.io/kafka-avro-serializer) - (Apache License 2.0) kafka-avro-types (io.confluent:kafka-avro-types:8.3.0 - http://confluent.io/kafka-avro-types) - (Apache License 2.0) (Confluent Community License) kafka-json-schema-provider (io.confluent:kafka-json-schema-provider:8.3.0 - http://confluent.io/kafka-json-schema-provider) - (Apache License 2.0) (Confluent Community License) kafka-json-schema-serializer (io.confluent:kafka-json-schema-serializer:8.3.0 - http://confluent.io/kafka-json-schema-serializer) - (Apache License 2.0) kafka-json-serializer (io.confluent:kafka-json-serializer:8.3.0 - http://confluent.io/kafka-json-serializer) - (Apache License 2.0) (Confluent Community License) kafka-protobuf-provider (io.confluent:kafka-protobuf-provider:8.3.0 - http://confluent.io/kafka-protobuf-provider) - (Apache License 2.0) (Confluent Community License) kafka-protobuf-serializer (io.confluent:kafka-protobuf-serializer:8.3.0 - http://confluent.io/kafka-protobuf-serializer) - (Apache License 2.0) (Confluent Community License) kafka-protobuf-types (io.confluent:kafka-protobuf-types:8.3.0 - http://confluent.io/kafka-protobuf-types) - (Apache License 2.0) kafka-schema-registry-client (io.confluent:kafka-schema-registry-client:8.3.0 - http://confluent.io/kafka-schema-registry-client) - (Apache License 2.0) kafka-schema-serializer (io.confluent:kafka-schema-serializer:8.3.0 - http://confluent.io/kafka-schema-serializer) - (Apache License 2.0) kafka-schema-types (io.confluent:kafka-schema-types:8.3.0 - http://confluent.io/kafka-schema-types) + (Apache License 2.0) config (io.confluent:common-config:8.3.1 - https://confluent.io/common-config) + (Apache License 2.0) utils (io.confluent:common-utils:8.3.1 - https://confluent.io/common-utils) + (Apache License 2.0) kafka-avro-serializer (io.confluent:kafka-avro-serializer:8.3.1 - http://confluent.io/kafka-avro-serializer) + (Apache License 2.0) kafka-avro-types (io.confluent:kafka-avro-types:8.3.1 - http://confluent.io/kafka-avro-types) + (Apache License 2.0) (Confluent Community License) kafka-json-schema-provider (io.confluent:kafka-json-schema-provider:8.3.1 - http://confluent.io/kafka-json-schema-provider) + (Apache License 2.0) (Confluent Community License) kafka-json-schema-serializer (io.confluent:kafka-json-schema-serializer:8.3.1 - http://confluent.io/kafka-json-schema-serializer) + (Apache License 2.0) kafka-json-serializer (io.confluent:kafka-json-serializer:8.3.1 - http://confluent.io/kafka-json-serializer) + (Apache License 2.0) (Confluent Community License) kafka-protobuf-provider (io.confluent:kafka-protobuf-provider:8.3.1 - http://confluent.io/kafka-protobuf-provider) + (Apache License 2.0) (Confluent Community License) kafka-protobuf-serializer (io.confluent:kafka-protobuf-serializer:8.3.1 - http://confluent.io/kafka-protobuf-serializer) + (Apache License 2.0) (Confluent Community License) kafka-protobuf-types (io.confluent:kafka-protobuf-types:8.3.1 - http://confluent.io/kafka-protobuf-types) + (Apache License 2.0) kafka-schema-registry-client (io.confluent:kafka-schema-registry-client:8.3.1 - http://confluent.io/kafka-schema-registry-client) + (Apache License 2.0) kafka-schema-serializer (io.confluent:kafka-schema-serializer:8.3.1 - http://confluent.io/kafka-schema-serializer) + (Apache License 2.0) kafka-schema-types (io.confluent:kafka-schema-types:8.3.1 - http://confluent.io/kafka-schema-types) (The Apache Software License, Version 2.0) Log Redactor (io.confluent:logredactor:1.0.18 - https://github.com/confluentinc/logredactor) (The Apache Software License, Version 2.0) Log Redactor Metrics (io.confluent:logredactor-metrics:1.0.18 - https://github.com/confluentinc/logredactor) (Apache License 2.0) Metrics Core (io.dropwizard.metrics:metrics-core:4.2.39 - https://metrics.dropwizard.io/metrics-core) @@ -179,9 +179,6 @@ Lists of 245 third-party dependencies. (The Apache License, Version 2.0) Apache Kafka (org.apache.kafka:kafka-clients:4.3.1 - https://kafka.apache.org) (The Apache License, Version 2.0) Apache Kafka (org.apache.kafka:kafka-streams:4.3.1 - https://kafka.apache.org) (Apache-2.0) XmlSchema Core (org.apache.ws.xmlschema:xmlschema-core:2.3.2 - https://ws.apache.org/commons/xmlschema20/xmlschema-core/) - (Bouncy Castle Licence) Bouncy Castle PKIX, CMS, EAC, TSP, PKCS, OCSP, CMP, and CRMF APIs (org.bouncycastle:bcpkix-jdk18on:1.78.1 - https://www.bouncycastle.org/java.html) - (Bouncy Castle Licence) Bouncy Castle Provider (org.bouncycastle:bcprov-jdk18on:1.78.1 - https://www.bouncycastle.org/java.html) - (Bouncy Castle Licence) Bouncy Castle ASN.1 Extension and Utility APIs (org.bouncycastle:bcutil-jdk18on:1.78.1 - https://www.bouncycastle.org/java.html) (BSD-3-Clause) commons-compiler (org.codehaus.janino:commons-compiler:3.1.12 - http://janino-compiler.github.io/commons-compiler/) (BSD-3-Clause) janino (org.codehaus.janino:janino:3.1.12 - http://janino-compiler.github.io/janino/) (The BSD 2-Clause License) Stax2 API (org.codehaus.woodstox:stax2-api:4.3.0 - http://github.com/FasterXML/stax2-api) @@ -201,24 +198,24 @@ Lists of 245 third-party dependencies. (Apache License, 2.0) (EPL 2.0) (Public Domain) (The GNU General Public License (GPL), Version 2, With Classpath Exception) jersey-core-common (org.glassfish.jersey.core:jersey-common:4.0.2 - https://projects.eclipse.org/projects/ee4j.jersey/jersey-common) (Apache License, 2.0) (EPL 2.0) (Modified BSD) (The GNU General Public License (GPL), Version 2, With Classpath Exception) jersey-core-server (org.glassfish.jersey.core:jersey-server:4.0.2 - https://projects.eclipse.org/projects/ee4j.jersey/jersey-server) (Apache License, 2.0) (BSD 2-Clause) (EDL 1.0) (EPL 2.0) (GPL2 w/ CPE) (MIT license) (Modified BSD) (Public Domain) (W3C license) (jQuery license) jersey-inject-hk2 (org.glassfish.jersey.inject:jersey-hk2:4.0.2 - https://projects.eclipse.org/projects/ee4j.jersey/project/jersey-hk2) - (Universal Permissive License, Version 1.0) Polyglot (org.graalvm.polyglot:polyglot:25.0.3 - https://github.com/oracle/graal) - (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython (org.graalvm.python:python-language:25.0.3 - http://www.graalvm.org/python) - (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython Resources (org.graalvm.python:python-resources:25.0.3 - http://www.graalvm.org/python) - (Universal Permissive License, Version 1.0) Tregex (org.graalvm.regex:regex:25.0.3 - http://www.graalvm.org/) - (Universal Permissive License, Version 1.0) Collections (org.graalvm.sdk:collections:25.0.3 - https://github.com/oracle/graal) - (Universal Permissive License, Version 1.0) Jniutils (org.graalvm.sdk:jniutils:25.0.3 - https://github.com/oracle/graal) - (Universal Permissive License, Version 1.0) Nativeimage (org.graalvm.sdk:nativeimage:25.0.3 - https://github.com/oracle/graal) - (Universal Permissive License, Version 1.0) Word (org.graalvm.sdk:word:25.0.3 - https://github.com/oracle/graal) - (Unicode/ICU License) Truffle Icu4j (org.graalvm.shadowed:icu4j:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Json (org.graalvm.shadowed:json:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Xz (org.graalvm.shadowed:xz:25.0.3 - http://openjdk.java.net/projects/graal) - (GNU General Public License, version 2, with the Classpath Exception) Truffle Profiler (org.graalvm.tools:profiler-tool:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle API (org.graalvm.truffle:truffle-api:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Compiler (org.graalvm.truffle:truffle-compiler:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Nfi (org.graalvm.truffle:truffle-nfi:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Nfi Libffi (org.graalvm.truffle:truffle-nfi-libffi:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Nfi Panama (org.graalvm.truffle:truffle-nfi-panama:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Runtime (org.graalvm.truffle:truffle-runtime:25.0.3 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Polyglot (org.graalvm.polyglot:polyglot:25.0.4 - https://github.com/oracle/graal) + (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython (org.graalvm.python:python-language:25.0.4 - http://www.graalvm.org/python) + (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython Resources (org.graalvm.python:python-resources:25.0.4 - http://www.graalvm.org/python) + (Universal Permissive License, Version 1.0) Tregex (org.graalvm.regex:regex:25.0.4 - http://www.graalvm.org/) + (Universal Permissive License, Version 1.0) Collections (org.graalvm.sdk:collections:25.0.4 - https://github.com/oracle/graal) + (Universal Permissive License, Version 1.0) Jniutils (org.graalvm.sdk:jniutils:25.0.4 - https://github.com/oracle/graal) + (Universal Permissive License, Version 1.0) Nativeimage (org.graalvm.sdk:nativeimage:25.0.4 - https://github.com/oracle/graal) + (Universal Permissive License, Version 1.0) Word (org.graalvm.sdk:word:25.0.4 - https://github.com/oracle/graal) + (Unicode/ICU License) Truffle Icu4j (org.graalvm.shadowed:icu4j:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Json (org.graalvm.shadowed:json:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Xz (org.graalvm.shadowed:xz:25.0.4 - http://openjdk.java.net/projects/graal) + (GNU General Public License, version 2, with the Classpath Exception) Truffle Profiler (org.graalvm.tools:profiler-tool:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle API (org.graalvm.truffle:truffle-api:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Compiler (org.graalvm.truffle:truffle-compiler:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Nfi (org.graalvm.truffle:truffle-nfi:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Nfi Libffi (org.graalvm.truffle:truffle-nfi-libffi:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Nfi Panama (org.graalvm.truffle:truffle-nfi-panama:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Runtime (org.graalvm.truffle:truffle-runtime:25.0.4 - http://openjdk.java.net/projects/graal) (Apache License 2.0) (LGPL 2.1) (MPL 1.1) Javassist (org.javassist:javassist:3.30.2-GA - https://www.javassist.org/) (The Apache Software License, Version 2.0) IntelliJ IDEA Annotations (org.jetbrains:annotations:13.0 - http://www.jetbrains.org) (The Apache License, Version 2.0) Kotlin Reflect (org.jetbrains.kotlin:kotlin-reflect:2.1.21 - https://kotlinlang.org/) @@ -238,10 +235,10 @@ Lists of 245 third-party dependencies. (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) (Apache License, Version 2.0) SnakeYAML (org.yaml:snakeyaml:2.2 - https://bitbucket.org/snakeyaml/snakeyaml) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (tools.jackson.dataformat:jackson-dataformat-csv:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson-dataformat-XML (tools.jackson.dataformat:jackson-dataformat-xml:3.2.0 - https://github.com/FasterXML/jackson-dataformat-xml) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson Jakarta-RS: base (tools.jackson.jakarta.rs:jackson-jakarta-rs-base:3.2.0 - http://github.com/FasterXML/jackson-jakarta-rs-providers/jackson-jakarta-rs-base) - (The Apache Software License, Version 2.0) Jackson Jakarta-RS: JSON (tools.jackson.jakarta.rs:jackson-jakarta-rs-json-provider:3.2.0 - http://github.com/FasterXML/jackson-jakarta-rs-providers/jackson-jakarta-rs-json-provider) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (tools.jackson.dataformat:jackson-dataformat-csv:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-dataformat-XML (tools.jackson.dataformat:jackson-dataformat-xml:3.2.1 - https://github.com/FasterXML/jackson-dataformat-xml) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson Jakarta-RS: base (tools.jackson.jakarta.rs:jackson-jakarta-rs-base:3.2.1 - http://github.com/FasterXML/jackson-jakarta-rs-providers/jackson-jakarta-rs-base) + (The Apache Software License, Version 2.0) Jackson Jakarta-RS: JSON (tools.jackson.jakarta.rs:jackson-jakarta-rs-json-provider:3.2.1 - http://github.com/FasterXML/jackson-jakarta-rs-providers/jackson-jakarta-rs-json-provider) diff --git a/ksml-test-runner/NOTICE.txt b/ksml-test-runner/NOTICE.txt index e25d1435d..a391e9ccd 100644 --- a/ksml-test-runner/NOTICE.txt +++ b/ksml-test-runner/NOTICE.txt @@ -1,23 +1,23 @@ -Lists of 200 third-party dependencies. +Lists of 197 third-party dependencies. (Apache License, Version 2.0) LZ4 Java Compression (at.yawk.lz4:lz4-java:1.10.2 - https://github.com/yawkat/lz4-java) - (EPL-2.0) (LGPL-2.1-only) Logback Classic Module (ch.qos.logback:logback-classic:1.5.37 - http://logback.qos.ch/logback-classic) - (EPL-2.0) (LGPL-2.1-only) Logback Core Module (ch.qos.logback:logback-core:1.5.37 - http://logback.qos.ch/logback-core) + (EPL-2.0) (LGPL-2.1-only) Logback Classic Module (ch.qos.logback:logback-classic:1.6.1 - http://logback.qos.ch/logback-classic) + (EPL-2.0) (LGPL-2.1-only) Logback Core Module (ch.qos.logback:logback-core:1.6.1 - http://logback.qos.ch/logback-core) (The Apache Software License, Version 2.0) Handy URI Templates (com.damnhandy:handy-uri-templates:2.1.8 - https://github.com/damnhandy/Handy-URI-Templates) (Apache License, Version 2.0) com.dashjoin:jsonata (com.dashjoin:jsonata:0.9.10 - https://github.com/dashjoin/jsonata-java) (MIT License) minimal-json (com.eclipsesource.minimal-json:minimal-json:0.9.5 - https://github.com/ralfstx/minimal-json) (Apache License, Version 2.0) Internet Time Utility (com.ethlo.time:itu:1.14.0 - https://github.com/ethlo/itu) (The Apache Software License, Version 2.0) Jackson-annotations (com.fasterxml.jackson.core:jackson-annotations:2.22 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.22.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.22.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson datatype: Guava (com.fasterxml.jackson.datatype:jackson-datatype-guava:2.22.0 - https://github.com/FasterXML/jackson-datatypes-collections) - (The Apache Software License, Version 2.0) Jackson datatype: jdk8 (com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) - (The Apache Software License, Version 2.0) Jackson datatype: Joda (com.fasterxml.jackson.datatype:jackson-datatype-joda:2.22.0 - https://github.com/FasterXML/jackson-datatype-joda) - (The Apache Software License, Version 2.0) Jackson datatype: org.json (com.fasterxml.jackson.datatype:jackson-datatype-json-org:2.22.0 - https://github.com/FasterXML/jackson-datatypes-misc) - (The Apache Software License, Version 2.0) Jackson datatype: JSR310 (com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) - (The Apache Software License, Version 2.0) Jackson-module-parameter-names (com.fasterxml.jackson.module:jackson-module-parameter-names:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) + (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.22.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.22.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson datatype: Guava (com.fasterxml.jackson.datatype:jackson-datatype-guava:2.22.1 - https://github.com/FasterXML/jackson-datatypes-collections) + (The Apache Software License, Version 2.0) Jackson datatype: jdk8 (com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) + (The Apache Software License, Version 2.0) Jackson datatype: Joda (com.fasterxml.jackson.datatype:jackson-datatype-joda:2.22.1 - https://github.com/FasterXML/jackson-datatype-joda) + (The Apache Software License, Version 2.0) Jackson datatype: org.json (com.fasterxml.jackson.datatype:jackson-datatype-json-org:2.22.1 - https://github.com/FasterXML/jackson-datatypes-misc) + (The Apache Software License, Version 2.0) Jackson datatype: JSR310 (com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) + (The Apache Software License, Version 2.0) Jackson-module-parameter-names (com.fasterxml.jackson.module:jackson-module-parameter-names:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) (The Apache License, Version 2.0) Woodstox (com.fasterxml.woodstox:woodstox-core:7.2.1 - https://github.com/FasterXML/woodstox) (Apache License, Version 2.0) everit-json-schema (com.github.erosb:everit-json-schema:1.14.6 - https://github.com/erosb/everit-json-schema) (MIT) json-sKema (com.github.erosb:json-sKema:0.30.0 - https://github.com/erosb/json-sKema) @@ -93,19 +93,19 @@ Lists of 200 third-party dependencies. (Apache 2.0) KSML Data Library - PROTOBUF Confluent (io.axual.ksml:ksml-data-protobuf-confluent:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-data-protobuf-confluent) (Apache 2.0) KSML Data Library - XML (io.axual.ksml:ksml-data-xml:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-data-xml) (Apache 2.0) KSML Kafka clients (io.axual.ksml:ksml-kafka-clients:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-kafka-clients) - (Apache License 2.0) config (io.confluent:common-config:8.3.0 - https://confluent.io/common-config) - (Apache License 2.0) utils (io.confluent:common-utils:8.3.0 - https://confluent.io/common-utils) - (Apache License 2.0) kafka-avro-serializer (io.confluent:kafka-avro-serializer:8.3.0 - http://confluent.io/kafka-avro-serializer) - (Apache License 2.0) kafka-avro-types (io.confluent:kafka-avro-types:8.3.0 - http://confluent.io/kafka-avro-types) - (Apache License 2.0) (Confluent Community License) kafka-json-schema-provider (io.confluent:kafka-json-schema-provider:8.3.0 - http://confluent.io/kafka-json-schema-provider) - (Apache License 2.0) (Confluent Community License) kafka-json-schema-serializer (io.confluent:kafka-json-schema-serializer:8.3.0 - http://confluent.io/kafka-json-schema-serializer) - (Apache License 2.0) kafka-json-serializer (io.confluent:kafka-json-serializer:8.3.0 - http://confluent.io/kafka-json-serializer) - (Apache License 2.0) (Confluent Community License) kafka-protobuf-provider (io.confluent:kafka-protobuf-provider:8.3.0 - http://confluent.io/kafka-protobuf-provider) - (Apache License 2.0) (Confluent Community License) kafka-protobuf-serializer (io.confluent:kafka-protobuf-serializer:8.3.0 - http://confluent.io/kafka-protobuf-serializer) - (Apache License 2.0) (Confluent Community License) kafka-protobuf-types (io.confluent:kafka-protobuf-types:8.3.0 - http://confluent.io/kafka-protobuf-types) - (Apache License 2.0) kafka-schema-registry-client (io.confluent:kafka-schema-registry-client:8.3.0 - http://confluent.io/kafka-schema-registry-client) - (Apache License 2.0) kafka-schema-serializer (io.confluent:kafka-schema-serializer:8.3.0 - http://confluent.io/kafka-schema-serializer) - (Apache License 2.0) kafka-schema-types (io.confluent:kafka-schema-types:8.3.0 - http://confluent.io/kafka-schema-types) + (Apache License 2.0) config (io.confluent:common-config:8.3.1 - https://confluent.io/common-config) + (Apache License 2.0) utils (io.confluent:common-utils:8.3.1 - https://confluent.io/common-utils) + (Apache License 2.0) kafka-avro-serializer (io.confluent:kafka-avro-serializer:8.3.1 - http://confluent.io/kafka-avro-serializer) + (Apache License 2.0) kafka-avro-types (io.confluent:kafka-avro-types:8.3.1 - http://confluent.io/kafka-avro-types) + (Apache License 2.0) (Confluent Community License) kafka-json-schema-provider (io.confluent:kafka-json-schema-provider:8.3.1 - http://confluent.io/kafka-json-schema-provider) + (Apache License 2.0) (Confluent Community License) kafka-json-schema-serializer (io.confluent:kafka-json-schema-serializer:8.3.1 - http://confluent.io/kafka-json-schema-serializer) + (Apache License 2.0) kafka-json-serializer (io.confluent:kafka-json-serializer:8.3.1 - http://confluent.io/kafka-json-serializer) + (Apache License 2.0) (Confluent Community License) kafka-protobuf-provider (io.confluent:kafka-protobuf-provider:8.3.1 - http://confluent.io/kafka-protobuf-provider) + (Apache License 2.0) (Confluent Community License) kafka-protobuf-serializer (io.confluent:kafka-protobuf-serializer:8.3.1 - http://confluent.io/kafka-protobuf-serializer) + (Apache License 2.0) (Confluent Community License) kafka-protobuf-types (io.confluent:kafka-protobuf-types:8.3.1 - http://confluent.io/kafka-protobuf-types) + (Apache License 2.0) kafka-schema-registry-client (io.confluent:kafka-schema-registry-client:8.3.1 - http://confluent.io/kafka-schema-registry-client) + (Apache License 2.0) kafka-schema-serializer (io.confluent:kafka-schema-serializer:8.3.1 - http://confluent.io/kafka-schema-serializer) + (Apache License 2.0) kafka-schema-types (io.confluent:kafka-schema-types:8.3.1 - http://confluent.io/kafka-schema-types) (The Apache Software License, Version 2.0) Log Redactor (io.confluent:logredactor:1.0.18 - https://github.com/confluentinc/logredactor) (The Apache Software License, Version 2.0) Log Redactor Metrics (io.confluent:logredactor-metrics:1.0.18 - https://github.com/confluentinc/logredactor) (Apache License 2.0) Metrics Core (io.dropwizard.metrics:metrics-core:4.2.39 - https://metrics.dropwizard.io/metrics-core) @@ -155,28 +155,25 @@ Lists of 200 third-party dependencies. (The Apache License, Version 2.0) Apache Kafka (org.apache.kafka:kafka-streams:4.3.1 - https://kafka.apache.org) (The Apache License, Version 2.0) Apache Kafka (org.apache.kafka:kafka-streams-test-utils:4.3.1 - https://kafka.apache.org) (Apache-2.0) XmlSchema Core (org.apache.ws.xmlschema:xmlschema-core:2.3.2 - https://ws.apache.org/commons/xmlschema20/xmlschema-core/) - (Bouncy Castle Licence) Bouncy Castle PKIX, CMS, EAC, TSP, PKCS, OCSP, CMP, and CRMF APIs (org.bouncycastle:bcpkix-jdk18on:1.78.1 - https://www.bouncycastle.org/java.html) - (Bouncy Castle Licence) Bouncy Castle Provider (org.bouncycastle:bcprov-jdk18on:1.78.1 - https://www.bouncycastle.org/java.html) - (Bouncy Castle Licence) Bouncy Castle ASN.1 Extension and Utility APIs (org.bouncycastle:bcutil-jdk18on:1.78.1 - https://www.bouncycastle.org/java.html) (The BSD 2-Clause License) Stax2 API (org.codehaus.woodstox:stax2-api:4.3.0 - http://github.com/FasterXML/stax2-api) - (Universal Permissive License, Version 1.0) Polyglot (org.graalvm.polyglot:polyglot:25.0.3 - https://github.com/oracle/graal) - (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython (org.graalvm.python:python-language:25.0.3 - http://www.graalvm.org/python) - (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython Resources (org.graalvm.python:python-resources:25.0.3 - http://www.graalvm.org/python) - (Universal Permissive License, Version 1.0) Tregex (org.graalvm.regex:regex:25.0.3 - http://www.graalvm.org/) - (Universal Permissive License, Version 1.0) Collections (org.graalvm.sdk:collections:25.0.3 - https://github.com/oracle/graal) - (Universal Permissive License, Version 1.0) Jniutils (org.graalvm.sdk:jniutils:25.0.3 - https://github.com/oracle/graal) - (Universal Permissive License, Version 1.0) Nativeimage (org.graalvm.sdk:nativeimage:25.0.3 - https://github.com/oracle/graal) - (Universal Permissive License, Version 1.0) Word (org.graalvm.sdk:word:25.0.3 - https://github.com/oracle/graal) - (Unicode/ICU License) Truffle Icu4j (org.graalvm.shadowed:icu4j:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Json (org.graalvm.shadowed:json:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Xz (org.graalvm.shadowed:xz:25.0.3 - http://openjdk.java.net/projects/graal) - (GNU General Public License, version 2, with the Classpath Exception) Truffle Profiler (org.graalvm.tools:profiler-tool:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle API (org.graalvm.truffle:truffle-api:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Compiler (org.graalvm.truffle:truffle-compiler:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Nfi (org.graalvm.truffle:truffle-nfi:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Nfi Libffi (org.graalvm.truffle:truffle-nfi-libffi:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Nfi Panama (org.graalvm.truffle:truffle-nfi-panama:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Runtime (org.graalvm.truffle:truffle-runtime:25.0.3 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Polyglot (org.graalvm.polyglot:polyglot:25.0.4 - https://github.com/oracle/graal) + (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython (org.graalvm.python:python-language:25.0.4 - http://www.graalvm.org/python) + (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython Resources (org.graalvm.python:python-resources:25.0.4 - http://www.graalvm.org/python) + (Universal Permissive License, Version 1.0) Tregex (org.graalvm.regex:regex:25.0.4 - http://www.graalvm.org/) + (Universal Permissive License, Version 1.0) Collections (org.graalvm.sdk:collections:25.0.4 - https://github.com/oracle/graal) + (Universal Permissive License, Version 1.0) Jniutils (org.graalvm.sdk:jniutils:25.0.4 - https://github.com/oracle/graal) + (Universal Permissive License, Version 1.0) Nativeimage (org.graalvm.sdk:nativeimage:25.0.4 - https://github.com/oracle/graal) + (Universal Permissive License, Version 1.0) Word (org.graalvm.sdk:word:25.0.4 - https://github.com/oracle/graal) + (Unicode/ICU License) Truffle Icu4j (org.graalvm.shadowed:icu4j:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Json (org.graalvm.shadowed:json:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Xz (org.graalvm.shadowed:xz:25.0.4 - http://openjdk.java.net/projects/graal) + (GNU General Public License, version 2, with the Classpath Exception) Truffle Profiler (org.graalvm.tools:profiler-tool:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle API (org.graalvm.truffle:truffle-api:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Compiler (org.graalvm.truffle:truffle-compiler:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Nfi (org.graalvm.truffle:truffle-nfi:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Nfi Libffi (org.graalvm.truffle:truffle-nfi-libffi:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Nfi Panama (org.graalvm.truffle:truffle-nfi-panama:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Runtime (org.graalvm.truffle:truffle-runtime:25.0.4 - http://openjdk.java.net/projects/graal) (The Apache Software License, Version 2.0) IntelliJ IDEA Annotations (org.jetbrains:annotations:13.0 - http://www.jetbrains.org) (The Apache License, Version 2.0) Kotlin Reflect (org.jetbrains.kotlin:kotlin-reflect:2.1.21 - https://kotlinlang.org/) (The Apache License, Version 2.0) Kotlin Script Runtime (org.jetbrains.kotlin:kotlin-script-runtime:1.9.10 - https://kotlinlang.org/) @@ -195,8 +192,8 @@ Lists of 200 third-party dependencies. (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) (Apache License, Version 2.0) SnakeYAML (org.yaml:snakeyaml:2.0 - https://bitbucket.org/snakeyaml/snakeyaml) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (tools.jackson.dataformat:jackson-dataformat-csv:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson-dataformat-XML (tools.jackson.dataformat:jackson-dataformat-xml:3.2.0 - https://github.com/FasterXML/jackson-dataformat-xml) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (tools.jackson.dataformat:jackson-dataformat-csv:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-dataformat-XML (tools.jackson.dataformat:jackson-dataformat-xml:3.2.1 - https://github.com/FasterXML/jackson-dataformat-xml) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) diff --git a/ksml/NOTICE.txt b/ksml/NOTICE.txt index 874cde3e8..d4c3d5380 100644 --- a/ksml/NOTICE.txt +++ b/ksml/NOTICE.txt @@ -1,21 +1,21 @@ -Lists of 195 third-party dependencies. +Lists of 192 third-party dependencies. (Apache License, Version 2.0) LZ4 Java Compression (at.yawk.lz4:lz4-java:1.10.2 - https://github.com/yawkat/lz4-java) (The Apache Software License, Version 2.0) Handy URI Templates (com.damnhandy:handy-uri-templates:2.1.8 - https://github.com/damnhandy/Handy-URI-Templates) (Apache License, Version 2.0) com.dashjoin:jsonata (com.dashjoin:jsonata:0.9.10 - https://github.com/dashjoin/jsonata-java) (MIT License) minimal-json (com.eclipsesource.minimal-json:minimal-json:0.9.5 - https://github.com/ralfstx/minimal-json) (Apache License, Version 2.0) Internet Time Utility (com.ethlo.time:itu:1.14.0 - https://github.com/ethlo/itu) (The Apache Software License, Version 2.0) Jackson-annotations (com.fasterxml.jackson.core:jackson-annotations:2.22 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.22.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.22.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson datatype: Guava (com.fasterxml.jackson.datatype:jackson-datatype-guava:2.22.0 - https://github.com/FasterXML/jackson-datatypes-collections) - (The Apache Software License, Version 2.0) Jackson datatype: jdk8 (com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) - (The Apache Software License, Version 2.0) Jackson datatype: Joda (com.fasterxml.jackson.datatype:jackson-datatype-joda:2.22.0 - https://github.com/FasterXML/jackson-datatype-joda) - (The Apache Software License, Version 2.0) Jackson datatype: org.json (com.fasterxml.jackson.datatype:jackson-datatype-json-org:2.22.0 - https://github.com/FasterXML/jackson-datatypes-misc) - (The Apache Software License, Version 2.0) Jackson datatype: JSR310 (com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) - (The Apache Software License, Version 2.0) Jackson-module-parameter-names (com.fasterxml.jackson.module:jackson-module-parameter-names:2.22.0 - https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) + (The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.22.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.22.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.22.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.22.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson datatype: Guava (com.fasterxml.jackson.datatype:jackson-datatype-guava:2.22.1 - https://github.com/FasterXML/jackson-datatypes-collections) + (The Apache Software License, Version 2.0) Jackson datatype: jdk8 (com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) + (The Apache Software License, Version 2.0) Jackson datatype: Joda (com.fasterxml.jackson.datatype:jackson-datatype-joda:2.22.1 - https://github.com/FasterXML/jackson-datatype-joda) + (The Apache Software License, Version 2.0) Jackson datatype: org.json (com.fasterxml.jackson.datatype:jackson-datatype-json-org:2.22.1 - https://github.com/FasterXML/jackson-datatypes-misc) + (The Apache Software License, Version 2.0) Jackson datatype: JSR310 (com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) + (The Apache Software License, Version 2.0) Jackson-module-parameter-names (com.fasterxml.jackson.module:jackson-module-parameter-names:2.22.1 - https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) (The Apache License, Version 2.0) Woodstox (com.fasterxml.woodstox:woodstox-core:7.2.1 - https://github.com/FasterXML/woodstox) (Apache License, Version 2.0) everit-json-schema (com.github.erosb:everit-json-schema:1.14.6 - https://github.com/erosb/everit-json-schema) (MIT) json-sKema (com.github.erosb:json-sKema:0.30.0 - https://github.com/erosb/json-sKema) @@ -89,19 +89,19 @@ Lists of 195 third-party dependencies. (Apache 2.0) KSML Data Library - PROTOBUF Confluent (io.axual.ksml:ksml-data-protobuf-confluent:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-data-protobuf-confluent) (Apache 2.0) KSML Data Library - XML (io.axual.ksml:ksml-data-xml:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-data-xml) (Apache 2.0) KSML Kafka clients (io.axual.ksml:ksml-kafka-clients:2.0.0-SNAPSHOT - https://github.com/Axual/ksml/ksml-kafka-clients) - (Apache License 2.0) config (io.confluent:common-config:8.3.0 - https://confluent.io/common-config) - (Apache License 2.0) utils (io.confluent:common-utils:8.3.0 - https://confluent.io/common-utils) - (Apache License 2.0) kafka-avro-serializer (io.confluent:kafka-avro-serializer:8.3.0 - http://confluent.io/kafka-avro-serializer) - (Apache License 2.0) kafka-avro-types (io.confluent:kafka-avro-types:8.3.0 - http://confluent.io/kafka-avro-types) - (Apache License 2.0) (Confluent Community License) kafka-json-schema-provider (io.confluent:kafka-json-schema-provider:8.3.0 - http://confluent.io/kafka-json-schema-provider) - (Apache License 2.0) (Confluent Community License) kafka-json-schema-serializer (io.confluent:kafka-json-schema-serializer:8.3.0 - http://confluent.io/kafka-json-schema-serializer) - (Apache License 2.0) kafka-json-serializer (io.confluent:kafka-json-serializer:8.3.0 - http://confluent.io/kafka-json-serializer) - (Apache License 2.0) (Confluent Community License) kafka-protobuf-provider (io.confluent:kafka-protobuf-provider:8.3.0 - http://confluent.io/kafka-protobuf-provider) - (Apache License 2.0) (Confluent Community License) kafka-protobuf-serializer (io.confluent:kafka-protobuf-serializer:8.3.0 - http://confluent.io/kafka-protobuf-serializer) - (Apache License 2.0) (Confluent Community License) kafka-protobuf-types (io.confluent:kafka-protobuf-types:8.3.0 - http://confluent.io/kafka-protobuf-types) - (Apache License 2.0) kafka-schema-registry-client (io.confluent:kafka-schema-registry-client:8.3.0 - http://confluent.io/kafka-schema-registry-client) - (Apache License 2.0) kafka-schema-serializer (io.confluent:kafka-schema-serializer:8.3.0 - http://confluent.io/kafka-schema-serializer) - (Apache License 2.0) kafka-schema-types (io.confluent:kafka-schema-types:8.3.0 - http://confluent.io/kafka-schema-types) + (Apache License 2.0) config (io.confluent:common-config:8.3.1 - https://confluent.io/common-config) + (Apache License 2.0) utils (io.confluent:common-utils:8.3.1 - https://confluent.io/common-utils) + (Apache License 2.0) kafka-avro-serializer (io.confluent:kafka-avro-serializer:8.3.1 - http://confluent.io/kafka-avro-serializer) + (Apache License 2.0) kafka-avro-types (io.confluent:kafka-avro-types:8.3.1 - http://confluent.io/kafka-avro-types) + (Apache License 2.0) (Confluent Community License) kafka-json-schema-provider (io.confluent:kafka-json-schema-provider:8.3.1 - http://confluent.io/kafka-json-schema-provider) + (Apache License 2.0) (Confluent Community License) kafka-json-schema-serializer (io.confluent:kafka-json-schema-serializer:8.3.1 - http://confluent.io/kafka-json-schema-serializer) + (Apache License 2.0) kafka-json-serializer (io.confluent:kafka-json-serializer:8.3.1 - http://confluent.io/kafka-json-serializer) + (Apache License 2.0) (Confluent Community License) kafka-protobuf-provider (io.confluent:kafka-protobuf-provider:8.3.1 - http://confluent.io/kafka-protobuf-provider) + (Apache License 2.0) (Confluent Community License) kafka-protobuf-serializer (io.confluent:kafka-protobuf-serializer:8.3.1 - http://confluent.io/kafka-protobuf-serializer) + (Apache License 2.0) (Confluent Community License) kafka-protobuf-types (io.confluent:kafka-protobuf-types:8.3.1 - http://confluent.io/kafka-protobuf-types) + (Apache License 2.0) kafka-schema-registry-client (io.confluent:kafka-schema-registry-client:8.3.1 - http://confluent.io/kafka-schema-registry-client) + (Apache License 2.0) kafka-schema-serializer (io.confluent:kafka-schema-serializer:8.3.1 - http://confluent.io/kafka-schema-serializer) + (Apache License 2.0) kafka-schema-types (io.confluent:kafka-schema-types:8.3.1 - http://confluent.io/kafka-schema-types) (The Apache Software License, Version 2.0) Log Redactor (io.confluent:logredactor:1.0.18 - https://github.com/confluentinc/logredactor) (The Apache Software License, Version 2.0) Log Redactor Metrics (io.confluent:logredactor-metrics:1.0.18 - https://github.com/confluentinc/logredactor) (Apache License 2.0) Metrics Core (io.dropwizard.metrics:metrics-core:4.2.39 - https://metrics.dropwizard.io/metrics-core) @@ -150,28 +150,25 @@ Lists of 195 third-party dependencies. (The Apache License, Version 2.0) Apache Kafka (org.apache.kafka:kafka-clients:4.3.1 - https://kafka.apache.org) (The Apache License, Version 2.0) Apache Kafka (org.apache.kafka:kafka-streams:4.3.1 - https://kafka.apache.org) (Apache-2.0) XmlSchema Core (org.apache.ws.xmlschema:xmlschema-core:2.3.2 - https://ws.apache.org/commons/xmlschema20/xmlschema-core/) - (Bouncy Castle Licence) Bouncy Castle PKIX, CMS, EAC, TSP, PKCS, OCSP, CMP, and CRMF APIs (org.bouncycastle:bcpkix-jdk18on:1.78.1 - https://www.bouncycastle.org/java.html) - (Bouncy Castle Licence) Bouncy Castle Provider (org.bouncycastle:bcprov-jdk18on:1.78.1 - https://www.bouncycastle.org/java.html) - (Bouncy Castle Licence) Bouncy Castle ASN.1 Extension and Utility APIs (org.bouncycastle:bcutil-jdk18on:1.78.1 - https://www.bouncycastle.org/java.html) (The BSD 2-Clause License) Stax2 API (org.codehaus.woodstox:stax2-api:4.3.0 - http://github.com/FasterXML/stax2-api) - (Universal Permissive License, Version 1.0) Polyglot (org.graalvm.polyglot:polyglot:25.0.3 - https://github.com/oracle/graal) - (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython (org.graalvm.python:python-language:25.0.3 - http://www.graalvm.org/python) - (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython Resources (org.graalvm.python:python-resources:25.0.3 - http://www.graalvm.org/python) - (Universal Permissive License, Version 1.0) Tregex (org.graalvm.regex:regex:25.0.3 - http://www.graalvm.org/) - (Universal Permissive License, Version 1.0) Collections (org.graalvm.sdk:collections:25.0.3 - https://github.com/oracle/graal) - (Universal Permissive License, Version 1.0) Jniutils (org.graalvm.sdk:jniutils:25.0.3 - https://github.com/oracle/graal) - (Universal Permissive License, Version 1.0) Nativeimage (org.graalvm.sdk:nativeimage:25.0.3 - https://github.com/oracle/graal) - (Universal Permissive License, Version 1.0) Word (org.graalvm.sdk:word:25.0.3 - https://github.com/oracle/graal) - (Unicode/ICU License) Truffle Icu4j (org.graalvm.shadowed:icu4j:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Json (org.graalvm.shadowed:json:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Xz (org.graalvm.shadowed:xz:25.0.3 - http://openjdk.java.net/projects/graal) - (GNU General Public License, version 2, with the Classpath Exception) Truffle Profiler (org.graalvm.tools:profiler-tool:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle API (org.graalvm.truffle:truffle-api:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Compiler (org.graalvm.truffle:truffle-compiler:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Nfi (org.graalvm.truffle:truffle-nfi:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Nfi Libffi (org.graalvm.truffle:truffle-nfi-libffi:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Nfi Panama (org.graalvm.truffle:truffle-nfi-panama:25.0.3 - http://openjdk.java.net/projects/graal) - (Universal Permissive License, Version 1.0) Truffle Runtime (org.graalvm.truffle:truffle-runtime:25.0.3 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Polyglot (org.graalvm.polyglot:polyglot:25.0.4 - https://github.com/oracle/graal) + (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython (org.graalvm.python:python-language:25.0.4 - http://www.graalvm.org/python) + (MIT License) (Python Software Foundation License) (Universal Permissive License, Version 1.0) Graalpython Resources (org.graalvm.python:python-resources:25.0.4 - http://www.graalvm.org/python) + (Universal Permissive License, Version 1.0) Tregex (org.graalvm.regex:regex:25.0.4 - http://www.graalvm.org/) + (Universal Permissive License, Version 1.0) Collections (org.graalvm.sdk:collections:25.0.4 - https://github.com/oracle/graal) + (Universal Permissive License, Version 1.0) Jniutils (org.graalvm.sdk:jniutils:25.0.4 - https://github.com/oracle/graal) + (Universal Permissive License, Version 1.0) Nativeimage (org.graalvm.sdk:nativeimage:25.0.4 - https://github.com/oracle/graal) + (Universal Permissive License, Version 1.0) Word (org.graalvm.sdk:word:25.0.4 - https://github.com/oracle/graal) + (Unicode/ICU License) Truffle Icu4j (org.graalvm.shadowed:icu4j:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Json (org.graalvm.shadowed:json:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Xz (org.graalvm.shadowed:xz:25.0.4 - http://openjdk.java.net/projects/graal) + (GNU General Public License, version 2, with the Classpath Exception) Truffle Profiler (org.graalvm.tools:profiler-tool:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle API (org.graalvm.truffle:truffle-api:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Compiler (org.graalvm.truffle:truffle-compiler:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Nfi (org.graalvm.truffle:truffle-nfi:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Nfi Libffi (org.graalvm.truffle:truffle-nfi-libffi:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Nfi Panama (org.graalvm.truffle:truffle-nfi-panama:25.0.4 - http://openjdk.java.net/projects/graal) + (Universal Permissive License, Version 1.0) Truffle Runtime (org.graalvm.truffle:truffle-runtime:25.0.4 - http://openjdk.java.net/projects/graal) (The Apache Software License, Version 2.0) IntelliJ IDEA Annotations (org.jetbrains:annotations:13.0 - http://www.jetbrains.org) (The Apache License, Version 2.0) Kotlin Reflect (org.jetbrains.kotlin:kotlin-reflect:2.1.21 - https://kotlinlang.org/) (The Apache License, Version 2.0) Kotlin Script Runtime (org.jetbrains.kotlin:kotlin-script-runtime:1.9.10 - https://kotlinlang.org/) @@ -190,8 +187,8 @@ Lists of 195 third-party dependencies. (Apache License, Version 2.0) SnakeYAML Engine (org.snakeyaml:snakeyaml-engine:3.0.1 - https://bitbucket.org/snakeyaml/snakeyaml-engine) (Apache-2.0) snappy-java (org.xerial.snappy:snappy-java:1.1.10.7 - https://github.com/xerial/snappy-java) (Apache License, Version 2.0) SnakeYAML (org.yaml:snakeyaml:2.0 - https://bitbucket.org/snakeyaml/snakeyaml) - (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.0 - https://github.com/FasterXML/jackson-core) - (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.0 - https://github.com/FasterXML/jackson) - (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (tools.jackson.dataformat:jackson-dataformat-csv:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) - (The Apache Software License, Version 2.0) Jackson-dataformat-XML (tools.jackson.dataformat:jackson-dataformat-xml:3.2.0 - https://github.com/FasterXML/jackson-dataformat-xml) - (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.0 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-core (tools.jackson.core:jackson-core:3.2.1 - https://github.com/FasterXML/jackson-core) + (The Apache Software License, Version 2.0) jackson-databind (tools.jackson.core:jackson-databind:3.2.1 - https://github.com/FasterXML/jackson) + (The Apache Software License, Version 2.0) Jackson-dataformat-CSV (tools.jackson.dataformat:jackson-dataformat-csv:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) + (The Apache Software License, Version 2.0) Jackson-dataformat-XML (tools.jackson.dataformat:jackson-dataformat-xml:3.2.1 - https://github.com/FasterXML/jackson-dataformat-xml) + (The Apache Software License, Version 2.0) Jackson-dataformat-YAML (tools.jackson.dataformat:jackson-dataformat-yaml:3.2.1 - https://github.com/FasterXML/jackson-dataformats-text) diff --git a/pom.xml b/pom.xml index 11e6475da..9f42a1c65 100644 --- a/pom.xml +++ b/pom.xml @@ -87,16 +87,16 @@ 8.3.1 4.2.39 3.0.2 - 25.0.3 + 25.0.4 33.6.0-jre - 3.2.0 + 3.2.1 - 2.22.0 + 2.22.1 3.1.1 3.1.12 4.0.2 - 1.5.37 + 1.6.1 9.0 1.18.46 4.7.7 @@ -117,7 +117,7 @@ 4.3.0 3.0 2.3.0 - 6.1.1 + 6.1.3 5.23.0 5.23.0 2.0.5 @@ -137,7 +137,7 @@ 3.5.6 3.1.4 0.8.15 - 3.5.0 + 3.5.1 3.12.0 2.7.1 3.5.6 diff --git a/scripts/graalvm-tarballs.sh b/scripts/graalvm-tarballs.sh new file mode 100755 index 000000000..7ac7a1601 --- /dev/null +++ b/scripts/graalvm-tarballs.sh @@ -0,0 +1,78 @@ +#!/bin/bash +# +# Downloads the GraalVM Community JDK that the Docker image runs on. +# +# graalvm-tarballs.sh download download both tarballs into this directory +# graalvm-tarballs.sh check only check both URLs exist, download nothing +# +# The version comes from .graalvm-jdk-version. Set GRAALVM_JDK_VERSION to try a +# different one without editing that file. +# +# Keep the output names as they are. The Dockerfile unpacks +# graalvm-${TARGETARCH}.tar.gz, and Docker sets TARGETARCH to amd64 or arm64. + +set -eu + +mode=${1:-download} +if [ "$mode" != "download" ] && [ "$mode" != "check" ]; then + echo "Usage: $0 [download|check]" >&2 + exit 2 +fi + +repo_root=$(cd "$(dirname "$0")/.." && pwd) +version=${GRAALVM_JDK_VERSION:-$(tr -d '[:space:]' < "$repo_root/.graalvm-jdk-version")} + +if [ -z "$version" ]; then + echo "No version found in $repo_root/.graalvm-jdk-version" >&2 + exit 1 +fi + +base_url=https://github.com/graalvm/graalvm-ce-builds/releases/download +failed=0 + +# GraalVM calls these architectures x64 and aarch64, Docker calls them amd64 and +# arm64, so each file is renamed as it is downloaded. +for pair in x64:amd64 aarch64:arm64; do + graal_arch=${pair%%:*} + docker_arch=${pair##*:} + url="${base_url}/jdk-${version}/graalvm-community-jdk-${version}_linux-${graal_arch}_bin.tar.gz" + output="graalvm-${docker_arch}.tar.gz" + + if [ "$mode" = "check" ]; then + if wget --spider -q "$url"; then + echo "ok GraalVM JDK ${version} linux-${graal_arch}" + else + echo "MISSING GraalVM JDK ${version} linux-${graal_arch}" + echo " ${url}" + failed=1 + fi + continue + fi + + # -s rather than -f: a failed download leaves an empty file behind, and treating that + # as finished produces a broken image later on. + if [ -s "$output" ]; then + echo "Already downloaded: ${output}" + continue + fi + + echo "Downloading GraalVM JDK ${version} for ${docker_arch}" + if ! wget "$url" -O "$output"; then + rm -f "$output" + failed=1 + fi +done + +if [ "$failed" -ne 0 ]; then + cat >&2 < in pom.xml is a separate thing. It selects the org.graalvm.* Maven +artifacts, which are published independently, so it may legitimately differ from this. +EOF + exit 1 +fi