diff --git a/.github/patches/opentelemetry-java-instrumentation.patch b/.github/patches/opentelemetry-java-instrumentation.patch new file mode 100644 index 0000000000..9babc3c1dc --- /dev/null +++ b/.github/patches/opentelemetry-java-instrumentation.patch @@ -0,0 +1,25 @@ +diff --git a/instrumentation/aws-sdk/aws-sdk-1.11/library/src/main/java/io/opentelemetry/instrumentation/awssdk/v1_11/SqsImpl.java b/instrumentation/aws-sdk/aws-sdk-1.11/library/src/main/java/io/opentelemetry/instrumentation/awssdk/v1_11/SqsImpl.java +index a3e2d0e770..41c772692d 100644 +--- a/instrumentation/aws-sdk/aws-sdk-1.11/library/src/main/java/io/opentelemetry/instrumentation/awssdk/v1_11/SqsImpl.java ++++ b/instrumentation/aws-sdk/aws-sdk-1.11/library/src/main/java/io/opentelemetry/instrumentation/awssdk/v1_11/SqsImpl.java +@@ -137,7 +137,7 @@ final class SqsImpl { + } + + static String getMessageId(Response response) { +- if (response.getAwsResponse() instanceof SendMessageResult) { ++ if (response != null && response.getAwsResponse() instanceof SendMessageResult) { + return ((SendMessageResult) response.getAwsResponse()).getMessageId(); + } + return null; +diff --git a/version.gradle.kts b/version.gradle.kts +index a2bacc6f04..0890062291 100644 +--- a/version.gradle.kts ++++ b/version.gradle.kts +@@ -1,5 +1,5 @@ +-val stableVersion = "1.32.0" +-val alphaVersion = "1.32.0-alpha" ++val stableVersion = "1.32.0-adot1" ++val alphaVersion = "1.32.0-adot1-alpha" + + allprojects { + if (findProperty("otel.stable") != "true") { diff --git a/.github/patches/versions b/.github/patches/versions new file mode 100644 index 0000000000..617f207102 --- /dev/null +++ b/.github/patches/versions @@ -0,0 +1 @@ +OTEL_JAVA_INSTRUMENTATION_VERSION=v1.32.0 diff --git a/.github/workflows/appsignals-e2e-ec2-test.yml b/.github/workflows/appsignals-e2e-ec2-test.yml index 6d1334e15c..d48d77b629 100644 --- a/.github/workflows/appsignals-e2e-ec2-test.yml +++ b/.github/workflows/appsignals-e2e-ec2-test.yml @@ -123,6 +123,14 @@ jobs: fi done + # cache local patch outputs + - name: Cache local Maven repository + uses: actions/cache@v3 + with: + path: | + ~/.m2/repository/io/opentelemetry/ + key: ${{ runner.os }}-maven-local-${{ hashFiles('.github/patches/opentelemetry-java*.patch') }} + - name: Get the ec2 instance ami id run: | echo "EC2_INSTANCE_AMI=$(terraform output ec2_instance_ami)" >> $GITHUB_ENV diff --git a/.github/workflows/appsignals-e2e-eks-test.yml b/.github/workflows/appsignals-e2e-eks-test.yml index adde728c2b..1af8c95972 100644 --- a/.github/workflows/appsignals-e2e-eks-test.yml +++ b/.github/workflows/appsignals-e2e-eks-test.yml @@ -214,6 +214,14 @@ jobs: kubectl get pods -n amazon-cloudwatch --output json | \ jq '.items[0].status.containerStatuses[0].imageID' + # cache local patch outputs + - name: Cache local Maven repository + uses: actions/cache@v3 + with: + path: | + ~/.m2/repository/io/opentelemetry/ + key: ${{ runner.os }}-maven-local-${{ hashFiles('.github/patches/opentelemetry-java*.patch') }} + - name: Get the sample app endpoint run: echo "APP_ENDPOINT=$(terraform output sample_app_endpoint)" >> $GITHUB_ENV working-directory: testing/terraform/eks diff --git a/.github/workflows/main-build.yml b/.github/workflows/main-build.yml index 7dd1c404b8..805f7a3778 100644 --- a/.github/workflows/main-build.yml +++ b/.github/workflows/main-build.yml @@ -24,7 +24,7 @@ permissions: jobs: testpatch: name: Test patches applied to dependencies - runs-on: ubuntu-latest + runs-on: aws-otel-java-instrumentation_ubuntu-latest_32-core steps: - uses: actions/checkout@v4 - uses: actions/setup-java@v4 diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml index 5a4b9c3df2..7e332c2916 100644 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -10,7 +10,7 @@ env: jobs: testpatch: name: Test patches applied to dependencies - runs-on: ubuntu-latest + runs-on: aws-otel-java-instrumentation_ubuntu-latest_32-core steps: - uses: actions/checkout@v4 @@ -75,6 +75,7 @@ jobs: - name: Publish patched dependencies to maven local uses: ./.github/actions/patch-dependencies + if: ${{ matrix.os != 'windows-latest' }} # Skip patch on windows as it is not possible to build opentelemetry-java on windows with: gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} gpg_password: ${{ secrets.GPG_PASSPHRASE }} @@ -127,7 +128,7 @@ jobs: - name: Build with Gradle uses: gradle/gradle-build-action@v2 - if: ${{ matrix.os != 'ubuntu-latest' }} + if: ${{ matrix.os != 'ubuntu-latest' && (hashFiles('.github/patches/opentelemetry-java*.patch') == '' || matrix.os != 'windows-latest' ) }} # build on windows as well unless a patch exists with: arguments: build --stacktrace -PenableCoverage=true - uses: codecov/codecov-action@v3 diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index 4f2aef6d27..051f46ee9f 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -31,9 +31,7 @@ jobs: - name: Publish patched dependencies to maven local uses: ./.github/actions/patch-dependencies - if: ${{ startsWith(github.ref_name, 'release/v') }} with: - branch: ${{ github.ref_name }} gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} gpg_password: ${{ secrets.GPG_PASSPHRASE }} diff --git a/RELEASING.md b/RELEASING.md index 2a33ed1afe..7d08b2806c 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -61,10 +61,10 @@ Select the branch and provide the version. If you need to patch upstream dependencies, you need: -* Provide patch files for each repository that will need to be patched. These files should be located in `.github/patches/release/v..x` and should be named +* Provide patch files for each repository that will need to be patched. These files should be located in `.github/patches` and should be named using the convention `.patch`. The following repositories are supported: opentelemetry-java, opentelemetry-java-instrumentation and opentelemetry-java-contrib. Provide one patch file per repository. The adot patch version of each upstream dependency should be `-adot` where `version` is the version of the upstream dependency and `number` is the number of this patch that should be incremented from 1 per patch version. -* Create a `versions` file in the directory `.github/patches/release/v..x`. This file should contain shell variables with the versions of the tags of the repositories which will receive patches. +* Create a `versions` file in the directory `.github/patches/release`. This file should contain shell variables with the versions of the tags of the repositories which will receive patches. This file should define the following variables: * `OTEL_JAVA_VERSION`. Tag of the opentelemetry-java repository to use. E.g.: `JAVA_OTEL_JAVA_VERSION=v1.21.0` * `OTEL_JAVA_INSTRUMENTATION_VERSION`. Tag of the opentelemetry-java-instrumentation repository to use, e.g.: `OTEL_JAVA_INSTRUMENTATION_VERSION=v1.21.0` diff --git a/appsignals-tests/contract-tests/build.gradle.kts b/appsignals-tests/contract-tests/build.gradle.kts index 6252bc5ac4..b85cd904e8 100644 --- a/appsignals-tests/contract-tests/build.gradle.kts +++ b/appsignals-tests/contract-tests/build.gradle.kts @@ -56,7 +56,7 @@ dependencies { testImplementation("software.amazon.awssdk:sts") testImplementation(kotlin("test")) implementation(project(":appsignals-tests:images:grpc:grpc-base")) - testImplementation("org.testcontainers:kafka:1.19.1") + testImplementation("org.testcontainers:kafka:1.19.3") } project.evaluationDependsOn(":otelagent") diff --git a/appsignals-tests/contract-tests/src/test/java/software/amazon/opentelemetry/appsignals/test/awssdk/base/AwsSdkBaseTest.java b/appsignals-tests/contract-tests/src/test/java/software/amazon/opentelemetry/appsignals/test/awssdk/base/AwsSdkBaseTest.java index e3bf6a2697..d304f94eef 100644 --- a/appsignals-tests/contract-tests/src/test/java/software/amazon/opentelemetry/appsignals/test/awssdk/base/AwsSdkBaseTest.java +++ b/appsignals-tests/contract-tests/src/test/java/software/amazon/opentelemetry/appsignals/test/awssdk/base/AwsSdkBaseTest.java @@ -171,6 +171,23 @@ private void assertSemanticConventionsAttributes( .satisfiesOnlyOnce(assertKeyIsPresent(SemanticConventionsConstants.THREAD_ID)); } + /** All the spans of the AWS SDK Should have a RPC properties. */ + private void assertSemanticConventionsSqsConsumerAttributes( + List attributesList, + String service, + String method, + String peerName, + int peerPort, + String url) { + assertThat(attributesList) + .satisfiesOnlyOnce(assertAttribute(SemanticConventionsConstants.RPC_METHOD, method)) + .satisfiesOnlyOnce(assertAttribute(SemanticConventionsConstants.RPC_SERVICE, service)) + .satisfiesOnlyOnce(assertAttribute(SemanticConventionsConstants.NET_PEER_NAME, peerName)) + .satisfiesOnlyOnce(assertAttribute(SemanticConventionsConstants.NET_PEER_PORT, peerPort)) + .satisfiesOnlyOnce(assertAttributeStartsWith(SemanticConventionsConstants.HTTP_URL, url)) + .satisfiesOnlyOnce(assertKeyIsPresent(SemanticConventionsConstants.THREAD_ID)); + } + private void assertSpanClientAttributes( List spans, String spanName, @@ -256,8 +273,8 @@ private void assertSpanConsumerAttributes( var spanAttributes = span.getAttributesList(); assertThat(span.getKind()).isEqualTo(SpanKind.SPAN_KIND_CONSUMER); assertThat(span.getName()).isEqualTo(spanName); - assertSemanticConventionsAttributes( - spanAttributes, rpcService, method, peerName, peerPort, url, statusCode); + assertSemanticConventionsSqsConsumerAttributes( + spanAttributes, rpcService, method, peerName, peerPort, url); assertSqsConsumerAwsAttributes(span.getAttributesList(), operation); for (var assertion : extraAssertions) { assertThat(spanAttributes).satisfiesOnlyOnce(assertion); @@ -291,7 +308,7 @@ private void assertSpanAttributes( assertThat(span.getName()).isEqualTo(spanName); assertSemanticConventionsAttributes( spanAttributes, rpcService, method, peerName, peerPort, url, statusCode); - assertProducerOrClientAwsAttributes( + assertAwsAttributes( spanAttributes, localService, localOperation, @@ -305,7 +322,7 @@ private void assertSpanAttributes( }); } - private void assertProducerOrClientAwsAttributes( + private void assertAwsAttributes( List attributesList, String localService, String localOperation, @@ -327,22 +344,16 @@ private void assertProducerOrClientAwsAttributes( } } - private void assertConsumerAwsAttributes( - List attributesList, String service, String operation) { - assertThat(attributesList) - .satisfiesOnlyOnce(assertAttribute(AppSignalsConstants.AWS_LOCAL_OPERATION, operation)) - .satisfiesOnlyOnce(assertAttribute(AppSignalsConstants.AWS_LOCAL_SERVICE, service)) - .satisfiesOnlyOnce(assertAttribute(AppSignalsConstants.AWS_SPAN_KIND, "LOCAL_ROOT")); - } - private void assertSqsConsumerAwsAttributes(List attributesList, String operation) { assertThat(attributesList) - // AWS_LOCAL_OPERATION Is propagated from the parent .satisfiesOnlyOnce(assertAttribute(AppSignalsConstants.AWS_LOCAL_OPERATION, operation)) - .noneSatisfy(assertKeyIsPresent(AppSignalsConstants.AWS_LOCAL_SERVICE)) - .noneSatisfy(assertKeyIsPresent(AppSignalsConstants.AWS_REMOTE_OPERATION)) - .noneSatisfy(assertKeyIsPresent(AppSignalsConstants.AWS_REMOTE_SERVICE)) - .noneSatisfy(assertKeyIsPresent(AppSignalsConstants.AWS_SPAN_KIND)); + .satisfiesOnlyOnce( + assertAttribute(AppSignalsConstants.AWS_LOCAL_SERVICE, getApplicationOtelServiceName())) + .satisfiesOnlyOnce(assertAttribute(AppSignalsConstants.AWS_SPAN_KIND, "LOCAL_ROOT")) + .satisfiesOnlyOnce( + assertAttribute(AppSignalsConstants.AWS_REMOTE_OPERATION, "ReceiveMessage")) + .satisfiesOnlyOnce( + assertAttribute(AppSignalsConstants.AWS_REMOTE_SERVICE, getSqsServiceName())); } protected void assertMetricClientAttributes( @@ -387,6 +398,27 @@ protected void assertMetricProducerAttributes( expectedSum); } + protected void assertMetricConsumerAttributes( + List resourceScopeMetrics, + String metricName, + String localService, + String localOperation, + String service, + String method, + String target, + Double expectedSum) { + assertMetricAttributes( + resourceScopeMetrics, + metricName, + "CONSUMER", + localService, + localOperation, + service, + method, + target, + expectedSum); + } + protected void assertMetricAttributes( List resourceScopeMetrics, String metricName, @@ -407,7 +439,7 @@ protected void assertMetricAttributes( dataPoint -> { List attributes = dataPoint.getAttributesList(); assertThat(attributes).isNotNull(); - assertProducerOrClientAwsAttributes( + assertAwsAttributes( attributes, localService, localOperation, @@ -1032,7 +1064,7 @@ protected void doTestSQSSendMessage() throws Exception { assertSpanProducerAttributes( traces, - sqsSpanName("SendMessage"), + "some-queue publish", getSqsRpcServiceName(), localService, localOperation, @@ -1088,11 +1120,15 @@ protected void doTestSQSReceiveMessage() throws Exception { AppSignalsConstants.FAULT_METRIC, AppSignalsConstants.LATENCY_METRIC)); + var localService = getApplicationOtelServiceName(); + var localOperation = "InternalOperation"; + // ReceiveMessage does not capture aws.queue.name + String target = null; // Consumer traces for SQS behave like a Server span (they create the local aws service // attributes), but have RPC attributes like a client span. assertSpanConsumerAttributes( traces, - sqsSpanName("ReceiveMessage"), + "some-queue process", getSqsRpcServiceName(), "InternalOperation", getApplicationOtelServiceName(), @@ -1103,27 +1139,24 @@ protected void doTestSQSReceiveMessage() throws Exception { 200, testSQSReceiveMessageExtraAssertions(response.contentUtf8())); - // SQS consumer spans do not produce metrics. - // Checking that there is no metric that has a datapoint with consumer attributes - assertThat(metrics) - .noneSatisfy( - metric -> { - var dataPoints = metric.getMetric().getExponentialHistogram().getDataPointsList(); - assertThat(dataPoints) - .anySatisfy( - dataPoint -> { - List attributes = dataPoint.getAttributesList(); - assertThat(attributes).isNotNull(); - assertThat(attributes) - .anySatisfy( - attribute -> { - assertConsumerAwsAttributes( - attributes, - getApplicationOtelServiceName(), - "InternalOperation"); - }); - }); - }); + assertMetricConsumerAttributes( + metrics, + AppSignalsConstants.LATENCY_METRIC, + localService, + localOperation, + getSqsServiceName(), + "ReceiveMessage", + target, + 5000.0); + assertMetricConsumerAttributes( + metrics, + AppSignalsConstants.ERROR_METRIC, + localService, + localOperation, + getSqsServiceName(), + "ReceiveMessage", + target, + 0.0); } protected void doTestSQSError() throws Exception { @@ -1143,7 +1176,7 @@ protected void doTestSQSError() throws Exception { assertSpanProducerAttributes( traces, - sqsSpanName("SendMessage"), + "error.test:8080 publish", getSqsRpcServiceName(), localService, localOperation, @@ -1202,7 +1235,7 @@ protected void doTestSQSFault() throws Exception { assertSpanProducerAttributes( traces, - sqsSpanName("SendMessage"), + "fault.test:8080 publish", getSqsRpcServiceName(), localService, localOperation, diff --git a/appsignals-tests/contract-tests/src/test/java/software/amazon/opentelemetry/appsignals/test/kafka/consumers/KafkaConsumersTest.java b/appsignals-tests/contract-tests/src/test/java/software/amazon/opentelemetry/appsignals/test/kafka/consumers/KafkaConsumersTest.java index 82f8a8bf53..fb2cad6fe9 100644 --- a/appsignals-tests/contract-tests/src/test/java/software/amazon/opentelemetry/appsignals/test/kafka/consumers/KafkaConsumersTest.java +++ b/appsignals-tests/contract-tests/src/test/java/software/amazon/opentelemetry/appsignals/test/kafka/consumers/KafkaConsumersTest.java @@ -77,7 +77,7 @@ protected List getApplicationDependsOnContainers() { .withEnv("KAFKA_AUTO_CREATE_TOPICS_ENABLE", "false") .withNetworkAliases("kafkaBroker") .withNetwork(network) - .waitingFor(Wait.forLogMessage(".*started (kafka.server.KafkaServer).*", 1)) + .waitingFor(Wait.forLogMessage(".* Kafka Server started .*", 1)) .withKraft(); return List.of(kafka); } diff --git a/appsignals-tests/contract-tests/src/test/java/software/amazon/opentelemetry/appsignals/test/kafka/producers/KafkaProducersTest.java b/appsignals-tests/contract-tests/src/test/java/software/amazon/opentelemetry/appsignals/test/kafka/producers/KafkaProducersTest.java index e04643bda5..26e248a296 100644 --- a/appsignals-tests/contract-tests/src/test/java/software/amazon/opentelemetry/appsignals/test/kafka/producers/KafkaProducersTest.java +++ b/appsignals-tests/contract-tests/src/test/java/software/amazon/opentelemetry/appsignals/test/kafka/producers/KafkaProducersTest.java @@ -53,7 +53,6 @@ public void testSuccess() { var kafkaTopic = "kafka_topic"; var otelStatusCode = "STATUS_CODE_UNSET"; var response = appClient.get(path).aggregate().join(); - assertThat(response.status().isSuccess()).isTrue(); var resourceScopeSpans = mockCollectorClient.getTraces(); @@ -111,7 +110,7 @@ protected List getApplicationDependsOnContainers() { .withEnv("KAFKA_AUTO_CREATE_TOPICS_ENABLE", "false") .withNetworkAliases("kafkaBroker") .withNetwork(network) - .waitingFor(Wait.forLogMessage(".*started (kafka.server.KafkaServer).*", 1)) + .waitingFor(Wait.forLogMessage(".* Kafka Server started .*", 1)) .withKraft(); return List.of(kafka); } @@ -188,7 +187,7 @@ protected void assertAwsAttributes( .satisfiesOnlyOnce( attribute -> { assertThat(attribute.getKey()).isEqualTo(AppSignalsConstants.AWS_REMOTE_OPERATION); - assertThat(attribute.getValue().getStringValue()).isEqualTo("UnknownRemoteOperation"); + assertThat(attribute.getValue().getStringValue()).isEqualTo("publish"); }) .satisfiesOnlyOnce( attribute -> { @@ -197,8 +196,6 @@ protected void assertAwsAttributes( }); } - // TODO: SemanticConventionsConstants.MESSAGING_OPERATION is not currently present, however it - // should be populated and we are currently following up on this. protected void assertSemanticConventionsAttributes( List attributesList, String kafkaTopic) { assertThat(attributesList) @@ -230,10 +227,11 @@ protected void assertSemanticConventionsAttributes( .isEqualTo(SemanticConventionsConstants.MESSAGING_SYSTEM); assertThat(attribute.getValue().getStringValue()).isEqualTo("kafka"); }) - .allSatisfy( + .satisfiesOnlyOnce( attribute -> { assertThat(attribute.getKey()) - .isNotEqualTo(SemanticConventionsConstants.MESSAGING_OPERATION); + .isEqualTo(SemanticConventionsConstants.MESSAGING_OPERATION); + assertThat(attribute.getValue().getStringValue()).isEqualTo("publish"); }) .satisfiesOnlyOnce( attribute -> { @@ -296,7 +294,7 @@ protected void assertMetricAttributes( assertThat(attribute.getKey()) .isEqualTo(AppSignalsConstants.AWS_REMOTE_OPERATION); assertThat(attribute.getValue().getStringValue()) - .isEqualTo("UnknownRemoteOperation"); + .isEqualTo("publish"); }); if (expectedSum != null) { diff --git a/appsignals-tests/images/aws-sdk/aws-sdk-v1/build.gradle.kts b/appsignals-tests/images/aws-sdk/aws-sdk-v1/build.gradle.kts index 944a03f8b4..6d0ef5608a 100644 --- a/appsignals-tests/images/aws-sdk/aws-sdk-v1/build.gradle.kts +++ b/appsignals-tests/images/aws-sdk/aws-sdk-v1/build.gradle.kts @@ -27,7 +27,7 @@ dependencies { implementation("com.sparkjava:spark-core") implementation("com.google.code.gson:gson:2.10.1") implementation("org.slf4j:slf4j-simple") - implementation(platform("com.amazonaws:aws-java-sdk-bom:1.12.514")) + implementation(enforcedPlatform("com.amazonaws:aws-java-sdk-bom:1.12.514")) implementation("com.amazonaws:aws-java-sdk-s3") implementation("com.amazonaws:aws-java-sdk-dynamodb") implementation("com.amazonaws:aws-java-sdk-sqs") diff --git a/appsignals-tests/images/aws-sdk/aws-sdk-v1/src/main/java/com/amazon/sampleapp/App.java b/appsignals-tests/images/aws-sdk/aws-sdk-v1/src/main/java/com/amazon/sampleapp/App.java index 77947563c6..ad5249b510 100644 --- a/appsignals-tests/images/aws-sdk/aws-sdk-v1/src/main/java/com/amazon/sampleapp/App.java +++ b/appsignals-tests/images/aws-sdk/aws-sdk-v1/src/main/java/com/amazon/sampleapp/App.java @@ -158,6 +158,7 @@ private static void setupSqs() { var readMessageRequest = new ReceiveMessageRequest(response.getQueueUrl()); var messages = sqsClient.receiveMessage(readMessageRequest).getMessages(); + logger.info("Message Received: ", messages.toString()); return response.getQueueUrl(); }); @@ -180,7 +181,8 @@ private static void setupSqs() { try { errorClient.sendMessage(sendMessageRequest); } catch (Exception ex) { - + logger.info("Exception Caught in Sample App"); + ex.printStackTrace(); } return ""; }); diff --git a/appsignals-tests/images/aws-sdk/aws-sdk-v2/build.gradle.kts b/appsignals-tests/images/aws-sdk/aws-sdk-v2/build.gradle.kts index 458c497210..ee60662ae3 100644 --- a/appsignals-tests/images/aws-sdk/aws-sdk-v2/build.gradle.kts +++ b/appsignals-tests/images/aws-sdk/aws-sdk-v2/build.gradle.kts @@ -27,7 +27,7 @@ dependencies { implementation("com.sparkjava:spark-core") implementation("com.google.code.gson:gson:2.10.1") implementation("org.slf4j:slf4j-simple") - implementation(platform("software.amazon.awssdk:bom:2.20.102")) + implementation(enforcedPlatform("software.amazon.awssdk:bom:2.20.102")) implementation("software.amazon.awssdk:s3") implementation("software.amazon.awssdk:dynamodb") implementation("software.amazon.awssdk:sqs") diff --git a/appsignals-tests/images/aws-sdk/aws-sdk-v2/src/main/java/com/amazon/sampleapp/App.java b/appsignals-tests/images/aws-sdk/aws-sdk-v2/src/main/java/com/amazon/sampleapp/App.java index 37287fa9bb..a4ce9732d3 100644 --- a/appsignals-tests/images/aws-sdk/aws-sdk-v2/src/main/java/com/amazon/sampleapp/App.java +++ b/appsignals-tests/images/aws-sdk/aws-sdk-v2/src/main/java/com/amazon/sampleapp/App.java @@ -160,6 +160,7 @@ private static void setupSqs() { ReceiveMessageRequest.builder().queueUrl(response.queueUrl()).build(); var messages = sqsClient.receiveMessage(receiveMessageRequest).messages(); + logger.info("Message Received: ", messages.toString()); return response.queueUrl(); }); @@ -181,7 +182,8 @@ private static void setupSqs() { try { errorClient.sendMessage(sendMessageRequest); } catch (Exception ex) { - + logger.info("Exception Caught in Sample App"); + ex.printStackTrace(); } return ""; }); diff --git a/dependencyManagement/build.gradle.kts b/dependencyManagement/build.gradle.kts index 5d15ce77a4..700ee8d8f3 100644 --- a/dependencyManagement/build.gradle.kts +++ b/dependencyManagement/build.gradle.kts @@ -27,25 +27,25 @@ data class DependencySet(val group: String, val version: String, val modules: Li val TEST_SNAPSHOTS = rootProject.findProperty("testUpstreamSnapshots") == "true" // This is the version of the upstream instrumentation BOM -val otelVersion = "1.31.0" -val otelSnapshotVersion = "1.32.0" +val otelVersion = "1.32.0-adot1" +val otelSnapshotVersion = "1.33.0" val otelAlphaVersion = if (!TEST_SNAPSHOTS) "$otelVersion-alpha" else "$otelSnapshotVersion-alpha-SNAPSHOT" val otelJavaAgentVersion = if (!TEST_SNAPSHOTS) otelVersion else "$otelSnapshotVersion-SNAPSHOT" // All versions below are only used in testing and do not affect the released artifact. val DEPENDENCY_BOMS = listOf( - "com.amazonaws:aws-java-sdk-bom:1.12.573", - "com.fasterxml.jackson:jackson-bom:2.15.3", + "com.amazonaws:aws-java-sdk-bom:1.12.599", + "com.fasterxml.jackson:jackson-bom:2.16.0", "com.google.guava:guava-bom:32.1.3-jre", - "com.google.protobuf:protobuf-bom:3.24.4", + "com.google.protobuf:protobuf-bom:3.25.1", "com.linecorp.armeria:armeria-bom:1.26.3", - "io.grpc:grpc-bom:1.59.0", + "io.grpc:grpc-bom:1.59.1", "io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:$otelAlphaVersion", "org.apache.logging.log4j:log4j-bom:2.21.1", - "org.junit:junit-bom:5.10.0", + "org.junit:junit-bom:5.10.1", "org.springframework.boot:spring-boot-dependencies:2.7.17", - "org.testcontainers:testcontainers-bom:1.19.1", - "software.amazon.awssdk:bom:2.21.7", + "org.testcontainers:testcontainers-bom:1.19.3", + "software.amazon.awssdk:bom:2.21.33", ) val DEPENDENCY_SETS = listOf( @@ -73,11 +73,11 @@ val DEPENDENCIES = listOf( "commons-logging:commons-logging:1.2", "com.sparkjava:spark-core:2.9.4", "com.squareup.okhttp3:okhttp:4.12.0", - "io.opentelemetry.contrib:opentelemetry-aws-xray:1.31.0", - "io.opentelemetry.contrib:opentelemetry-aws-resources:1.31.0-alpha", + "io.opentelemetry.contrib:opentelemetry-aws-xray:1.32.0", + "io.opentelemetry.contrib:opentelemetry-aws-resources:1.32.0-alpha", "io.opentelemetry.proto:opentelemetry-proto:1.0.0-alpha", "io.opentelemetry.javaagent:opentelemetry-javaagent:$otelJavaAgentVersion", - "net.bytebuddy:byte-buddy:1.14.9", + "net.bytebuddy:byte-buddy:1.14.10", ) javaPlatform { diff --git a/licenses/annotations-2.21.7.jar/META-INF/LICENSE.txt b/licenses/annotations-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/annotations-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/annotations-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/annotations-2.21.7.jar/META-INF/NOTICE.txt b/licenses/annotations-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/annotations-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/annotations-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/apache-client-2.21.7.jar/META-INF/LICENSE.txt b/licenses/apache-client-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/apache-client-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/apache-client-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/apache-client-2.21.7.jar/META-INF/NOTICE.txt b/licenses/apache-client-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/apache-client-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/apache-client-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/armeria-1.25.2.jar/META-INF/LICENSE b/licenses/armeria-1.26.3.jar/META-INF/LICENSE similarity index 100% rename from licenses/armeria-1.25.2.jar/META-INF/LICENSE rename to licenses/armeria-1.26.3.jar/META-INF/LICENSE diff --git a/licenses/arns-2.21.7.jar/META-INF/LICENSE.txt b/licenses/arns-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/arns-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/arns-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/arns-2.21.7.jar/META-INF/NOTICE.txt b/licenses/arns-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/arns-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/arns-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/auth-2.21.7.jar/META-INF/LICENSE.txt b/licenses/auth-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/auth-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/auth-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/auth-2.21.7.jar/META-INF/NOTICE.txt b/licenses/auth-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/auth-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/auth-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/aws-cbor-protocol-2.21.7.jar/META-INF/LICENSE.txt b/licenses/aws-cbor-protocol-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/aws-cbor-protocol-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/aws-cbor-protocol-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/aws-cbor-protocol-2.21.7.jar/META-INF/NOTICE.txt b/licenses/aws-cbor-protocol-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/aws-cbor-protocol-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/aws-cbor-protocol-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/aws-core-2.21.7.jar/META-INF/LICENSE.txt b/licenses/aws-core-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/aws-core-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/aws-core-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/aws-core-2.21.7.jar/META-INF/NOTICE.txt b/licenses/aws-core-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/aws-core-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/aws-core-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/aws-json-protocol-2.21.7.jar/META-INF/LICENSE.txt b/licenses/aws-json-protocol-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/aws-json-protocol-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/aws-json-protocol-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/aws-json-protocol-2.21.7.jar/META-INF/NOTICE.txt b/licenses/aws-json-protocol-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/aws-json-protocol-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/aws-json-protocol-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/aws-query-protocol-2.21.7.jar/META-INF/LICENSE.txt b/licenses/aws-query-protocol-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/aws-query-protocol-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/aws-query-protocol-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/aws-query-protocol-2.21.7.jar/META-INF/NOTICE.txt b/licenses/aws-query-protocol-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/aws-query-protocol-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/aws-query-protocol-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/aws-xml-protocol-2.21.7.jar/META-INF/LICENSE.txt b/licenses/aws-xml-protocol-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/aws-xml-protocol-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/aws-xml-protocol-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/aws-xml-protocol-2.21.7.jar/META-INF/NOTICE.txt b/licenses/aws-xml-protocol-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/aws-xml-protocol-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/aws-xml-protocol-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/byte-buddy-1.14.9.jar/META-INF/LICENSE b/licenses/byte-buddy-1.14.10.jar/META-INF/LICENSE similarity index 100% rename from licenses/byte-buddy-1.14.9.jar/META-INF/LICENSE rename to licenses/byte-buddy-1.14.10.jar/META-INF/LICENSE diff --git a/licenses/byte-buddy-1.14.9.jar/META-INF/NOTICE b/licenses/byte-buddy-1.14.10.jar/META-INF/NOTICE similarity index 100% rename from licenses/byte-buddy-1.14.9.jar/META-INF/NOTICE rename to licenses/byte-buddy-1.14.10.jar/META-INF/NOTICE diff --git a/licenses/checksums-2.21.7.jar/META-INF/LICENSE.txt b/licenses/checksums-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/checksums-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/checksums-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/checksums-2.21.7.jar/META-INF/NOTICE.txt b/licenses/checksums-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/checksums-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/checksums-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/checksums-spi-2.21.7.jar/META-INF/LICENSE.txt b/licenses/checksums-spi-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/checksums-spi-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/checksums-spi-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/checksums-spi-2.21.7.jar/META-INF/NOTICE.txt b/licenses/checksums-spi-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/checksums-spi-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/checksums-spi-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/crt-core-2.21.7.jar/META-INF/LICENSE.txt b/licenses/crt-core-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/crt-core-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/crt-core-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/crt-core-2.21.7.jar/META-INF/NOTICE.txt b/licenses/crt-core-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/crt-core-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/crt-core-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/dynamodb-2.21.7.jar/META-INF/LICENSE.txt b/licenses/dynamodb-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/dynamodb-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/dynamodb-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/dynamodb-2.21.7.jar/META-INF/NOTICE.txt b/licenses/dynamodb-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/dynamodb-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/dynamodb-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/endpoints-spi-2.21.7.jar/META-INF/LICENSE.txt b/licenses/endpoints-spi-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/endpoints-spi-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/endpoints-spi-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/endpoints-spi-2.21.7.jar/META-INF/NOTICE.txt b/licenses/endpoints-spi-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/endpoints-spi-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/endpoints-spi-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/grpc-netty-shaded-1.59.0.jar/META-INF/LICENSE.txt b/licenses/grpc-netty-shaded-1.59.1.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/grpc-netty-shaded-1.59.0.jar/META-INF/LICENSE.txt rename to licenses/grpc-netty-shaded-1.59.1.jar/META-INF/LICENSE.txt diff --git a/licenses/grpc-netty-shaded-1.59.0.jar/META-INF/NOTICE.txt b/licenses/grpc-netty-shaded-1.59.1.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/grpc-netty-shaded-1.59.0.jar/META-INF/NOTICE.txt rename to licenses/grpc-netty-shaded-1.59.1.jar/META-INF/NOTICE.txt diff --git a/licenses/http-auth-2.21.7.jar/META-INF/LICENSE.txt b/licenses/http-auth-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/http-auth-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/http-auth-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/http-auth-2.21.7.jar/META-INF/NOTICE.txt b/licenses/http-auth-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/http-auth-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/http-auth-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/http-auth-aws-2.21.7.jar/META-INF/LICENSE.txt b/licenses/http-auth-aws-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/http-auth-aws-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/http-auth-aws-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/http-auth-aws-2.21.7.jar/META-INF/NOTICE.txt b/licenses/http-auth-aws-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/http-auth-aws-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/http-auth-aws-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/http-auth-spi-2.21.7.jar/META-INF/LICENSE.txt b/licenses/http-auth-spi-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/http-auth-spi-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/http-auth-spi-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/http-auth-spi-2.21.7.jar/META-INF/NOTICE.txt b/licenses/http-auth-spi-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/http-auth-spi-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/http-auth-spi-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/http-client-spi-2.21.7.jar/META-INF/LICENSE.txt b/licenses/http-client-spi-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/http-client-spi-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/http-client-spi-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/http-client-spi-2.21.7.jar/META-INF/NOTICE.txt b/licenses/http-client-spi-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/http-client-spi-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/http-client-spi-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/identity-spi-2.21.7.jar/META-INF/LICENSE.txt b/licenses/identity-spi-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/identity-spi-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/identity-spi-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/identity-spi-2.21.7.jar/META-INF/NOTICE.txt b/licenses/identity-spi-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/identity-spi-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/identity-spi-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/jackson-annotations-2.15.3.jar/META-INF/LICENSE b/licenses/jackson-annotations-2.16.0.jar/META-INF/LICENSE similarity index 100% rename from licenses/jackson-annotations-2.15.3.jar/META-INF/LICENSE rename to licenses/jackson-annotations-2.16.0.jar/META-INF/LICENSE diff --git a/licenses/jackson-annotations-2.15.3.jar/META-INF/NOTICE b/licenses/jackson-annotations-2.16.0.jar/META-INF/NOTICE similarity index 100% rename from licenses/jackson-annotations-2.15.3.jar/META-INF/NOTICE rename to licenses/jackson-annotations-2.16.0.jar/META-INF/NOTICE diff --git a/licenses/jackson-core-2.15.3.jar/META-INF/LICENSE b/licenses/jackson-core-2.16.0.jar/META-INF/LICENSE similarity index 100% rename from licenses/jackson-core-2.15.3.jar/META-INF/LICENSE rename to licenses/jackson-core-2.16.0.jar/META-INF/LICENSE diff --git a/licenses/jackson-core-2.15.3.jar/META-INF/NOTICE b/licenses/jackson-core-2.16.0.jar/META-INF/NOTICE similarity index 100% rename from licenses/jackson-core-2.15.3.jar/META-INF/NOTICE rename to licenses/jackson-core-2.16.0.jar/META-INF/NOTICE diff --git a/licenses/jackson-databind-2.15.3.jar/META-INF/LICENSE b/licenses/jackson-databind-2.16.0.jar/META-INF/LICENSE similarity index 100% rename from licenses/jackson-databind-2.15.3.jar/META-INF/LICENSE rename to licenses/jackson-databind-2.16.0.jar/META-INF/LICENSE diff --git a/licenses/jackson-databind-2.15.3.jar/META-INF/NOTICE b/licenses/jackson-databind-2.16.0.jar/META-INF/NOTICE similarity index 100% rename from licenses/jackson-databind-2.15.3.jar/META-INF/NOTICE rename to licenses/jackson-databind-2.16.0.jar/META-INF/NOTICE diff --git a/licenses/jackson-dataformat-cbor-2.15.3.jar/META-INF/LICENSE b/licenses/jackson-dataformat-cbor-2.16.0.jar/META-INF/LICENSE similarity index 100% rename from licenses/jackson-dataformat-cbor-2.15.3.jar/META-INF/LICENSE rename to licenses/jackson-dataformat-cbor-2.16.0.jar/META-INF/LICENSE diff --git a/licenses/jackson-dataformat-cbor-2.15.3.jar/META-INF/NOTICE b/licenses/jackson-dataformat-cbor-2.16.0.jar/META-INF/NOTICE similarity index 100% rename from licenses/jackson-dataformat-cbor-2.15.3.jar/META-INF/NOTICE rename to licenses/jackson-dataformat-cbor-2.16.0.jar/META-INF/NOTICE diff --git a/licenses/jackson-dataformat-yaml-2.15.3.jar/META-INF/LICENSE b/licenses/jackson-dataformat-yaml-2.16.0.jar/META-INF/LICENSE similarity index 100% rename from licenses/jackson-dataformat-yaml-2.15.3.jar/META-INF/LICENSE rename to licenses/jackson-dataformat-yaml-2.16.0.jar/META-INF/LICENSE diff --git a/licenses/jackson-dataformat-yaml-2.15.3.jar/META-INF/NOTICE b/licenses/jackson-dataformat-yaml-2.16.0.jar/META-INF/NOTICE similarity index 100% rename from licenses/jackson-dataformat-yaml-2.15.3.jar/META-INF/NOTICE rename to licenses/jackson-dataformat-yaml-2.16.0.jar/META-INF/NOTICE diff --git a/licenses/jackson-datatype-jdk8-2.15.3.jar/META-INF/LICENSE b/licenses/jackson-datatype-jdk8-2.16.0.jar/META-INF/LICENSE similarity index 100% rename from licenses/jackson-datatype-jdk8-2.15.3.jar/META-INF/LICENSE rename to licenses/jackson-datatype-jdk8-2.16.0.jar/META-INF/LICENSE diff --git a/licenses/jackson-datatype-jdk8-2.15.3.jar/META-INF/NOTICE b/licenses/jackson-datatype-jdk8-2.16.0.jar/META-INF/NOTICE similarity index 100% rename from licenses/jackson-datatype-jdk8-2.15.3.jar/META-INF/NOTICE rename to licenses/jackson-datatype-jdk8-2.16.0.jar/META-INF/NOTICE diff --git a/licenses/jackson-datatype-jsr310-2.15.3.jar/META-INF/LICENSE b/licenses/jackson-datatype-jsr310-2.16.0.jar/META-INF/LICENSE similarity index 100% rename from licenses/jackson-datatype-jsr310-2.15.3.jar/META-INF/LICENSE rename to licenses/jackson-datatype-jsr310-2.16.0.jar/META-INF/LICENSE diff --git a/licenses/jackson-datatype-jsr310-2.15.3.jar/META-INF/NOTICE b/licenses/jackson-datatype-jsr310-2.16.0.jar/META-INF/NOTICE similarity index 100% rename from licenses/jackson-datatype-jsr310-2.15.3.jar/META-INF/NOTICE rename to licenses/jackson-datatype-jsr310-2.16.0.jar/META-INF/NOTICE diff --git a/licenses/jackson-module-parameter-names-2.15.3.jar/META-INF/LICENSE b/licenses/jackson-module-parameter-names-2.16.0.jar/META-INF/LICENSE similarity index 100% rename from licenses/jackson-module-parameter-names-2.15.3.jar/META-INF/LICENSE rename to licenses/jackson-module-parameter-names-2.16.0.jar/META-INF/LICENSE diff --git a/licenses/jackson-module-parameter-names-2.15.3.jar/META-INF/NOTICE b/licenses/jackson-module-parameter-names-2.16.0.jar/META-INF/NOTICE similarity index 100% rename from licenses/jackson-module-parameter-names-2.15.3.jar/META-INF/NOTICE rename to licenses/jackson-module-parameter-names-2.16.0.jar/META-INF/NOTICE diff --git a/licenses/jetty-client-9.4.51.v20230217.jar/META-INF/LICENSE b/licenses/jetty-client-9.4.53.v20231009.jar/META-INF/LICENSE similarity index 100% rename from licenses/jetty-client-9.4.51.v20230217.jar/META-INF/LICENSE rename to licenses/jetty-client-9.4.53.v20231009.jar/META-INF/LICENSE diff --git a/licenses/jetty-client-9.4.51.v20230217.jar/META-INF/NOTICE.txt b/licenses/jetty-client-9.4.53.v20231009.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/jetty-client-9.4.51.v20230217.jar/META-INF/NOTICE.txt rename to licenses/jetty-client-9.4.53.v20231009.jar/META-INF/NOTICE.txt diff --git a/licenses/jetty-client-9.4.51.v20230217.jar/about.html b/licenses/jetty-client-9.4.53.v20231009.jar/about.html similarity index 100% rename from licenses/jetty-client-9.4.51.v20230217.jar/about.html rename to licenses/jetty-client-9.4.53.v20231009.jar/about.html diff --git a/licenses/jetty-http-9.4.51.v20230217.jar/META-INF/LICENSE b/licenses/jetty-http-9.4.53.v20231009.jar/META-INF/LICENSE similarity index 100% rename from licenses/jetty-http-9.4.51.v20230217.jar/META-INF/LICENSE rename to licenses/jetty-http-9.4.53.v20231009.jar/META-INF/LICENSE diff --git a/licenses/jetty-http-9.4.51.v20230217.jar/META-INF/NOTICE.txt b/licenses/jetty-http-9.4.53.v20231009.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/jetty-http-9.4.51.v20230217.jar/META-INF/NOTICE.txt rename to licenses/jetty-http-9.4.53.v20231009.jar/META-INF/NOTICE.txt diff --git a/licenses/jetty-http-9.4.51.v20230217.jar/about.html b/licenses/jetty-http-9.4.53.v20231009.jar/about.html similarity index 100% rename from licenses/jetty-http-9.4.51.v20230217.jar/about.html rename to licenses/jetty-http-9.4.53.v20231009.jar/about.html diff --git a/licenses/jetty-io-9.4.51.v20230217.jar/META-INF/LICENSE b/licenses/jetty-io-9.4.53.v20231009.jar/META-INF/LICENSE similarity index 100% rename from licenses/jetty-io-9.4.51.v20230217.jar/META-INF/LICENSE rename to licenses/jetty-io-9.4.53.v20231009.jar/META-INF/LICENSE diff --git a/licenses/jetty-io-9.4.51.v20230217.jar/META-INF/NOTICE.txt b/licenses/jetty-io-9.4.53.v20231009.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/jetty-io-9.4.51.v20230217.jar/META-INF/NOTICE.txt rename to licenses/jetty-io-9.4.53.v20231009.jar/META-INF/NOTICE.txt diff --git a/licenses/jetty-io-9.4.51.v20230217.jar/about.html b/licenses/jetty-io-9.4.53.v20231009.jar/about.html similarity index 100% rename from licenses/jetty-io-9.4.51.v20230217.jar/about.html rename to licenses/jetty-io-9.4.53.v20231009.jar/about.html diff --git a/licenses/jetty-security-9.4.51.v20230217.jar/META-INF/LICENSE b/licenses/jetty-security-9.4.53.v20231009.jar/META-INF/LICENSE similarity index 100% rename from licenses/jetty-security-9.4.51.v20230217.jar/META-INF/LICENSE rename to licenses/jetty-security-9.4.53.v20231009.jar/META-INF/LICENSE diff --git a/licenses/jetty-security-9.4.51.v20230217.jar/META-INF/NOTICE.txt b/licenses/jetty-security-9.4.53.v20231009.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/jetty-security-9.4.51.v20230217.jar/META-INF/NOTICE.txt rename to licenses/jetty-security-9.4.53.v20231009.jar/META-INF/NOTICE.txt diff --git a/licenses/jetty-security-9.4.51.v20230217.jar/about.html b/licenses/jetty-security-9.4.53.v20231009.jar/about.html similarity index 100% rename from licenses/jetty-security-9.4.51.v20230217.jar/about.html rename to licenses/jetty-security-9.4.53.v20231009.jar/about.html diff --git a/licenses/jetty-server-9.4.51.v20230217.jar/META-INF/LICENSE b/licenses/jetty-server-9.4.53.v20231009.jar/META-INF/LICENSE similarity index 100% rename from licenses/jetty-server-9.4.51.v20230217.jar/META-INF/LICENSE rename to licenses/jetty-server-9.4.53.v20231009.jar/META-INF/LICENSE diff --git a/licenses/jetty-server-9.4.51.v20230217.jar/META-INF/NOTICE.txt b/licenses/jetty-server-9.4.53.v20231009.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/jetty-server-9.4.51.v20230217.jar/META-INF/NOTICE.txt rename to licenses/jetty-server-9.4.53.v20231009.jar/META-INF/NOTICE.txt diff --git a/licenses/jetty-server-9.4.51.v20230217.jar/about.html b/licenses/jetty-server-9.4.53.v20231009.jar/about.html similarity index 100% rename from licenses/jetty-server-9.4.51.v20230217.jar/about.html rename to licenses/jetty-server-9.4.53.v20231009.jar/about.html diff --git a/licenses/jetty-servlet-9.4.51.v20230217.jar/META-INF/LICENSE b/licenses/jetty-servlet-9.4.53.v20231009.jar/META-INF/LICENSE similarity index 100% rename from licenses/jetty-servlet-9.4.51.v20230217.jar/META-INF/LICENSE rename to licenses/jetty-servlet-9.4.53.v20231009.jar/META-INF/LICENSE diff --git a/licenses/jetty-servlet-9.4.51.v20230217.jar/META-INF/NOTICE.txt b/licenses/jetty-servlet-9.4.53.v20231009.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/jetty-servlet-9.4.51.v20230217.jar/META-INF/NOTICE.txt rename to licenses/jetty-servlet-9.4.53.v20231009.jar/META-INF/NOTICE.txt diff --git a/licenses/jetty-servlet-9.4.51.v20230217.jar/about.html b/licenses/jetty-servlet-9.4.53.v20231009.jar/about.html similarity index 100% rename from licenses/jetty-servlet-9.4.51.v20230217.jar/about.html rename to licenses/jetty-servlet-9.4.53.v20231009.jar/about.html diff --git a/licenses/jetty-util-9.4.51.v20230217.jar/META-INF/LICENSE b/licenses/jetty-util-9.4.53.v20231009.jar/META-INF/LICENSE similarity index 100% rename from licenses/jetty-util-9.4.51.v20230217.jar/META-INF/LICENSE rename to licenses/jetty-util-9.4.53.v20231009.jar/META-INF/LICENSE diff --git a/licenses/jetty-util-9.4.51.v20230217.jar/META-INF/NOTICE.txt b/licenses/jetty-util-9.4.53.v20231009.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/jetty-util-9.4.51.v20230217.jar/META-INF/NOTICE.txt rename to licenses/jetty-util-9.4.53.v20231009.jar/META-INF/NOTICE.txt diff --git a/licenses/jetty-util-9.4.51.v20230217.jar/about.html b/licenses/jetty-util-9.4.53.v20231009.jar/about.html similarity index 100% rename from licenses/jetty-util-9.4.51.v20230217.jar/about.html rename to licenses/jetty-util-9.4.53.v20231009.jar/about.html diff --git a/licenses/jetty-util-ajax-9.4.51.v20230217.jar/META-INF/LICENSE b/licenses/jetty-util-ajax-9.4.53.v20231009.jar/META-INF/LICENSE similarity index 100% rename from licenses/jetty-util-ajax-9.4.51.v20230217.jar/META-INF/LICENSE rename to licenses/jetty-util-ajax-9.4.53.v20231009.jar/META-INF/LICENSE diff --git a/licenses/jetty-util-ajax-9.4.51.v20230217.jar/META-INF/NOTICE.txt b/licenses/jetty-util-ajax-9.4.53.v20231009.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/jetty-util-ajax-9.4.51.v20230217.jar/META-INF/NOTICE.txt rename to licenses/jetty-util-ajax-9.4.53.v20231009.jar/META-INF/NOTICE.txt diff --git a/licenses/jetty-util-ajax-9.4.51.v20230217.jar/about.html b/licenses/jetty-util-ajax-9.4.53.v20231009.jar/about.html similarity index 100% rename from licenses/jetty-util-ajax-9.4.51.v20230217.jar/about.html rename to licenses/jetty-util-ajax-9.4.53.v20231009.jar/about.html diff --git a/licenses/jetty-webapp-9.4.51.v20230217.jar/META-INF/LICENSE b/licenses/jetty-webapp-9.4.53.v20231009.jar/META-INF/LICENSE similarity index 100% rename from licenses/jetty-webapp-9.4.51.v20230217.jar/META-INF/LICENSE rename to licenses/jetty-webapp-9.4.53.v20231009.jar/META-INF/LICENSE diff --git a/licenses/jetty-webapp-9.4.51.v20230217.jar/META-INF/NOTICE.txt b/licenses/jetty-webapp-9.4.53.v20231009.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/jetty-webapp-9.4.51.v20230217.jar/META-INF/NOTICE.txt rename to licenses/jetty-webapp-9.4.53.v20231009.jar/META-INF/NOTICE.txt diff --git a/licenses/jetty-webapp-9.4.51.v20230217.jar/about.html b/licenses/jetty-webapp-9.4.53.v20231009.jar/about.html similarity index 100% rename from licenses/jetty-webapp-9.4.51.v20230217.jar/about.html rename to licenses/jetty-webapp-9.4.53.v20231009.jar/about.html diff --git a/licenses/jetty-xml-9.4.51.v20230217.jar/META-INF/LICENSE b/licenses/jetty-xml-9.4.53.v20231009.jar/META-INF/LICENSE similarity index 100% rename from licenses/jetty-xml-9.4.51.v20230217.jar/META-INF/LICENSE rename to licenses/jetty-xml-9.4.53.v20231009.jar/META-INF/LICENSE diff --git a/licenses/jetty-xml-9.4.51.v20230217.jar/META-INF/NOTICE.txt b/licenses/jetty-xml-9.4.53.v20231009.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/jetty-xml-9.4.51.v20230217.jar/META-INF/NOTICE.txt rename to licenses/jetty-xml-9.4.53.v20231009.jar/META-INF/NOTICE.txt diff --git a/licenses/jetty-xml-9.4.51.v20230217.jar/about.html b/licenses/jetty-xml-9.4.53.v20231009.jar/about.html similarity index 100% rename from licenses/jetty-xml-9.4.51.v20230217.jar/about.html rename to licenses/jetty-xml-9.4.53.v20231009.jar/about.html diff --git a/licenses/json-utils-2.21.7.jar/META-INF/LICENSE.txt b/licenses/json-utils-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/json-utils-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/json-utils-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/json-utils-2.21.7.jar/META-INF/NOTICE.txt b/licenses/json-utils-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/json-utils-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/json-utils-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/kinesis-2.21.7.jar/META-INF/LICENSE.txt b/licenses/kinesis-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/kinesis-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/kinesis-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/kinesis-2.21.7.jar/META-INF/NOTICE.txt b/licenses/kinesis-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/kinesis-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/kinesis-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/licenses.md b/licenses/licenses.md index 56743b1750..4780f4c7b4 100644 --- a/licenses/licenses.md +++ b/licenses/licenses.md @@ -1,7 +1,7 @@ # aws-otel-java-instrumentation ## Dependency License Report -_2023-11-14 10:24:46 PST_ +_2023-11-29 11:15:04 PST_ ## Apache 2 **1** **Group:** `joda-time` **Name:** `joda-time` **Version:** `2.8.1` @@ -22,41 +22,41 @@ _2023-11-14 10:24:46 PST_ > - **Manifest License**: "Apache 2.0";link="http://www.apache.org/licenses/LICENSE-2.0.txt" (Not Packaged) > - **POM License**: Apache 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**4** **Group:** `io.grpc` **Name:** `grpc-api` **Version:** `1.59.0` +**4** **Group:** `io.grpc` **Name:** `grpc-api` **Version:** `1.59.1` > - **POM Project URL**: [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) > - **POM License**: Apache 2.0 - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -**5** **Group:** `io.grpc` **Name:** `grpc-context` **Version:** `1.59.0` +**5** **Group:** `io.grpc` **Name:** `grpc-context` **Version:** `1.59.1` > - **POM Project URL**: [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) > - **POM License**: Apache 2.0 - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -**6** **Group:** `io.grpc` **Name:** `grpc-core` **Version:** `1.59.0` +**6** **Group:** `io.grpc` **Name:** `grpc-core` **Version:** `1.59.1` > - **POM Project URL**: [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) > - **POM License**: Apache 2.0 - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -**7** **Group:** `io.grpc` **Name:** `grpc-netty-shaded` **Version:** `1.59.0` +**7** **Group:** `io.grpc` **Name:** `grpc-netty-shaded` **Version:** `1.59.1` > - **POM Project URL**: [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) > - **POM License**: Apache 2.0 - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -> - **Embedded license files**: [grpc-netty-shaded-1.59.0.jar/META-INF/LICENSE.txt](grpc-netty-shaded-1.59.0.jar/META-INF/LICENSE.txt) - - [grpc-netty-shaded-1.59.0.jar/META-INF/NOTICE.txt](grpc-netty-shaded-1.59.0.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [grpc-netty-shaded-1.59.1.jar/META-INF/LICENSE.txt](grpc-netty-shaded-1.59.1.jar/META-INF/LICENSE.txt) + - [grpc-netty-shaded-1.59.1.jar/META-INF/NOTICE.txt](grpc-netty-shaded-1.59.1.jar/META-INF/NOTICE.txt) -**8** **Group:** `io.grpc` **Name:** `grpc-protobuf` **Version:** `1.59.0` +**8** **Group:** `io.grpc` **Name:** `grpc-protobuf` **Version:** `1.59.1` > - **POM Project URL**: [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) > - **POM License**: Apache 2.0 - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -**9** **Group:** `io.grpc` **Name:** `grpc-protobuf-lite` **Version:** `1.59.0` +**9** **Group:** `io.grpc` **Name:** `grpc-protobuf-lite` **Version:** `1.59.1` > - **POM Project URL**: [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) > - **POM License**: Apache 2.0 - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -**10** **Group:** `io.grpc` **Name:** `grpc-services` **Version:** `1.59.0` +**10** **Group:** `io.grpc` **Name:** `grpc-services` **Version:** `1.59.1` > - **POM Project URL**: [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) > - **POM License**: Apache 2.0 - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -**11** **Group:** `io.grpc` **Name:** `grpc-stub` **Version:** `1.59.0` +**11** **Group:** `io.grpc` **Name:** `grpc-stub` **Version:** `1.59.1` > - **POM Project URL**: [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) > - **POM License**: Apache 2.0 - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) -**12** **Group:** `io.grpc` **Name:** `grpc-util` **Version:** `1.59.0` +**12** **Group:** `io.grpc` **Name:** `grpc-util` **Version:** `1.59.1` > - **POM Project URL**: [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) > - **POM License**: Apache 2.0 - [https://opensource.org/licenses/Apache-2.0](https://opensource.org/licenses/Apache-2.0) @@ -79,51 +79,51 @@ _2023-11-14 10:24:46 PST_ ## Apache License, Version 2.0 -**17** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-cloudwatch` **Version:** `1.12.573` +**17** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-cloudwatch` **Version:** `1.12.599` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -**18** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-core` **Version:** `1.12.573` +**18** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-core` **Version:** `1.12.599` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -**19** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-dynamodb` **Version:** `1.12.573` +**19** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-dynamodb` **Version:** `1.12.599` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -**20** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-ecs` **Version:** `1.12.573` +**20** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-ecs` **Version:** `1.12.599` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -**21** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-kinesis` **Version:** `1.12.573` +**21** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-kinesis` **Version:** `1.12.599` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -**22** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-kms` **Version:** `1.12.573` +**22** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-kms` **Version:** `1.12.599` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -**23** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-logs` **Version:** `1.12.573` +**23** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-logs` **Version:** `1.12.599` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -**24** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-s3` **Version:** `1.12.573` +**24** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-s3` **Version:** `1.12.599` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -**25** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-sqs` **Version:** `1.12.573` +**25** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-sqs` **Version:** `1.12.599` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -**26** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-sts` **Version:** `1.12.573` +**26** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-sts` **Version:** `1.12.599` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -**27** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-xray` **Version:** `1.12.573` +**27** **Group:** `com.amazonaws` **Name:** `aws-java-sdk-xray` **Version:** `1.12.599` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -**28** **Group:** `com.amazonaws` **Name:** `jmespath-java` **Version:** `1.12.573` +**28** **Group:** `com.amazonaws` **Name:** `jmespath-java` **Version:** `1.12.599` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) @@ -134,12 +134,12 @@ _2023-11-14 10:24:46 PST_ > - **Embedded license files**: [jackson-core-2.13.5.jar/META-INF/LICENSE](jackson-core-2.13.5.jar/META-INF/LICENSE) - [jackson-core-2.13.5.jar/META-INF/NOTICE](jackson-core-2.13.5.jar/META-INF/NOTICE) -**30** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-core` **Version:** `2.15.3` +**30** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-core` **Version:** `2.16.0` > - **Project URL**: [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [jackson-core-2.15.3.jar/META-INF/LICENSE](jackson-core-2.15.3.jar/META-INF/LICENSE) - - [jackson-core-2.15.3.jar/META-INF/NOTICE](jackson-core-2.15.3.jar/META-INF/NOTICE) +> - **Embedded license files**: [jackson-core-2.16.0.jar/META-INF/LICENSE](jackson-core-2.16.0.jar/META-INF/LICENSE) + - [jackson-core-2.16.0.jar/META-INF/NOTICE](jackson-core-2.16.0.jar/META-INF/NOTICE) **31** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-databind` **Version:** `2.13.5` > - **Project URL**: [http://github.com/FasterXML/jackson](http://github.com/FasterXML/jackson) @@ -148,38 +148,38 @@ _2023-11-14 10:24:46 PST_ > - **Embedded license files**: [jackson-databind-2.13.5.jar/META-INF/LICENSE](jackson-databind-2.13.5.jar/META-INF/LICENSE) - [jackson-databind-2.13.5.jar/META-INF/NOTICE](jackson-databind-2.13.5.jar/META-INF/NOTICE) -**32** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-databind` **Version:** `2.15.3` +**32** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-databind` **Version:** `2.16.0` > - **Project URL**: [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [jackson-databind-2.15.3.jar/META-INF/LICENSE](jackson-databind-2.15.3.jar/META-INF/LICENSE) - - [jackson-databind-2.15.3.jar/META-INF/NOTICE](jackson-databind-2.15.3.jar/META-INF/NOTICE) +> - **Embedded license files**: [jackson-databind-2.16.0.jar/META-INF/LICENSE](jackson-databind-2.16.0.jar/META-INF/LICENSE) + - [jackson-databind-2.16.0.jar/META-INF/NOTICE](jackson-databind-2.16.0.jar/META-INF/NOTICE) -**33** **Group:** `com.fasterxml.jackson.dataformat` **Name:** `jackson-dataformat-cbor` **Version:** `2.15.3` +**33** **Group:** `com.fasterxml.jackson.dataformat` **Name:** `jackson-dataformat-cbor` **Version:** `2.16.0` > - **Project URL**: [https://github.com/FasterXML/jackson-dataformats-binary](https://github.com/FasterXML/jackson-dataformats-binary) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [jackson-dataformat-cbor-2.15.3.jar/META-INF/LICENSE](jackson-dataformat-cbor-2.15.3.jar/META-INF/LICENSE) - - [jackson-dataformat-cbor-2.15.3.jar/META-INF/NOTICE](jackson-dataformat-cbor-2.15.3.jar/META-INF/NOTICE) +> - **Embedded license files**: [jackson-dataformat-cbor-2.16.0.jar/META-INF/LICENSE](jackson-dataformat-cbor-2.16.0.jar/META-INF/LICENSE) + - [jackson-dataformat-cbor-2.16.0.jar/META-INF/NOTICE](jackson-dataformat-cbor-2.16.0.jar/META-INF/NOTICE) -**34** **Group:** `com.fasterxml.jackson.dataformat` **Name:** `jackson-dataformat-yaml` **Version:** `2.15.3` +**34** **Group:** `com.fasterxml.jackson.dataformat` **Name:** `jackson-dataformat-yaml` **Version:** `2.16.0` > - **Project URL**: [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [jackson-dataformat-yaml-2.15.3.jar/META-INF/LICENSE](jackson-dataformat-yaml-2.15.3.jar/META-INF/LICENSE) - - [jackson-dataformat-yaml-2.15.3.jar/META-INF/NOTICE](jackson-dataformat-yaml-2.15.3.jar/META-INF/NOTICE) +> - **Embedded license files**: [jackson-dataformat-yaml-2.16.0.jar/META-INF/LICENSE](jackson-dataformat-yaml-2.16.0.jar/META-INF/LICENSE) + - [jackson-dataformat-yaml-2.16.0.jar/META-INF/NOTICE](jackson-dataformat-yaml-2.16.0.jar/META-INF/NOTICE) **35** **Group:** `com.fasterxml.jackson.datatype` **Name:** `jackson-datatype-jdk8` **Version:** `2.13.5` > - **Manifest Project URL**: [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**36** **Group:** `com.fasterxml.jackson.datatype` **Name:** `jackson-datatype-jdk8` **Version:** `2.15.3` +**36** **Group:** `com.fasterxml.jackson.datatype` **Name:** `jackson-datatype-jdk8` **Version:** `2.16.0` > - **Manifest Project URL**: [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [jackson-datatype-jdk8-2.15.3.jar/META-INF/LICENSE](jackson-datatype-jdk8-2.15.3.jar/META-INF/LICENSE) - - [jackson-datatype-jdk8-2.15.3.jar/META-INF/NOTICE](jackson-datatype-jdk8-2.15.3.jar/META-INF/NOTICE) +> - **Embedded license files**: [jackson-datatype-jdk8-2.16.0.jar/META-INF/LICENSE](jackson-datatype-jdk8-2.16.0.jar/META-INF/LICENSE) + - [jackson-datatype-jdk8-2.16.0.jar/META-INF/NOTICE](jackson-datatype-jdk8-2.16.0.jar/META-INF/NOTICE) **37** **Group:** `com.fasterxml.jackson.datatype` **Name:** `jackson-datatype-jsr310` **Version:** `2.13.5` > - **Manifest Project URL**: [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) @@ -187,24 +187,24 @@ _2023-11-14 10:24:46 PST_ > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [jackson-datatype-jsr310-2.13.5.jar/META-INF/LICENSE](jackson-datatype-jsr310-2.13.5.jar/META-INF/LICENSE) -**38** **Group:** `com.fasterxml.jackson.datatype` **Name:** `jackson-datatype-jsr310` **Version:** `2.15.3` +**38** **Group:** `com.fasterxml.jackson.datatype` **Name:** `jackson-datatype-jsr310` **Version:** `2.16.0` > - **Manifest Project URL**: [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [jackson-datatype-jsr310-2.15.3.jar/META-INF/LICENSE](jackson-datatype-jsr310-2.15.3.jar/META-INF/LICENSE) - - [jackson-datatype-jsr310-2.15.3.jar/META-INF/NOTICE](jackson-datatype-jsr310-2.15.3.jar/META-INF/NOTICE) +> - **Embedded license files**: [jackson-datatype-jsr310-2.16.0.jar/META-INF/LICENSE](jackson-datatype-jsr310-2.16.0.jar/META-INF/LICENSE) + - [jackson-datatype-jsr310-2.16.0.jar/META-INF/NOTICE](jackson-datatype-jsr310-2.16.0.jar/META-INF/NOTICE) **39** **Group:** `com.fasterxml.jackson.module` **Name:** `jackson-module-parameter-names` **Version:** `2.13.5` > - **Manifest Project URL**: [https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names](https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**40** **Group:** `com.fasterxml.jackson.module` **Name:** `jackson-module-parameter-names` **Version:** `2.15.3` +**40** **Group:** `com.fasterxml.jackson.module` **Name:** `jackson-module-parameter-names` **Version:** `2.16.0` > - **Manifest Project URL**: [https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names](https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [jackson-module-parameter-names-2.15.3.jar/META-INF/LICENSE](jackson-module-parameter-names-2.15.3.jar/META-INF/LICENSE) - - [jackson-module-parameter-names-2.15.3.jar/META-INF/NOTICE](jackson-module-parameter-names-2.15.3.jar/META-INF/NOTICE) +> - **Embedded license files**: [jackson-module-parameter-names-2.16.0.jar/META-INF/LICENSE](jackson-module-parameter-names-2.16.0.jar/META-INF/LICENSE) + - [jackson-module-parameter-names-2.16.0.jar/META-INF/NOTICE](jackson-module-parameter-names-2.16.0.jar/META-INF/NOTICE) **41** **Group:** `com.github.awslabs` **Name:** `aws-request-signing-apache-interceptor` **Version:** `b3772780da` > - **POM Project URL**: [http://maven.apache.org](http://maven.apache.org) @@ -226,7 +226,7 @@ _2023-11-14 10:24:46 PST_ > - **Embedded license files**: [commons-codec-1.15.jar/META-INF/LICENSE.txt](commons-codec-1.15.jar/META-INF/LICENSE.txt) - [commons-codec-1.15.jar/META-INF/NOTICE.txt](commons-codec-1.15.jar/META-INF/NOTICE.txt) -**45** **Group:** `io.netty` **Name:** `netty-all` **Version:** `4.1.97.Final` +**45** **Group:** `io.netty` **Name:** `netty-all` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM Project URL**: [https://netty.io/netty-all/](https://netty.io/netty-all/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) @@ -235,811 +235,771 @@ _2023-11-14 10:24:46 PST_ > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**47** **Group:** `io.netty` **Name:** `netty-buffer` **Version:** `4.1.97.Final` +**47** **Group:** `io.netty` **Name:** `netty-codec` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**48** **Group:** `io.netty` **Name:** `netty-codec` **Version:** `4.1.100.Final` +**48** **Group:** `io.netty` **Name:** `netty-codec-dns` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**49** **Group:** `io.netty` **Name:** `netty-codec` **Version:** `4.1.97.Final` +**49** **Group:** `io.netty` **Name:** `netty-codec-haproxy` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**50** **Group:** `io.netty` **Name:** `netty-codec-dns` **Version:** `4.1.97.Final` +**50** **Group:** `io.netty` **Name:** `netty-codec-http` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**51** **Group:** `io.netty` **Name:** `netty-codec-haproxy` **Version:** `4.1.97.Final` +**51** **Group:** `io.netty` **Name:** `netty-codec-http2` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**52** **Group:** `io.netty` **Name:** `netty-codec-http` **Version:** `4.1.100.Final` +**52** **Group:** `io.netty` **Name:** `netty-codec-memcache` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**53** **Group:** `io.netty` **Name:** `netty-codec-http` **Version:** `4.1.97.Final` +**53** **Group:** `io.netty` **Name:** `netty-codec-mqtt` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**54** **Group:** `io.netty` **Name:** `netty-codec-http2` **Version:** `4.1.100.Final` +**54** **Group:** `io.netty` **Name:** `netty-codec-redis` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**55** **Group:** `io.netty` **Name:** `netty-codec-http2` **Version:** `4.1.97.Final` +**55** **Group:** `io.netty` **Name:** `netty-codec-smtp` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**56** **Group:** `io.netty` **Name:** `netty-codec-memcache` **Version:** `4.1.97.Final` +**56** **Group:** `io.netty` **Name:** `netty-codec-socks` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**57** **Group:** `io.netty` **Name:** `netty-codec-mqtt` **Version:** `4.1.97.Final` +**57** **Group:** `io.netty` **Name:** `netty-codec-stomp` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**58** **Group:** `io.netty` **Name:** `netty-codec-redis` **Version:** `4.1.97.Final` +**58** **Group:** `io.netty` **Name:** `netty-codec-xml` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**59** **Group:** `io.netty` **Name:** `netty-codec-smtp` **Version:** `4.1.97.Final` +**59** **Group:** `io.netty` **Name:** `netty-common` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**60** **Group:** `io.netty` **Name:** `netty-codec-socks` **Version:** `4.1.97.Final` +**60** **Group:** `io.netty` **Name:** `netty-handler` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**61** **Group:** `io.netty` **Name:** `netty-codec-stomp` **Version:** `4.1.97.Final` +**61** **Group:** `io.netty` **Name:** `netty-handler-proxy` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**62** **Group:** `io.netty` **Name:** `netty-codec-xml` **Version:** `4.1.97.Final` +**62** **Group:** `io.netty` **Name:** `netty-handler-ssl-ocsp` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**63** **Group:** `io.netty` **Name:** `netty-common` **Version:** `4.1.100.Final` +**63** **Group:** `io.netty` **Name:** `netty-resolver` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**64** **Group:** `io.netty` **Name:** `netty-common` **Version:** `4.1.97.Final` +**64** **Group:** `io.netty` **Name:** `netty-resolver-dns` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**65** **Group:** `io.netty` **Name:** `netty-handler` **Version:** `4.1.100.Final` +**65** **Group:** `io.netty` **Name:** `netty-resolver-dns-classes-macos` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**66** **Group:** `io.netty` **Name:** `netty-handler` **Version:** `4.1.97.Final` +**66** **Group:** `io.netty` **Name:** `netty-resolver-dns-native-macos` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**67** **Group:** `io.netty` **Name:** `netty-handler-proxy` **Version:** `4.1.97.Final` +**67** **Group:** `io.netty` **Name:** `netty-transport` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**68** **Group:** `io.netty` **Name:** `netty-handler-ssl-ocsp` **Version:** `4.1.97.Final` +**68** **Group:** `io.netty` **Name:** `netty-transport-classes-epoll` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**69** **Group:** `io.netty` **Name:** `netty-resolver` **Version:** `4.1.100.Final` +**69** **Group:** `io.netty` **Name:** `netty-transport-classes-kqueue` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**70** **Group:** `io.netty` **Name:** `netty-resolver` **Version:** `4.1.97.Final` +**70** **Group:** `io.netty` **Name:** `netty-transport-native-epoll` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**71** **Group:** `io.netty` **Name:** `netty-resolver-dns` **Version:** `4.1.97.Final` +**71** **Group:** `io.netty` **Name:** `netty-transport-native-kqueue` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**72** **Group:** `io.netty` **Name:** `netty-resolver-dns-classes-macos` **Version:** `4.1.97.Final` +**72** **Group:** `io.netty` **Name:** `netty-transport-native-unix-common` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**73** **Group:** `io.netty` **Name:** `netty-resolver-dns-native-macos` **Version:** `4.1.97.Final` +**73** **Group:** `io.netty` **Name:** `netty-transport-rxtx` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**74** **Group:** `io.netty` **Name:** `netty-transport` **Version:** `4.1.100.Final` +**74** **Group:** `io.netty` **Name:** `netty-transport-sctp` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**75** **Group:** `io.netty` **Name:** `netty-transport` **Version:** `4.1.97.Final` +**75** **Group:** `io.netty` **Name:** `netty-transport-udt` **Version:** `4.1.100.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**76** **Group:** `io.netty` **Name:** `netty-transport-classes-epoll` **Version:** `4.1.100.Final` -> - **Manifest Project URL**: [https://netty.io/](https://netty.io/) -> - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) - -**77** **Group:** `io.netty` **Name:** `netty-transport-classes-epoll` **Version:** `4.1.97.Final` -> - **Manifest Project URL**: [https://netty.io/](https://netty.io/) -> - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) - -**78** **Group:** `io.netty` **Name:** `netty-transport-classes-kqueue` **Version:** `4.1.97.Final` -> - **Manifest Project URL**: [https://netty.io/](https://netty.io/) -> - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) - -**79** **Group:** `io.netty` **Name:** `netty-transport-native-epoll` **Version:** `4.1.97.Final` -> - **Manifest Project URL**: [https://netty.io/](https://netty.io/) -> - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) - -**80** **Group:** `io.netty` **Name:** `netty-transport-native-kqueue` **Version:** `4.1.97.Final` -> - **Manifest Project URL**: [https://netty.io/](https://netty.io/) -> - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) - -**81** **Group:** `io.netty` **Name:** `netty-transport-native-unix-common` **Version:** `4.1.100.Final` -> - **Manifest Project URL**: [https://netty.io/](https://netty.io/) -> - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) - -**82** **Group:** `io.netty` **Name:** `netty-transport-native-unix-common` **Version:** `4.1.97.Final` -> - **Manifest Project URL**: [https://netty.io/](https://netty.io/) -> - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) - -**83** **Group:** `io.netty` **Name:** `netty-transport-rxtx` **Version:** `4.1.97.Final` -> - **Manifest Project URL**: [https://netty.io/](https://netty.io/) -> - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) - -**84** **Group:** `io.netty` **Name:** `netty-transport-sctp` **Version:** `4.1.97.Final` -> - **Manifest Project URL**: [https://netty.io/](https://netty.io/) -> - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) - -**85** **Group:** `io.netty` **Name:** `netty-transport-udt` **Version:** `4.1.97.Final` -> - **Manifest Project URL**: [https://netty.io/](https://netty.io/) -> - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) - -**86** **Group:** `net.bytebuddy` **Name:** `byte-buddy` **Version:** `1.14.9` +**76** **Group:** `net.bytebuddy` **Name:** `byte-buddy` **Version:** `1.14.10` > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [byte-buddy-1.14.9.jar/META-INF/LICENSE](byte-buddy-1.14.9.jar/META-INF/LICENSE) - - [byte-buddy-1.14.9.jar/META-INF/NOTICE](byte-buddy-1.14.9.jar/META-INF/NOTICE) +> - **Embedded license files**: [byte-buddy-1.14.10.jar/META-INF/LICENSE](byte-buddy-1.14.10.jar/META-INF/LICENSE) + - [byte-buddy-1.14.10.jar/META-INF/NOTICE](byte-buddy-1.14.10.jar/META-INF/NOTICE) -**87** **Group:** `org.apache.commons` **Name:** `commons-lang3` **Version:** `3.12.0` +**77** **Group:** `org.apache.commons` **Name:** `commons-lang3` **Version:** `3.12.0` > - **Project URL**: [https://commons.apache.org/proper/commons-lang/](https://commons.apache.org/proper/commons-lang/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [commons-lang3-3.12.0.jar/META-INF/LICENSE.txt](commons-lang3-3.12.0.jar/META-INF/LICENSE.txt) - [commons-lang3-3.12.0.jar/META-INF/NOTICE.txt](commons-lang3-3.12.0.jar/META-INF/NOTICE.txt) -**88** **Group:** `org.apache.commons` **Name:** `commons-text` **Version:** `1.8` +**78** **Group:** `org.apache.commons` **Name:** `commons-text` **Version:** `1.8` > - **Project URL**: [https://commons.apache.org/proper/commons-text](https://commons.apache.org/proper/commons-text) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [commons-text-1.8.jar/META-INF/LICENSE.txt](commons-text-1.8.jar/META-INF/LICENSE.txt) - [commons-text-1.8.jar/META-INF/NOTICE.txt](commons-text-1.8.jar/META-INF/NOTICE.txt) -**89** **Group:** `org.apache.httpcomponents` **Name:** `httpclient` **Version:** `4.5.14` +**79** **Group:** `org.apache.httpcomponents` **Name:** `httpclient` **Version:** `4.5.14` > - **POM Project URL**: [http://hc.apache.org/httpcomponents-client-ga](http://hc.apache.org/httpcomponents-client-ga) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [httpclient-4.5.14.jar/META-INF/LICENSE](httpclient-4.5.14.jar/META-INF/LICENSE) - [httpclient-4.5.14.jar/META-INF/NOTICE](httpclient-4.5.14.jar/META-INF/NOTICE) -**90** **Group:** `org.apache.httpcomponents` **Name:** `httpcore` **Version:** `4.4.16` +**80** **Group:** `org.apache.httpcomponents` **Name:** `httpcore` **Version:** `4.4.16` > - **POM Project URL**: [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [httpcore-4.4.16.jar/META-INF/LICENSE](httpcore-4.4.16.jar/META-INF/LICENSE) - [httpcore-4.4.16.jar/META-INF/NOTICE](httpcore-4.4.16.jar/META-INF/NOTICE) -**91** **Group:** `org.apache.httpcomponents.client5` **Name:** `httpclient5` **Version:** `5.2.1` +**81** **Group:** `org.apache.httpcomponents.client5` **Name:** `httpclient5` **Version:** `5.2.1` > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [httpclient5-5.2.1.jar/META-INF/LICENSE](httpclient5-5.2.1.jar/META-INF/LICENSE) - [httpclient5-5.2.1.jar/META-INF/NOTICE](httpclient5-5.2.1.jar/META-INF/NOTICE) -**92** **Group:** `org.apache.httpcomponents.core5` **Name:** `httpcore5` **Version:** `5.2` +**82** **Group:** `org.apache.httpcomponents.core5` **Name:** `httpcore5` **Version:** `5.2` > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [httpcore5-5.2.jar/META-INF/LICENSE](httpcore5-5.2.jar/META-INF/LICENSE) - [httpcore5-5.2.jar/META-INF/NOTICE](httpcore5-5.2.jar/META-INF/NOTICE) -**93** **Group:** `org.apache.httpcomponents.core5` **Name:** `httpcore5-h2` **Version:** `5.2` +**83** **Group:** `org.apache.httpcomponents.core5` **Name:** `httpcore5-h2` **Version:** `5.2` > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [httpcore5-h2-5.2.jar/META-INF/LICENSE](httpcore5-h2-5.2.jar/META-INF/LICENSE) - [httpcore5-h2-5.2.jar/META-INF/NOTICE](httpcore5-h2-5.2.jar/META-INF/NOTICE) -**94** **Group:** `org.apache.logging.log4j` **Name:** `log4j-api` **Version:** `2.17.2` +**84** **Group:** `org.apache.logging.log4j` **Name:** `log4j-api` **Version:** `2.17.2` > - **Manifest Project URL**: [https://www.apache.org/](https://www.apache.org/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [log4j-api-2.17.2.jar/META-INF/LICENSE](log4j-api-2.17.2.jar/META-INF/LICENSE) - [log4j-api-2.17.2.jar/META-INF/NOTICE](log4j-api-2.17.2.jar/META-INF/NOTICE) -**95** **Group:** `org.apache.logging.log4j` **Name:** `log4j-to-slf4j` **Version:** `2.17.2` +**85** **Group:** `org.apache.logging.log4j` **Name:** `log4j-to-slf4j` **Version:** `2.17.2` > - **Manifest Project URL**: [https://www.apache.org/](https://www.apache.org/) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [log4j-to-slf4j-2.17.2.jar/META-INF/LICENSE](log4j-to-slf4j-2.17.2.jar/META-INF/LICENSE) - [log4j-to-slf4j-2.17.2.jar/META-INF/NOTICE](log4j-to-slf4j-2.17.2.jar/META-INF/NOTICE) -**96** **Group:** `org.apache.tomcat` **Name:** `tomcat-annotations-api` **Version:** `10.1.10` +**86** **Group:** `org.apache.tomcat` **Name:** `tomcat-annotations-api` **Version:** `10.1.10` > - **POM Project URL**: [https://tomcat.apache.org/](https://tomcat.apache.org/) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [tomcat-annotations-api-10.1.10.jar/META-INF/LICENSE](tomcat-annotations-api-10.1.10.jar/META-INF/LICENSE) - [tomcat-annotations-api-10.1.10.jar/META-INF/NOTICE](tomcat-annotations-api-10.1.10.jar/META-INF/NOTICE) -**97** **Group:** `org.apache.tomcat.embed` **Name:** `tomcat-embed-core` **Version:** `10.1.10` +**87** **Group:** `org.apache.tomcat.embed` **Name:** `tomcat-embed-core` **Version:** `10.1.10` > - **POM Project URL**: [https://tomcat.apache.org/](https://tomcat.apache.org/) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [tomcat-embed-core-10.1.10.jar/META-INF/LICENSE](tomcat-embed-core-10.1.10.jar/META-INF/LICENSE) - [tomcat-embed-core-10.1.10.jar/META-INF/NOTICE](tomcat-embed-core-10.1.10.jar/META-INF/NOTICE) -**98** **Group:** `org.apache.tomcat.embed` **Name:** `tomcat-embed-core` **Version:** `9.0.79` +**88** **Group:** `org.apache.tomcat.embed` **Name:** `tomcat-embed-core` **Version:** `9.0.82` > - **POM Project URL**: [https://tomcat.apache.org/](https://tomcat.apache.org/) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [tomcat-embed-core-9.0.79.jar/META-INF/LICENSE](tomcat-embed-core-9.0.79.jar/META-INF/LICENSE) - - [tomcat-embed-core-9.0.79.jar/META-INF/NOTICE](tomcat-embed-core-9.0.79.jar/META-INF/NOTICE) +> - **Embedded license files**: [tomcat-embed-core-9.0.82.jar/META-INF/LICENSE](tomcat-embed-core-9.0.82.jar/META-INF/LICENSE) + - [tomcat-embed-core-9.0.82.jar/META-INF/NOTICE](tomcat-embed-core-9.0.82.jar/META-INF/NOTICE) -**99** **Group:** `org.apache.tomcat.embed` **Name:** `tomcat-embed-el` **Version:** `10.1.10` +**89** **Group:** `org.apache.tomcat.embed` **Name:** `tomcat-embed-el` **Version:** `10.1.10` > - **POM Project URL**: [https://tomcat.apache.org/](https://tomcat.apache.org/) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [tomcat-embed-el-10.1.10.jar/META-INF/LICENSE](tomcat-embed-el-10.1.10.jar/META-INF/LICENSE) - [tomcat-embed-el-10.1.10.jar/META-INF/NOTICE](tomcat-embed-el-10.1.10.jar/META-INF/NOTICE) -**100** **Group:** `org.apache.tomcat.embed` **Name:** `tomcat-embed-el` **Version:** `9.0.79` +**90** **Group:** `org.apache.tomcat.embed` **Name:** `tomcat-embed-el` **Version:** `9.0.82` > - **POM Project URL**: [https://tomcat.apache.org/](https://tomcat.apache.org/) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [tomcat-embed-el-9.0.79.jar/META-INF/LICENSE](tomcat-embed-el-9.0.79.jar/META-INF/LICENSE) - - [tomcat-embed-el-9.0.79.jar/META-INF/NOTICE](tomcat-embed-el-9.0.79.jar/META-INF/NOTICE) +> - **Embedded license files**: [tomcat-embed-el-9.0.82.jar/META-INF/LICENSE](tomcat-embed-el-9.0.82.jar/META-INF/LICENSE) + - [tomcat-embed-el-9.0.82.jar/META-INF/NOTICE](tomcat-embed-el-9.0.82.jar/META-INF/NOTICE) -**101** **Group:** `org.apache.tomcat.embed` **Name:** `tomcat-embed-websocket` **Version:** `10.1.10` +**91** **Group:** `org.apache.tomcat.embed` **Name:** `tomcat-embed-websocket` **Version:** `10.1.10` > - **POM Project URL**: [https://tomcat.apache.org/](https://tomcat.apache.org/) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [tomcat-embed-websocket-10.1.10.jar/META-INF/LICENSE](tomcat-embed-websocket-10.1.10.jar/META-INF/LICENSE) - [tomcat-embed-websocket-10.1.10.jar/META-INF/NOTICE](tomcat-embed-websocket-10.1.10.jar/META-INF/NOTICE) -**102** **Group:** `org.apache.tomcat.embed` **Name:** `tomcat-embed-websocket` **Version:** `9.0.79` +**92** **Group:** `org.apache.tomcat.embed` **Name:** `tomcat-embed-websocket` **Version:** `9.0.82` > - **POM Project URL**: [https://tomcat.apache.org/](https://tomcat.apache.org/) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [tomcat-embed-websocket-9.0.79.jar/META-INF/LICENSE](tomcat-embed-websocket-9.0.79.jar/META-INF/LICENSE) - - [tomcat-embed-websocket-9.0.79.jar/META-INF/NOTICE](tomcat-embed-websocket-9.0.79.jar/META-INF/NOTICE) +> - **Embedded license files**: [tomcat-embed-websocket-9.0.82.jar/META-INF/LICENSE](tomcat-embed-websocket-9.0.82.jar/META-INF/LICENSE) + - [tomcat-embed-websocket-9.0.82.jar/META-INF/NOTICE](tomcat-embed-websocket-9.0.82.jar/META-INF/NOTICE) -**103** **Group:** `org.springframework` **Name:** `spring-aop` **Version:** `5.3.29` +**93** **Group:** `org.springframework` **Name:** `spring-aop` **Version:** `5.3.30` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [spring-aop-5.3.29.jar/META-INF/license.txt](spring-aop-5.3.29.jar/META-INF/license.txt) - - [spring-aop-5.3.29.jar/META-INF/notice.txt](spring-aop-5.3.29.jar/META-INF/notice.txt) +> - **Embedded license files**: [spring-aop-5.3.30.jar/META-INF/license.txt](spring-aop-5.3.30.jar/META-INF/license.txt) + - [spring-aop-5.3.30.jar/META-INF/notice.txt](spring-aop-5.3.30.jar/META-INF/notice.txt) -**104** **Group:** `org.springframework` **Name:** `spring-aop` **Version:** `6.0.10` +**94** **Group:** `org.springframework` **Name:** `spring-aop` **Version:** `6.0.10` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-aop-6.0.10.jar/META-INF/license.txt](spring-aop-6.0.10.jar/META-INF/license.txt) - [spring-aop-6.0.10.jar/META-INF/notice.txt](spring-aop-6.0.10.jar/META-INF/notice.txt) -**105** **Group:** `org.springframework` **Name:** `spring-aop` **Version:** `6.0.12` +**95** **Group:** `org.springframework` **Name:** `spring-aop` **Version:** `6.0.12` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-aop-6.0.12.jar/META-INF/license.txt](spring-aop-6.0.12.jar/META-INF/license.txt) - [spring-aop-6.0.12.jar/META-INF/notice.txt](spring-aop-6.0.12.jar/META-INF/notice.txt) -**106** **Group:** `org.springframework` **Name:** `spring-beans` **Version:** `5.3.29` +**96** **Group:** `org.springframework` **Name:** `spring-beans` **Version:** `5.3.30` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [spring-beans-5.3.29.jar/META-INF/license.txt](spring-beans-5.3.29.jar/META-INF/license.txt) - - [spring-beans-5.3.29.jar/META-INF/notice.txt](spring-beans-5.3.29.jar/META-INF/notice.txt) +> - **Embedded license files**: [spring-beans-5.3.30.jar/META-INF/license.txt](spring-beans-5.3.30.jar/META-INF/license.txt) + - [spring-beans-5.3.30.jar/META-INF/notice.txt](spring-beans-5.3.30.jar/META-INF/notice.txt) -**107** **Group:** `org.springframework` **Name:** `spring-beans` **Version:** `6.0.10` +**97** **Group:** `org.springframework` **Name:** `spring-beans` **Version:** `6.0.10` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-beans-6.0.10.jar/META-INF/license.txt](spring-beans-6.0.10.jar/META-INF/license.txt) - [spring-beans-6.0.10.jar/META-INF/notice.txt](spring-beans-6.0.10.jar/META-INF/notice.txt) -**108** **Group:** `org.springframework` **Name:** `spring-beans` **Version:** `6.0.12` +**98** **Group:** `org.springframework` **Name:** `spring-beans` **Version:** `6.0.12` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-beans-6.0.12.jar/META-INF/license.txt](spring-beans-6.0.12.jar/META-INF/license.txt) - [spring-beans-6.0.12.jar/META-INF/notice.txt](spring-beans-6.0.12.jar/META-INF/notice.txt) -**109** **Group:** `org.springframework` **Name:** `spring-context` **Version:** `5.3.29` +**99** **Group:** `org.springframework` **Name:** `spring-context` **Version:** `5.3.30` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [spring-context-5.3.29.jar/META-INF/license.txt](spring-context-5.3.29.jar/META-INF/license.txt) - - [spring-context-5.3.29.jar/META-INF/notice.txt](spring-context-5.3.29.jar/META-INF/notice.txt) +> - **Embedded license files**: [spring-context-5.3.30.jar/META-INF/license.txt](spring-context-5.3.30.jar/META-INF/license.txt) + - [spring-context-5.3.30.jar/META-INF/notice.txt](spring-context-5.3.30.jar/META-INF/notice.txt) -**110** **Group:** `org.springframework` **Name:** `spring-context` **Version:** `6.0.10` +**100** **Group:** `org.springframework` **Name:** `spring-context` **Version:** `6.0.10` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-context-6.0.10.jar/META-INF/license.txt](spring-context-6.0.10.jar/META-INF/license.txt) - [spring-context-6.0.10.jar/META-INF/notice.txt](spring-context-6.0.10.jar/META-INF/notice.txt) -**111** **Group:** `org.springframework` **Name:** `spring-context` **Version:** `6.0.12` +**101** **Group:** `org.springframework` **Name:** `spring-context` **Version:** `6.0.12` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-context-6.0.12.jar/META-INF/license.txt](spring-context-6.0.12.jar/META-INF/license.txt) - [spring-context-6.0.12.jar/META-INF/notice.txt](spring-context-6.0.12.jar/META-INF/notice.txt) -**112** **Group:** `org.springframework` **Name:** `spring-core` **Version:** `5.3.29` +**102** **Group:** `org.springframework` **Name:** `spring-core` **Version:** `5.3.30` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [spring-core-5.3.29.jar/META-INF/license.txt](spring-core-5.3.29.jar/META-INF/license.txt) - - [spring-core-5.3.29.jar/META-INF/notice.txt](spring-core-5.3.29.jar/META-INF/notice.txt) +> - **Embedded license files**: [spring-core-5.3.30.jar/META-INF/license.txt](spring-core-5.3.30.jar/META-INF/license.txt) + - [spring-core-5.3.30.jar/META-INF/notice.txt](spring-core-5.3.30.jar/META-INF/notice.txt) -**113** **Group:** `org.springframework` **Name:** `spring-core` **Version:** `6.0.10` +**103** **Group:** `org.springframework` **Name:** `spring-core` **Version:** `6.0.10` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-core-6.0.10.jar/META-INF/license.txt](spring-core-6.0.10.jar/META-INF/license.txt) - [spring-core-6.0.10.jar/META-INF/notice.txt](spring-core-6.0.10.jar/META-INF/notice.txt) -**114** **Group:** `org.springframework` **Name:** `spring-core` **Version:** `6.0.12` +**104** **Group:** `org.springframework` **Name:** `spring-core` **Version:** `6.0.12` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-core-6.0.12.jar/META-INF/license.txt](spring-core-6.0.12.jar/META-INF/license.txt) - [spring-core-6.0.12.jar/META-INF/notice.txt](spring-core-6.0.12.jar/META-INF/notice.txt) -**115** **Group:** `org.springframework` **Name:** `spring-expression` **Version:** `5.3.29` +**105** **Group:** `org.springframework` **Name:** `spring-expression` **Version:** `5.3.30` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [spring-expression-5.3.29.jar/META-INF/license.txt](spring-expression-5.3.29.jar/META-INF/license.txt) - - [spring-expression-5.3.29.jar/META-INF/notice.txt](spring-expression-5.3.29.jar/META-INF/notice.txt) +> - **Embedded license files**: [spring-expression-5.3.30.jar/META-INF/license.txt](spring-expression-5.3.30.jar/META-INF/license.txt) + - [spring-expression-5.3.30.jar/META-INF/notice.txt](spring-expression-5.3.30.jar/META-INF/notice.txt) -**116** **Group:** `org.springframework` **Name:** `spring-expression` **Version:** `6.0.10` +**106** **Group:** `org.springframework` **Name:** `spring-expression` **Version:** `6.0.10` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-expression-6.0.10.jar/META-INF/license.txt](spring-expression-6.0.10.jar/META-INF/license.txt) - [spring-expression-6.0.10.jar/META-INF/notice.txt](spring-expression-6.0.10.jar/META-INF/notice.txt) -**117** **Group:** `org.springframework` **Name:** `spring-expression` **Version:** `6.0.12` +**107** **Group:** `org.springframework` **Name:** `spring-expression` **Version:** `6.0.12` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-expression-6.0.12.jar/META-INF/license.txt](spring-expression-6.0.12.jar/META-INF/license.txt) - [spring-expression-6.0.12.jar/META-INF/notice.txt](spring-expression-6.0.12.jar/META-INF/notice.txt) -**118** **Group:** `org.springframework` **Name:** `spring-jcl` **Version:** `5.3.29` +**108** **Group:** `org.springframework` **Name:** `spring-jcl` **Version:** `5.3.30` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [spring-jcl-5.3.29.jar/META-INF/license.txt](spring-jcl-5.3.29.jar/META-INF/license.txt) - - [spring-jcl-5.3.29.jar/META-INF/notice.txt](spring-jcl-5.3.29.jar/META-INF/notice.txt) +> - **Embedded license files**: [spring-jcl-5.3.30.jar/META-INF/license.txt](spring-jcl-5.3.30.jar/META-INF/license.txt) + - [spring-jcl-5.3.30.jar/META-INF/notice.txt](spring-jcl-5.3.30.jar/META-INF/notice.txt) -**119** **Group:** `org.springframework` **Name:** `spring-jcl` **Version:** `6.0.10` +**109** **Group:** `org.springframework` **Name:** `spring-jcl` **Version:** `6.0.10` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-jcl-6.0.10.jar/META-INF/license.txt](spring-jcl-6.0.10.jar/META-INF/license.txt) - [spring-jcl-6.0.10.jar/META-INF/notice.txt](spring-jcl-6.0.10.jar/META-INF/notice.txt) -**120** **Group:** `org.springframework` **Name:** `spring-jcl` **Version:** `6.0.12` +**110** **Group:** `org.springframework` **Name:** `spring-jcl` **Version:** `6.0.12` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-jcl-6.0.12.jar/META-INF/license.txt](spring-jcl-6.0.12.jar/META-INF/license.txt) - [spring-jcl-6.0.12.jar/META-INF/notice.txt](spring-jcl-6.0.12.jar/META-INF/notice.txt) -**121** **Group:** `org.springframework` **Name:** `spring-jdbc` **Version:** `6.0.12` +**111** **Group:** `org.springframework` **Name:** `spring-jdbc` **Version:** `6.0.12` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-jdbc-6.0.12.jar/META-INF/license.txt](spring-jdbc-6.0.12.jar/META-INF/license.txt) - [spring-jdbc-6.0.12.jar/META-INF/notice.txt](spring-jdbc-6.0.12.jar/META-INF/notice.txt) -**122** **Group:** `org.springframework` **Name:** `spring-tx` **Version:** `6.0.12` +**112** **Group:** `org.springframework` **Name:** `spring-tx` **Version:** `6.0.12` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-tx-6.0.12.jar/META-INF/license.txt](spring-tx-6.0.12.jar/META-INF/license.txt) - [spring-tx-6.0.12.jar/META-INF/notice.txt](spring-tx-6.0.12.jar/META-INF/notice.txt) -**123** **Group:** `org.springframework` **Name:** `spring-web` **Version:** `5.3.29` +**113** **Group:** `org.springframework` **Name:** `spring-web` **Version:** `5.3.30` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [spring-web-5.3.29.jar/META-INF/license.txt](spring-web-5.3.29.jar/META-INF/license.txt) - - [spring-web-5.3.29.jar/META-INF/notice.txt](spring-web-5.3.29.jar/META-INF/notice.txt) +> - **Embedded license files**: [spring-web-5.3.30.jar/META-INF/license.txt](spring-web-5.3.30.jar/META-INF/license.txt) + - [spring-web-5.3.30.jar/META-INF/notice.txt](spring-web-5.3.30.jar/META-INF/notice.txt) -**124** **Group:** `org.springframework` **Name:** `spring-web` **Version:** `6.0.10` +**114** **Group:** `org.springframework` **Name:** `spring-web` **Version:** `6.0.10` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-web-6.0.10.jar/META-INF/license.txt](spring-web-6.0.10.jar/META-INF/license.txt) - [spring-web-6.0.10.jar/META-INF/notice.txt](spring-web-6.0.10.jar/META-INF/notice.txt) -**125** **Group:** `org.springframework` **Name:** `spring-webmvc` **Version:** `5.3.29` +**115** **Group:** `org.springframework` **Name:** `spring-webmvc` **Version:** `5.3.30` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [spring-webmvc-5.3.29.jar/META-INF/license.txt](spring-webmvc-5.3.29.jar/META-INF/license.txt) - - [spring-webmvc-5.3.29.jar/META-INF/notice.txt](spring-webmvc-5.3.29.jar/META-INF/notice.txt) +> - **Embedded license files**: [spring-webmvc-5.3.30.jar/META-INF/license.txt](spring-webmvc-5.3.30.jar/META-INF/license.txt) + - [spring-webmvc-5.3.30.jar/META-INF/notice.txt](spring-webmvc-5.3.30.jar/META-INF/notice.txt) -**126** **Group:** `org.springframework` **Name:** `spring-webmvc` **Version:** `6.0.10` +**116** **Group:** `org.springframework` **Name:** `spring-webmvc` **Version:** `6.0.10` > - **POM Project URL**: [https://github.com/spring-projects/spring-framework](https://github.com/spring-projects/spring-framework) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-webmvc-6.0.10.jar/META-INF/license.txt](spring-webmvc-6.0.10.jar/META-INF/license.txt) - [spring-webmvc-6.0.10.jar/META-INF/notice.txt](spring-webmvc-6.0.10.jar/META-INF/notice.txt) -**127** **Group:** `org.springframework.boot` **Name:** `spring-boot` **Version:** `2.7.15` +**117** **Group:** `org.springframework.boot` **Name:** `spring-boot` **Version:** `2.7.17` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [spring-boot-2.7.15.jar/META-INF/LICENSE.txt](spring-boot-2.7.15.jar/META-INF/LICENSE.txt) - - [spring-boot-2.7.15.jar/META-INF/NOTICE.txt](spring-boot-2.7.15.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [spring-boot-2.7.17.jar/META-INF/LICENSE.txt](spring-boot-2.7.17.jar/META-INF/LICENSE.txt) + - [spring-boot-2.7.17.jar/META-INF/NOTICE.txt](spring-boot-2.7.17.jar/META-INF/NOTICE.txt) -**128** **Group:** `org.springframework.boot` **Name:** `spring-boot` **Version:** `3.1.1` +**118** **Group:** `org.springframework.boot` **Name:** `spring-boot` **Version:** `3.1.1` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-boot-3.1.1.jar/META-INF/LICENSE.txt](spring-boot-3.1.1.jar/META-INF/LICENSE.txt) - [spring-boot-3.1.1.jar/META-INF/NOTICE.txt](spring-boot-3.1.1.jar/META-INF/NOTICE.txt) -**129** **Group:** `org.springframework.boot` **Name:** `spring-boot` **Version:** `3.1.4` +**119** **Group:** `org.springframework.boot` **Name:** `spring-boot` **Version:** `3.1.4` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-boot-3.1.4.jar/META-INF/LICENSE.txt](spring-boot-3.1.4.jar/META-INF/LICENSE.txt) - [spring-boot-3.1.4.jar/META-INF/NOTICE.txt](spring-boot-3.1.4.jar/META-INF/NOTICE.txt) -**130** **Group:** `org.springframework.boot` **Name:** `spring-boot-autoconfigure` **Version:** `2.7.15` +**120** **Group:** `org.springframework.boot` **Name:** `spring-boot-autoconfigure` **Version:** `2.7.17` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [spring-boot-autoconfigure-2.7.15.jar/META-INF/LICENSE.txt](spring-boot-autoconfigure-2.7.15.jar/META-INF/LICENSE.txt) - - [spring-boot-autoconfigure-2.7.15.jar/META-INF/NOTICE.txt](spring-boot-autoconfigure-2.7.15.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [spring-boot-autoconfigure-2.7.17.jar/META-INF/LICENSE.txt](spring-boot-autoconfigure-2.7.17.jar/META-INF/LICENSE.txt) + - [spring-boot-autoconfigure-2.7.17.jar/META-INF/NOTICE.txt](spring-boot-autoconfigure-2.7.17.jar/META-INF/NOTICE.txt) -**131** **Group:** `org.springframework.boot` **Name:** `spring-boot-autoconfigure` **Version:** `3.1.1` +**121** **Group:** `org.springframework.boot` **Name:** `spring-boot-autoconfigure` **Version:** `3.1.1` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-boot-autoconfigure-3.1.1.jar/META-INF/LICENSE.txt](spring-boot-autoconfigure-3.1.1.jar/META-INF/LICENSE.txt) - [spring-boot-autoconfigure-3.1.1.jar/META-INF/NOTICE.txt](spring-boot-autoconfigure-3.1.1.jar/META-INF/NOTICE.txt) -**132** **Group:** `org.springframework.boot` **Name:** `spring-boot-autoconfigure` **Version:** `3.1.4` +**122** **Group:** `org.springframework.boot` **Name:** `spring-boot-autoconfigure` **Version:** `3.1.4` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-boot-autoconfigure-3.1.4.jar/META-INF/LICENSE.txt](spring-boot-autoconfigure-3.1.4.jar/META-INF/LICENSE.txt) - [spring-boot-autoconfigure-3.1.4.jar/META-INF/NOTICE.txt](spring-boot-autoconfigure-3.1.4.jar/META-INF/NOTICE.txt) -**133** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter` **Version:** `2.7.15` +**123** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter` **Version:** `2.7.17` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [spring-boot-starter-2.7.15.jar/META-INF/LICENSE.txt](spring-boot-starter-2.7.15.jar/META-INF/LICENSE.txt) - - [spring-boot-starter-2.7.15.jar/META-INF/NOTICE.txt](spring-boot-starter-2.7.15.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [spring-boot-starter-2.7.17.jar/META-INF/LICENSE.txt](spring-boot-starter-2.7.17.jar/META-INF/LICENSE.txt) + - [spring-boot-starter-2.7.17.jar/META-INF/NOTICE.txt](spring-boot-starter-2.7.17.jar/META-INF/NOTICE.txt) -**134** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter` **Version:** `3.1.1` +**124** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter` **Version:** `3.1.1` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-boot-starter-3.1.1.jar/META-INF/LICENSE.txt](spring-boot-starter-3.1.1.jar/META-INF/LICENSE.txt) - [spring-boot-starter-3.1.1.jar/META-INF/NOTICE.txt](spring-boot-starter-3.1.1.jar/META-INF/NOTICE.txt) -**135** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter` **Version:** `3.1.4` +**125** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter` **Version:** `3.1.4` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-boot-starter-3.1.4.jar/META-INF/LICENSE.txt](spring-boot-starter-3.1.4.jar/META-INF/LICENSE.txt) - [spring-boot-starter-3.1.4.jar/META-INF/NOTICE.txt](spring-boot-starter-3.1.4.jar/META-INF/NOTICE.txt) -**136** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-jdbc` **Version:** `3.1.4` +**126** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-jdbc` **Version:** `3.1.4` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-boot-starter-jdbc-3.1.4.jar/META-INF/LICENSE.txt](spring-boot-starter-jdbc-3.1.4.jar/META-INF/LICENSE.txt) - [spring-boot-starter-jdbc-3.1.4.jar/META-INF/NOTICE.txt](spring-boot-starter-jdbc-3.1.4.jar/META-INF/NOTICE.txt) -**137** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-json` **Version:** `2.7.15` +**127** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-json` **Version:** `2.7.17` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [spring-boot-starter-json-2.7.15.jar/META-INF/LICENSE.txt](spring-boot-starter-json-2.7.15.jar/META-INF/LICENSE.txt) - - [spring-boot-starter-json-2.7.15.jar/META-INF/NOTICE.txt](spring-boot-starter-json-2.7.15.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [spring-boot-starter-json-2.7.17.jar/META-INF/LICENSE.txt](spring-boot-starter-json-2.7.17.jar/META-INF/LICENSE.txt) + - [spring-boot-starter-json-2.7.17.jar/META-INF/NOTICE.txt](spring-boot-starter-json-2.7.17.jar/META-INF/NOTICE.txt) -**138** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-json` **Version:** `3.1.1` +**128** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-json` **Version:** `3.1.1` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-boot-starter-json-3.1.1.jar/META-INF/LICENSE.txt](spring-boot-starter-json-3.1.1.jar/META-INF/LICENSE.txt) - [spring-boot-starter-json-3.1.1.jar/META-INF/NOTICE.txt](spring-boot-starter-json-3.1.1.jar/META-INF/NOTICE.txt) -**139** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-logging` **Version:** `2.7.15` +**129** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-logging` **Version:** `2.7.17` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [spring-boot-starter-logging-2.7.15.jar/META-INF/LICENSE.txt](spring-boot-starter-logging-2.7.15.jar/META-INF/LICENSE.txt) - - [spring-boot-starter-logging-2.7.15.jar/META-INF/NOTICE.txt](spring-boot-starter-logging-2.7.15.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [spring-boot-starter-logging-2.7.17.jar/META-INF/LICENSE.txt](spring-boot-starter-logging-2.7.17.jar/META-INF/LICENSE.txt) + - [spring-boot-starter-logging-2.7.17.jar/META-INF/NOTICE.txt](spring-boot-starter-logging-2.7.17.jar/META-INF/NOTICE.txt) -**140** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-logging` **Version:** `3.1.1` +**130** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-logging` **Version:** `3.1.1` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-boot-starter-logging-3.1.1.jar/META-INF/LICENSE.txt](spring-boot-starter-logging-3.1.1.jar/META-INF/LICENSE.txt) - [spring-boot-starter-logging-3.1.1.jar/META-INF/NOTICE.txt](spring-boot-starter-logging-3.1.1.jar/META-INF/NOTICE.txt) -**141** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-logging` **Version:** `3.1.4` +**131** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-logging` **Version:** `3.1.4` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-boot-starter-logging-3.1.4.jar/META-INF/LICENSE.txt](spring-boot-starter-logging-3.1.4.jar/META-INF/LICENSE.txt) - [spring-boot-starter-logging-3.1.4.jar/META-INF/NOTICE.txt](spring-boot-starter-logging-3.1.4.jar/META-INF/NOTICE.txt) -**142** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-tomcat` **Version:** `2.7.15` +**132** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-tomcat` **Version:** `2.7.17` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [spring-boot-starter-tomcat-2.7.15.jar/META-INF/LICENSE.txt](spring-boot-starter-tomcat-2.7.15.jar/META-INF/LICENSE.txt) - - [spring-boot-starter-tomcat-2.7.15.jar/META-INF/NOTICE.txt](spring-boot-starter-tomcat-2.7.15.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [spring-boot-starter-tomcat-2.7.17.jar/META-INF/LICENSE.txt](spring-boot-starter-tomcat-2.7.17.jar/META-INF/LICENSE.txt) + - [spring-boot-starter-tomcat-2.7.17.jar/META-INF/NOTICE.txt](spring-boot-starter-tomcat-2.7.17.jar/META-INF/NOTICE.txt) -**143** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-tomcat` **Version:** `3.1.1` +**133** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-tomcat` **Version:** `3.1.1` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-boot-starter-tomcat-3.1.1.jar/META-INF/LICENSE.txt](spring-boot-starter-tomcat-3.1.1.jar/META-INF/LICENSE.txt) - [spring-boot-starter-tomcat-3.1.1.jar/META-INF/NOTICE.txt](spring-boot-starter-tomcat-3.1.1.jar/META-INF/NOTICE.txt) -**144** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-web` **Version:** `2.7.15` +**134** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-web` **Version:** `2.7.17` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [spring-boot-starter-web-2.7.15.jar/META-INF/LICENSE.txt](spring-boot-starter-web-2.7.15.jar/META-INF/LICENSE.txt) - - [spring-boot-starter-web-2.7.15.jar/META-INF/NOTICE.txt](spring-boot-starter-web-2.7.15.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [spring-boot-starter-web-2.7.17.jar/META-INF/LICENSE.txt](spring-boot-starter-web-2.7.17.jar/META-INF/LICENSE.txt) + - [spring-boot-starter-web-2.7.17.jar/META-INF/NOTICE.txt](spring-boot-starter-web-2.7.17.jar/META-INF/NOTICE.txt) -**145** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-web` **Version:** `3.1.1` +**135** **Group:** `org.springframework.boot` **Name:** `spring-boot-starter-web` **Version:** `3.1.1` > - **POM Project URL**: [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) > - **Embedded license files**: [spring-boot-starter-web-3.1.1.jar/META-INF/LICENSE.txt](spring-boot-starter-web-3.1.1.jar/META-INF/LICENSE.txt) - [spring-boot-starter-web-3.1.1.jar/META-INF/NOTICE.txt](spring-boot-starter-web-3.1.1.jar/META-INF/NOTICE.txt) -**146** **Group:** `org.yaml` **Name:** `snakeyaml` **Version:** `1.30` +**136** **Group:** `org.yaml` **Name:** `snakeyaml` **Version:** `1.30` > - **POM Project URL**: [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**147** **Group:** `org.yaml` **Name:** `snakeyaml` **Version:** `1.33` +**137** **Group:** `org.yaml` **Name:** `snakeyaml` **Version:** `1.33` > - **POM Project URL**: [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**148** **Group:** `org.yaml` **Name:** `snakeyaml` **Version:** `2.1` +**138** **Group:** `org.yaml` **Name:** `snakeyaml` **Version:** `2.2` > - **POM Project URL**: [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**149** **Group:** `software.amazon.awssdk` **Name:** `annotations` **Version:** `2.20.78` +**139** **Group:** `software.amazon.awssdk` **Name:** `annotations` **Version:** `2.20.78` > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [annotations-2.20.78.jar/META-INF/LICENSE.txt](annotations-2.20.78.jar/META-INF/LICENSE.txt) - [annotations-2.20.78.jar/META-INF/NOTICE.txt](annotations-2.20.78.jar/META-INF/NOTICE.txt) -**150** **Group:** `software.amazon.awssdk` **Name:** `annotations` **Version:** `2.21.7` +**140** **Group:** `software.amazon.awssdk` **Name:** `annotations` **Version:** `2.21.33` > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [annotations-2.21.7.jar/META-INF/LICENSE.txt](annotations-2.21.7.jar/META-INF/LICENSE.txt) - - [annotations-2.21.7.jar/META-INF/NOTICE.txt](annotations-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [annotations-2.21.33.jar/META-INF/LICENSE.txt](annotations-2.21.33.jar/META-INF/LICENSE.txt) + - [annotations-2.21.33.jar/META-INF/NOTICE.txt](annotations-2.21.33.jar/META-INF/NOTICE.txt) -**151** **Group:** `software.amazon.awssdk` **Name:** `apache-client` **Version:** `2.20.78` +**141** **Group:** `software.amazon.awssdk` **Name:** `apache-client` **Version:** `2.20.78` > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [apache-client-2.20.78.jar/META-INF/LICENSE.txt](apache-client-2.20.78.jar/META-INF/LICENSE.txt) - [apache-client-2.20.78.jar/META-INF/NOTICE.txt](apache-client-2.20.78.jar/META-INF/NOTICE.txt) -**152** **Group:** `software.amazon.awssdk` **Name:** `apache-client` **Version:** `2.21.7` +**142** **Group:** `software.amazon.awssdk` **Name:** `apache-client` **Version:** `2.21.33` > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [apache-client-2.21.7.jar/META-INF/LICENSE.txt](apache-client-2.21.7.jar/META-INF/LICENSE.txt) - - [apache-client-2.21.7.jar/META-INF/NOTICE.txt](apache-client-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [apache-client-2.21.33.jar/META-INF/LICENSE.txt](apache-client-2.21.33.jar/META-INF/LICENSE.txt) + - [apache-client-2.21.33.jar/META-INF/NOTICE.txt](apache-client-2.21.33.jar/META-INF/NOTICE.txt) -**153** **Group:** `software.amazon.awssdk` **Name:** `arns` **Version:** `2.20.78` +**143** **Group:** `software.amazon.awssdk` **Name:** `arns` **Version:** `2.20.78` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [arns-2.20.78.jar/META-INF/LICENSE.txt](arns-2.20.78.jar/META-INF/LICENSE.txt) - [arns-2.20.78.jar/META-INF/NOTICE.txt](arns-2.20.78.jar/META-INF/NOTICE.txt) -**154** **Group:** `software.amazon.awssdk` **Name:** `arns` **Version:** `2.21.7` +**144** **Group:** `software.amazon.awssdk` **Name:** `arns` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [arns-2.21.7.jar/META-INF/LICENSE.txt](arns-2.21.7.jar/META-INF/LICENSE.txt) - - [arns-2.21.7.jar/META-INF/NOTICE.txt](arns-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [arns-2.21.33.jar/META-INF/LICENSE.txt](arns-2.21.33.jar/META-INF/LICENSE.txt) + - [arns-2.21.33.jar/META-INF/NOTICE.txt](arns-2.21.33.jar/META-INF/NOTICE.txt) -**155** **Group:** `software.amazon.awssdk` **Name:** `auth` **Version:** `2.20.78` +**145** **Group:** `software.amazon.awssdk` **Name:** `auth` **Version:** `2.20.78` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [auth-2.20.78.jar/META-INF/LICENSE.txt](auth-2.20.78.jar/META-INF/LICENSE.txt) - [auth-2.20.78.jar/META-INF/NOTICE.txt](auth-2.20.78.jar/META-INF/NOTICE.txt) -**156** **Group:** `software.amazon.awssdk` **Name:** `auth` **Version:** `2.21.7` +**146** **Group:** `software.amazon.awssdk` **Name:** `auth` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [auth-2.21.7.jar/META-INF/LICENSE.txt](auth-2.21.7.jar/META-INF/LICENSE.txt) - - [auth-2.21.7.jar/META-INF/NOTICE.txt](auth-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [auth-2.21.33.jar/META-INF/LICENSE.txt](auth-2.21.33.jar/META-INF/LICENSE.txt) + - [auth-2.21.33.jar/META-INF/NOTICE.txt](auth-2.21.33.jar/META-INF/NOTICE.txt) -**157** **Group:** `software.amazon.awssdk` **Name:** `aws-cbor-protocol` **Version:** `2.21.7` +**147** **Group:** `software.amazon.awssdk` **Name:** `aws-cbor-protocol` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [aws-cbor-protocol-2.21.7.jar/META-INF/LICENSE.txt](aws-cbor-protocol-2.21.7.jar/META-INF/LICENSE.txt) - - [aws-cbor-protocol-2.21.7.jar/META-INF/NOTICE.txt](aws-cbor-protocol-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [aws-cbor-protocol-2.21.33.jar/META-INF/LICENSE.txt](aws-cbor-protocol-2.21.33.jar/META-INF/LICENSE.txt) + - [aws-cbor-protocol-2.21.33.jar/META-INF/NOTICE.txt](aws-cbor-protocol-2.21.33.jar/META-INF/NOTICE.txt) -**158** **Group:** `software.amazon.awssdk` **Name:** `aws-core` **Version:** `2.20.78` +**148** **Group:** `software.amazon.awssdk` **Name:** `aws-core` **Version:** `2.20.78` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [aws-core-2.20.78.jar/META-INF/LICENSE.txt](aws-core-2.20.78.jar/META-INF/LICENSE.txt) - [aws-core-2.20.78.jar/META-INF/NOTICE.txt](aws-core-2.20.78.jar/META-INF/NOTICE.txt) -**159** **Group:** `software.amazon.awssdk` **Name:** `aws-core` **Version:** `2.21.7` +**149** **Group:** `software.amazon.awssdk` **Name:** `aws-core` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [aws-core-2.21.7.jar/META-INF/LICENSE.txt](aws-core-2.21.7.jar/META-INF/LICENSE.txt) - - [aws-core-2.21.7.jar/META-INF/NOTICE.txt](aws-core-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [aws-core-2.21.33.jar/META-INF/LICENSE.txt](aws-core-2.21.33.jar/META-INF/LICENSE.txt) + - [aws-core-2.21.33.jar/META-INF/NOTICE.txt](aws-core-2.21.33.jar/META-INF/NOTICE.txt) -**160** **Group:** `software.amazon.awssdk` **Name:** `aws-json-protocol` **Version:** `2.21.7` +**150** **Group:** `software.amazon.awssdk` **Name:** `aws-json-protocol` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [aws-json-protocol-2.21.7.jar/META-INF/LICENSE.txt](aws-json-protocol-2.21.7.jar/META-INF/LICENSE.txt) - - [aws-json-protocol-2.21.7.jar/META-INF/NOTICE.txt](aws-json-protocol-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [aws-json-protocol-2.21.33.jar/META-INF/LICENSE.txt](aws-json-protocol-2.21.33.jar/META-INF/LICENSE.txt) + - [aws-json-protocol-2.21.33.jar/META-INF/NOTICE.txt](aws-json-protocol-2.21.33.jar/META-INF/NOTICE.txt) -**161** **Group:** `software.amazon.awssdk` **Name:** `aws-query-protocol` **Version:** `2.20.78` +**151** **Group:** `software.amazon.awssdk` **Name:** `aws-query-protocol` **Version:** `2.20.78` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [aws-query-protocol-2.20.78.jar/META-INF/LICENSE.txt](aws-query-protocol-2.20.78.jar/META-INF/LICENSE.txt) - [aws-query-protocol-2.20.78.jar/META-INF/NOTICE.txt](aws-query-protocol-2.20.78.jar/META-INF/NOTICE.txt) -**162** **Group:** `software.amazon.awssdk` **Name:** `aws-query-protocol` **Version:** `2.21.7` +**152** **Group:** `software.amazon.awssdk` **Name:** `aws-query-protocol` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [aws-query-protocol-2.21.7.jar/META-INF/LICENSE.txt](aws-query-protocol-2.21.7.jar/META-INF/LICENSE.txt) - - [aws-query-protocol-2.21.7.jar/META-INF/NOTICE.txt](aws-query-protocol-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [aws-query-protocol-2.21.33.jar/META-INF/LICENSE.txt](aws-query-protocol-2.21.33.jar/META-INF/LICENSE.txt) + - [aws-query-protocol-2.21.33.jar/META-INF/NOTICE.txt](aws-query-protocol-2.21.33.jar/META-INF/NOTICE.txt) -**163** **Group:** `software.amazon.awssdk` **Name:** `aws-xml-protocol` **Version:** `2.20.78` +**153** **Group:** `software.amazon.awssdk` **Name:** `aws-xml-protocol` **Version:** `2.20.78` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [aws-xml-protocol-2.20.78.jar/META-INF/LICENSE.txt](aws-xml-protocol-2.20.78.jar/META-INF/LICENSE.txt) - [aws-xml-protocol-2.20.78.jar/META-INF/NOTICE.txt](aws-xml-protocol-2.20.78.jar/META-INF/NOTICE.txt) -**164** **Group:** `software.amazon.awssdk` **Name:** `aws-xml-protocol` **Version:** `2.21.7` +**154** **Group:** `software.amazon.awssdk` **Name:** `aws-xml-protocol` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [aws-xml-protocol-2.21.7.jar/META-INF/LICENSE.txt](aws-xml-protocol-2.21.7.jar/META-INF/LICENSE.txt) - - [aws-xml-protocol-2.21.7.jar/META-INF/NOTICE.txt](aws-xml-protocol-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [aws-xml-protocol-2.21.33.jar/META-INF/LICENSE.txt](aws-xml-protocol-2.21.33.jar/META-INF/LICENSE.txt) + - [aws-xml-protocol-2.21.33.jar/META-INF/NOTICE.txt](aws-xml-protocol-2.21.33.jar/META-INF/NOTICE.txt) -**165** **Group:** `software.amazon.awssdk` **Name:** `checksums` **Version:** `2.21.7` +**155** **Group:** `software.amazon.awssdk` **Name:** `checksums` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [checksums-2.21.7.jar/META-INF/LICENSE.txt](checksums-2.21.7.jar/META-INF/LICENSE.txt) - - [checksums-2.21.7.jar/META-INF/NOTICE.txt](checksums-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [checksums-2.21.33.jar/META-INF/LICENSE.txt](checksums-2.21.33.jar/META-INF/LICENSE.txt) + - [checksums-2.21.33.jar/META-INF/NOTICE.txt](checksums-2.21.33.jar/META-INF/NOTICE.txt) -**166** **Group:** `software.amazon.awssdk` **Name:** `checksums-spi` **Version:** `2.21.7` +**156** **Group:** `software.amazon.awssdk` **Name:** `checksums-spi` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [checksums-spi-2.21.7.jar/META-INF/LICENSE.txt](checksums-spi-2.21.7.jar/META-INF/LICENSE.txt) - - [checksums-spi-2.21.7.jar/META-INF/NOTICE.txt](checksums-spi-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [checksums-spi-2.21.33.jar/META-INF/LICENSE.txt](checksums-spi-2.21.33.jar/META-INF/LICENSE.txt) + - [checksums-spi-2.21.33.jar/META-INF/NOTICE.txt](checksums-spi-2.21.33.jar/META-INF/NOTICE.txt) -**167** **Group:** `software.amazon.awssdk` **Name:** `crt-core` **Version:** `2.20.78` +**157** **Group:** `software.amazon.awssdk` **Name:** `crt-core` **Version:** `2.20.78` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [crt-core-2.20.78.jar/META-INF/LICENSE.txt](crt-core-2.20.78.jar/META-INF/LICENSE.txt) - [crt-core-2.20.78.jar/META-INF/NOTICE.txt](crt-core-2.20.78.jar/META-INF/NOTICE.txt) -**168** **Group:** `software.amazon.awssdk` **Name:** `crt-core` **Version:** `2.21.7` +**158** **Group:** `software.amazon.awssdk` **Name:** `crt-core` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [crt-core-2.21.7.jar/META-INF/LICENSE.txt](crt-core-2.21.7.jar/META-INF/LICENSE.txt) - - [crt-core-2.21.7.jar/META-INF/NOTICE.txt](crt-core-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [crt-core-2.21.33.jar/META-INF/LICENSE.txt](crt-core-2.21.33.jar/META-INF/LICENSE.txt) + - [crt-core-2.21.33.jar/META-INF/NOTICE.txt](crt-core-2.21.33.jar/META-INF/NOTICE.txt) -**169** **Group:** `software.amazon.awssdk` **Name:** `dynamodb` **Version:** `2.21.7` +**159** **Group:** `software.amazon.awssdk` **Name:** `dynamodb` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [dynamodb-2.21.7.jar/META-INF/LICENSE.txt](dynamodb-2.21.7.jar/META-INF/LICENSE.txt) - - [dynamodb-2.21.7.jar/META-INF/NOTICE.txt](dynamodb-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [dynamodb-2.21.33.jar/META-INF/LICENSE.txt](dynamodb-2.21.33.jar/META-INF/LICENSE.txt) + - [dynamodb-2.21.33.jar/META-INF/NOTICE.txt](dynamodb-2.21.33.jar/META-INF/NOTICE.txt) -**170** **Group:** `software.amazon.awssdk` **Name:** `endpoints-spi` **Version:** `2.20.78` +**160** **Group:** `software.amazon.awssdk` **Name:** `endpoints-spi` **Version:** `2.20.78` > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [endpoints-spi-2.20.78.jar/META-INF/LICENSE.txt](endpoints-spi-2.20.78.jar/META-INF/LICENSE.txt) - [endpoints-spi-2.20.78.jar/META-INF/NOTICE.txt](endpoints-spi-2.20.78.jar/META-INF/NOTICE.txt) -**171** **Group:** `software.amazon.awssdk` **Name:** `endpoints-spi` **Version:** `2.21.7` +**161** **Group:** `software.amazon.awssdk` **Name:** `endpoints-spi` **Version:** `2.21.33` > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [endpoints-spi-2.21.7.jar/META-INF/LICENSE.txt](endpoints-spi-2.21.7.jar/META-INF/LICENSE.txt) - - [endpoints-spi-2.21.7.jar/META-INF/NOTICE.txt](endpoints-spi-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [endpoints-spi-2.21.33.jar/META-INF/LICENSE.txt](endpoints-spi-2.21.33.jar/META-INF/LICENSE.txt) + - [endpoints-spi-2.21.33.jar/META-INF/NOTICE.txt](endpoints-spi-2.21.33.jar/META-INF/NOTICE.txt) -**172** **Group:** `software.amazon.awssdk` **Name:** `http-auth` **Version:** `2.21.7` +**162** **Group:** `software.amazon.awssdk` **Name:** `http-auth` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [http-auth-2.21.7.jar/META-INF/LICENSE.txt](http-auth-2.21.7.jar/META-INF/LICENSE.txt) - - [http-auth-2.21.7.jar/META-INF/NOTICE.txt](http-auth-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [http-auth-2.21.33.jar/META-INF/LICENSE.txt](http-auth-2.21.33.jar/META-INF/LICENSE.txt) + - [http-auth-2.21.33.jar/META-INF/NOTICE.txt](http-auth-2.21.33.jar/META-INF/NOTICE.txt) -**173** **Group:** `software.amazon.awssdk` **Name:** `http-auth-aws` **Version:** `2.21.7` +**163** **Group:** `software.amazon.awssdk` **Name:** `http-auth-aws` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [http-auth-aws-2.21.7.jar/META-INF/LICENSE.txt](http-auth-aws-2.21.7.jar/META-INF/LICENSE.txt) - - [http-auth-aws-2.21.7.jar/META-INF/NOTICE.txt](http-auth-aws-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [http-auth-aws-2.21.33.jar/META-INF/LICENSE.txt](http-auth-aws-2.21.33.jar/META-INF/LICENSE.txt) + - [http-auth-aws-2.21.33.jar/META-INF/NOTICE.txt](http-auth-aws-2.21.33.jar/META-INF/NOTICE.txt) -**174** **Group:** `software.amazon.awssdk` **Name:** `http-auth-spi` **Version:** `2.21.7` +**164** **Group:** `software.amazon.awssdk` **Name:** `http-auth-spi` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [http-auth-spi-2.21.7.jar/META-INF/LICENSE.txt](http-auth-spi-2.21.7.jar/META-INF/LICENSE.txt) - - [http-auth-spi-2.21.7.jar/META-INF/NOTICE.txt](http-auth-spi-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [http-auth-spi-2.21.33.jar/META-INF/LICENSE.txt](http-auth-spi-2.21.33.jar/META-INF/LICENSE.txt) + - [http-auth-spi-2.21.33.jar/META-INF/NOTICE.txt](http-auth-spi-2.21.33.jar/META-INF/NOTICE.txt) -**175** **Group:** `software.amazon.awssdk` **Name:** `http-client-spi` **Version:** `2.20.78` +**165** **Group:** `software.amazon.awssdk` **Name:** `http-client-spi` **Version:** `2.20.78` > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [http-client-spi-2.20.78.jar/META-INF/LICENSE.txt](http-client-spi-2.20.78.jar/META-INF/LICENSE.txt) - [http-client-spi-2.20.78.jar/META-INF/NOTICE.txt](http-client-spi-2.20.78.jar/META-INF/NOTICE.txt) -**176** **Group:** `software.amazon.awssdk` **Name:** `http-client-spi` **Version:** `2.21.7` +**166** **Group:** `software.amazon.awssdk` **Name:** `http-client-spi` **Version:** `2.21.33` > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [http-client-spi-2.21.7.jar/META-INF/LICENSE.txt](http-client-spi-2.21.7.jar/META-INF/LICENSE.txt) - - [http-client-spi-2.21.7.jar/META-INF/NOTICE.txt](http-client-spi-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [http-client-spi-2.21.33.jar/META-INF/LICENSE.txt](http-client-spi-2.21.33.jar/META-INF/LICENSE.txt) + - [http-client-spi-2.21.33.jar/META-INF/NOTICE.txt](http-client-spi-2.21.33.jar/META-INF/NOTICE.txt) -**177** **Group:** `software.amazon.awssdk` **Name:** `identity-spi` **Version:** `2.21.7` +**167** **Group:** `software.amazon.awssdk` **Name:** `identity-spi` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [identity-spi-2.21.7.jar/META-INF/LICENSE.txt](identity-spi-2.21.7.jar/META-INF/LICENSE.txt) - - [identity-spi-2.21.7.jar/META-INF/NOTICE.txt](identity-spi-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [identity-spi-2.21.33.jar/META-INF/LICENSE.txt](identity-spi-2.21.33.jar/META-INF/LICENSE.txt) + - [identity-spi-2.21.33.jar/META-INF/NOTICE.txt](identity-spi-2.21.33.jar/META-INF/NOTICE.txt) -**178** **Group:** `software.amazon.awssdk` **Name:** `json-utils` **Version:** `2.20.78` +**168** **Group:** `software.amazon.awssdk` **Name:** `json-utils` **Version:** `2.20.78` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [json-utils-2.20.78.jar/META-INF/LICENSE.txt](json-utils-2.20.78.jar/META-INF/LICENSE.txt) - [json-utils-2.20.78.jar/META-INF/NOTICE.txt](json-utils-2.20.78.jar/META-INF/NOTICE.txt) -**179** **Group:** `software.amazon.awssdk` **Name:** `json-utils` **Version:** `2.21.7` +**169** **Group:** `software.amazon.awssdk` **Name:** `json-utils` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [json-utils-2.21.7.jar/META-INF/LICENSE.txt](json-utils-2.21.7.jar/META-INF/LICENSE.txt) - - [json-utils-2.21.7.jar/META-INF/NOTICE.txt](json-utils-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [json-utils-2.21.33.jar/META-INF/LICENSE.txt](json-utils-2.21.33.jar/META-INF/LICENSE.txt) + - [json-utils-2.21.33.jar/META-INF/NOTICE.txt](json-utils-2.21.33.jar/META-INF/NOTICE.txt) -**180** **Group:** `software.amazon.awssdk` **Name:** `kinesis` **Version:** `2.21.7` +**170** **Group:** `software.amazon.awssdk` **Name:** `kinesis` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [kinesis-2.21.7.jar/META-INF/LICENSE.txt](kinesis-2.21.7.jar/META-INF/LICENSE.txt) - - [kinesis-2.21.7.jar/META-INF/NOTICE.txt](kinesis-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [kinesis-2.21.33.jar/META-INF/LICENSE.txt](kinesis-2.21.33.jar/META-INF/LICENSE.txt) + - [kinesis-2.21.33.jar/META-INF/NOTICE.txt](kinesis-2.21.33.jar/META-INF/NOTICE.txt) -**181** **Group:** `software.amazon.awssdk` **Name:** `metrics-spi` **Version:** `2.20.78` +**171** **Group:** `software.amazon.awssdk` **Name:** `metrics-spi` **Version:** `2.20.78` > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [metrics-spi-2.20.78.jar/META-INF/LICENSE.txt](metrics-spi-2.20.78.jar/META-INF/LICENSE.txt) - [metrics-spi-2.20.78.jar/META-INF/NOTICE.txt](metrics-spi-2.20.78.jar/META-INF/NOTICE.txt) -**182** **Group:** `software.amazon.awssdk` **Name:** `metrics-spi` **Version:** `2.21.7` +**172** **Group:** `software.amazon.awssdk` **Name:** `metrics-spi` **Version:** `2.21.33` > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [metrics-spi-2.21.7.jar/META-INF/LICENSE.txt](metrics-spi-2.21.7.jar/META-INF/LICENSE.txt) - - [metrics-spi-2.21.7.jar/META-INF/NOTICE.txt](metrics-spi-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [metrics-spi-2.21.33.jar/META-INF/LICENSE.txt](metrics-spi-2.21.33.jar/META-INF/LICENSE.txt) + - [metrics-spi-2.21.33.jar/META-INF/NOTICE.txt](metrics-spi-2.21.33.jar/META-INF/NOTICE.txt) -**183** **Group:** `software.amazon.awssdk` **Name:** `netty-nio-client` **Version:** `2.20.78` +**173** **Group:** `software.amazon.awssdk` **Name:** `netty-nio-client` **Version:** `2.20.78` > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [netty-nio-client-2.20.78.jar/META-INF/LICENSE.txt](netty-nio-client-2.20.78.jar/META-INF/LICENSE.txt) - [netty-nio-client-2.20.78.jar/META-INF/NOTICE.txt](netty-nio-client-2.20.78.jar/META-INF/NOTICE.txt) -**184** **Group:** `software.amazon.awssdk` **Name:** `netty-nio-client` **Version:** `2.21.7` +**174** **Group:** `software.amazon.awssdk` **Name:** `netty-nio-client` **Version:** `2.21.33` > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [netty-nio-client-2.21.7.jar/META-INF/LICENSE.txt](netty-nio-client-2.21.7.jar/META-INF/LICENSE.txt) - - [netty-nio-client-2.21.7.jar/META-INF/NOTICE.txt](netty-nio-client-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [netty-nio-client-2.21.33.jar/META-INF/LICENSE.txt](netty-nio-client-2.21.33.jar/META-INF/LICENSE.txt) + - [netty-nio-client-2.21.33.jar/META-INF/NOTICE.txt](netty-nio-client-2.21.33.jar/META-INF/NOTICE.txt) -**185** **Group:** `software.amazon.awssdk` **Name:** `profiles` **Version:** `2.20.78` +**175** **Group:** `software.amazon.awssdk` **Name:** `profiles` **Version:** `2.20.78` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [profiles-2.20.78.jar/META-INF/LICENSE.txt](profiles-2.20.78.jar/META-INF/LICENSE.txt) - [profiles-2.20.78.jar/META-INF/NOTICE.txt](profiles-2.20.78.jar/META-INF/NOTICE.txt) -**186** **Group:** `software.amazon.awssdk` **Name:** `profiles` **Version:** `2.21.7` +**176** **Group:** `software.amazon.awssdk` **Name:** `profiles` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [profiles-2.21.7.jar/META-INF/LICENSE.txt](profiles-2.21.7.jar/META-INF/LICENSE.txt) - - [profiles-2.21.7.jar/META-INF/NOTICE.txt](profiles-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [profiles-2.21.33.jar/META-INF/LICENSE.txt](profiles-2.21.33.jar/META-INF/LICENSE.txt) + - [profiles-2.21.33.jar/META-INF/NOTICE.txt](profiles-2.21.33.jar/META-INF/NOTICE.txt) -**187** **Group:** `software.amazon.awssdk` **Name:** `protocol-core` **Version:** `2.20.78` +**177** **Group:** `software.amazon.awssdk` **Name:** `protocol-core` **Version:** `2.20.78` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [protocol-core-2.20.78.jar/META-INF/LICENSE.txt](protocol-core-2.20.78.jar/META-INF/LICENSE.txt) - [protocol-core-2.20.78.jar/META-INF/NOTICE.txt](protocol-core-2.20.78.jar/META-INF/NOTICE.txt) -**188** **Group:** `software.amazon.awssdk` **Name:** `protocol-core` **Version:** `2.21.7` +**178** **Group:** `software.amazon.awssdk` **Name:** `protocol-core` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [protocol-core-2.21.7.jar/META-INF/LICENSE.txt](protocol-core-2.21.7.jar/META-INF/LICENSE.txt) - - [protocol-core-2.21.7.jar/META-INF/NOTICE.txt](protocol-core-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [protocol-core-2.21.33.jar/META-INF/LICENSE.txt](protocol-core-2.21.33.jar/META-INF/LICENSE.txt) + - [protocol-core-2.21.33.jar/META-INF/NOTICE.txt](protocol-core-2.21.33.jar/META-INF/NOTICE.txt) -**189** **Group:** `software.amazon.awssdk` **Name:** `regions` **Version:** `2.20.78` +**179** **Group:** `software.amazon.awssdk` **Name:** `regions` **Version:** `2.20.78` > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [regions-2.20.78.jar/META-INF/LICENSE.txt](regions-2.20.78.jar/META-INF/LICENSE.txt) - [regions-2.20.78.jar/META-INF/NOTICE.txt](regions-2.20.78.jar/META-INF/NOTICE.txt) -**190** **Group:** `software.amazon.awssdk` **Name:** `regions` **Version:** `2.21.7` +**180** **Group:** `software.amazon.awssdk` **Name:** `regions` **Version:** `2.21.33` > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [regions-2.21.7.jar/META-INF/LICENSE.txt](regions-2.21.7.jar/META-INF/LICENSE.txt) - - [regions-2.21.7.jar/META-INF/NOTICE.txt](regions-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [regions-2.21.33.jar/META-INF/LICENSE.txt](regions-2.21.33.jar/META-INF/LICENSE.txt) + - [regions-2.21.33.jar/META-INF/NOTICE.txt](regions-2.21.33.jar/META-INF/NOTICE.txt) -**191** **Group:** `software.amazon.awssdk` **Name:** `s3` **Version:** `2.20.78` +**181** **Group:** `software.amazon.awssdk` **Name:** `s3` **Version:** `2.20.78` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [s3-2.20.78.jar/META-INF/LICENSE.txt](s3-2.20.78.jar/META-INF/LICENSE.txt) - [s3-2.20.78.jar/META-INF/NOTICE.txt](s3-2.20.78.jar/META-INF/NOTICE.txt) -**192** **Group:** `software.amazon.awssdk` **Name:** `s3` **Version:** `2.21.7` +**182** **Group:** `software.amazon.awssdk` **Name:** `s3` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [s3-2.21.7.jar/META-INF/LICENSE.txt](s3-2.21.7.jar/META-INF/LICENSE.txt) - - [s3-2.21.7.jar/META-INF/NOTICE.txt](s3-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [s3-2.21.33.jar/META-INF/LICENSE.txt](s3-2.21.33.jar/META-INF/LICENSE.txt) + - [s3-2.21.33.jar/META-INF/NOTICE.txt](s3-2.21.33.jar/META-INF/NOTICE.txt) -**193** **Group:** `software.amazon.awssdk` **Name:** `sdk-core` **Version:** `2.20.78` +**183** **Group:** `software.amazon.awssdk` **Name:** `sdk-core` **Version:** `2.20.78` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [sdk-core-2.20.78.jar/META-INF/LICENSE.txt](sdk-core-2.20.78.jar/META-INF/LICENSE.txt) - [sdk-core-2.20.78.jar/META-INF/NOTICE.txt](sdk-core-2.20.78.jar/META-INF/NOTICE.txt) -**194** **Group:** `software.amazon.awssdk` **Name:** `sdk-core` **Version:** `2.21.7` +**184** **Group:** `software.amazon.awssdk` **Name:** `sdk-core` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [sdk-core-2.21.7.jar/META-INF/LICENSE.txt](sdk-core-2.21.7.jar/META-INF/LICENSE.txt) - - [sdk-core-2.21.7.jar/META-INF/NOTICE.txt](sdk-core-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [sdk-core-2.21.33.jar/META-INF/LICENSE.txt](sdk-core-2.21.33.jar/META-INF/LICENSE.txt) + - [sdk-core-2.21.33.jar/META-INF/NOTICE.txt](sdk-core-2.21.33.jar/META-INF/NOTICE.txt) -**195** **Group:** `software.amazon.awssdk` **Name:** `sqs` **Version:** `2.21.7` +**185** **Group:** `software.amazon.awssdk` **Name:** `sqs` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [sqs-2.21.7.jar/META-INF/LICENSE.txt](sqs-2.21.7.jar/META-INF/LICENSE.txt) - - [sqs-2.21.7.jar/META-INF/NOTICE.txt](sqs-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [sqs-2.21.33.jar/META-INF/LICENSE.txt](sqs-2.21.33.jar/META-INF/LICENSE.txt) + - [sqs-2.21.33.jar/META-INF/NOTICE.txt](sqs-2.21.33.jar/META-INF/NOTICE.txt) -**196** **Group:** `software.amazon.awssdk` **Name:** `sts` **Version:** `2.20.78` +**186** **Group:** `software.amazon.awssdk` **Name:** `sts` **Version:** `2.20.78` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [sts-2.20.78.jar/META-INF/LICENSE.txt](sts-2.20.78.jar/META-INF/LICENSE.txt) - [sts-2.20.78.jar/META-INF/NOTICE.txt](sts-2.20.78.jar/META-INF/NOTICE.txt) -**197** **Group:** `software.amazon.awssdk` **Name:** `sts` **Version:** `2.21.7` +**187** **Group:** `software.amazon.awssdk` **Name:** `sts` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [sts-2.21.7.jar/META-INF/LICENSE.txt](sts-2.21.7.jar/META-INF/LICENSE.txt) - - [sts-2.21.7.jar/META-INF/NOTICE.txt](sts-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [sts-2.21.33.jar/META-INF/LICENSE.txt](sts-2.21.33.jar/META-INF/LICENSE.txt) + - [sts-2.21.33.jar/META-INF/NOTICE.txt](sts-2.21.33.jar/META-INF/NOTICE.txt) -**198** **Group:** `software.amazon.awssdk` **Name:** `third-party-jackson-core` **Version:** `2.20.78` +**188** **Group:** `software.amazon.awssdk` **Name:** `third-party-jackson-core` **Version:** `2.20.78` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [third-party-jackson-core-2.20.78.jar/META-INF/LICENSE](third-party-jackson-core-2.20.78.jar/META-INF/LICENSE) @@ -1047,200 +1007,200 @@ _2023-11-14 10:24:46 PST_ - [third-party-jackson-core-2.20.78.jar/META-INF/NOTICE](third-party-jackson-core-2.20.78.jar/META-INF/NOTICE) - [third-party-jackson-core-2.20.78.jar/META-INF/NOTICE.txt](third-party-jackson-core-2.20.78.jar/META-INF/NOTICE.txt) -**199** **Group:** `software.amazon.awssdk` **Name:** `third-party-jackson-core` **Version:** `2.21.7` +**189** **Group:** `software.amazon.awssdk` **Name:** `third-party-jackson-core` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [third-party-jackson-core-2.21.7.jar/META-INF/LICENSE](third-party-jackson-core-2.21.7.jar/META-INF/LICENSE) - - [third-party-jackson-core-2.21.7.jar/META-INF/LICENSE.txt](third-party-jackson-core-2.21.7.jar/META-INF/LICENSE.txt) - - [third-party-jackson-core-2.21.7.jar/META-INF/NOTICE](third-party-jackson-core-2.21.7.jar/META-INF/NOTICE) - - [third-party-jackson-core-2.21.7.jar/META-INF/NOTICE.txt](third-party-jackson-core-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [third-party-jackson-core-2.21.33.jar/META-INF/LICENSE](third-party-jackson-core-2.21.33.jar/META-INF/LICENSE) + - [third-party-jackson-core-2.21.33.jar/META-INF/LICENSE.txt](third-party-jackson-core-2.21.33.jar/META-INF/LICENSE.txt) + - [third-party-jackson-core-2.21.33.jar/META-INF/NOTICE](third-party-jackson-core-2.21.33.jar/META-INF/NOTICE) + - [third-party-jackson-core-2.21.33.jar/META-INF/NOTICE.txt](third-party-jackson-core-2.21.33.jar/META-INF/NOTICE.txt) -**200** **Group:** `software.amazon.awssdk` **Name:** `third-party-jackson-dataformat-cbor` **Version:** `2.21.7` +**190** **Group:** `software.amazon.awssdk` **Name:** `third-party-jackson-dataformat-cbor` **Version:** `2.21.33` > - **POM Project URL**: [https://aws.amazon.com/sdkforjava](https://aws.amazon.com/sdkforjava) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [third-party-jackson-dataformat-cbor-2.21.7.jar/META-INF/LICENSE](third-party-jackson-dataformat-cbor-2.21.7.jar/META-INF/LICENSE) - - [third-party-jackson-dataformat-cbor-2.21.7.jar/META-INF/LICENSE.txt](third-party-jackson-dataformat-cbor-2.21.7.jar/META-INF/LICENSE.txt) - - [third-party-jackson-dataformat-cbor-2.21.7.jar/META-INF/NOTICE](third-party-jackson-dataformat-cbor-2.21.7.jar/META-INF/NOTICE) - - [third-party-jackson-dataformat-cbor-2.21.7.jar/META-INF/NOTICE.txt](third-party-jackson-dataformat-cbor-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [third-party-jackson-dataformat-cbor-2.21.33.jar/META-INF/LICENSE](third-party-jackson-dataformat-cbor-2.21.33.jar/META-INF/LICENSE) + - [third-party-jackson-dataformat-cbor-2.21.33.jar/META-INF/LICENSE.txt](third-party-jackson-dataformat-cbor-2.21.33.jar/META-INF/LICENSE.txt) + - [third-party-jackson-dataformat-cbor-2.21.33.jar/META-INF/NOTICE](third-party-jackson-dataformat-cbor-2.21.33.jar/META-INF/NOTICE) + - [third-party-jackson-dataformat-cbor-2.21.33.jar/META-INF/NOTICE.txt](third-party-jackson-dataformat-cbor-2.21.33.jar/META-INF/NOTICE.txt) -**201** **Group:** `software.amazon.awssdk` **Name:** `utils` **Version:** `2.20.78` +**191** **Group:** `software.amazon.awssdk` **Name:** `utils` **Version:** `2.20.78` > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) > - **Embedded license files**: [utils-2.20.78.jar/META-INF/LICENSE.txt](utils-2.20.78.jar/META-INF/LICENSE.txt) - [utils-2.20.78.jar/META-INF/NOTICE.txt](utils-2.20.78.jar/META-INF/NOTICE.txt) -**202** **Group:** `software.amazon.awssdk` **Name:** `utils` **Version:** `2.21.7` +**192** **Group:** `software.amazon.awssdk` **Name:** `utils` **Version:** `2.21.33` > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) -> - **Embedded license files**: [utils-2.21.7.jar/META-INF/LICENSE.txt](utils-2.21.7.jar/META-INF/LICENSE.txt) - - [utils-2.21.7.jar/META-INF/NOTICE.txt](utils-2.21.7.jar/META-INF/NOTICE.txt) +> - **Embedded license files**: [utils-2.21.33.jar/META-INF/LICENSE.txt](utils-2.21.33.jar/META-INF/LICENSE.txt) + - [utils-2.21.33.jar/META-INF/NOTICE.txt](utils-2.21.33.jar/META-INF/NOTICE.txt) -**203** **Group:** `software.amazon.eventstream` **Name:** `eventstream` **Version:** `1.0.1` +**193** **Group:** `software.amazon.eventstream` **Name:** `eventstream` **Version:** `1.0.1` > - **POM Project URL**: [https://github.com/awslabs/aws-eventstream-java](https://github.com/awslabs/aws-eventstream-java) > - **POM License**: Apache License, Version 2.0 - [https://aws.amazon.com/apache2.0](https://aws.amazon.com/apache2.0) ## Apache Software License - Version 2.0 -**204** **Group:** `org.eclipse.jetty` **Name:** `jetty-client` **Version:** `9.4.51.v20230217` +**194** **Group:** `org.eclipse.jetty` **Name:** `jetty-client` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-client-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-client-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-client-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-client-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-client-9.4.51.v20230217.jar/about.html](jetty-client-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-client-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-client-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-client-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-client-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-client-9.4.53.v20231009.jar/about.html](jetty-client-9.4.53.v20231009.jar/about.html) -**205** **Group:** `org.eclipse.jetty` **Name:** `jetty-http` **Version:** `9.4.51.v20230217` +**195** **Group:** `org.eclipse.jetty` **Name:** `jetty-http` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-http-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-http-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-http-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-http-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-http-9.4.51.v20230217.jar/about.html](jetty-http-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-http-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-http-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-http-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-http-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-http-9.4.53.v20231009.jar/about.html](jetty-http-9.4.53.v20231009.jar/about.html) -**206** **Group:** `org.eclipse.jetty` **Name:** `jetty-io` **Version:** `9.4.51.v20230217` +**196** **Group:** `org.eclipse.jetty` **Name:** `jetty-io` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-io-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-io-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-io-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-io-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-io-9.4.51.v20230217.jar/about.html](jetty-io-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-io-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-io-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-io-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-io-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-io-9.4.53.v20231009.jar/about.html](jetty-io-9.4.53.v20231009.jar/about.html) -**207** **Group:** `org.eclipse.jetty` **Name:** `jetty-security` **Version:** `9.4.51.v20230217` +**197** **Group:** `org.eclipse.jetty` **Name:** `jetty-security` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-security-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-security-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-security-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-security-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-security-9.4.51.v20230217.jar/about.html](jetty-security-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-security-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-security-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-security-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-security-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-security-9.4.53.v20231009.jar/about.html](jetty-security-9.4.53.v20231009.jar/about.html) -**208** **Group:** `org.eclipse.jetty` **Name:** `jetty-server` **Version:** `9.4.51.v20230217` +**198** **Group:** `org.eclipse.jetty` **Name:** `jetty-server` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-server-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-server-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-server-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-server-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-server-9.4.51.v20230217.jar/about.html](jetty-server-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-server-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-server-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-server-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-server-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-server-9.4.53.v20231009.jar/about.html](jetty-server-9.4.53.v20231009.jar/about.html) -**209** **Group:** `org.eclipse.jetty` **Name:** `jetty-servlet` **Version:** `9.4.51.v20230217` +**199** **Group:** `org.eclipse.jetty` **Name:** `jetty-servlet` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-servlet-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-servlet-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-servlet-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-servlet-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-servlet-9.4.51.v20230217.jar/about.html](jetty-servlet-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-servlet-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-servlet-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-servlet-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-servlet-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-servlet-9.4.53.v20231009.jar/about.html](jetty-servlet-9.4.53.v20231009.jar/about.html) -**210** **Group:** `org.eclipse.jetty` **Name:** `jetty-util` **Version:** `9.4.51.v20230217` +**200** **Group:** `org.eclipse.jetty` **Name:** `jetty-util` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-util-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-util-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-util-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-util-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-util-9.4.51.v20230217.jar/about.html](jetty-util-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-util-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-util-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-util-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-util-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-util-9.4.53.v20231009.jar/about.html](jetty-util-9.4.53.v20231009.jar/about.html) -**211** **Group:** `org.eclipse.jetty` **Name:** `jetty-util-ajax` **Version:** `9.4.51.v20230217` +**201** **Group:** `org.eclipse.jetty` **Name:** `jetty-util-ajax` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-util-ajax-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-util-ajax-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-util-ajax-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-util-ajax-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-util-ajax-9.4.51.v20230217.jar/about.html](jetty-util-ajax-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-util-ajax-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-util-ajax-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-util-ajax-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-util-ajax-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-util-ajax-9.4.53.v20231009.jar/about.html](jetty-util-ajax-9.4.53.v20231009.jar/about.html) -**212** **Group:** `org.eclipse.jetty` **Name:** `jetty-webapp` **Version:** `9.4.51.v20230217` +**202** **Group:** `org.eclipse.jetty` **Name:** `jetty-webapp` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-webapp-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-webapp-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-webapp-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-webapp-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-webapp-9.4.51.v20230217.jar/about.html](jetty-webapp-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-webapp-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-webapp-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-webapp-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-webapp-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-webapp-9.4.53.v20231009.jar/about.html](jetty-webapp-9.4.53.v20231009.jar/about.html) -**213** **Group:** `org.eclipse.jetty` **Name:** `jetty-xml` **Version:** `9.4.51.v20230217` +**203** **Group:** `org.eclipse.jetty` **Name:** `jetty-xml` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-xml-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-xml-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-xml-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-xml-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-xml-9.4.51.v20230217.jar/about.html](jetty-xml-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-xml-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-xml-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-xml-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-xml-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-xml-9.4.53.v20231009.jar/about.html](jetty-xml-9.4.53.v20231009.jar/about.html) -**214** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-api` **Version:** `9.4.51.v20230217` +**204** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-api` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [websocket-api-9.4.51.v20230217.jar/META-INF/LICENSE](websocket-api-9.4.51.v20230217.jar/META-INF/LICENSE) - - [websocket-api-9.4.51.v20230217.jar/META-INF/NOTICE.txt](websocket-api-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [websocket-api-9.4.51.v20230217.jar/about.html](websocket-api-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [websocket-api-9.4.53.v20231009.jar/META-INF/LICENSE](websocket-api-9.4.53.v20231009.jar/META-INF/LICENSE) + - [websocket-api-9.4.53.v20231009.jar/META-INF/NOTICE.txt](websocket-api-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [websocket-api-9.4.53.v20231009.jar/about.html](websocket-api-9.4.53.v20231009.jar/about.html) -**215** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-client` **Version:** `9.4.51.v20230217` +**205** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-client` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [websocket-client-9.4.51.v20230217.jar/META-INF/LICENSE](websocket-client-9.4.51.v20230217.jar/META-INF/LICENSE) - - [websocket-client-9.4.51.v20230217.jar/META-INF/NOTICE.txt](websocket-client-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [websocket-client-9.4.51.v20230217.jar/about.html](websocket-client-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [websocket-client-9.4.53.v20231009.jar/META-INF/LICENSE](websocket-client-9.4.53.v20231009.jar/META-INF/LICENSE) + - [websocket-client-9.4.53.v20231009.jar/META-INF/NOTICE.txt](websocket-client-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [websocket-client-9.4.53.v20231009.jar/about.html](websocket-client-9.4.53.v20231009.jar/about.html) -**216** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-common` **Version:** `9.4.51.v20230217` +**206** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-common` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [websocket-common-9.4.51.v20230217.jar/META-INF/LICENSE](websocket-common-9.4.51.v20230217.jar/META-INF/LICENSE) - - [websocket-common-9.4.51.v20230217.jar/META-INF/NOTICE.txt](websocket-common-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [websocket-common-9.4.51.v20230217.jar/about.html](websocket-common-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [websocket-common-9.4.53.v20231009.jar/META-INF/LICENSE](websocket-common-9.4.53.v20231009.jar/META-INF/LICENSE) + - [websocket-common-9.4.53.v20231009.jar/META-INF/NOTICE.txt](websocket-common-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [websocket-common-9.4.53.v20231009.jar/about.html](websocket-common-9.4.53.v20231009.jar/about.html) -**217** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-server` **Version:** `9.4.51.v20230217` +**207** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-server` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [websocket-server-9.4.51.v20230217.jar/META-INF/LICENSE](websocket-server-9.4.51.v20230217.jar/META-INF/LICENSE) - - [websocket-server-9.4.51.v20230217.jar/META-INF/NOTICE.txt](websocket-server-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [websocket-server-9.4.51.v20230217.jar/about.html](websocket-server-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [websocket-server-9.4.53.v20231009.jar/META-INF/LICENSE](websocket-server-9.4.53.v20231009.jar/META-INF/LICENSE) + - [websocket-server-9.4.53.v20231009.jar/META-INF/NOTICE.txt](websocket-server-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [websocket-server-9.4.53.v20231009.jar/about.html](websocket-server-9.4.53.v20231009.jar/about.html) -**218** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-servlet` **Version:** `9.4.51.v20230217` +**208** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-servlet` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [websocket-servlet-9.4.51.v20230217.jar/META-INF/LICENSE](websocket-servlet-9.4.51.v20230217.jar/META-INF/LICENSE) - - [websocket-servlet-9.4.51.v20230217.jar/META-INF/NOTICE.txt](websocket-servlet-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [websocket-servlet-9.4.51.v20230217.jar/about.html](websocket-servlet-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [websocket-servlet-9.4.53.v20231009.jar/META-INF/LICENSE](websocket-servlet-9.4.53.v20231009.jar/META-INF/LICENSE) + - [websocket-servlet-9.4.53.v20231009.jar/META-INF/NOTICE.txt](websocket-servlet-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [websocket-servlet-9.4.53.v20231009.jar/about.html](websocket-servlet-9.4.53.v20231009.jar/about.html) ## Apache-2.0 -**219** **Group:** `com.google.api.grpc` **Name:** `proto-google-common-protos` **Version:** `2.22.0` +**209** **Group:** `com.google.api.grpc` **Name:** `proto-google-common-protos` **Version:** `2.22.0` > - **POM Project URL**: [https://github.com/googleapis/sdk-platform-java](https://github.com/googleapis/sdk-platform-java) > - **POM License**: Apache-2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -**220** **Group:** `com.google.code.gson` **Name:** `gson` **Version:** `2.10.1` +**210** **Group:** `com.google.code.gson` **Name:** `gson` **Version:** `2.10.1` > - **Manifest Project URL**: [https://github.com/google/gson/gson](https://github.com/google/gson/gson) > - **Manifest License**: "Apache-2.0";link="https://www.apache.org/licenses/LICENSE-2.0.txt" (Not Packaged) > - **POM License**: Apache-2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -**221** **Group:** `commons-io` **Name:** `commons-io` **Version:** `2.12.0` +**211** **Group:** `commons-io` **Name:** `commons-io` **Version:** `2.12.0` > - **Project URL**: [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) > - **POM License**: Apache-2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [commons-io-2.12.0.jar/META-INF/LICENSE.txt](commons-io-2.12.0.jar/META-INF/LICENSE.txt) - [commons-io-2.12.0.jar/META-INF/NOTICE.txt](commons-io-2.12.0.jar/META-INF/NOTICE.txt) -**222** **Group:** `org.apache.logging.log4j` **Name:** `log4j-api` **Version:** `2.21.1` +**212** **Group:** `org.apache.logging.log4j` **Name:** `log4j-api` **Version:** `2.22.0` > - **Manifest License**: "Apache-2.0";link="https://www.apache.org/licenses/LICENSE-2.0.txt" (Not Packaged) > - **POM License**: Apache-2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [log4j-api-2.21.1.jar/META-INF/LICENSE](log4j-api-2.21.1.jar/META-INF/LICENSE) - - [log4j-api-2.21.1.jar/META-INF/NOTICE](log4j-api-2.21.1.jar/META-INF/NOTICE) +> - **Embedded license files**: [log4j-api-2.22.0.jar/META-INF/LICENSE](log4j-api-2.22.0.jar/META-INF/LICENSE) + - [log4j-api-2.22.0.jar/META-INF/NOTICE](log4j-api-2.22.0.jar/META-INF/NOTICE) -**223** **Group:** `org.apache.logging.log4j` **Name:** `log4j-core` **Version:** `2.21.1` +**213** **Group:** `org.apache.logging.log4j` **Name:** `log4j-core` **Version:** `2.22.0` > - **Manifest License**: "Apache-2.0";link="https://www.apache.org/licenses/LICENSE-2.0.txt" (Not Packaged) > - **POM License**: Apache-2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [log4j-core-2.21.1.jar/META-INF/LICENSE](log4j-core-2.21.1.jar/META-INF/LICENSE) - - [log4j-core-2.21.1.jar/META-INF/NOTICE](log4j-core-2.21.1.jar/META-INF/NOTICE) +> - **Embedded license files**: [log4j-core-2.22.0.jar/META-INF/LICENSE](log4j-core-2.22.0.jar/META-INF/LICENSE) + - [log4j-core-2.22.0.jar/META-INF/NOTICE](log4j-core-2.22.0.jar/META-INF/NOTICE) -**224** **Group:** `org.apache.logging.log4j` **Name:** `log4j-slf4j-impl` **Version:** `2.21.1` +**214** **Group:** `org.apache.logging.log4j` **Name:** `log4j-slf4j-impl` **Version:** `2.22.0` > - **Manifest License**: "Apache-2.0";link="https://www.apache.org/licenses/LICENSE-2.0.txt" (Not Packaged) > - **POM License**: Apache-2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [log4j-slf4j-impl-2.21.1.jar/META-INF/LICENSE](log4j-slf4j-impl-2.21.1.jar/META-INF/LICENSE) - - [log4j-slf4j-impl-2.21.1.jar/META-INF/NOTICE](log4j-slf4j-impl-2.21.1.jar/META-INF/NOTICE) +> - **Embedded license files**: [log4j-slf4j-impl-2.22.0.jar/META-INF/LICENSE](log4j-slf4j-impl-2.22.0.jar/META-INF/LICENSE) + - [log4j-slf4j-impl-2.22.0.jar/META-INF/NOTICE](log4j-slf4j-impl-2.22.0.jar/META-INF/NOTICE) -**225** **Group:** `org.apache.logging.log4j` **Name:** `log4j-to-slf4j` **Version:** `2.21.1` +**215** **Group:** `org.apache.logging.log4j` **Name:** `log4j-to-slf4j` **Version:** `2.22.0` > - **Manifest License**: "Apache-2.0";link="https://www.apache.org/licenses/LICENSE-2.0.txt" (Not Packaged) > - **POM License**: Apache-2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [log4j-to-slf4j-2.21.1.jar/META-INF/LICENSE](log4j-to-slf4j-2.21.1.jar/META-INF/LICENSE) - - [log4j-to-slf4j-2.21.1.jar/META-INF/NOTICE](log4j-to-slf4j-2.21.1.jar/META-INF/NOTICE) +> - **Embedded license files**: [log4j-to-slf4j-2.22.0.jar/META-INF/LICENSE](log4j-to-slf4j-2.22.0.jar/META-INF/LICENSE) + - [log4j-to-slf4j-2.22.0.jar/META-INF/NOTICE](log4j-to-slf4j-2.22.0.jar/META-INF/NOTICE) -**226** **Group:** `org.xerial.snappy` **Name:** `snappy-java` **Version:** `1.1.10.4` +**216** **Group:** `org.xerial.snappy` **Name:** `snappy-java` **Version:** `1.1.10.4` > - **Manifest Project URL**: [http://www.xerial.org/](http://www.xerial.org/) > - **POM Project URL**: [https://github.com/xerial/snappy-java](https://github.com/xerial/snappy-java) > - **POM License**: Apache-2.0 - [https://www.apache.org/licenses/LICENSE-2.0.html](https://www.apache.org/licenses/LICENSE-2.0.html) @@ -1248,31 +1208,31 @@ _2023-11-14 10:24:46 PST_ ## BSD 2-Clause License -**227** **Group:** `com.github.luben` **Name:** `zstd-jni` **Version:** `1.5.5-1` +**217** **Group:** `com.github.luben` **Name:** `zstd-jni` **Version:** `1.5.5-1` > - **Manifest License**: BSD 2-Clause License (Not Packaged) > - **POM Project URL**: [https://github.com/luben/zstd-jni](https://github.com/luben/zstd-jni) > - **POM License**: BSD 2-Clause License - [https://opensource.org/licenses/BSD-2-Clause](https://opensource.org/licenses/BSD-2-Clause) ## BSD-2-Clause -**228** **Group:** `org.hdrhistogram` **Name:** `HdrHistogram` **Version:** `2.1.12` +**218** **Group:** `org.hdrhistogram` **Name:** `HdrHistogram` **Version:** `2.1.12` > - **POM Project URL**: [http://hdrhistogram.github.io/HdrHistogram/](http://hdrhistogram.github.io/HdrHistogram/) > - **POM License**: BSD-2-Clause - [https://opensource.org/licenses/BSD-2-Clause](https://opensource.org/licenses/BSD-2-Clause) > - **POM License**: Public Domain, per Creative Commons CC0 - [http://creativecommons.org/publicdomain/zero/1.0/](http://creativecommons.org/publicdomain/zero/1.0/) ## BSD-3-Clause -**229** **Group:** `com.google.protobuf` **Name:** `protobuf-java` **Version:** `3.24.4` +**219** **Group:** `com.google.protobuf` **Name:** `protobuf-java` **Version:** `3.25.1` > - **Manifest Project URL**: [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) > - **POM License**: BSD-3-Clause - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -**230** **Group:** `com.google.protobuf` **Name:** `protobuf-java-util` **Version:** `3.24.4` +**220** **Group:** `com.google.protobuf` **Name:** `protobuf-java-util` **Version:** `3.25.1` > - **Manifest Project URL**: [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) > - **POM License**: BSD-3-Clause - [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) ## CDDL -**231** **Group:** `javax.mail` **Name:** `mailapi` **Version:** `1.4.3` +**221** **Group:** `javax.mail` **Name:** `mailapi` **Version:** `1.4.3` > - **Manifest Project URL**: [http://www.sun.com](http://www.sun.com) > - **POM License**: CDDL - [http://www.sun.com/cddl](http://www.sun.com/cddl) > - **POM License**: GPLv2+CE - [https://glassfish.dev.java.net/public/CDDL+GPL.html](https://glassfish.dev.java.net/public/CDDL+GPL.html) @@ -1280,13 +1240,13 @@ _2023-11-14 10:24:46 PST_ ## CDDL + GPLv2 with classpath exception -**232** **Group:** `javax.annotation` **Name:** `javax.annotation-api` **Version:** `1.3.2` +**222** **Group:** `javax.annotation` **Name:** `javax.annotation-api` **Version:** `1.3.2` > - **Manifest Project URL**: [https://javaee.github.io/glassfish](https://javaee.github.io/glassfish) > - **POM Project URL**: [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) > - **POM License**: CDDL + GPLv2 with classpath exception - [https://github.com/javaee/javax.annotation/blob/master/LICENSE](https://github.com/javaee/javax.annotation/blob/master/LICENSE) > - **Embedded license files**: [javax.annotation-api-1.3.2.jar/META-INF/LICENSE.txt](javax.annotation-api-1.3.2.jar/META-INF/LICENSE.txt) -**233** **Group:** `javax.servlet` **Name:** `javax.servlet-api` **Version:** `4.0.1` +**223** **Group:** `javax.servlet` **Name:** `javax.servlet-api` **Version:** `4.0.1` > - **Manifest Project URL**: [https://javaee.github.io](https://javaee.github.io) > - **POM Project URL**: [https://javaee.github.io/servlet-spec/](https://javaee.github.io/servlet-spec/) > - **POM License**: CDDL + GPLv2 with classpath exception - [https://oss.oracle.com/licenses/CDDL+GPL-1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) @@ -1294,14 +1254,14 @@ _2023-11-14 10:24:46 PST_ ## EPL 1.0 -**234** **Group:** `com.h2database` **Name:** `h2` **Version:** `2.2.224` +**224** **Group:** `com.h2database` **Name:** `h2` **Version:** `2.2.224` > - **POM Project URL**: [https://h2database.com](https://h2database.com) > - **POM License**: EPL 1.0 - [https://opensource.org/licenses/eclipse-1.0.php](https://opensource.org/licenses/eclipse-1.0.php) > - **POM License**: MPL 2.0 - [https://www.mozilla.org/en-US/MPL/2.0/](https://www.mozilla.org/en-US/MPL/2.0/) ## EPL 2.0 -**235** **Group:** `jakarta.annotation` **Name:** `jakarta.annotation-api` **Version:** `1.3.5` +**225** **Group:** `jakarta.annotation` **Name:** `jakarta.annotation-api` **Version:** `1.3.5` > - **Manifest Project URL**: [https://www.eclipse.org](https://www.eclipse.org) > - **POM Project URL**: [https://projects.eclipse.org/projects/ee4j.ca](https://projects.eclipse.org/projects/ee4j.ca) > - **POM License**: EPL 2.0 - [http://www.eclipse.org/legal/epl-2.0](http://www.eclipse.org/legal/epl-2.0) @@ -1311,7 +1271,7 @@ _2023-11-14 10:24:46 PST_ > - **Embedded license files**: [jakarta.annotation-api-1.3.5.jar/META-INF/LICENSE.md](jakarta.annotation-api-1.3.5.jar/META-INF/LICENSE.md) - [jakarta.annotation-api-1.3.5.jar/META-INF/NOTICE.md](jakarta.annotation-api-1.3.5.jar/META-INF/NOTICE.md) -**236** **Group:** `jakarta.annotation` **Name:** `jakarta.annotation-api` **Version:** `2.1.1` +**226** **Group:** `jakarta.annotation` **Name:** `jakarta.annotation-api` **Version:** `2.1.1` > - **Manifest Project URL**: [https://www.eclipse.org](https://www.eclipse.org) > - **POM Project URL**: [https://projects.eclipse.org/projects/ee4j.ca](https://projects.eclipse.org/projects/ee4j.ca) > - **POM License**: EPL 2.0 - [http://www.eclipse.org/legal/epl-2.0](http://www.eclipse.org/legal/epl-2.0) @@ -1323,161 +1283,161 @@ _2023-11-14 10:24:46 PST_ ## Eclipse Public License - Version 1.0 -**237** **Group:** `org.eclipse.jetty` **Name:** `jetty-client` **Version:** `9.4.51.v20230217` +**227** **Group:** `org.eclipse.jetty` **Name:** `jetty-client` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-client-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-client-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-client-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-client-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-client-9.4.51.v20230217.jar/about.html](jetty-client-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-client-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-client-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-client-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-client-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-client-9.4.53.v20231009.jar/about.html](jetty-client-9.4.53.v20231009.jar/about.html) -**238** **Group:** `org.eclipse.jetty` **Name:** `jetty-http` **Version:** `9.4.51.v20230217` +**228** **Group:** `org.eclipse.jetty` **Name:** `jetty-http` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-http-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-http-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-http-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-http-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-http-9.4.51.v20230217.jar/about.html](jetty-http-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-http-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-http-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-http-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-http-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-http-9.4.53.v20231009.jar/about.html](jetty-http-9.4.53.v20231009.jar/about.html) -**239** **Group:** `org.eclipse.jetty` **Name:** `jetty-io` **Version:** `9.4.51.v20230217` +**229** **Group:** `org.eclipse.jetty` **Name:** `jetty-io` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-io-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-io-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-io-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-io-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-io-9.4.51.v20230217.jar/about.html](jetty-io-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-io-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-io-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-io-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-io-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-io-9.4.53.v20231009.jar/about.html](jetty-io-9.4.53.v20231009.jar/about.html) -**240** **Group:** `org.eclipse.jetty` **Name:** `jetty-security` **Version:** `9.4.51.v20230217` +**230** **Group:** `org.eclipse.jetty` **Name:** `jetty-security` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-security-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-security-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-security-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-security-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-security-9.4.51.v20230217.jar/about.html](jetty-security-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-security-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-security-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-security-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-security-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-security-9.4.53.v20231009.jar/about.html](jetty-security-9.4.53.v20231009.jar/about.html) -**241** **Group:** `org.eclipse.jetty` **Name:** `jetty-server` **Version:** `9.4.51.v20230217` +**231** **Group:** `org.eclipse.jetty` **Name:** `jetty-server` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-server-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-server-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-server-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-server-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-server-9.4.51.v20230217.jar/about.html](jetty-server-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-server-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-server-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-server-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-server-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-server-9.4.53.v20231009.jar/about.html](jetty-server-9.4.53.v20231009.jar/about.html) -**242** **Group:** `org.eclipse.jetty` **Name:** `jetty-servlet` **Version:** `9.4.51.v20230217` +**232** **Group:** `org.eclipse.jetty` **Name:** `jetty-servlet` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-servlet-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-servlet-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-servlet-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-servlet-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-servlet-9.4.51.v20230217.jar/about.html](jetty-servlet-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-servlet-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-servlet-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-servlet-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-servlet-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-servlet-9.4.53.v20231009.jar/about.html](jetty-servlet-9.4.53.v20231009.jar/about.html) -**243** **Group:** `org.eclipse.jetty` **Name:** `jetty-util` **Version:** `9.4.51.v20230217` +**233** **Group:** `org.eclipse.jetty` **Name:** `jetty-util` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-util-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-util-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-util-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-util-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-util-9.4.51.v20230217.jar/about.html](jetty-util-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-util-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-util-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-util-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-util-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-util-9.4.53.v20231009.jar/about.html](jetty-util-9.4.53.v20231009.jar/about.html) -**244** **Group:** `org.eclipse.jetty` **Name:** `jetty-util-ajax` **Version:** `9.4.51.v20230217` +**234** **Group:** `org.eclipse.jetty` **Name:** `jetty-util-ajax` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-util-ajax-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-util-ajax-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-util-ajax-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-util-ajax-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-util-ajax-9.4.51.v20230217.jar/about.html](jetty-util-ajax-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-util-ajax-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-util-ajax-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-util-ajax-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-util-ajax-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-util-ajax-9.4.53.v20231009.jar/about.html](jetty-util-ajax-9.4.53.v20231009.jar/about.html) -**245** **Group:** `org.eclipse.jetty` **Name:** `jetty-webapp` **Version:** `9.4.51.v20230217` +**235** **Group:** `org.eclipse.jetty` **Name:** `jetty-webapp` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-webapp-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-webapp-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-webapp-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-webapp-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-webapp-9.4.51.v20230217.jar/about.html](jetty-webapp-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-webapp-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-webapp-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-webapp-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-webapp-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-webapp-9.4.53.v20231009.jar/about.html](jetty-webapp-9.4.53.v20231009.jar/about.html) -**246** **Group:** `org.eclipse.jetty` **Name:** `jetty-xml` **Version:** `9.4.51.v20230217` +**236** **Group:** `org.eclipse.jetty` **Name:** `jetty-xml` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [jetty-xml-9.4.51.v20230217.jar/META-INF/LICENSE](jetty-xml-9.4.51.v20230217.jar/META-INF/LICENSE) - - [jetty-xml-9.4.51.v20230217.jar/META-INF/NOTICE.txt](jetty-xml-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [jetty-xml-9.4.51.v20230217.jar/about.html](jetty-xml-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [jetty-xml-9.4.53.v20231009.jar/META-INF/LICENSE](jetty-xml-9.4.53.v20231009.jar/META-INF/LICENSE) + - [jetty-xml-9.4.53.v20231009.jar/META-INF/NOTICE.txt](jetty-xml-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [jetty-xml-9.4.53.v20231009.jar/about.html](jetty-xml-9.4.53.v20231009.jar/about.html) -**247** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-api` **Version:** `9.4.51.v20230217` +**237** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-api` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [websocket-api-9.4.51.v20230217.jar/META-INF/LICENSE](websocket-api-9.4.51.v20230217.jar/META-INF/LICENSE) - - [websocket-api-9.4.51.v20230217.jar/META-INF/NOTICE.txt](websocket-api-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [websocket-api-9.4.51.v20230217.jar/about.html](websocket-api-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [websocket-api-9.4.53.v20231009.jar/META-INF/LICENSE](websocket-api-9.4.53.v20231009.jar/META-INF/LICENSE) + - [websocket-api-9.4.53.v20231009.jar/META-INF/NOTICE.txt](websocket-api-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [websocket-api-9.4.53.v20231009.jar/about.html](websocket-api-9.4.53.v20231009.jar/about.html) -**248** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-client` **Version:** `9.4.51.v20230217` +**238** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-client` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [websocket-client-9.4.51.v20230217.jar/META-INF/LICENSE](websocket-client-9.4.51.v20230217.jar/META-INF/LICENSE) - - [websocket-client-9.4.51.v20230217.jar/META-INF/NOTICE.txt](websocket-client-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [websocket-client-9.4.51.v20230217.jar/about.html](websocket-client-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [websocket-client-9.4.53.v20231009.jar/META-INF/LICENSE](websocket-client-9.4.53.v20231009.jar/META-INF/LICENSE) + - [websocket-client-9.4.53.v20231009.jar/META-INF/NOTICE.txt](websocket-client-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [websocket-client-9.4.53.v20231009.jar/about.html](websocket-client-9.4.53.v20231009.jar/about.html) -**249** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-common` **Version:** `9.4.51.v20230217` +**239** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-common` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [websocket-common-9.4.51.v20230217.jar/META-INF/LICENSE](websocket-common-9.4.51.v20230217.jar/META-INF/LICENSE) - - [websocket-common-9.4.51.v20230217.jar/META-INF/NOTICE.txt](websocket-common-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [websocket-common-9.4.51.v20230217.jar/about.html](websocket-common-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [websocket-common-9.4.53.v20231009.jar/META-INF/LICENSE](websocket-common-9.4.53.v20231009.jar/META-INF/LICENSE) + - [websocket-common-9.4.53.v20231009.jar/META-INF/NOTICE.txt](websocket-common-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [websocket-common-9.4.53.v20231009.jar/about.html](websocket-common-9.4.53.v20231009.jar/about.html) -**250** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-server` **Version:** `9.4.51.v20230217` +**240** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-server` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [websocket-server-9.4.51.v20230217.jar/META-INF/LICENSE](websocket-server-9.4.51.v20230217.jar/META-INF/LICENSE) - - [websocket-server-9.4.51.v20230217.jar/META-INF/NOTICE.txt](websocket-server-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [websocket-server-9.4.51.v20230217.jar/about.html](websocket-server-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [websocket-server-9.4.53.v20231009.jar/META-INF/LICENSE](websocket-server-9.4.53.v20231009.jar/META-INF/LICENSE) + - [websocket-server-9.4.53.v20231009.jar/META-INF/NOTICE.txt](websocket-server-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [websocket-server-9.4.53.v20231009.jar/about.html](websocket-server-9.4.53.v20231009.jar/about.html) -**251** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-servlet` **Version:** `9.4.51.v20230217` +**241** **Group:** `org.eclipse.jetty.websocket` **Name:** `websocket-servlet` **Version:** `9.4.53.v20231009` > - **Manifest Project URL**: [https://eclipse.org/jetty](https://eclipse.org/jetty) > - **POM License**: Apache Software License - Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: Eclipse Public License - Version 1.0 - [https://www.eclipse.org/org/documents/epl-v10.php](https://www.eclipse.org/org/documents/epl-v10.php) -> - **Embedded license files**: [websocket-servlet-9.4.51.v20230217.jar/META-INF/LICENSE](websocket-servlet-9.4.51.v20230217.jar/META-INF/LICENSE) - - [websocket-servlet-9.4.51.v20230217.jar/META-INF/NOTICE.txt](websocket-servlet-9.4.51.v20230217.jar/META-INF/NOTICE.txt) - - [websocket-servlet-9.4.51.v20230217.jar/about.html](websocket-servlet-9.4.51.v20230217.jar/about.html) +> - **Embedded license files**: [websocket-servlet-9.4.53.v20231009.jar/META-INF/LICENSE](websocket-servlet-9.4.53.v20231009.jar/META-INF/LICENSE) + - [websocket-servlet-9.4.53.v20231009.jar/META-INF/NOTICE.txt](websocket-servlet-9.4.53.v20231009.jar/META-INF/NOTICE.txt) + - [websocket-servlet-9.4.53.v20231009.jar/about.html](websocket-servlet-9.4.53.v20231009.jar/about.html) ## Eclipse Public License - v 1.0 -**252** **Group:** `ch.qos.logback` **Name:** `logback-classic` **Version:** `1.2.12` +**242** **Group:** `ch.qos.logback` **Name:** `logback-classic` **Version:** `1.2.12` > - **Manifest Project URL**: [http://www.qos.ch](http://www.qos.ch) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU Lesser General Public License - [http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html](http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html) -**253** **Group:** `ch.qos.logback` **Name:** `logback-classic` **Version:** `1.4.11` +**243** **Group:** `ch.qos.logback` **Name:** `logback-classic` **Version:** `1.4.11` > - **Manifest Project URL**: [http://www.qos.ch](http://www.qos.ch) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU Lesser General Public License - [http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html](http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html) -**254** **Group:** `ch.qos.logback` **Name:** `logback-classic` **Version:** `1.4.8` +**244** **Group:** `ch.qos.logback` **Name:** `logback-classic` **Version:** `1.4.8` > - **Manifest Project URL**: [http://www.qos.ch](http://www.qos.ch) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU Lesser General Public License - [http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html](http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html) -**255** **Group:** `ch.qos.logback` **Name:** `logback-core` **Version:** `1.2.12` +**245** **Group:** `ch.qos.logback` **Name:** `logback-core` **Version:** `1.2.12` > - **Manifest Project URL**: [http://www.qos.ch](http://www.qos.ch) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU Lesser General Public License - [http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html](http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html) -**256** **Group:** `ch.qos.logback` **Name:** `logback-core` **Version:** `1.4.11` +**246** **Group:** `ch.qos.logback` **Name:** `logback-core` **Version:** `1.4.11` > - **Manifest Project URL**: [http://www.qos.ch](http://www.qos.ch) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU Lesser General Public License - [http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html](http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html) -**257** **Group:** `ch.qos.logback` **Name:** `logback-core` **Version:** `1.4.8` +**247** **Group:** `ch.qos.logback` **Name:** `logback-core` **Version:** `1.4.8` > - **Manifest Project URL**: [http://www.qos.ch](http://www.qos.ch) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU Lesser General Public License - [http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html](http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html) ## Eclipse Public License v. 2.0 -**258** **Group:** `jakarta.annotation` **Name:** `jakarta.annotation-api` **Version:** `1.3.5` +**248** **Group:** `jakarta.annotation` **Name:** `jakarta.annotation-api` **Version:** `1.3.5` > - **Manifest Project URL**: [https://www.eclipse.org](https://www.eclipse.org) > - **POM Project URL**: [https://projects.eclipse.org/projects/ee4j.ca](https://projects.eclipse.org/projects/ee4j.ca) > - **POM License**: EPL 2.0 - [http://www.eclipse.org/legal/epl-2.0](http://www.eclipse.org/legal/epl-2.0) @@ -1487,7 +1447,7 @@ _2023-11-14 10:24:46 PST_ > - **Embedded license files**: [jakarta.annotation-api-1.3.5.jar/META-INF/LICENSE.md](jakarta.annotation-api-1.3.5.jar/META-INF/LICENSE.md) - [jakarta.annotation-api-1.3.5.jar/META-INF/NOTICE.md](jakarta.annotation-api-1.3.5.jar/META-INF/NOTICE.md) -**259** **Group:** `jakarta.annotation` **Name:** `jakarta.annotation-api` **Version:** `2.1.1` +**249** **Group:** `jakarta.annotation` **Name:** `jakarta.annotation-api` **Version:** `2.1.1` > - **Manifest Project URL**: [https://www.eclipse.org](https://www.eclipse.org) > - **POM Project URL**: [https://projects.eclipse.org/projects/ee4j.ca](https://projects.eclipse.org/projects/ee4j.ca) > - **POM License**: EPL 2.0 - [http://www.eclipse.org/legal/epl-2.0](http://www.eclipse.org/legal/epl-2.0) @@ -1499,7 +1459,7 @@ _2023-11-14 10:24:46 PST_ ## GNU General Public License, version 2 with the GNU Classpath Exception -**260** **Group:** `jakarta.annotation` **Name:** `jakarta.annotation-api` **Version:** `1.3.5` +**250** **Group:** `jakarta.annotation` **Name:** `jakarta.annotation-api` **Version:** `1.3.5` > - **Manifest Project URL**: [https://www.eclipse.org](https://www.eclipse.org) > - **POM Project URL**: [https://projects.eclipse.org/projects/ee4j.ca](https://projects.eclipse.org/projects/ee4j.ca) > - **POM License**: EPL 2.0 - [http://www.eclipse.org/legal/epl-2.0](http://www.eclipse.org/legal/epl-2.0) @@ -1509,7 +1469,7 @@ _2023-11-14 10:24:46 PST_ > - **Embedded license files**: [jakarta.annotation-api-1.3.5.jar/META-INF/LICENSE.md](jakarta.annotation-api-1.3.5.jar/META-INF/LICENSE.md) - [jakarta.annotation-api-1.3.5.jar/META-INF/NOTICE.md](jakarta.annotation-api-1.3.5.jar/META-INF/NOTICE.md) -**261** **Group:** `jakarta.annotation` **Name:** `jakarta.annotation-api` **Version:** `2.1.1` +**251** **Group:** `jakarta.annotation` **Name:** `jakarta.annotation-api` **Version:** `2.1.1` > - **Manifest Project URL**: [https://www.eclipse.org](https://www.eclipse.org) > - **POM Project URL**: [https://projects.eclipse.org/projects/ee4j.ca](https://projects.eclipse.org/projects/ee4j.ca) > - **POM License**: EPL 2.0 - [http://www.eclipse.org/legal/epl-2.0](http://www.eclipse.org/legal/epl-2.0) @@ -1521,39 +1481,39 @@ _2023-11-14 10:24:46 PST_ ## GNU Lesser General Public License -**262** **Group:** `ch.qos.logback` **Name:** `logback-classic` **Version:** `1.2.12` +**252** **Group:** `ch.qos.logback` **Name:** `logback-classic` **Version:** `1.2.12` > - **Manifest Project URL**: [http://www.qos.ch](http://www.qos.ch) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU Lesser General Public License - [http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html](http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html) -**263** **Group:** `ch.qos.logback` **Name:** `logback-classic` **Version:** `1.4.11` +**253** **Group:** `ch.qos.logback` **Name:** `logback-classic` **Version:** `1.4.11` > - **Manifest Project URL**: [http://www.qos.ch](http://www.qos.ch) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU Lesser General Public License - [http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html](http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html) -**264** **Group:** `ch.qos.logback` **Name:** `logback-classic` **Version:** `1.4.8` +**254** **Group:** `ch.qos.logback` **Name:** `logback-classic` **Version:** `1.4.8` > - **Manifest Project URL**: [http://www.qos.ch](http://www.qos.ch) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU Lesser General Public License - [http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html](http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html) -**265** **Group:** `ch.qos.logback` **Name:** `logback-core` **Version:** `1.2.12` +**255** **Group:** `ch.qos.logback` **Name:** `logback-core` **Version:** `1.2.12` > - **Manifest Project URL**: [http://www.qos.ch](http://www.qos.ch) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU Lesser General Public License - [http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html](http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html) -**266** **Group:** `ch.qos.logback` **Name:** `logback-core` **Version:** `1.4.11` +**256** **Group:** `ch.qos.logback` **Name:** `logback-core` **Version:** `1.4.11` > - **Manifest Project URL**: [http://www.qos.ch](http://www.qos.ch) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU Lesser General Public License - [http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html](http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html) -**267** **Group:** `ch.qos.logback` **Name:** `logback-core` **Version:** `1.4.8` +**257** **Group:** `ch.qos.logback` **Name:** `logback-core` **Version:** `1.4.8` > - **Manifest Project URL**: [http://www.qos.ch](http://www.qos.ch) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU Lesser General Public License - [http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html](http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html) ## GPL2 w/ CPE -**268** **Group:** `jakarta.annotation` **Name:** `jakarta.annotation-api` **Version:** `1.3.5` +**258** **Group:** `jakarta.annotation` **Name:** `jakarta.annotation-api` **Version:** `1.3.5` > - **Manifest Project URL**: [https://www.eclipse.org](https://www.eclipse.org) > - **POM Project URL**: [https://projects.eclipse.org/projects/ee4j.ca](https://projects.eclipse.org/projects/ee4j.ca) > - **POM License**: EPL 2.0 - [http://www.eclipse.org/legal/epl-2.0](http://www.eclipse.org/legal/epl-2.0) @@ -1563,7 +1523,7 @@ _2023-11-14 10:24:46 PST_ > - **Embedded license files**: [jakarta.annotation-api-1.3.5.jar/META-INF/LICENSE.md](jakarta.annotation-api-1.3.5.jar/META-INF/LICENSE.md) - [jakarta.annotation-api-1.3.5.jar/META-INF/NOTICE.md](jakarta.annotation-api-1.3.5.jar/META-INF/NOTICE.md) -**269** **Group:** `jakarta.annotation` **Name:** `jakarta.annotation-api` **Version:** `2.1.1` +**259** **Group:** `jakarta.annotation` **Name:** `jakarta.annotation-api` **Version:** `2.1.1` > - **Manifest Project URL**: [https://www.eclipse.org](https://www.eclipse.org) > - **POM Project URL**: [https://projects.eclipse.org/projects/ee4j.ca](https://projects.eclipse.org/projects/ee4j.ca) > - **POM License**: EPL 2.0 - [http://www.eclipse.org/legal/epl-2.0](http://www.eclipse.org/legal/epl-2.0) @@ -1575,7 +1535,7 @@ _2023-11-14 10:24:46 PST_ ## GPLv2+CE -**270** **Group:** `javax.mail` **Name:** `mailapi` **Version:** `1.4.3` +**260** **Group:** `javax.mail` **Name:** `mailapi` **Version:** `1.4.3` > - **Manifest Project URL**: [http://www.sun.com](http://www.sun.com) > - **POM License**: CDDL - [http://www.sun.com/cddl](http://www.sun.com/cddl) > - **POM License**: GPLv2+CE - [https://glassfish.dev.java.net/public/CDDL+GPL.html](https://glassfish.dev.java.net/public/CDDL+GPL.html) @@ -1583,453 +1543,448 @@ _2023-11-14 10:24:46 PST_ ## LGPLv3 or later -**271** **Group:** `com.github.fge` **Name:** `json-schema-core` **Version:** `1.0.1` +**261** **Group:** `com.github.fge` **Name:** `json-schema-core` **Version:** `1.0.1` > - **POM Project URL**: [https://github.com/fge/json-schema-core](https://github.com/fge/json-schema-core) > - **POM License**: LGPLv3 or later - [http://www.gnu.org/licenses/lgpl.html](http://www.gnu.org/licenses/lgpl.html) > - **Embedded license files**: [json-schema-core-1.0.1.jar/LICENSE](json-schema-core-1.0.1.jar/LICENSE) -**272** **Group:** `com.github.fge` **Name:** `json-schema-validator` **Version:** `2.0.0` +**262** **Group:** `com.github.fge` **Name:** `json-schema-validator` **Version:** `2.0.0` > - **POM Project URL**: [https://github.com/fge/json-schema-validator](https://github.com/fge/json-schema-validator) > - **POM License**: LGPLv3 or later - [http://www.gnu.org/licenses/lgpl.html](http://www.gnu.org/licenses/lgpl.html) > - **Embedded license files**: [json-schema-validator-2.0.0.jar/LICENSE](json-schema-validator-2.0.0.jar/LICENSE) ## MIT License -**273** **Group:** `com.eclipsesource.minimal-json` **Name:** `minimal-json` **Version:** `0.9.5` +**263** **Group:** `com.eclipsesource.minimal-json` **Name:** `minimal-json` **Version:** `0.9.5` > - **POM Project URL**: [https://github.com/ralfstx/minimal-json](https://github.com/ralfstx/minimal-json) > - **POM License**: MIT License - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) -**274** **Group:** `org.curioswitch.curiostack` **Name:** `protobuf-jackson` **Version:** `2.2.0` +**264** **Group:** `org.curioswitch.curiostack` **Name:** `protobuf-jackson` **Version:** `2.2.0` > - **POM Project URL**: [https://github.com/curioswitch/protobuf-jackson](https://github.com/curioswitch/protobuf-jackson) > - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT) -**275** **Group:** `org.slf4j` **Name:** `jul-to-slf4j` **Version:** `1.7.36` +**265** **Group:** `org.slf4j` **Name:** `jul-to-slf4j` **Version:** `1.7.36` > - **POM Project URL**: [http://www.slf4j.org](http://www.slf4j.org) > - **POM License**: MIT License - [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php) -**276** **Group:** `org.slf4j` **Name:** `jul-to-slf4j` **Version:** `2.0.7` +**266** **Group:** `org.slf4j` **Name:** `jul-to-slf4j` **Version:** `2.0.7` > - **Project URL**: [http://www.slf4j.org](http://www.slf4j.org) > - **POM License**: MIT License - [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php) > - **Embedded license files**: [jul-to-slf4j-2.0.7.jar/META-INF/LICENSE.txt](jul-to-slf4j-2.0.7.jar/META-INF/LICENSE.txt) -**277** **Group:** `org.slf4j` **Name:** `jul-to-slf4j` **Version:** `2.0.9` +**267** **Group:** `org.slf4j` **Name:** `jul-to-slf4j` **Version:** `2.0.9` > - **Project URL**: [http://www.slf4j.org](http://www.slf4j.org) > - **POM License**: MIT License - [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php) > - **Embedded license files**: [jul-to-slf4j-2.0.9.jar/META-INF/LICENSE.txt](jul-to-slf4j-2.0.9.jar/META-INF/LICENSE.txt) -**278** **Group:** `org.slf4j` **Name:** `slf4j-api` **Version:** `1.7.36` +**268** **Group:** `org.slf4j` **Name:** `slf4j-api` **Version:** `1.7.36` > - **POM Project URL**: [http://www.slf4j.org](http://www.slf4j.org) > - **POM License**: MIT License - [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php) -**279** **Group:** `org.slf4j` **Name:** `slf4j-api` **Version:** `2.0.7` -> - **Project URL**: [http://www.slf4j.org](http://www.slf4j.org) -> - **POM License**: MIT License - [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php) -> - **Embedded license files**: [slf4j-api-2.0.7.jar/META-INF/LICENSE.txt](slf4j-api-2.0.7.jar/META-INF/LICENSE.txt) - -**280** **Group:** `org.slf4j` **Name:** `slf4j-api` **Version:** `2.0.9` +**269** **Group:** `org.slf4j` **Name:** `slf4j-api` **Version:** `2.0.9` > - **Project URL**: [http://www.slf4j.org](http://www.slf4j.org) > - **POM License**: MIT License - [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php) > - **Embedded license files**: [slf4j-api-2.0.9.jar/META-INF/LICENSE.txt](slf4j-api-2.0.9.jar/META-INF/LICENSE.txt) -**281** **Group:** `org.slf4j` **Name:** `slf4j-simple` **Version:** `1.7.36` +**270** **Group:** `org.slf4j` **Name:** `slf4j-simple` **Version:** `1.7.36` > - **POM Project URL**: [http://www.slf4j.org](http://www.slf4j.org) > - **POM License**: MIT License - [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php) -**282** **Group:** `org.slf4j` **Name:** `slf4j-simple` **Version:** `2.0.9` +**271** **Group:** `org.slf4j` **Name:** `slf4j-simple` **Version:** `2.0.9` > - **Project URL**: [http://www.slf4j.org](http://www.slf4j.org) > - **POM License**: MIT License - [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php) > - **Embedded license files**: [slf4j-simple-2.0.9.jar/META-INF/LICENSE.txt](slf4j-simple-2.0.9.jar/META-INF/LICENSE.txt) ## MIT license -**283** **Group:** `org.codehaus.mojo` **Name:** `animal-sniffer-annotations` **Version:** `1.23` +**272** **Group:** `org.codehaus.mojo` **Name:** `animal-sniffer-annotations` **Version:** `1.23` > - **POM License**: MIT license - [https://spdx.org/licenses/MIT.txt](https://spdx.org/licenses/MIT.txt) > - **POM License**: The Apache Software License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) ## MIT-0 -**284** **Group:** `org.reactivestreams` **Name:** `reactive-streams` **Version:** `1.0.4` +**273** **Group:** `org.reactivestreams` **Name:** `reactive-streams` **Version:** `1.0.4` > - **Manifest Project URL**: [http://reactive-streams.org](http://reactive-streams.org) > - **POM Project URL**: [http://www.reactive-streams.org/](http://www.reactive-streams.org/) > - **POM License**: MIT-0 - [https://spdx.org/licenses/MIT-0.html](https://spdx.org/licenses/MIT-0.html) ## MPL 2.0 -**285** **Group:** `com.h2database` **Name:** `h2` **Version:** `2.2.224` +**274** **Group:** `com.h2database` **Name:** `h2` **Version:** `2.2.224` > - **POM Project URL**: [https://h2database.com](https://h2database.com) > - **POM License**: EPL 1.0 - [https://opensource.org/licenses/eclipse-1.0.php](https://opensource.org/licenses/eclipse-1.0.php) > - **POM License**: MPL 2.0 - [https://www.mozilla.org/en-US/MPL/2.0/](https://www.mozilla.org/en-US/MPL/2.0/) ## Mozilla Public License, Version 2.0 -**286** **Group:** `org.mozilla` **Name:** `rhino` **Version:** `1.7R4` +**275** **Group:** `org.mozilla` **Name:** `rhino` **Version:** `1.7R4` > - **POM Project URL**: [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) > - **POM License**: Mozilla Public License, Version 2.0 - [http://www.mozilla.org/MPL/2.0/index.txt](http://www.mozilla.org/MPL/2.0/index.txt) > - **Embedded license files**: [rhino-1.7R4.jar/LICENSE.txt](rhino-1.7R4.jar/LICENSE.txt) ## Public Domain, per Creative Commons CC0 -**287** **Group:** `org.hdrhistogram` **Name:** `HdrHistogram` **Version:** `2.1.12` +**276** **Group:** `org.hdrhistogram` **Name:** `HdrHistogram` **Version:** `2.1.12` > - **POM Project URL**: [http://hdrhistogram.github.io/HdrHistogram/](http://hdrhistogram.github.io/HdrHistogram/) > - **POM License**: BSD-2-Clause - [https://opensource.org/licenses/BSD-2-Clause](https://opensource.org/licenses/BSD-2-Clause) > - **POM License**: Public Domain, per Creative Commons CC0 - [http://creativecommons.org/publicdomain/zero/1.0/](http://creativecommons.org/publicdomain/zero/1.0/) -**288** **Group:** `org.latencyutils` **Name:** `LatencyUtils` **Version:** `2.0.3` +**277** **Group:** `org.latencyutils` **Name:** `LatencyUtils` **Version:** `2.0.3` > - **POM Project URL**: [http://latencyutils.github.io/LatencyUtils/](http://latencyutils.github.io/LatencyUtils/) > - **POM License**: Public Domain, per Creative Commons CC0 - [http://creativecommons.org/publicdomain/zero/1.0/](http://creativecommons.org/publicdomain/zero/1.0/) ## The Apache License, Version 2.0 -**289** **Group:** `com.linecorp.armeria` **Name:** `armeria` **Version:** `1.25.2` +**278** **Group:** `com.linecorp.armeria` **Name:** `armeria` **Version:** `1.26.3` > - **POM Project URL**: [https://armeria.dev/](https://armeria.dev/) > - **POM License**: The Apache License, Version 2.0 - [https://www.apache.org/license/LICENSE-2.0.txt](https://www.apache.org/license/LICENSE-2.0.txt) -> - **Embedded license files**: [armeria-1.25.2.jar/META-INF/LICENSE](armeria-1.25.2.jar/META-INF/LICENSE) +> - **Embedded license files**: [armeria-1.26.3.jar/META-INF/LICENSE](armeria-1.26.3.jar/META-INF/LICENSE) -**290** **Group:** `com.linecorp.armeria` **Name:** `armeria-grpc` **Version:** `1.25.2` +**279** **Group:** `com.linecorp.armeria` **Name:** `armeria-grpc` **Version:** `1.26.3` > - **POM Project URL**: [https://armeria.dev/](https://armeria.dev/) > - **POM License**: The Apache License, Version 2.0 - [https://www.apache.org/license/LICENSE-2.0.txt](https://www.apache.org/license/LICENSE-2.0.txt) -**291** **Group:** `com.linecorp.armeria` **Name:** `armeria-grpc-protocol` **Version:** `1.25.2` +**280** **Group:** `com.linecorp.armeria` **Name:** `armeria-grpc-protocol` **Version:** `1.26.3` > - **POM Project URL**: [https://armeria.dev/](https://armeria.dev/) > - **POM License**: The Apache License, Version 2.0 - [https://www.apache.org/license/LICENSE-2.0.txt](https://www.apache.org/license/LICENSE-2.0.txt) -**292** **Group:** `com.linecorp.armeria` **Name:** `armeria-protobuf` **Version:** `1.25.2` +**281** **Group:** `com.linecorp.armeria` **Name:** `armeria-protobuf` **Version:** `1.26.3` > - **POM Project URL**: [https://armeria.dev/](https://armeria.dev/) > - **POM License**: The Apache License, Version 2.0 - [https://www.apache.org/license/LICENSE-2.0.txt](https://www.apache.org/license/LICENSE-2.0.txt) -**293** **Group:** `io.opentelemetry` **Name:** `opentelemetry-api` **Version:** `1.31.0` +**282** **Group:** `io.opentelemetry` **Name:** `opentelemetry-api` **Version:** `1.32.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**294** **Group:** `io.opentelemetry` **Name:** `opentelemetry-api-events` **Version:** `1.31.0-alpha` +**283** **Group:** `io.opentelemetry` **Name:** `opentelemetry-api-events` **Version:** `1.32.0-alpha` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**295** **Group:** `io.opentelemetry` **Name:** `opentelemetry-context` **Version:** `1.31.0` +**284** **Group:** `io.opentelemetry` **Name:** `opentelemetry-context` **Version:** `1.32.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**296** **Group:** `io.opentelemetry` **Name:** `opentelemetry-exporter-common` **Version:** `1.31.0` +**285** **Group:** `io.opentelemetry` **Name:** `opentelemetry-exporter-common` **Version:** `1.32.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**297** **Group:** `io.opentelemetry` **Name:** `opentelemetry-exporter-otlp` **Version:** `1.31.0` +**286** **Group:** `io.opentelemetry` **Name:** `opentelemetry-exporter-otlp` **Version:** `1.32.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**298** **Group:** `io.opentelemetry` **Name:** `opentelemetry-exporter-otlp-common` **Version:** `1.31.0` +**287** **Group:** `io.opentelemetry` **Name:** `opentelemetry-exporter-otlp-common` **Version:** `1.32.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**299** **Group:** `io.opentelemetry` **Name:** `opentelemetry-exporter-sender-okhttp` **Version:** `1.31.0` +**288** **Group:** `io.opentelemetry` **Name:** `opentelemetry-exporter-sender-okhttp` **Version:** `1.32.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**300** **Group:** `io.opentelemetry` **Name:** `opentelemetry-extension-aws` **Version:** `1.20.1` +**289** **Group:** `io.opentelemetry` **Name:** `opentelemetry-extension-aws` **Version:** `1.20.1` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**301** **Group:** `io.opentelemetry` **Name:** `opentelemetry-extension-incubator` **Version:** `1.31.0-alpha` +**290** **Group:** `io.opentelemetry` **Name:** `opentelemetry-extension-incubator` **Version:** `1.32.0-alpha` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**302** **Group:** `io.opentelemetry` **Name:** `opentelemetry-extension-trace-propagators` **Version:** `1.31.0` +**291** **Group:** `io.opentelemetry` **Name:** `opentelemetry-extension-trace-propagators` **Version:** `1.32.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**303** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk` **Version:** `1.31.0` +**292** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk` **Version:** `1.32.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**304** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-common` **Version:** `1.31.0` +**293** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-common` **Version:** `1.32.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**305** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-extension-autoconfigure-spi` **Version:** `1.31.0` +**294** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-extension-autoconfigure-spi` **Version:** `1.32.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**306** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-logs` **Version:** `1.31.0` +**295** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-logs` **Version:** `1.32.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**307** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-metrics` **Version:** `1.31.0` +**296** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-metrics` **Version:** `1.32.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**308** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-trace` **Version:** `1.31.0` +**297** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-trace` **Version:** `1.32.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**309** **Group:** `io.opentelemetry` **Name:** `opentelemetry-semconv` **Version:** `1.28.0-alpha` +**298** **Group:** `io.opentelemetry` **Name:** `opentelemetry-semconv` **Version:** `1.28.0-alpha` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**310** **Group:** `io.opentelemetry.contrib` **Name:** `opentelemetry-aws-resources` **Version:** `1.31.0-alpha` +**299** **Group:** `io.opentelemetry.contrib` **Name:** `opentelemetry-aws-resources` **Version:** `1.32.0-alpha` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java-contrib](https://github.com/open-telemetry/opentelemetry-java-contrib) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**311** **Group:** `io.opentelemetry.contrib` **Name:** `opentelemetry-aws-xray` **Version:** `1.31.0` +**300** **Group:** `io.opentelemetry.contrib` **Name:** `opentelemetry-aws-xray` **Version:** `1.32.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java-contrib](https://github.com/open-telemetry/opentelemetry-java-contrib) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**312** **Group:** `io.opentelemetry.proto` **Name:** `opentelemetry-proto` **Version:** `1.0.0-alpha` +**301** **Group:** `io.opentelemetry.proto` **Name:** `opentelemetry-proto` **Version:** `1.0.0-alpha` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-proto-java](https://github.com/open-telemetry/opentelemetry-proto-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**313** **Group:** `io.opentelemetry.semconv` **Name:** `opentelemetry-semconv` **Version:** `1.21.0-alpha` +**302** **Group:** `io.opentelemetry.semconv` **Name:** `opentelemetry-semconv` **Version:** `1.21.0-alpha` > - **POM Project URL**: [https://github.com/open-telemetry/semantic-conventions-java](https://github.com/open-telemetry/semantic-conventions-java) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**314** **Group:** `org.apache.kafka` **Name:** `kafka-clients` **Version:** `3.6.0` +**303** **Group:** `org.apache.kafka` **Name:** `kafka-clients` **Version:** `3.6.0` > - **POM Project URL**: [https://kafka.apache.org](https://kafka.apache.org) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [kafka-clients-3.6.0.jar/LICENSE](kafka-clients-3.6.0.jar/LICENSE) - [kafka-clients-3.6.0.jar/NOTICE](kafka-clients-3.6.0.jar/NOTICE) - [kafka-clients-3.6.0.jar/common/message/README.md](kafka-clients-3.6.0.jar/common/message/README.md) -**315** **Group:** `org.jetbrains.kotlin` **Name:** `kotlin-stdlib` **Version:** `1.8.22` +**304** **Group:** `org.jetbrains.kotlin` **Name:** `kotlin-stdlib` **Version:** `1.8.22` > - **POM Project URL**: [https://kotlinlang.org/](https://kotlinlang.org/) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**316** **Group:** `org.jetbrains.kotlin` **Name:** `kotlin-stdlib` **Version:** `1.9.10` +**305** **Group:** `org.jetbrains.kotlin` **Name:** `kotlin-stdlib` **Version:** `1.9.10` > - **POM Project URL**: [https://kotlinlang.org/](https://kotlinlang.org/) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**317** **Group:** `org.jetbrains.kotlin` **Name:** `kotlin-stdlib-common` **Version:** `1.8.22` +**306** **Group:** `org.jetbrains.kotlin` **Name:** `kotlin-stdlib-common` **Version:** `1.8.22` > - **POM Project URL**: [https://kotlinlang.org/](https://kotlinlang.org/) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**318** **Group:** `org.jetbrains.kotlin` **Name:** `kotlin-stdlib-common` **Version:** `1.9.10` +**307** **Group:** `org.jetbrains.kotlin` **Name:** `kotlin-stdlib-common` **Version:** `1.9.10` > - **POM Project URL**: [https://kotlinlang.org/](https://kotlinlang.org/) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**319** **Group:** `org.jetbrains.kotlin` **Name:** `kotlin-stdlib-jdk7` **Version:** `1.8.22` +**308** **Group:** `org.jetbrains.kotlin` **Name:** `kotlin-stdlib-jdk7` **Version:** `1.8.22` > - **POM Project URL**: [https://kotlinlang.org/](https://kotlinlang.org/) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**320** **Group:** `org.jetbrains.kotlin` **Name:** `kotlin-stdlib-jdk7` **Version:** `1.9.10` +**309** **Group:** `org.jetbrains.kotlin` **Name:** `kotlin-stdlib-jdk7` **Version:** `1.9.10` > - **POM Project URL**: [https://kotlinlang.org/](https://kotlinlang.org/) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**321** **Group:** `org.jetbrains.kotlin` **Name:** `kotlin-stdlib-jdk8` **Version:** `1.8.22` +**310** **Group:** `org.jetbrains.kotlin` **Name:** `kotlin-stdlib-jdk8` **Version:** `1.8.22` > - **POM Project URL**: [https://kotlinlang.org/](https://kotlinlang.org/) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**322** **Group:** `org.jetbrains.kotlin` **Name:** `kotlin-stdlib-jdk8` **Version:** `1.9.10` +**311** **Group:** `org.jetbrains.kotlin` **Name:** `kotlin-stdlib-jdk8` **Version:** `1.9.10` > - **POM Project URL**: [https://kotlinlang.org/](https://kotlinlang.org/) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**323** **Group:** `software.amazon.ion` **Name:** `ion-java` **Version:** `1.0.2` +**312** **Group:** `software.amazon.ion` **Name:** `ion-java` **Version:** `1.0.2` > - **POM Project URL**: [https://github.com/amznlabs/ion-java/](https://github.com/amznlabs/ion-java/) > - **POM License**: The Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) ## The Apache Software License, Version 2.0 -**324** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-annotations` **Version:** `2.13.5` +**313** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-annotations` **Version:** `2.13.5` > - **Project URL**: [http://github.com/FasterXML/jackson](http://github.com/FasterXML/jackson) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [jackson-annotations-2.13.5.jar/META-INF/LICENSE](jackson-annotations-2.13.5.jar/META-INF/LICENSE) -**325** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-annotations` **Version:** `2.15.3` +**314** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-annotations` **Version:** `2.16.0` > - **Project URL**: [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) > - **POM License**: The Apache Software License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [jackson-annotations-2.15.3.jar/META-INF/LICENSE](jackson-annotations-2.15.3.jar/META-INF/LICENSE) - - [jackson-annotations-2.15.3.jar/META-INF/NOTICE](jackson-annotations-2.15.3.jar/META-INF/NOTICE) +> - **Embedded license files**: [jackson-annotations-2.16.0.jar/META-INF/LICENSE](jackson-annotations-2.16.0.jar/META-INF/LICENSE) + - [jackson-annotations-2.16.0.jar/META-INF/NOTICE](jackson-annotations-2.16.0.jar/META-INF/NOTICE) -**326** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-core` **Version:** `2.13.5` +**315** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-core` **Version:** `2.13.5` > - **Project URL**: [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [jackson-core-2.13.5.jar/META-INF/LICENSE](jackson-core-2.13.5.jar/META-INF/LICENSE) - [jackson-core-2.13.5.jar/META-INF/NOTICE](jackson-core-2.13.5.jar/META-INF/NOTICE) -**327** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-core` **Version:** `2.15.3` +**316** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-core` **Version:** `2.16.0` > - **Project URL**: [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [jackson-core-2.15.3.jar/META-INF/LICENSE](jackson-core-2.15.3.jar/META-INF/LICENSE) - - [jackson-core-2.15.3.jar/META-INF/NOTICE](jackson-core-2.15.3.jar/META-INF/NOTICE) +> - **Embedded license files**: [jackson-core-2.16.0.jar/META-INF/LICENSE](jackson-core-2.16.0.jar/META-INF/LICENSE) + - [jackson-core-2.16.0.jar/META-INF/NOTICE](jackson-core-2.16.0.jar/META-INF/NOTICE) -**328** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-databind` **Version:** `2.13.5` +**317** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-databind` **Version:** `2.13.5` > - **Project URL**: [http://github.com/FasterXML/jackson](http://github.com/FasterXML/jackson) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [jackson-databind-2.13.5.jar/META-INF/LICENSE](jackson-databind-2.13.5.jar/META-INF/LICENSE) - [jackson-databind-2.13.5.jar/META-INF/NOTICE](jackson-databind-2.13.5.jar/META-INF/NOTICE) -**329** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-databind` **Version:** `2.15.3` +**318** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-databind` **Version:** `2.16.0` > - **Project URL**: [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [jackson-databind-2.15.3.jar/META-INF/LICENSE](jackson-databind-2.15.3.jar/META-INF/LICENSE) - - [jackson-databind-2.15.3.jar/META-INF/NOTICE](jackson-databind-2.15.3.jar/META-INF/NOTICE) +> - **Embedded license files**: [jackson-databind-2.16.0.jar/META-INF/LICENSE](jackson-databind-2.16.0.jar/META-INF/LICENSE) + - [jackson-databind-2.16.0.jar/META-INF/NOTICE](jackson-databind-2.16.0.jar/META-INF/NOTICE) -**330** **Group:** `com.fasterxml.jackson.dataformat` **Name:** `jackson-dataformat-cbor` **Version:** `2.15.3` +**319** **Group:** `com.fasterxml.jackson.dataformat` **Name:** `jackson-dataformat-cbor` **Version:** `2.16.0` > - **Project URL**: [https://github.com/FasterXML/jackson-dataformats-binary](https://github.com/FasterXML/jackson-dataformats-binary) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [jackson-dataformat-cbor-2.15.3.jar/META-INF/LICENSE](jackson-dataformat-cbor-2.15.3.jar/META-INF/LICENSE) - - [jackson-dataformat-cbor-2.15.3.jar/META-INF/NOTICE](jackson-dataformat-cbor-2.15.3.jar/META-INF/NOTICE) +> - **Embedded license files**: [jackson-dataformat-cbor-2.16.0.jar/META-INF/LICENSE](jackson-dataformat-cbor-2.16.0.jar/META-INF/LICENSE) + - [jackson-dataformat-cbor-2.16.0.jar/META-INF/NOTICE](jackson-dataformat-cbor-2.16.0.jar/META-INF/NOTICE) -**331** **Group:** `com.fasterxml.jackson.dataformat` **Name:** `jackson-dataformat-yaml` **Version:** `2.15.3` +**320** **Group:** `com.fasterxml.jackson.dataformat` **Name:** `jackson-dataformat-yaml` **Version:** `2.16.0` > - **Project URL**: [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [jackson-dataformat-yaml-2.15.3.jar/META-INF/LICENSE](jackson-dataformat-yaml-2.15.3.jar/META-INF/LICENSE) - - [jackson-dataformat-yaml-2.15.3.jar/META-INF/NOTICE](jackson-dataformat-yaml-2.15.3.jar/META-INF/NOTICE) +> - **Embedded license files**: [jackson-dataformat-yaml-2.16.0.jar/META-INF/LICENSE](jackson-dataformat-yaml-2.16.0.jar/META-INF/LICENSE) + - [jackson-dataformat-yaml-2.16.0.jar/META-INF/NOTICE](jackson-dataformat-yaml-2.16.0.jar/META-INF/NOTICE) -**332** **Group:** `com.fasterxml.jackson.datatype` **Name:** `jackson-datatype-jdk8` **Version:** `2.13.5` +**321** **Group:** `com.fasterxml.jackson.datatype` **Name:** `jackson-datatype-jdk8` **Version:** `2.13.5` > - **Manifest Project URL**: [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**333** **Group:** `com.fasterxml.jackson.datatype` **Name:** `jackson-datatype-jdk8` **Version:** `2.15.3` +**322** **Group:** `com.fasterxml.jackson.datatype` **Name:** `jackson-datatype-jdk8` **Version:** `2.16.0` > - **Manifest Project URL**: [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [jackson-datatype-jdk8-2.15.3.jar/META-INF/LICENSE](jackson-datatype-jdk8-2.15.3.jar/META-INF/LICENSE) - - [jackson-datatype-jdk8-2.15.3.jar/META-INF/NOTICE](jackson-datatype-jdk8-2.15.3.jar/META-INF/NOTICE) +> - **Embedded license files**: [jackson-datatype-jdk8-2.16.0.jar/META-INF/LICENSE](jackson-datatype-jdk8-2.16.0.jar/META-INF/LICENSE) + - [jackson-datatype-jdk8-2.16.0.jar/META-INF/NOTICE](jackson-datatype-jdk8-2.16.0.jar/META-INF/NOTICE) -**334** **Group:** `com.fasterxml.jackson.datatype` **Name:** `jackson-datatype-jsr310` **Version:** `2.13.5` +**323** **Group:** `com.fasterxml.jackson.datatype` **Name:** `jackson-datatype-jsr310` **Version:** `2.13.5` > - **Manifest Project URL**: [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [jackson-datatype-jsr310-2.13.5.jar/META-INF/LICENSE](jackson-datatype-jsr310-2.13.5.jar/META-INF/LICENSE) -**335** **Group:** `com.fasterxml.jackson.datatype` **Name:** `jackson-datatype-jsr310` **Version:** `2.15.3` +**324** **Group:** `com.fasterxml.jackson.datatype` **Name:** `jackson-datatype-jsr310` **Version:** `2.16.0` > - **Manifest Project URL**: [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [jackson-datatype-jsr310-2.15.3.jar/META-INF/LICENSE](jackson-datatype-jsr310-2.15.3.jar/META-INF/LICENSE) - - [jackson-datatype-jsr310-2.15.3.jar/META-INF/NOTICE](jackson-datatype-jsr310-2.15.3.jar/META-INF/NOTICE) +> - **Embedded license files**: [jackson-datatype-jsr310-2.16.0.jar/META-INF/LICENSE](jackson-datatype-jsr310-2.16.0.jar/META-INF/LICENSE) + - [jackson-datatype-jsr310-2.16.0.jar/META-INF/NOTICE](jackson-datatype-jsr310-2.16.0.jar/META-INF/NOTICE) -**336** **Group:** `com.fasterxml.jackson.module` **Name:** `jackson-module-parameter-names` **Version:** `2.13.5` +**325** **Group:** `com.fasterxml.jackson.module` **Name:** `jackson-module-parameter-names` **Version:** `2.13.5` > - **Manifest Project URL**: [https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names](https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**337** **Group:** `com.fasterxml.jackson.module` **Name:** `jackson-module-parameter-names` **Version:** `2.15.3` +**326** **Group:** `com.fasterxml.jackson.module` **Name:** `jackson-module-parameter-names` **Version:** `2.16.0` > - **Manifest Project URL**: [https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names](https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [jackson-module-parameter-names-2.15.3.jar/META-INF/LICENSE](jackson-module-parameter-names-2.15.3.jar/META-INF/LICENSE) - - [jackson-module-parameter-names-2.15.3.jar/META-INF/NOTICE](jackson-module-parameter-names-2.15.3.jar/META-INF/NOTICE) +> - **Embedded license files**: [jackson-module-parameter-names-2.16.0.jar/META-INF/LICENSE](jackson-module-parameter-names-2.16.0.jar/META-INF/LICENSE) + - [jackson-module-parameter-names-2.16.0.jar/META-INF/NOTICE](jackson-module-parameter-names-2.16.0.jar/META-INF/NOTICE) -**338** **Group:** `com.github.spullara.mustache.java` **Name:** `compiler` **Version:** `0.9.10` +**327** **Group:** `com.github.spullara.mustache.java` **Name:** `compiler` **Version:** `0.9.10` > - **POM Project URL**: [http://github.com/spullara/mustache.java](http://github.com/spullara/mustache.java) > - **POM License**: Apache License 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**339** **Group:** `com.github.wnameless.json` **Name:** `json-base` **Version:** `1.0.0` +**328** **Group:** `com.github.wnameless.json` **Name:** `json-base` **Version:** `1.0.0` > - **POM Project URL**: [https://github.com/wnameless/json-base](https://github.com/wnameless/json-base) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**340** **Group:** `com.github.wnameless.json` **Name:** `json-flattener` **Version:** `0.7.1` +**329** **Group:** `com.github.wnameless.json` **Name:** `json-flattener` **Version:** `0.7.1` > - **POM Project URL**: [https://github.com/wnameless/json-flattener](https://github.com/wnameless/json-flattener) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**341** **Group:** `com.google.code.findbugs` **Name:** `jsr305` **Version:** `3.0.2` +**330** **Group:** `com.google.code.findbugs` **Name:** `jsr305` **Version:** `3.0.2` > - **POM Project URL**: [http://findbugs.sourceforge.net/](http://findbugs.sourceforge.net/) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**342** **Group:** `com.google.guava` **Name:** `failureaccess` **Version:** `1.0.1` +**331** **Group:** `com.google.guava` **Name:** `failureaccess` **Version:** `1.0.1` > - **Manifest Project URL**: [https://github.com/google/guava/](https://github.com/google/guava/) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**343** **Group:** `com.google.guava` **Name:** `listenablefuture` **Version:** `9999.0-empty-to-avoid-conflict-with-guava` +**332** **Group:** `com.google.guava` **Name:** `listenablefuture` **Version:** `9999.0-empty-to-avoid-conflict-with-guava` > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**344** **Group:** `com.googlecode.libphonenumber` **Name:** `libphonenumber` **Version:** `5.3` +**333** **Group:** `com.googlecode.libphonenumber` **Name:** `libphonenumber` **Version:** `5.3` > - **POM Project URL**: [http://code.google.com/p/libphonenumber/](http://code.google.com/p/libphonenumber/) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**345** **Group:** `com.sparkjava` **Name:** `spark-core` **Version:** `2.9.4` +**334** **Group:** `com.sparkjava` **Name:** `spark-core` **Version:** `2.9.4` > - **POM Project URL**: [http://www.sparkjava.com](http://www.sparkjava.com) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**346** **Group:** `com.squareup.okhttp3` **Name:** `okhttp` **Version:** `4.12.0` +**335** **Group:** `com.squareup.okhttp3` **Name:** `okhttp` **Version:** `4.12.0` > - **POM Project URL**: [https://square.github.io/okhttp/](https://square.github.io/okhttp/) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [okhttp-4.12.0.jar/okhttp3/internal/publicsuffix/NOTICE](okhttp-4.12.0.jar/okhttp3/internal/publicsuffix/NOTICE) -**347** **Group:** `com.squareup.okio` **Name:** `okio-jvm` **Version:** `3.6.0` +**336** **Group:** `com.squareup.okio` **Name:** `okio-jvm` **Version:** `3.6.0` > - **POM Project URL**: [https://github.com/square/okio/](https://github.com/square/okio/) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**348** **Group:** `com.zaxxer` **Name:** `HikariCP` **Version:** `5.0.1` +**337** **Group:** `com.zaxxer` **Name:** `HikariCP` **Version:** `5.0.1` > - **Manifest Project URL**: [https://github.com/brettwooldridge](https://github.com/brettwooldridge) > - **POM Project URL**: [https://github.com/brettwooldridge/HikariCP](https://github.com/brettwooldridge/HikariCP) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**349** **Group:** `commons-logging` **Name:** `commons-logging` **Version:** `1.2` +**338** **Group:** `commons-logging` **Name:** `commons-logging` **Version:** `1.2` > - **Project URL**: [http://commons.apache.org/proper/commons-logging/](http://commons.apache.org/proper/commons-logging/) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [commons-logging-1.2.jar/META-INF/LICENSE.txt](commons-logging-1.2.jar/META-INF/LICENSE.txt) - [commons-logging-1.2.jar/META-INF/NOTICE.txt](commons-logging-1.2.jar/META-INF/NOTICE.txt) -**350** **Group:** `io.micrometer` **Name:** `micrometer-commons` **Version:** `1.10.8` +**339** **Group:** `io.micrometer` **Name:** `micrometer-commons` **Version:** `1.10.8` > - **POM Project URL**: [https://github.com/micrometer-metrics/micrometer](https://github.com/micrometer-metrics/micrometer) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [micrometer-commons-1.10.8.jar/META-INF/LICENSE](micrometer-commons-1.10.8.jar/META-INF/LICENSE) - [micrometer-commons-1.10.8.jar/META-INF/NOTICE](micrometer-commons-1.10.8.jar/META-INF/NOTICE) -**351** **Group:** `io.micrometer` **Name:** `micrometer-commons` **Version:** `1.11.3` +**340** **Group:** `io.micrometer` **Name:** `micrometer-commons` **Version:** `1.11.5` > - **POM Project URL**: [https://github.com/micrometer-metrics/micrometer](https://github.com/micrometer-metrics/micrometer) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [micrometer-commons-1.11.3.jar/META-INF/LICENSE](micrometer-commons-1.11.3.jar/META-INF/LICENSE) - - [micrometer-commons-1.11.3.jar/META-INF/NOTICE](micrometer-commons-1.11.3.jar/META-INF/NOTICE) +> - **Embedded license files**: [micrometer-commons-1.11.5.jar/META-INF/LICENSE](micrometer-commons-1.11.5.jar/META-INF/LICENSE) + - [micrometer-commons-1.11.5.jar/META-INF/NOTICE](micrometer-commons-1.11.5.jar/META-INF/NOTICE) -**352** **Group:** `io.micrometer` **Name:** `micrometer-core` **Version:** `1.11.3` +**341** **Group:** `io.micrometer` **Name:** `micrometer-core` **Version:** `1.11.5` > - **POM Project URL**: [https://github.com/micrometer-metrics/micrometer](https://github.com/micrometer-metrics/micrometer) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [micrometer-core-1.11.3.jar/META-INF/LICENSE](micrometer-core-1.11.3.jar/META-INF/LICENSE) - - [micrometer-core-1.11.3.jar/META-INF/NOTICE](micrometer-core-1.11.3.jar/META-INF/NOTICE) +> - **Embedded license files**: [micrometer-core-1.11.5.jar/META-INF/LICENSE](micrometer-core-1.11.5.jar/META-INF/LICENSE) + - [micrometer-core-1.11.5.jar/META-INF/NOTICE](micrometer-core-1.11.5.jar/META-INF/NOTICE) -**353** **Group:** `io.micrometer` **Name:** `micrometer-observation` **Version:** `1.10.8` +**342** **Group:** `io.micrometer` **Name:** `micrometer-observation` **Version:** `1.10.8` > - **POM Project URL**: [https://github.com/micrometer-metrics/micrometer](https://github.com/micrometer-metrics/micrometer) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [micrometer-observation-1.10.8.jar/META-INF/LICENSE](micrometer-observation-1.10.8.jar/META-INF/LICENSE) - [micrometer-observation-1.10.8.jar/META-INF/NOTICE](micrometer-observation-1.10.8.jar/META-INF/NOTICE) -**354** **Group:** `io.micrometer` **Name:** `micrometer-observation` **Version:** `1.11.3` +**343** **Group:** `io.micrometer` **Name:** `micrometer-observation` **Version:** `1.11.5` > - **POM Project URL**: [https://github.com/micrometer-metrics/micrometer](https://github.com/micrometer-metrics/micrometer) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -> - **Embedded license files**: [micrometer-observation-1.11.3.jar/META-INF/LICENSE](micrometer-observation-1.11.3.jar/META-INF/LICENSE) - - [micrometer-observation-1.11.3.jar/META-INF/NOTICE](micrometer-observation-1.11.3.jar/META-INF/NOTICE) +> - **Embedded license files**: [micrometer-observation-1.11.5.jar/META-INF/LICENSE](micrometer-observation-1.11.5.jar/META-INF/LICENSE) + - [micrometer-observation-1.11.5.jar/META-INF/NOTICE](micrometer-observation-1.11.5.jar/META-INF/NOTICE) -**355** **Group:** `io.netty` **Name:** `netty-tcnative-boringssl-static` **Version:** `2.0.61.Final` +**344** **Group:** `io.netty` **Name:** `netty-tcnative-boringssl-static` **Version:** `2.0.61.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM Project URL**: [https://github.com/netty/netty-tcnative/netty-tcnative-boringssl-static/](https://github.com/netty/netty-tcnative/netty-tcnative-boringssl-static/) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) > - **Embedded license files**: [netty-tcnative-boringssl-static-2.0.61.Final-osx-aarch_64.jar/META-INF/LICENSE.txt](netty-tcnative-boringssl-static-2.0.61.Final-osx-aarch_64.jar/META-INF/LICENSE.txt) - [netty-tcnative-boringssl-static-2.0.61.Final-osx-aarch_64.jar/META-INF/NOTICE.txt](netty-tcnative-boringssl-static-2.0.61.Final-osx-aarch_64.jar/META-INF/NOTICE.txt) -**356** **Group:** `io.netty` **Name:** `netty-tcnative-classes` **Version:** `2.0.61.Final` +**345** **Group:** `io.netty` **Name:** `netty-tcnative-classes` **Version:** `2.0.61.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**357** **Group:** `org.codehaus.mojo` **Name:** `animal-sniffer-annotations` **Version:** `1.23` +**346** **Group:** `org.codehaus.mojo` **Name:** `animal-sniffer-annotations` **Version:** `1.23` > - **POM License**: MIT license - [https://spdx.org/licenses/MIT.txt](https://spdx.org/licenses/MIT.txt) > - **POM License**: The Apache Software License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0.txt](https://www.apache.org/licenses/LICENSE-2.0.txt) -**358** **Group:** `org.jetbrains` **Name:** `annotations` **Version:** `13.0` +**347** **Group:** `org.jetbrains` **Name:** `annotations` **Version:** `13.0` > - **POM Project URL**: [http://www.jetbrains.org](http://www.jetbrains.org) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) -**359** **Group:** `org.lz4` **Name:** `lz4-java` **Version:** `1.8.0` +**348** **Group:** `org.lz4` **Name:** `lz4-java` **Version:** `1.8.0` > - **POM Project URL**: [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) > - **POM License**: The Apache Software License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) ## The Apache Software License, version 2.0 -**360** **Group:** `info.picocli` **Name:** `picocli` **Version:** `4.7.3` +**349** **Group:** `info.picocli` **Name:** `picocli` **Version:** `4.7.3` > - **POM Project URL**: [https://picocli.info](https://picocli.info) > - **POM License**: The Apache Software License, version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0.txt](http://www.apache.org/licenses/LICENSE-2.0.txt) ## The MIT License -**361** **Group:** `org.checkerframework` **Name:** `checker-qual` **Version:** `3.37.0` +**350** **Group:** `org.checkerframework` **Name:** `checker-qual` **Version:** `3.37.0` > - **Manifest License**: MIT (Not Packaged) > - **POM Project URL**: [https://checkerframework.org/](https://checkerframework.org/) > - **POM License**: The MIT License - [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) @@ -2037,17 +1992,17 @@ _2023-11-14 10:24:46 PST_ ## Unknown -**362** **Group:** `com.github.wnameless` **Name:** `json-flattener` **Version:** `0.7.1` +**351** **Group:** `com.github.wnameless` **Name:** `json-flattener` **Version:** `0.7.1` -**363** **Group:** `com.squareup.okio` **Name:** `okio` **Version:** `3.6.0` +**352** **Group:** `com.squareup.okio` **Name:** `okio` **Version:** `3.6.0` -**364** **Group:** `io.opentelemetry` **Name:** `opentelemetry-bom` **Version:** `1.31.0` +**353** **Group:** `io.opentelemetry` **Name:** `opentelemetry-bom` **Version:** `1.32.0` -**365** **Group:** `io.opentelemetry` **Name:** `opentelemetry-bom-alpha` **Version:** `1.31.0-alpha` +**354** **Group:** `io.opentelemetry` **Name:** `opentelemetry-bom-alpha` **Version:** `1.32.0-alpha` -**366** **Group:** `io.opentelemetry.instrumentation` **Name:** `opentelemetry-instrumentation-bom` **Version:** `1.31.0` +**355** **Group:** `io.opentelemetry.instrumentation` **Name:** `opentelemetry-instrumentation-bom` **Version:** `1.32.0` -**367** **Group:** `net.jcip` **Name:** `jcip-annotations` **Version:** `1.0` +**356** **Group:** `net.jcip` **Name:** `jcip-annotations` **Version:** `1.0` > - **POM Project URL**: [http://jcip.net/](http://jcip.net/) diff --git a/licenses/log4j-api-2.21.1.jar/META-INF/LICENSE b/licenses/log4j-api-2.22.0.jar/META-INF/LICENSE similarity index 100% rename from licenses/log4j-api-2.21.1.jar/META-INF/LICENSE rename to licenses/log4j-api-2.22.0.jar/META-INF/LICENSE diff --git a/licenses/log4j-api-2.21.1.jar/META-INF/NOTICE b/licenses/log4j-api-2.22.0.jar/META-INF/NOTICE similarity index 100% rename from licenses/log4j-api-2.21.1.jar/META-INF/NOTICE rename to licenses/log4j-api-2.22.0.jar/META-INF/NOTICE diff --git a/licenses/log4j-core-2.21.1.jar/META-INF/LICENSE b/licenses/log4j-core-2.22.0.jar/META-INF/LICENSE similarity index 100% rename from licenses/log4j-core-2.21.1.jar/META-INF/LICENSE rename to licenses/log4j-core-2.22.0.jar/META-INF/LICENSE diff --git a/licenses/log4j-core-2.21.1.jar/META-INF/NOTICE b/licenses/log4j-core-2.22.0.jar/META-INF/NOTICE similarity index 100% rename from licenses/log4j-core-2.21.1.jar/META-INF/NOTICE rename to licenses/log4j-core-2.22.0.jar/META-INF/NOTICE diff --git a/licenses/log4j-slf4j-impl-2.21.1.jar/META-INF/LICENSE b/licenses/log4j-slf4j-impl-2.22.0.jar/META-INF/LICENSE similarity index 100% rename from licenses/log4j-slf4j-impl-2.21.1.jar/META-INF/LICENSE rename to licenses/log4j-slf4j-impl-2.22.0.jar/META-INF/LICENSE diff --git a/licenses/log4j-slf4j-impl-2.21.1.jar/META-INF/NOTICE b/licenses/log4j-slf4j-impl-2.22.0.jar/META-INF/NOTICE similarity index 100% rename from licenses/log4j-slf4j-impl-2.21.1.jar/META-INF/NOTICE rename to licenses/log4j-slf4j-impl-2.22.0.jar/META-INF/NOTICE diff --git a/licenses/log4j-to-slf4j-2.21.1.jar/META-INF/LICENSE b/licenses/log4j-to-slf4j-2.22.0.jar/META-INF/LICENSE similarity index 100% rename from licenses/log4j-to-slf4j-2.21.1.jar/META-INF/LICENSE rename to licenses/log4j-to-slf4j-2.22.0.jar/META-INF/LICENSE diff --git a/licenses/log4j-to-slf4j-2.21.1.jar/META-INF/NOTICE b/licenses/log4j-to-slf4j-2.22.0.jar/META-INF/NOTICE similarity index 100% rename from licenses/log4j-to-slf4j-2.21.1.jar/META-INF/NOTICE rename to licenses/log4j-to-slf4j-2.22.0.jar/META-INF/NOTICE diff --git a/licenses/metrics-spi-2.21.7.jar/META-INF/LICENSE.txt b/licenses/metrics-spi-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/metrics-spi-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/metrics-spi-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/metrics-spi-2.21.7.jar/META-INF/NOTICE.txt b/licenses/metrics-spi-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/metrics-spi-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/metrics-spi-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/micrometer-commons-1.11.3.jar/META-INF/LICENSE b/licenses/micrometer-commons-1.11.5.jar/META-INF/LICENSE similarity index 100% rename from licenses/micrometer-commons-1.11.3.jar/META-INF/LICENSE rename to licenses/micrometer-commons-1.11.5.jar/META-INF/LICENSE diff --git a/licenses/micrometer-commons-1.11.3.jar/META-INF/NOTICE b/licenses/micrometer-commons-1.11.5.jar/META-INF/NOTICE similarity index 100% rename from licenses/micrometer-commons-1.11.3.jar/META-INF/NOTICE rename to licenses/micrometer-commons-1.11.5.jar/META-INF/NOTICE diff --git a/licenses/micrometer-core-1.11.3.jar/META-INF/LICENSE b/licenses/micrometer-core-1.11.5.jar/META-INF/LICENSE similarity index 100% rename from licenses/micrometer-core-1.11.3.jar/META-INF/LICENSE rename to licenses/micrometer-core-1.11.5.jar/META-INF/LICENSE diff --git a/licenses/micrometer-core-1.11.3.jar/META-INF/NOTICE b/licenses/micrometer-core-1.11.5.jar/META-INF/NOTICE similarity index 100% rename from licenses/micrometer-core-1.11.3.jar/META-INF/NOTICE rename to licenses/micrometer-core-1.11.5.jar/META-INF/NOTICE diff --git a/licenses/micrometer-observation-1.11.3.jar/META-INF/LICENSE b/licenses/micrometer-observation-1.11.5.jar/META-INF/LICENSE similarity index 100% rename from licenses/micrometer-observation-1.11.3.jar/META-INF/LICENSE rename to licenses/micrometer-observation-1.11.5.jar/META-INF/LICENSE diff --git a/licenses/micrometer-observation-1.11.3.jar/META-INF/NOTICE b/licenses/micrometer-observation-1.11.5.jar/META-INF/NOTICE similarity index 100% rename from licenses/micrometer-observation-1.11.3.jar/META-INF/NOTICE rename to licenses/micrometer-observation-1.11.5.jar/META-INF/NOTICE diff --git a/licenses/netty-nio-client-2.21.7.jar/META-INF/LICENSE.txt b/licenses/netty-nio-client-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/netty-nio-client-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/netty-nio-client-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/netty-nio-client-2.21.7.jar/META-INF/NOTICE.txt b/licenses/netty-nio-client-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/netty-nio-client-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/netty-nio-client-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/profiles-2.21.7.jar/META-INF/LICENSE.txt b/licenses/profiles-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/profiles-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/profiles-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/profiles-2.21.7.jar/META-INF/NOTICE.txt b/licenses/profiles-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/profiles-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/profiles-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/protocol-core-2.21.7.jar/META-INF/LICENSE.txt b/licenses/protocol-core-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/protocol-core-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/protocol-core-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/protocol-core-2.21.7.jar/META-INF/NOTICE.txt b/licenses/protocol-core-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/protocol-core-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/protocol-core-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/regions-2.21.7.jar/META-INF/LICENSE.txt b/licenses/regions-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/regions-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/regions-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/regions-2.21.7.jar/META-INF/NOTICE.txt b/licenses/regions-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/regions-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/regions-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/s3-2.21.7.jar/META-INF/LICENSE.txt b/licenses/s3-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/s3-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/s3-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/s3-2.21.7.jar/META-INF/NOTICE.txt b/licenses/s3-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/s3-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/s3-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/sdk-core-2.21.7.jar/META-INF/LICENSE.txt b/licenses/sdk-core-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/sdk-core-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/sdk-core-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/sdk-core-2.21.7.jar/META-INF/NOTICE.txt b/licenses/sdk-core-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/sdk-core-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/sdk-core-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/slf4j-api-2.0.7.jar/META-INF/LICENSE.txt b/licenses/slf4j-api-2.0.7.jar/META-INF/LICENSE.txt deleted file mode 100644 index e4079f54f6..0000000000 --- a/licenses/slf4j-api-2.0.7.jar/META-INF/LICENSE.txt +++ /dev/null @@ -1,24 +0,0 @@ -Copyright (c) 2004-2023 QOS.ch -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - - diff --git a/licenses/spring-context-5.3.29.jar/META-INF/license.txt b/licenses/spring-aop-5.3.30.jar/META-INF/license.txt similarity index 99% rename from licenses/spring-context-5.3.29.jar/META-INF/license.txt rename to licenses/spring-aop-5.3.30.jar/META-INF/license.txt index 9e541ed3dd..88536a68c4 100644 --- a/licenses/spring-context-5.3.29.jar/META-INF/license.txt +++ b/licenses/spring-aop-5.3.30.jar/META-INF/license.txt @@ -202,9 +202,9 @@ ======================================================================= -SPRING FRAMEWORK 5.3.29 SUBCOMPONENTS: +SPRING FRAMEWORK 5.3.30 SUBCOMPONENTS: -Spring Framework 5.3.29 includes a number of subcomponents +Spring Framework 5.3.30 includes a number of subcomponents with separate copyright notices and license terms. The product that includes this file does not necessarily use all the open source subcomponents referred to below. Your use of the source diff --git a/licenses/spring-beans-5.3.29.jar/META-INF/notice.txt b/licenses/spring-aop-5.3.30.jar/META-INF/notice.txt similarity index 94% rename from licenses/spring-beans-5.3.29.jar/META-INF/notice.txt rename to licenses/spring-aop-5.3.30.jar/META-INF/notice.txt index 18789551bd..f549ed7d09 100644 --- a/licenses/spring-beans-5.3.29.jar/META-INF/notice.txt +++ b/licenses/spring-aop-5.3.30.jar/META-INF/notice.txt @@ -1,4 +1,4 @@ -Spring Framework 5.3.29 +Spring Framework 5.3.30 Copyright (c) 2002-2023 Pivotal, Inc. This product is licensed to you under the Apache License, Version 2.0 diff --git a/licenses/spring-aop-5.3.29.jar/META-INF/license.txt b/licenses/spring-beans-5.3.30.jar/META-INF/license.txt similarity index 99% rename from licenses/spring-aop-5.3.29.jar/META-INF/license.txt rename to licenses/spring-beans-5.3.30.jar/META-INF/license.txt index 9e541ed3dd..88536a68c4 100644 --- a/licenses/spring-aop-5.3.29.jar/META-INF/license.txt +++ b/licenses/spring-beans-5.3.30.jar/META-INF/license.txt @@ -202,9 +202,9 @@ ======================================================================= -SPRING FRAMEWORK 5.3.29 SUBCOMPONENTS: +SPRING FRAMEWORK 5.3.30 SUBCOMPONENTS: -Spring Framework 5.3.29 includes a number of subcomponents +Spring Framework 5.3.30 includes a number of subcomponents with separate copyright notices and license terms. The product that includes this file does not necessarily use all the open source subcomponents referred to below. Your use of the source diff --git a/licenses/spring-context-5.3.29.jar/META-INF/notice.txt b/licenses/spring-beans-5.3.30.jar/META-INF/notice.txt similarity index 94% rename from licenses/spring-context-5.3.29.jar/META-INF/notice.txt rename to licenses/spring-beans-5.3.30.jar/META-INF/notice.txt index 18789551bd..f549ed7d09 100644 --- a/licenses/spring-context-5.3.29.jar/META-INF/notice.txt +++ b/licenses/spring-beans-5.3.30.jar/META-INF/notice.txt @@ -1,4 +1,4 @@ -Spring Framework 5.3.29 +Spring Framework 5.3.30 Copyright (c) 2002-2023 Pivotal, Inc. This product is licensed to you under the Apache License, Version 2.0 diff --git a/licenses/spring-boot-2.7.15.jar/META-INF/LICENSE.txt b/licenses/spring-boot-2.7.17.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/spring-boot-2.7.15.jar/META-INF/LICENSE.txt rename to licenses/spring-boot-2.7.17.jar/META-INF/LICENSE.txt diff --git a/licenses/spring-boot-2.7.15.jar/META-INF/NOTICE.txt b/licenses/spring-boot-2.7.17.jar/META-INF/NOTICE.txt similarity index 90% rename from licenses/spring-boot-2.7.15.jar/META-INF/NOTICE.txt rename to licenses/spring-boot-2.7.17.jar/META-INF/NOTICE.txt index a4f7158078..7a2e54a371 100644 --- a/licenses/spring-boot-2.7.15.jar/META-INF/NOTICE.txt +++ b/licenses/spring-boot-2.7.17.jar/META-INF/NOTICE.txt @@ -1,4 +1,4 @@ -Spring Boot 2.7.15 +Spring Boot 2.7.17 Copyright (c) 2012-2023 VMware, Inc. This product is licensed to you under the Apache License, Version 2.0 diff --git a/licenses/spring-boot-autoconfigure-2.7.15.jar/META-INF/LICENSE.txt b/licenses/spring-boot-autoconfigure-2.7.17.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/spring-boot-autoconfigure-2.7.15.jar/META-INF/LICENSE.txt rename to licenses/spring-boot-autoconfigure-2.7.17.jar/META-INF/LICENSE.txt diff --git a/licenses/spring-boot-autoconfigure-2.7.15.jar/META-INF/NOTICE.txt b/licenses/spring-boot-autoconfigure-2.7.17.jar/META-INF/NOTICE.txt similarity index 90% rename from licenses/spring-boot-autoconfigure-2.7.15.jar/META-INF/NOTICE.txt rename to licenses/spring-boot-autoconfigure-2.7.17.jar/META-INF/NOTICE.txt index a4f7158078..7a2e54a371 100644 --- a/licenses/spring-boot-autoconfigure-2.7.15.jar/META-INF/NOTICE.txt +++ b/licenses/spring-boot-autoconfigure-2.7.17.jar/META-INF/NOTICE.txt @@ -1,4 +1,4 @@ -Spring Boot 2.7.15 +Spring Boot 2.7.17 Copyright (c) 2012-2023 VMware, Inc. This product is licensed to you under the Apache License, Version 2.0 diff --git a/licenses/spring-boot-starter-2.7.15.jar/META-INF/LICENSE.txt b/licenses/spring-boot-starter-2.7.17.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/spring-boot-starter-2.7.15.jar/META-INF/LICENSE.txt rename to licenses/spring-boot-starter-2.7.17.jar/META-INF/LICENSE.txt diff --git a/licenses/spring-boot-starter-2.7.15.jar/META-INF/NOTICE.txt b/licenses/spring-boot-starter-2.7.17.jar/META-INF/NOTICE.txt similarity index 90% rename from licenses/spring-boot-starter-2.7.15.jar/META-INF/NOTICE.txt rename to licenses/spring-boot-starter-2.7.17.jar/META-INF/NOTICE.txt index a4f7158078..7a2e54a371 100644 --- a/licenses/spring-boot-starter-2.7.15.jar/META-INF/NOTICE.txt +++ b/licenses/spring-boot-starter-2.7.17.jar/META-INF/NOTICE.txt @@ -1,4 +1,4 @@ -Spring Boot 2.7.15 +Spring Boot 2.7.17 Copyright (c) 2012-2023 VMware, Inc. This product is licensed to you under the Apache License, Version 2.0 diff --git a/licenses/spring-boot-starter-json-2.7.15.jar/META-INF/LICENSE.txt b/licenses/spring-boot-starter-json-2.7.17.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/spring-boot-starter-json-2.7.15.jar/META-INF/LICENSE.txt rename to licenses/spring-boot-starter-json-2.7.17.jar/META-INF/LICENSE.txt diff --git a/licenses/spring-boot-starter-json-2.7.15.jar/META-INF/NOTICE.txt b/licenses/spring-boot-starter-json-2.7.17.jar/META-INF/NOTICE.txt similarity index 90% rename from licenses/spring-boot-starter-json-2.7.15.jar/META-INF/NOTICE.txt rename to licenses/spring-boot-starter-json-2.7.17.jar/META-INF/NOTICE.txt index a4f7158078..7a2e54a371 100644 --- a/licenses/spring-boot-starter-json-2.7.15.jar/META-INF/NOTICE.txt +++ b/licenses/spring-boot-starter-json-2.7.17.jar/META-INF/NOTICE.txt @@ -1,4 +1,4 @@ -Spring Boot 2.7.15 +Spring Boot 2.7.17 Copyright (c) 2012-2023 VMware, Inc. This product is licensed to you under the Apache License, Version 2.0 diff --git a/licenses/spring-boot-starter-logging-2.7.15.jar/META-INF/NOTICE.txt b/licenses/spring-boot-starter-logging-2.7.15.jar/META-INF/NOTICE.txt deleted file mode 100644 index a4f7158078..0000000000 --- a/licenses/spring-boot-starter-logging-2.7.15.jar/META-INF/NOTICE.txt +++ /dev/null @@ -1,6 +0,0 @@ -Spring Boot 2.7.15 -Copyright (c) 2012-2023 VMware, Inc. - -This product is licensed to you under the Apache License, Version 2.0 -(the "License"). You may not use this product except in compliance with -the License. \ No newline at end of file diff --git a/licenses/spring-boot-starter-logging-2.7.15.jar/META-INF/LICENSE.txt b/licenses/spring-boot-starter-logging-2.7.17.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/spring-boot-starter-logging-2.7.15.jar/META-INF/LICENSE.txt rename to licenses/spring-boot-starter-logging-2.7.17.jar/META-INF/LICENSE.txt diff --git a/licenses/spring-boot-starter-logging-2.7.17.jar/META-INF/NOTICE.txt b/licenses/spring-boot-starter-logging-2.7.17.jar/META-INF/NOTICE.txt new file mode 100644 index 0000000000..7a2e54a371 --- /dev/null +++ b/licenses/spring-boot-starter-logging-2.7.17.jar/META-INF/NOTICE.txt @@ -0,0 +1,6 @@ +Spring Boot 2.7.17 +Copyright (c) 2012-2023 VMware, Inc. + +This product is licensed to you under the Apache License, Version 2.0 +(the "License"). You may not use this product except in compliance with +the License. \ No newline at end of file diff --git a/licenses/spring-boot-starter-tomcat-2.7.15.jar/META-INF/NOTICE.txt b/licenses/spring-boot-starter-tomcat-2.7.15.jar/META-INF/NOTICE.txt deleted file mode 100644 index a4f7158078..0000000000 --- a/licenses/spring-boot-starter-tomcat-2.7.15.jar/META-INF/NOTICE.txt +++ /dev/null @@ -1,6 +0,0 @@ -Spring Boot 2.7.15 -Copyright (c) 2012-2023 VMware, Inc. - -This product is licensed to you under the Apache License, Version 2.0 -(the "License"). You may not use this product except in compliance with -the License. \ No newline at end of file diff --git a/licenses/spring-boot-starter-tomcat-2.7.15.jar/META-INF/LICENSE.txt b/licenses/spring-boot-starter-tomcat-2.7.17.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/spring-boot-starter-tomcat-2.7.15.jar/META-INF/LICENSE.txt rename to licenses/spring-boot-starter-tomcat-2.7.17.jar/META-INF/LICENSE.txt diff --git a/licenses/spring-boot-starter-tomcat-2.7.17.jar/META-INF/NOTICE.txt b/licenses/spring-boot-starter-tomcat-2.7.17.jar/META-INF/NOTICE.txt new file mode 100644 index 0000000000..7a2e54a371 --- /dev/null +++ b/licenses/spring-boot-starter-tomcat-2.7.17.jar/META-INF/NOTICE.txt @@ -0,0 +1,6 @@ +Spring Boot 2.7.17 +Copyright (c) 2012-2023 VMware, Inc. + +This product is licensed to you under the Apache License, Version 2.0 +(the "License"). You may not use this product except in compliance with +the License. \ No newline at end of file diff --git a/licenses/spring-boot-starter-web-2.7.15.jar/META-INF/NOTICE.txt b/licenses/spring-boot-starter-web-2.7.15.jar/META-INF/NOTICE.txt deleted file mode 100644 index a4f7158078..0000000000 --- a/licenses/spring-boot-starter-web-2.7.15.jar/META-INF/NOTICE.txt +++ /dev/null @@ -1,6 +0,0 @@ -Spring Boot 2.7.15 -Copyright (c) 2012-2023 VMware, Inc. - -This product is licensed to you under the Apache License, Version 2.0 -(the "License"). You may not use this product except in compliance with -the License. \ No newline at end of file diff --git a/licenses/spring-boot-starter-web-2.7.15.jar/META-INF/LICENSE.txt b/licenses/spring-boot-starter-web-2.7.17.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/spring-boot-starter-web-2.7.15.jar/META-INF/LICENSE.txt rename to licenses/spring-boot-starter-web-2.7.17.jar/META-INF/LICENSE.txt diff --git a/licenses/spring-boot-starter-web-2.7.17.jar/META-INF/NOTICE.txt b/licenses/spring-boot-starter-web-2.7.17.jar/META-INF/NOTICE.txt new file mode 100644 index 0000000000..7a2e54a371 --- /dev/null +++ b/licenses/spring-boot-starter-web-2.7.17.jar/META-INF/NOTICE.txt @@ -0,0 +1,6 @@ +Spring Boot 2.7.17 +Copyright (c) 2012-2023 VMware, Inc. + +This product is licensed to you under the Apache License, Version 2.0 +(the "License"). You may not use this product except in compliance with +the License. \ No newline at end of file diff --git a/licenses/spring-core-5.3.29.jar/META-INF/license.txt b/licenses/spring-context-5.3.30.jar/META-INF/license.txt similarity index 99% rename from licenses/spring-core-5.3.29.jar/META-INF/license.txt rename to licenses/spring-context-5.3.30.jar/META-INF/license.txt index 9e541ed3dd..88536a68c4 100644 --- a/licenses/spring-core-5.3.29.jar/META-INF/license.txt +++ b/licenses/spring-context-5.3.30.jar/META-INF/license.txt @@ -202,9 +202,9 @@ ======================================================================= -SPRING FRAMEWORK 5.3.29 SUBCOMPONENTS: +SPRING FRAMEWORK 5.3.30 SUBCOMPONENTS: -Spring Framework 5.3.29 includes a number of subcomponents +Spring Framework 5.3.30 includes a number of subcomponents with separate copyright notices and license terms. The product that includes this file does not necessarily use all the open source subcomponents referred to below. Your use of the source diff --git a/licenses/spring-aop-5.3.29.jar/META-INF/notice.txt b/licenses/spring-context-5.3.30.jar/META-INF/notice.txt similarity index 94% rename from licenses/spring-aop-5.3.29.jar/META-INF/notice.txt rename to licenses/spring-context-5.3.30.jar/META-INF/notice.txt index 18789551bd..f549ed7d09 100644 --- a/licenses/spring-aop-5.3.29.jar/META-INF/notice.txt +++ b/licenses/spring-context-5.3.30.jar/META-INF/notice.txt @@ -1,4 +1,4 @@ -Spring Framework 5.3.29 +Spring Framework 5.3.30 Copyright (c) 2002-2023 Pivotal, Inc. This product is licensed to you under the Apache License, Version 2.0 diff --git a/licenses/spring-beans-5.3.29.jar/META-INF/license.txt b/licenses/spring-core-5.3.30.jar/META-INF/license.txt similarity index 99% rename from licenses/spring-beans-5.3.29.jar/META-INF/license.txt rename to licenses/spring-core-5.3.30.jar/META-INF/license.txt index 9e541ed3dd..88536a68c4 100644 --- a/licenses/spring-beans-5.3.29.jar/META-INF/license.txt +++ b/licenses/spring-core-5.3.30.jar/META-INF/license.txt @@ -202,9 +202,9 @@ ======================================================================= -SPRING FRAMEWORK 5.3.29 SUBCOMPONENTS: +SPRING FRAMEWORK 5.3.30 SUBCOMPONENTS: -Spring Framework 5.3.29 includes a number of subcomponents +Spring Framework 5.3.30 includes a number of subcomponents with separate copyright notices and license terms. The product that includes this file does not necessarily use all the open source subcomponents referred to below. Your use of the source diff --git a/licenses/spring-core-5.3.29.jar/META-INF/notice.txt b/licenses/spring-core-5.3.30.jar/META-INF/notice.txt similarity index 94% rename from licenses/spring-core-5.3.29.jar/META-INF/notice.txt rename to licenses/spring-core-5.3.30.jar/META-INF/notice.txt index 18789551bd..f549ed7d09 100644 --- a/licenses/spring-core-5.3.29.jar/META-INF/notice.txt +++ b/licenses/spring-core-5.3.30.jar/META-INF/notice.txt @@ -1,4 +1,4 @@ -Spring Framework 5.3.29 +Spring Framework 5.3.30 Copyright (c) 2002-2023 Pivotal, Inc. This product is licensed to you under the Apache License, Version 2.0 diff --git a/licenses/spring-expression-5.3.29.jar/META-INF/license.txt b/licenses/spring-expression-5.3.29.jar/META-INF/license.txt deleted file mode 100644 index 9e541ed3dd..0000000000 --- a/licenses/spring-expression-5.3.29.jar/META-INF/license.txt +++ /dev/null @@ -1,289 +0,0 @@ - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -======================================================================= - -SPRING FRAMEWORK 5.3.29 SUBCOMPONENTS: - -Spring Framework 5.3.29 includes a number of subcomponents -with separate copyright notices and license terms. The product that -includes this file does not necessarily use all the open source -subcomponents referred to below. Your use of the source -code for these subcomponents is subject to the terms and -conditions of the following licenses. - - ->>> ASM 9.1 (org.ow2.asm:asm:9.1, org.ow2.asm:asm-commons:9.1): - -Copyright (c) 2000-2011 INRIA, France Telecom -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of the copyright holders nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -THE POSSIBILITY OF SUCH DAMAGE. - -Copyright (c) 1999-2009, OW2 Consortium - - ->>> CGLIB 3.3 (cglib:cglib:3.3): - -Per the LICENSE file in the CGLIB JAR distribution downloaded from -https://github.com/cglib/cglib/releases/download/RELEASE_3_3_0/cglib-3.3.0.jar, -CGLIB 3.3 is licensed under the Apache License, version 2.0, the text of which -is included above. - - ->>> Objenesis 3.2 (org.objenesis:objenesis:3.2): - -Per the LICENSE file in the Objenesis ZIP distribution downloaded from -http://objenesis.org/download.html, Objenesis 3.2 is licensed under the -Apache License, version 2.0, the text of which is included above. - -Per the NOTICE file in the Objenesis ZIP distribution downloaded from -http://objenesis.org/download.html and corresponding to section 4d of the -Apache License, Version 2.0, in this case for Objenesis: - -Objenesis -Copyright 2006-2019 Joe Walnes, Henri Tremblay, Leonardo Mesquita - - -=============================================================================== - -To the extent any open source components are licensed under the EPL and/or -other similar licenses that require the source code and/or modifications to -source code to be made available (as would be noted above), you may obtain a -copy of the source code corresponding to the binaries for such open source -components and modifications thereto, if any, (the "Source Files"), by -downloading the Source Files from https://spring.io/projects, Pivotal's website -at https://network.pivotal.io/open-source, or by sending a request, with your -name and address to: Pivotal Software, Inc., 875 Howard Street, 5th floor, San -Francisco, CA 94103, Attention: General Counsel. All such requests should -clearly specify: OPEN SOURCE FILES REQUEST, Attention General Counsel. Pivotal -can mail a copy of the Source Files to you on a CD or equivalent physical -medium. - -This offer to obtain a copy of the Source Files is valid for three years from -the date you acquired this Software product. Alternatively, the Source Files -may accompany the Software. diff --git a/licenses/spring-expression-5.3.29.jar/META-INF/notice.txt b/licenses/spring-expression-5.3.29.jar/META-INF/notice.txt deleted file mode 100644 index 18789551bd..0000000000 --- a/licenses/spring-expression-5.3.29.jar/META-INF/notice.txt +++ /dev/null @@ -1,11 +0,0 @@ -Spring Framework 5.3.29 -Copyright (c) 2002-2023 Pivotal, Inc. - -This product is licensed to you under the Apache License, Version 2.0 -(the "License"). You may not use this product except in compliance with -the License. - -This product may include a number of subcomponents with separate -copyright notices and license terms. Your use of the source code for -these subcomponents is subject to the terms and conditions of the -subcomponent's license, as noted in the license.txt file. diff --git a/licenses/spring-expression-5.3.30.jar/META-INF/license.txt b/licenses/spring-expression-5.3.30.jar/META-INF/license.txt new file mode 100644 index 0000000000..88536a68c4 --- /dev/null +++ b/licenses/spring-expression-5.3.30.jar/META-INF/license.txt @@ -0,0 +1,289 @@ + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +======================================================================= + +SPRING FRAMEWORK 5.3.30 SUBCOMPONENTS: + +Spring Framework 5.3.30 includes a number of subcomponents +with separate copyright notices and license terms. The product that +includes this file does not necessarily use all the open source +subcomponents referred to below. Your use of the source +code for these subcomponents is subject to the terms and +conditions of the following licenses. + + +>>> ASM 9.1 (org.ow2.asm:asm:9.1, org.ow2.asm:asm-commons:9.1): + +Copyright (c) 2000-2011 INRIA, France Telecom +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE. + +Copyright (c) 1999-2009, OW2 Consortium + + +>>> CGLIB 3.3 (cglib:cglib:3.3): + +Per the LICENSE file in the CGLIB JAR distribution downloaded from +https://github.com/cglib/cglib/releases/download/RELEASE_3_3_0/cglib-3.3.0.jar, +CGLIB 3.3 is licensed under the Apache License, version 2.0, the text of which +is included above. + + +>>> Objenesis 3.2 (org.objenesis:objenesis:3.2): + +Per the LICENSE file in the Objenesis ZIP distribution downloaded from +http://objenesis.org/download.html, Objenesis 3.2 is licensed under the +Apache License, version 2.0, the text of which is included above. + +Per the NOTICE file in the Objenesis ZIP distribution downloaded from +http://objenesis.org/download.html and corresponding to section 4d of the +Apache License, Version 2.0, in this case for Objenesis: + +Objenesis +Copyright 2006-2019 Joe Walnes, Henri Tremblay, Leonardo Mesquita + + +=============================================================================== + +To the extent any open source components are licensed under the EPL and/or +other similar licenses that require the source code and/or modifications to +source code to be made available (as would be noted above), you may obtain a +copy of the source code corresponding to the binaries for such open source +components and modifications thereto, if any, (the "Source Files"), by +downloading the Source Files from https://spring.io/projects, Pivotal's website +at https://network.pivotal.io/open-source, or by sending a request, with your +name and address to: Pivotal Software, Inc., 875 Howard Street, 5th floor, San +Francisco, CA 94103, Attention: General Counsel. All such requests should +clearly specify: OPEN SOURCE FILES REQUEST, Attention General Counsel. Pivotal +can mail a copy of the Source Files to you on a CD or equivalent physical +medium. + +This offer to obtain a copy of the Source Files is valid for three years from +the date you acquired this Software product. Alternatively, the Source Files +may accompany the Software. diff --git a/licenses/spring-expression-5.3.30.jar/META-INF/notice.txt b/licenses/spring-expression-5.3.30.jar/META-INF/notice.txt new file mode 100644 index 0000000000..f549ed7d09 --- /dev/null +++ b/licenses/spring-expression-5.3.30.jar/META-INF/notice.txt @@ -0,0 +1,11 @@ +Spring Framework 5.3.30 +Copyright (c) 2002-2023 Pivotal, Inc. + +This product is licensed to you under the Apache License, Version 2.0 +(the "License"). You may not use this product except in compliance with +the License. + +This product may include a number of subcomponents with separate +copyright notices and license terms. Your use of the source code for +these subcomponents is subject to the terms and conditions of the +subcomponent's license, as noted in the license.txt file. diff --git a/licenses/spring-jcl-5.3.29.jar/META-INF/license.txt b/licenses/spring-jcl-5.3.29.jar/META-INF/license.txt deleted file mode 100644 index 9e541ed3dd..0000000000 --- a/licenses/spring-jcl-5.3.29.jar/META-INF/license.txt +++ /dev/null @@ -1,289 +0,0 @@ - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -======================================================================= - -SPRING FRAMEWORK 5.3.29 SUBCOMPONENTS: - -Spring Framework 5.3.29 includes a number of subcomponents -with separate copyright notices and license terms. The product that -includes this file does not necessarily use all the open source -subcomponents referred to below. Your use of the source -code for these subcomponents is subject to the terms and -conditions of the following licenses. - - ->>> ASM 9.1 (org.ow2.asm:asm:9.1, org.ow2.asm:asm-commons:9.1): - -Copyright (c) 2000-2011 INRIA, France Telecom -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of the copyright holders nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -THE POSSIBILITY OF SUCH DAMAGE. - -Copyright (c) 1999-2009, OW2 Consortium - - ->>> CGLIB 3.3 (cglib:cglib:3.3): - -Per the LICENSE file in the CGLIB JAR distribution downloaded from -https://github.com/cglib/cglib/releases/download/RELEASE_3_3_0/cglib-3.3.0.jar, -CGLIB 3.3 is licensed under the Apache License, version 2.0, the text of which -is included above. - - ->>> Objenesis 3.2 (org.objenesis:objenesis:3.2): - -Per the LICENSE file in the Objenesis ZIP distribution downloaded from -http://objenesis.org/download.html, Objenesis 3.2 is licensed under the -Apache License, version 2.0, the text of which is included above. - -Per the NOTICE file in the Objenesis ZIP distribution downloaded from -http://objenesis.org/download.html and corresponding to section 4d of the -Apache License, Version 2.0, in this case for Objenesis: - -Objenesis -Copyright 2006-2019 Joe Walnes, Henri Tremblay, Leonardo Mesquita - - -=============================================================================== - -To the extent any open source components are licensed under the EPL and/or -other similar licenses that require the source code and/or modifications to -source code to be made available (as would be noted above), you may obtain a -copy of the source code corresponding to the binaries for such open source -components and modifications thereto, if any, (the "Source Files"), by -downloading the Source Files from https://spring.io/projects, Pivotal's website -at https://network.pivotal.io/open-source, or by sending a request, with your -name and address to: Pivotal Software, Inc., 875 Howard Street, 5th floor, San -Francisco, CA 94103, Attention: General Counsel. All such requests should -clearly specify: OPEN SOURCE FILES REQUEST, Attention General Counsel. Pivotal -can mail a copy of the Source Files to you on a CD or equivalent physical -medium. - -This offer to obtain a copy of the Source Files is valid for three years from -the date you acquired this Software product. Alternatively, the Source Files -may accompany the Software. diff --git a/licenses/spring-jcl-5.3.29.jar/META-INF/notice.txt b/licenses/spring-jcl-5.3.29.jar/META-INF/notice.txt deleted file mode 100644 index 18789551bd..0000000000 --- a/licenses/spring-jcl-5.3.29.jar/META-INF/notice.txt +++ /dev/null @@ -1,11 +0,0 @@ -Spring Framework 5.3.29 -Copyright (c) 2002-2023 Pivotal, Inc. - -This product is licensed to you under the Apache License, Version 2.0 -(the "License"). You may not use this product except in compliance with -the License. - -This product may include a number of subcomponents with separate -copyright notices and license terms. Your use of the source code for -these subcomponents is subject to the terms and conditions of the -subcomponent's license, as noted in the license.txt file. diff --git a/licenses/spring-jcl-5.3.30.jar/META-INF/license.txt b/licenses/spring-jcl-5.3.30.jar/META-INF/license.txt new file mode 100644 index 0000000000..88536a68c4 --- /dev/null +++ b/licenses/spring-jcl-5.3.30.jar/META-INF/license.txt @@ -0,0 +1,289 @@ + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +======================================================================= + +SPRING FRAMEWORK 5.3.30 SUBCOMPONENTS: + +Spring Framework 5.3.30 includes a number of subcomponents +with separate copyright notices and license terms. The product that +includes this file does not necessarily use all the open source +subcomponents referred to below. Your use of the source +code for these subcomponents is subject to the terms and +conditions of the following licenses. + + +>>> ASM 9.1 (org.ow2.asm:asm:9.1, org.ow2.asm:asm-commons:9.1): + +Copyright (c) 2000-2011 INRIA, France Telecom +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE. + +Copyright (c) 1999-2009, OW2 Consortium + + +>>> CGLIB 3.3 (cglib:cglib:3.3): + +Per the LICENSE file in the CGLIB JAR distribution downloaded from +https://github.com/cglib/cglib/releases/download/RELEASE_3_3_0/cglib-3.3.0.jar, +CGLIB 3.3 is licensed under the Apache License, version 2.0, the text of which +is included above. + + +>>> Objenesis 3.2 (org.objenesis:objenesis:3.2): + +Per the LICENSE file in the Objenesis ZIP distribution downloaded from +http://objenesis.org/download.html, Objenesis 3.2 is licensed under the +Apache License, version 2.0, the text of which is included above. + +Per the NOTICE file in the Objenesis ZIP distribution downloaded from +http://objenesis.org/download.html and corresponding to section 4d of the +Apache License, Version 2.0, in this case for Objenesis: + +Objenesis +Copyright 2006-2019 Joe Walnes, Henri Tremblay, Leonardo Mesquita + + +=============================================================================== + +To the extent any open source components are licensed under the EPL and/or +other similar licenses that require the source code and/or modifications to +source code to be made available (as would be noted above), you may obtain a +copy of the source code corresponding to the binaries for such open source +components and modifications thereto, if any, (the "Source Files"), by +downloading the Source Files from https://spring.io/projects, Pivotal's website +at https://network.pivotal.io/open-source, or by sending a request, with your +name and address to: Pivotal Software, Inc., 875 Howard Street, 5th floor, San +Francisco, CA 94103, Attention: General Counsel. All such requests should +clearly specify: OPEN SOURCE FILES REQUEST, Attention General Counsel. Pivotal +can mail a copy of the Source Files to you on a CD or equivalent physical +medium. + +This offer to obtain a copy of the Source Files is valid for three years from +the date you acquired this Software product. Alternatively, the Source Files +may accompany the Software. diff --git a/licenses/spring-jcl-5.3.30.jar/META-INF/notice.txt b/licenses/spring-jcl-5.3.30.jar/META-INF/notice.txt new file mode 100644 index 0000000000..f549ed7d09 --- /dev/null +++ b/licenses/spring-jcl-5.3.30.jar/META-INF/notice.txt @@ -0,0 +1,11 @@ +Spring Framework 5.3.30 +Copyright (c) 2002-2023 Pivotal, Inc. + +This product is licensed to you under the Apache License, Version 2.0 +(the "License"). You may not use this product except in compliance with +the License. + +This product may include a number of subcomponents with separate +copyright notices and license terms. Your use of the source code for +these subcomponents is subject to the terms and conditions of the +subcomponent's license, as noted in the license.txt file. diff --git a/licenses/spring-web-5.3.29.jar/META-INF/license.txt b/licenses/spring-web-5.3.29.jar/META-INF/license.txt deleted file mode 100644 index 9e541ed3dd..0000000000 --- a/licenses/spring-web-5.3.29.jar/META-INF/license.txt +++ /dev/null @@ -1,289 +0,0 @@ - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -======================================================================= - -SPRING FRAMEWORK 5.3.29 SUBCOMPONENTS: - -Spring Framework 5.3.29 includes a number of subcomponents -with separate copyright notices and license terms. The product that -includes this file does not necessarily use all the open source -subcomponents referred to below. Your use of the source -code for these subcomponents is subject to the terms and -conditions of the following licenses. - - ->>> ASM 9.1 (org.ow2.asm:asm:9.1, org.ow2.asm:asm-commons:9.1): - -Copyright (c) 2000-2011 INRIA, France Telecom -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of the copyright holders nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -THE POSSIBILITY OF SUCH DAMAGE. - -Copyright (c) 1999-2009, OW2 Consortium - - ->>> CGLIB 3.3 (cglib:cglib:3.3): - -Per the LICENSE file in the CGLIB JAR distribution downloaded from -https://github.com/cglib/cglib/releases/download/RELEASE_3_3_0/cglib-3.3.0.jar, -CGLIB 3.3 is licensed under the Apache License, version 2.0, the text of which -is included above. - - ->>> Objenesis 3.2 (org.objenesis:objenesis:3.2): - -Per the LICENSE file in the Objenesis ZIP distribution downloaded from -http://objenesis.org/download.html, Objenesis 3.2 is licensed under the -Apache License, version 2.0, the text of which is included above. - -Per the NOTICE file in the Objenesis ZIP distribution downloaded from -http://objenesis.org/download.html and corresponding to section 4d of the -Apache License, Version 2.0, in this case for Objenesis: - -Objenesis -Copyright 2006-2019 Joe Walnes, Henri Tremblay, Leonardo Mesquita - - -=============================================================================== - -To the extent any open source components are licensed under the EPL and/or -other similar licenses that require the source code and/or modifications to -source code to be made available (as would be noted above), you may obtain a -copy of the source code corresponding to the binaries for such open source -components and modifications thereto, if any, (the "Source Files"), by -downloading the Source Files from https://spring.io/projects, Pivotal's website -at https://network.pivotal.io/open-source, or by sending a request, with your -name and address to: Pivotal Software, Inc., 875 Howard Street, 5th floor, San -Francisco, CA 94103, Attention: General Counsel. All such requests should -clearly specify: OPEN SOURCE FILES REQUEST, Attention General Counsel. Pivotal -can mail a copy of the Source Files to you on a CD or equivalent physical -medium. - -This offer to obtain a copy of the Source Files is valid for three years from -the date you acquired this Software product. Alternatively, the Source Files -may accompany the Software. diff --git a/licenses/spring-web-5.3.29.jar/META-INF/notice.txt b/licenses/spring-web-5.3.29.jar/META-INF/notice.txt deleted file mode 100644 index 18789551bd..0000000000 --- a/licenses/spring-web-5.3.29.jar/META-INF/notice.txt +++ /dev/null @@ -1,11 +0,0 @@ -Spring Framework 5.3.29 -Copyright (c) 2002-2023 Pivotal, Inc. - -This product is licensed to you under the Apache License, Version 2.0 -(the "License"). You may not use this product except in compliance with -the License. - -This product may include a number of subcomponents with separate -copyright notices and license terms. Your use of the source code for -these subcomponents is subject to the terms and conditions of the -subcomponent's license, as noted in the license.txt file. diff --git a/licenses/spring-web-5.3.30.jar/META-INF/license.txt b/licenses/spring-web-5.3.30.jar/META-INF/license.txt new file mode 100644 index 0000000000..88536a68c4 --- /dev/null +++ b/licenses/spring-web-5.3.30.jar/META-INF/license.txt @@ -0,0 +1,289 @@ + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +======================================================================= + +SPRING FRAMEWORK 5.3.30 SUBCOMPONENTS: + +Spring Framework 5.3.30 includes a number of subcomponents +with separate copyright notices and license terms. The product that +includes this file does not necessarily use all the open source +subcomponents referred to below. Your use of the source +code for these subcomponents is subject to the terms and +conditions of the following licenses. + + +>>> ASM 9.1 (org.ow2.asm:asm:9.1, org.ow2.asm:asm-commons:9.1): + +Copyright (c) 2000-2011 INRIA, France Telecom +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE. + +Copyright (c) 1999-2009, OW2 Consortium + + +>>> CGLIB 3.3 (cglib:cglib:3.3): + +Per the LICENSE file in the CGLIB JAR distribution downloaded from +https://github.com/cglib/cglib/releases/download/RELEASE_3_3_0/cglib-3.3.0.jar, +CGLIB 3.3 is licensed under the Apache License, version 2.0, the text of which +is included above. + + +>>> Objenesis 3.2 (org.objenesis:objenesis:3.2): + +Per the LICENSE file in the Objenesis ZIP distribution downloaded from +http://objenesis.org/download.html, Objenesis 3.2 is licensed under the +Apache License, version 2.0, the text of which is included above. + +Per the NOTICE file in the Objenesis ZIP distribution downloaded from +http://objenesis.org/download.html and corresponding to section 4d of the +Apache License, Version 2.0, in this case for Objenesis: + +Objenesis +Copyright 2006-2019 Joe Walnes, Henri Tremblay, Leonardo Mesquita + + +=============================================================================== + +To the extent any open source components are licensed under the EPL and/or +other similar licenses that require the source code and/or modifications to +source code to be made available (as would be noted above), you may obtain a +copy of the source code corresponding to the binaries for such open source +components and modifications thereto, if any, (the "Source Files"), by +downloading the Source Files from https://spring.io/projects, Pivotal's website +at https://network.pivotal.io/open-source, or by sending a request, with your +name and address to: Pivotal Software, Inc., 875 Howard Street, 5th floor, San +Francisco, CA 94103, Attention: General Counsel. All such requests should +clearly specify: OPEN SOURCE FILES REQUEST, Attention General Counsel. Pivotal +can mail a copy of the Source Files to you on a CD or equivalent physical +medium. + +This offer to obtain a copy of the Source Files is valid for three years from +the date you acquired this Software product. Alternatively, the Source Files +may accompany the Software. diff --git a/licenses/spring-web-5.3.30.jar/META-INF/notice.txt b/licenses/spring-web-5.3.30.jar/META-INF/notice.txt new file mode 100644 index 0000000000..f549ed7d09 --- /dev/null +++ b/licenses/spring-web-5.3.30.jar/META-INF/notice.txt @@ -0,0 +1,11 @@ +Spring Framework 5.3.30 +Copyright (c) 2002-2023 Pivotal, Inc. + +This product is licensed to you under the Apache License, Version 2.0 +(the "License"). You may not use this product except in compliance with +the License. + +This product may include a number of subcomponents with separate +copyright notices and license terms. Your use of the source code for +these subcomponents is subject to the terms and conditions of the +subcomponent's license, as noted in the license.txt file. diff --git a/licenses/spring-webmvc-5.3.29.jar/META-INF/license.txt b/licenses/spring-webmvc-5.3.29.jar/META-INF/license.txt deleted file mode 100644 index 9e541ed3dd..0000000000 --- a/licenses/spring-webmvc-5.3.29.jar/META-INF/license.txt +++ /dev/null @@ -1,289 +0,0 @@ - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -======================================================================= - -SPRING FRAMEWORK 5.3.29 SUBCOMPONENTS: - -Spring Framework 5.3.29 includes a number of subcomponents -with separate copyright notices and license terms. The product that -includes this file does not necessarily use all the open source -subcomponents referred to below. Your use of the source -code for these subcomponents is subject to the terms and -conditions of the following licenses. - - ->>> ASM 9.1 (org.ow2.asm:asm:9.1, org.ow2.asm:asm-commons:9.1): - -Copyright (c) 2000-2011 INRIA, France Telecom -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of the copyright holders nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -THE POSSIBILITY OF SUCH DAMAGE. - -Copyright (c) 1999-2009, OW2 Consortium - - ->>> CGLIB 3.3 (cglib:cglib:3.3): - -Per the LICENSE file in the CGLIB JAR distribution downloaded from -https://github.com/cglib/cglib/releases/download/RELEASE_3_3_0/cglib-3.3.0.jar, -CGLIB 3.3 is licensed under the Apache License, version 2.0, the text of which -is included above. - - ->>> Objenesis 3.2 (org.objenesis:objenesis:3.2): - -Per the LICENSE file in the Objenesis ZIP distribution downloaded from -http://objenesis.org/download.html, Objenesis 3.2 is licensed under the -Apache License, version 2.0, the text of which is included above. - -Per the NOTICE file in the Objenesis ZIP distribution downloaded from -http://objenesis.org/download.html and corresponding to section 4d of the -Apache License, Version 2.0, in this case for Objenesis: - -Objenesis -Copyright 2006-2019 Joe Walnes, Henri Tremblay, Leonardo Mesquita - - -=============================================================================== - -To the extent any open source components are licensed under the EPL and/or -other similar licenses that require the source code and/or modifications to -source code to be made available (as would be noted above), you may obtain a -copy of the source code corresponding to the binaries for such open source -components and modifications thereto, if any, (the "Source Files"), by -downloading the Source Files from https://spring.io/projects, Pivotal's website -at https://network.pivotal.io/open-source, or by sending a request, with your -name and address to: Pivotal Software, Inc., 875 Howard Street, 5th floor, San -Francisco, CA 94103, Attention: General Counsel. All such requests should -clearly specify: OPEN SOURCE FILES REQUEST, Attention General Counsel. Pivotal -can mail a copy of the Source Files to you on a CD or equivalent physical -medium. - -This offer to obtain a copy of the Source Files is valid for three years from -the date you acquired this Software product. Alternatively, the Source Files -may accompany the Software. diff --git a/licenses/spring-webmvc-5.3.29.jar/META-INF/notice.txt b/licenses/spring-webmvc-5.3.29.jar/META-INF/notice.txt deleted file mode 100644 index 18789551bd..0000000000 --- a/licenses/spring-webmvc-5.3.29.jar/META-INF/notice.txt +++ /dev/null @@ -1,11 +0,0 @@ -Spring Framework 5.3.29 -Copyright (c) 2002-2023 Pivotal, Inc. - -This product is licensed to you under the Apache License, Version 2.0 -(the "License"). You may not use this product except in compliance with -the License. - -This product may include a number of subcomponents with separate -copyright notices and license terms. Your use of the source code for -these subcomponents is subject to the terms and conditions of the -subcomponent's license, as noted in the license.txt file. diff --git a/licenses/spring-webmvc-5.3.30.jar/META-INF/license.txt b/licenses/spring-webmvc-5.3.30.jar/META-INF/license.txt new file mode 100644 index 0000000000..88536a68c4 --- /dev/null +++ b/licenses/spring-webmvc-5.3.30.jar/META-INF/license.txt @@ -0,0 +1,289 @@ + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +======================================================================= + +SPRING FRAMEWORK 5.3.30 SUBCOMPONENTS: + +Spring Framework 5.3.30 includes a number of subcomponents +with separate copyright notices and license terms. The product that +includes this file does not necessarily use all the open source +subcomponents referred to below. Your use of the source +code for these subcomponents is subject to the terms and +conditions of the following licenses. + + +>>> ASM 9.1 (org.ow2.asm:asm:9.1, org.ow2.asm:asm-commons:9.1): + +Copyright (c) 2000-2011 INRIA, France Telecom +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE. + +Copyright (c) 1999-2009, OW2 Consortium + + +>>> CGLIB 3.3 (cglib:cglib:3.3): + +Per the LICENSE file in the CGLIB JAR distribution downloaded from +https://github.com/cglib/cglib/releases/download/RELEASE_3_3_0/cglib-3.3.0.jar, +CGLIB 3.3 is licensed under the Apache License, version 2.0, the text of which +is included above. + + +>>> Objenesis 3.2 (org.objenesis:objenesis:3.2): + +Per the LICENSE file in the Objenesis ZIP distribution downloaded from +http://objenesis.org/download.html, Objenesis 3.2 is licensed under the +Apache License, version 2.0, the text of which is included above. + +Per the NOTICE file in the Objenesis ZIP distribution downloaded from +http://objenesis.org/download.html and corresponding to section 4d of the +Apache License, Version 2.0, in this case for Objenesis: + +Objenesis +Copyright 2006-2019 Joe Walnes, Henri Tremblay, Leonardo Mesquita + + +=============================================================================== + +To the extent any open source components are licensed under the EPL and/or +other similar licenses that require the source code and/or modifications to +source code to be made available (as would be noted above), you may obtain a +copy of the source code corresponding to the binaries for such open source +components and modifications thereto, if any, (the "Source Files"), by +downloading the Source Files from https://spring.io/projects, Pivotal's website +at https://network.pivotal.io/open-source, or by sending a request, with your +name and address to: Pivotal Software, Inc., 875 Howard Street, 5th floor, San +Francisco, CA 94103, Attention: General Counsel. All such requests should +clearly specify: OPEN SOURCE FILES REQUEST, Attention General Counsel. Pivotal +can mail a copy of the Source Files to you on a CD or equivalent physical +medium. + +This offer to obtain a copy of the Source Files is valid for three years from +the date you acquired this Software product. Alternatively, the Source Files +may accompany the Software. diff --git a/licenses/spring-webmvc-5.3.30.jar/META-INF/notice.txt b/licenses/spring-webmvc-5.3.30.jar/META-INF/notice.txt new file mode 100644 index 0000000000..f549ed7d09 --- /dev/null +++ b/licenses/spring-webmvc-5.3.30.jar/META-INF/notice.txt @@ -0,0 +1,11 @@ +Spring Framework 5.3.30 +Copyright (c) 2002-2023 Pivotal, Inc. + +This product is licensed to you under the Apache License, Version 2.0 +(the "License"). You may not use this product except in compliance with +the License. + +This product may include a number of subcomponents with separate +copyright notices and license terms. Your use of the source code for +these subcomponents is subject to the terms and conditions of the +subcomponent's license, as noted in the license.txt file. diff --git a/licenses/sqs-2.21.7.jar/META-INF/LICENSE.txt b/licenses/sqs-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/sqs-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/sqs-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/sqs-2.21.7.jar/META-INF/NOTICE.txt b/licenses/sqs-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/sqs-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/sqs-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/sts-2.21.7.jar/META-INF/LICENSE.txt b/licenses/sts-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/sts-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/sts-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/sts-2.21.7.jar/META-INF/NOTICE.txt b/licenses/sts-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/sts-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/sts-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/third-party-jackson-core-2.21.7.jar/META-INF/LICENSE b/licenses/third-party-jackson-core-2.21.33.jar/META-INF/LICENSE similarity index 100% rename from licenses/third-party-jackson-core-2.21.7.jar/META-INF/LICENSE rename to licenses/third-party-jackson-core-2.21.33.jar/META-INF/LICENSE diff --git a/licenses/third-party-jackson-core-2.21.7.jar/META-INF/LICENSE.txt b/licenses/third-party-jackson-core-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/third-party-jackson-core-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/third-party-jackson-core-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/third-party-jackson-core-2.21.7.jar/META-INF/NOTICE b/licenses/third-party-jackson-core-2.21.33.jar/META-INF/NOTICE similarity index 100% rename from licenses/third-party-jackson-core-2.21.7.jar/META-INF/NOTICE rename to licenses/third-party-jackson-core-2.21.33.jar/META-INF/NOTICE diff --git a/licenses/third-party-jackson-core-2.21.7.jar/META-INF/NOTICE.txt b/licenses/third-party-jackson-core-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/third-party-jackson-core-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/third-party-jackson-core-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/third-party-jackson-dataformat-cbor-2.21.7.jar/META-INF/LICENSE b/licenses/third-party-jackson-dataformat-cbor-2.21.33.jar/META-INF/LICENSE similarity index 100% rename from licenses/third-party-jackson-dataformat-cbor-2.21.7.jar/META-INF/LICENSE rename to licenses/third-party-jackson-dataformat-cbor-2.21.33.jar/META-INF/LICENSE diff --git a/licenses/third-party-jackson-dataformat-cbor-2.21.7.jar/META-INF/LICENSE.txt b/licenses/third-party-jackson-dataformat-cbor-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/third-party-jackson-dataformat-cbor-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/third-party-jackson-dataformat-cbor-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/third-party-jackson-dataformat-cbor-2.21.7.jar/META-INF/NOTICE b/licenses/third-party-jackson-dataformat-cbor-2.21.33.jar/META-INF/NOTICE similarity index 100% rename from licenses/third-party-jackson-dataformat-cbor-2.21.7.jar/META-INF/NOTICE rename to licenses/third-party-jackson-dataformat-cbor-2.21.33.jar/META-INF/NOTICE diff --git a/licenses/third-party-jackson-dataformat-cbor-2.21.7.jar/META-INF/NOTICE.txt b/licenses/third-party-jackson-dataformat-cbor-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/third-party-jackson-dataformat-cbor-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/third-party-jackson-dataformat-cbor-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/tomcat-embed-core-9.0.79.jar/META-INF/LICENSE b/licenses/tomcat-embed-core-9.0.82.jar/META-INF/LICENSE similarity index 100% rename from licenses/tomcat-embed-core-9.0.79.jar/META-INF/LICENSE rename to licenses/tomcat-embed-core-9.0.82.jar/META-INF/LICENSE diff --git a/licenses/tomcat-embed-core-9.0.79.jar/META-INF/NOTICE b/licenses/tomcat-embed-core-9.0.82.jar/META-INF/NOTICE similarity index 100% rename from licenses/tomcat-embed-core-9.0.79.jar/META-INF/NOTICE rename to licenses/tomcat-embed-core-9.0.82.jar/META-INF/NOTICE diff --git a/licenses/tomcat-embed-el-9.0.79.jar/META-INF/LICENSE b/licenses/tomcat-embed-el-9.0.82.jar/META-INF/LICENSE similarity index 100% rename from licenses/tomcat-embed-el-9.0.79.jar/META-INF/LICENSE rename to licenses/tomcat-embed-el-9.0.82.jar/META-INF/LICENSE diff --git a/licenses/tomcat-embed-el-9.0.79.jar/META-INF/NOTICE b/licenses/tomcat-embed-el-9.0.82.jar/META-INF/NOTICE similarity index 100% rename from licenses/tomcat-embed-el-9.0.79.jar/META-INF/NOTICE rename to licenses/tomcat-embed-el-9.0.82.jar/META-INF/NOTICE diff --git a/licenses/tomcat-embed-websocket-9.0.79.jar/META-INF/LICENSE b/licenses/tomcat-embed-websocket-9.0.82.jar/META-INF/LICENSE similarity index 100% rename from licenses/tomcat-embed-websocket-9.0.79.jar/META-INF/LICENSE rename to licenses/tomcat-embed-websocket-9.0.82.jar/META-INF/LICENSE diff --git a/licenses/tomcat-embed-websocket-9.0.79.jar/META-INF/NOTICE b/licenses/tomcat-embed-websocket-9.0.82.jar/META-INF/NOTICE similarity index 100% rename from licenses/tomcat-embed-websocket-9.0.79.jar/META-INF/NOTICE rename to licenses/tomcat-embed-websocket-9.0.82.jar/META-INF/NOTICE diff --git a/licenses/utils-2.21.7.jar/META-INF/LICENSE.txt b/licenses/utils-2.21.33.jar/META-INF/LICENSE.txt similarity index 100% rename from licenses/utils-2.21.7.jar/META-INF/LICENSE.txt rename to licenses/utils-2.21.33.jar/META-INF/LICENSE.txt diff --git a/licenses/utils-2.21.7.jar/META-INF/NOTICE.txt b/licenses/utils-2.21.33.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/utils-2.21.7.jar/META-INF/NOTICE.txt rename to licenses/utils-2.21.33.jar/META-INF/NOTICE.txt diff --git a/licenses/websocket-api-9.4.51.v20230217.jar/META-INF/LICENSE b/licenses/websocket-api-9.4.53.v20231009.jar/META-INF/LICENSE similarity index 100% rename from licenses/websocket-api-9.4.51.v20230217.jar/META-INF/LICENSE rename to licenses/websocket-api-9.4.53.v20231009.jar/META-INF/LICENSE diff --git a/licenses/websocket-api-9.4.51.v20230217.jar/META-INF/NOTICE.txt b/licenses/websocket-api-9.4.53.v20231009.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/websocket-api-9.4.51.v20230217.jar/META-INF/NOTICE.txt rename to licenses/websocket-api-9.4.53.v20231009.jar/META-INF/NOTICE.txt diff --git a/licenses/websocket-api-9.4.51.v20230217.jar/about.html b/licenses/websocket-api-9.4.53.v20231009.jar/about.html similarity index 100% rename from licenses/websocket-api-9.4.51.v20230217.jar/about.html rename to licenses/websocket-api-9.4.53.v20231009.jar/about.html diff --git a/licenses/websocket-client-9.4.51.v20230217.jar/META-INF/LICENSE b/licenses/websocket-client-9.4.53.v20231009.jar/META-INF/LICENSE similarity index 100% rename from licenses/websocket-client-9.4.51.v20230217.jar/META-INF/LICENSE rename to licenses/websocket-client-9.4.53.v20231009.jar/META-INF/LICENSE diff --git a/licenses/websocket-client-9.4.51.v20230217.jar/META-INF/NOTICE.txt b/licenses/websocket-client-9.4.53.v20231009.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/websocket-client-9.4.51.v20230217.jar/META-INF/NOTICE.txt rename to licenses/websocket-client-9.4.53.v20231009.jar/META-INF/NOTICE.txt diff --git a/licenses/websocket-client-9.4.51.v20230217.jar/about.html b/licenses/websocket-client-9.4.53.v20231009.jar/about.html similarity index 100% rename from licenses/websocket-client-9.4.51.v20230217.jar/about.html rename to licenses/websocket-client-9.4.53.v20231009.jar/about.html diff --git a/licenses/websocket-common-9.4.51.v20230217.jar/META-INF/LICENSE b/licenses/websocket-common-9.4.53.v20231009.jar/META-INF/LICENSE similarity index 100% rename from licenses/websocket-common-9.4.51.v20230217.jar/META-INF/LICENSE rename to licenses/websocket-common-9.4.53.v20231009.jar/META-INF/LICENSE diff --git a/licenses/websocket-common-9.4.51.v20230217.jar/META-INF/NOTICE.txt b/licenses/websocket-common-9.4.53.v20231009.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/websocket-common-9.4.51.v20230217.jar/META-INF/NOTICE.txt rename to licenses/websocket-common-9.4.53.v20231009.jar/META-INF/NOTICE.txt diff --git a/licenses/websocket-common-9.4.51.v20230217.jar/about.html b/licenses/websocket-common-9.4.53.v20231009.jar/about.html similarity index 100% rename from licenses/websocket-common-9.4.51.v20230217.jar/about.html rename to licenses/websocket-common-9.4.53.v20231009.jar/about.html diff --git a/licenses/websocket-server-9.4.51.v20230217.jar/META-INF/LICENSE b/licenses/websocket-server-9.4.53.v20231009.jar/META-INF/LICENSE similarity index 100% rename from licenses/websocket-server-9.4.51.v20230217.jar/META-INF/LICENSE rename to licenses/websocket-server-9.4.53.v20231009.jar/META-INF/LICENSE diff --git a/licenses/websocket-server-9.4.51.v20230217.jar/META-INF/NOTICE.txt b/licenses/websocket-server-9.4.53.v20231009.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/websocket-server-9.4.51.v20230217.jar/META-INF/NOTICE.txt rename to licenses/websocket-server-9.4.53.v20231009.jar/META-INF/NOTICE.txt diff --git a/licenses/websocket-server-9.4.51.v20230217.jar/about.html b/licenses/websocket-server-9.4.53.v20231009.jar/about.html similarity index 100% rename from licenses/websocket-server-9.4.51.v20230217.jar/about.html rename to licenses/websocket-server-9.4.53.v20231009.jar/about.html diff --git a/licenses/websocket-servlet-9.4.51.v20230217.jar/META-INF/LICENSE b/licenses/websocket-servlet-9.4.53.v20231009.jar/META-INF/LICENSE similarity index 100% rename from licenses/websocket-servlet-9.4.51.v20230217.jar/META-INF/LICENSE rename to licenses/websocket-servlet-9.4.53.v20231009.jar/META-INF/LICENSE diff --git a/licenses/websocket-servlet-9.4.51.v20230217.jar/META-INF/NOTICE.txt b/licenses/websocket-servlet-9.4.53.v20231009.jar/META-INF/NOTICE.txt similarity index 100% rename from licenses/websocket-servlet-9.4.51.v20230217.jar/META-INF/NOTICE.txt rename to licenses/websocket-servlet-9.4.53.v20231009.jar/META-INF/NOTICE.txt diff --git a/licenses/websocket-servlet-9.4.51.v20230217.jar/about.html b/licenses/websocket-servlet-9.4.53.v20231009.jar/about.html similarity index 100% rename from licenses/websocket-servlet-9.4.51.v20230217.jar/about.html rename to licenses/websocket-servlet-9.4.53.v20231009.jar/about.html diff --git a/settings.gradle.kts b/settings.gradle.kts index 3892e26aa8..7edbae7498 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -16,7 +16,7 @@ pluginManagement { plugins { id("com.diffplug.spotless") version "6.22.0" - id("com.github.ben-manes.versions") version "0.49.0" + id("com.github.ben-manes.versions") version "0.50.0" id("com.github.jk1.dependency-license-report") version "2.5" id("com.github.johnrengelman.shadow") version "8.1.1" id("com.google.cloud.tools.jib") version "3.4.0" diff --git a/testing/validator/build.gradle.kts b/testing/validator/build.gradle.kts index 852bdc9971..c3c175f94d 100644 --- a/testing/validator/build.gradle.kts +++ b/testing/validator/build.gradle.kts @@ -24,6 +24,7 @@ plugins { repositories { mavenCentral() + mavenLocal() maven( "https://jitpack.io",