diff --git a/.github/workflows/ci-prq.yml b/.github/workflows/ci-prq.yml index e7a3f95b29..5213a40b1b 100644 --- a/.github/workflows/ci-prq.yml +++ b/.github/workflows/ci-prq.yml @@ -24,6 +24,8 @@ jobs: run: chmod +x gradlew - name: Documentation Linter run: bash scripts/check-source-root.sh + - name: Gradle lockfiles validation + run: bash scripts/check-lockfiles.sh - name: Clean Gradle project run: ./gradlew --parallel clean - name: Build with Gradle diff --git a/build.gradle b/build.gradle index 4a620fd4af..1d3d84dc54 100644 --- a/build.gradle +++ b/build.gradle @@ -67,4 +67,35 @@ subprojects { } } } + + // Configure dependency locking: https://docs.gradle.org/current/userguide/dependency_locking.html + dependencyLocking { + lockMode = LockMode.STRICT + } + + configurations { + annotationProcessor { + resolutionStrategy.activateDependencyLocking() + } + compileClasspath { + resolutionStrategy.activateDependencyLocking() + } + runtimeClasspath { + resolutionStrategy.activateDependencyLocking() + } + } + + tasks.register("resolveAndLockAll") { + notCompatibleWithConfigurationCache("Filters configurations at execution time") + doFirst { + assert gradle.startParameter.writeDependencyLocks : + "$path must be run from the command line with the `--write-locks` flag" + } + doLast { + configurations.findAll { + // Add any custom filtering on the configurations to be resolved + it.canBeResolved + }.each { it.resolve() } + } + } } diff --git a/scripts/check-lockfiles.sh b/scripts/check-lockfiles.sh new file mode 100755 index 0000000000..e4eae59515 --- /dev/null +++ b/scripts/check-lockfiles.sh @@ -0,0 +1,31 @@ +#!/bin/bash +# +# Copyright © 2024 Apple Inc. and the ServiceTalk project authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +set -eu + +./gradlew resolveAndLockAll --write-locks +echo "" + +status=$(git status --porcelain | grep 'gradle.lockfile' || true) +if [ -n "$status" ]; then + echo "You MUST regenerate lockfiles using: ./gradlew resolveAndLockAll --write-locks" + echo "The following files are not updated:" + echo "$status" + exit 1 +else + echo "All Gradle lockfiles are up to date" +fi diff --git a/servicetalk-annotations/gradle.lockfile b/servicetalk-annotations/gradle.lockfile new file mode 100644 index 0000000000..52a468d6a7 --- /dev/null +++ b/servicetalk-annotations/gradle.lockfile @@ -0,0 +1,10 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-benchmarks/gradle.lockfile b/servicetalk-benchmarks/gradle.lockfile new file mode 100644 index 0000000000..e9d7e462ba --- /dev/null +++ b/servicetalk-benchmarks/gradle.lockfile @@ -0,0 +1,39 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson.core:jackson-annotations:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-handler:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-transport:4.1.112.Final=compileClasspath,runtimeClasspath +net.sf.jopt-simple:jopt-simple:5.0.4=compileClasspath,runtimeClasspath +org.apache.commons:commons-math3:3.6.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.openjdk.jmh:jmh-core:1.37=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,jmhAnnotationProcessor,shadow,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-bom/gradle.lockfile b/servicetalk-bom/gradle.lockfile new file mode 100644 index 0000000000..a77d988b60 --- /dev/null +++ b/servicetalk-bom/gradle.lockfile @@ -0,0 +1,4 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +empty=annotationProcessor,classpath,compileClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath diff --git a/servicetalk-buffer-api/gradle.lockfile b/servicetalk-buffer-api/gradle.lockfile new file mode 100644 index 0000000000..fd8b773878 --- /dev/null +++ b/servicetalk-buffer-api/gradle.lockfile @@ -0,0 +1,10 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor diff --git a/servicetalk-buffer-netty/gradle.lockfile b/servicetalk-buffer-netty/gradle.lockfile new file mode 100644 index 0000000000..73cbd3ab90 --- /dev/null +++ b/servicetalk-buffer-netty/gradle.lockfile @@ -0,0 +1,14 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-common:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-capacity-limiter-api/gradle.lockfile b/servicetalk-capacity-limiter-api/gradle.lockfile new file mode 100644 index 0000000000..aa5b06c9a1 --- /dev/null +++ b/servicetalk-capacity-limiter-api/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-circuit-breaker-api/gradle.lockfile b/servicetalk-circuit-breaker-api/gradle.lockfile new file mode 100644 index 0000000000..d800045c99 --- /dev/null +++ b/servicetalk-circuit-breaker-api/gradle.lockfile @@ -0,0 +1,10 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=runtimeClasspath +empty=annotationProcessor,compileClasspath,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-circuit-breaker-resilience4j/gradle.lockfile b/servicetalk-circuit-breaker-resilience4j/gradle.lockfile new file mode 100644 index 0000000000..c692cc984b --- /dev/null +++ b/servicetalk-circuit-breaker-resilience4j/gradle.lockfile @@ -0,0 +1,15 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.github.resilience4j:resilience4j-circuitbreaker:1.7.1=compileClasspath,runtimeClasspath +io.github.resilience4j:resilience4j-core:1.7.1=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.vavr:vavr-match:0.10.2=compileClasspath,runtimeClasspath +io.vavr:vavr:0.10.2=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-client-api-internal/gradle.lockfile b/servicetalk-client-api-internal/gradle.lockfile new file mode 100644 index 0000000000..aa5b06c9a1 --- /dev/null +++ b/servicetalk-client-api-internal/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-client-api/gradle.lockfile b/servicetalk-client-api/gradle.lockfile new file mode 100644 index 0000000000..aa5b06c9a1 --- /dev/null +++ b/servicetalk-client-api/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-concurrent-api-internal/gradle.lockfile b/servicetalk-concurrent-api-internal/gradle.lockfile new file mode 100644 index 0000000000..aa5b06c9a1 --- /dev/null +++ b/servicetalk-concurrent-api-internal/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-concurrent-api-test/gradle.lockfile b/servicetalk-concurrent-api-test/gradle.lockfile new file mode 100644 index 0000000000..060083310f --- /dev/null +++ b/servicetalk-concurrent-api-test/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-concurrent-api/gradle.lockfile b/servicetalk-concurrent-api/gradle.lockfile new file mode 100644 index 0000000000..cc1bad0a37 --- /dev/null +++ b/servicetalk-concurrent-api/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor diff --git a/servicetalk-concurrent-internal/gradle.lockfile b/servicetalk-concurrent-internal/gradle.lockfile new file mode 100644 index 0000000000..cc1bad0a37 --- /dev/null +++ b/servicetalk-concurrent-internal/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor diff --git a/servicetalk-concurrent-jdkflow/gradle.lockfile b/servicetalk-concurrent-jdkflow/gradle.lockfile new file mode 100644 index 0000000000..aa5b06c9a1 --- /dev/null +++ b/servicetalk-concurrent-jdkflow/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-concurrent-reactivestreams/gradle.lockfile b/servicetalk-concurrent-reactivestreams/gradle.lockfile new file mode 100644 index 0000000000..2cc39bc6bd --- /dev/null +++ b/servicetalk-concurrent-reactivestreams/gradle.lockfile @@ -0,0 +1,15 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-common:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.reactivestreams:reactive-streams:1.0.4=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor diff --git a/servicetalk-concurrent-test-internal/gradle.lockfile b/servicetalk-concurrent-test-internal/gradle.lockfile new file mode 100644 index 0000000000..060083310f --- /dev/null +++ b/servicetalk-concurrent-test-internal/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-concurrent/gradle.lockfile b/servicetalk-concurrent/gradle.lockfile new file mode 100644 index 0000000000..52a468d6a7 --- /dev/null +++ b/servicetalk-concurrent/gradle.lockfile @@ -0,0 +1,10 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-context-api/gradle.lockfile b/servicetalk-context-api/gradle.lockfile new file mode 100644 index 0000000000..52a468d6a7 --- /dev/null +++ b/servicetalk-context-api/gradle.lockfile @@ -0,0 +1,10 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-data-jackson-jersey/gradle.lockfile b/servicetalk-data-jackson-jersey/gradle.lockfile new file mode 100644 index 0000000000..b8d77eb485 --- /dev/null +++ b/servicetalk-data-jackson-jersey/gradle.lockfile @@ -0,0 +1,43 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson.core:jackson-annotations:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.sun.activation:jakarta.activation:1.2.2=runtimeClasspath +com.sun.xml.bind:jaxb-core:2.3.0.1=runtimeClasspath +com.sun.xml.bind:jaxb-impl:2.3.3=runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +jakarta.activation:jakarta.activation-api:1.2.2=runtimeClasspath +jakarta.annotation:jakarta.annotation-api:1.3.5=compileClasspath,runtimeClasspath +jakarta.validation:jakarta.validation-api:2.0.2=compileClasspath,runtimeClasspath +jakarta.ws.rs:jakarta.ws.rs-api:2.1.6=compileClasspath,runtimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:2.3.3=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.hk2.external:jakarta.inject:2.6.1=compileClasspath,runtimeClasspath +org.glassfish.hk2:osgi-resource-locator:1.0.3=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-client:2.41=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-common:2.41=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-server:2.41=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-data-jackson-jersey3-jakarta10/gradle.lockfile b/servicetalk-data-jackson-jersey3-jakarta10/gradle.lockfile new file mode 100644 index 0000000000..2aa3a743b1 --- /dev/null +++ b/servicetalk-data-jackson-jersey3-jakarta10/gradle.lockfile @@ -0,0 +1,48 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson.core:jackson-annotations:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.sun.activation:jakarta.activation:1.2.2=runtimeClasspath +com.sun.istack:istack-commons-runtime:4.1.2=compileClasspath,runtimeClasspath +com.sun.xml.bind:jaxb-core:2.3.0.1=runtimeClasspath +com.sun.xml.bind:jaxb-impl:2.3.3=runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +jakarta.activation:jakarta.activation-api:2.1.3=compileClasspath,runtimeClasspath +jakarta.annotation:jakarta.annotation-api:2.1.1=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +jakarta.validation:jakarta.validation-api:3.0.2=compileClasspath,runtimeClasspath +jakarta.ws.rs:jakarta.ws.rs-api:3.1.0=compileClasspath,runtimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:4.0.2=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.eclipse.angus:angus-activation:2.0.2=runtimeClasspath +org.glassfish.hk2:osgi-resource-locator:1.0.3=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-core:4.0.5=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-runtime:4.0.5=compileClasspath,runtimeClasspath +org.glassfish.jaxb:txw2:4.0.5=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-client:3.1.6=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-common:3.1.6=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-server:3.1.6=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:3.1.6=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-data-jackson-jersey3-jakarta9/gradle.lockfile b/servicetalk-data-jackson-jersey3-jakarta9/gradle.lockfile new file mode 100644 index 0000000000..11a85414cd --- /dev/null +++ b/servicetalk-data-jackson-jersey3-jakarta9/gradle.lockfile @@ -0,0 +1,47 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson.core:jackson-annotations:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.sun.activation:jakarta.activation:2.0.1=compileClasspath,runtimeClasspath +com.sun.istack:istack-commons-runtime:4.0.1=compileClasspath,runtimeClasspath +com.sun.xml.bind:jaxb-core:2.3.0.1=runtimeClasspath +com.sun.xml.bind:jaxb-impl:2.3.3=runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +jakarta.activation:jakarta.activation-api:2.0.1=compileClasspath,runtimeClasspath +jakarta.annotation:jakarta.annotation-api:2.1.1=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +jakarta.validation:jakarta.validation-api:3.0.2=compileClasspath,runtimeClasspath +jakarta.ws.rs:jakarta.ws.rs-api:3.0.0=compileClasspath,runtimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:3.0.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.hk2:osgi-resource-locator:1.0.3=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-core:3.0.2=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-runtime:3.0.2=compileClasspath,runtimeClasspath +org.glassfish.jaxb:txw2:3.0.2=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-client:3.0.13=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-common:3.0.13=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-server:3.0.13=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:3.0.13=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-data-jackson/gradle.lockfile b/servicetalk-data-jackson/gradle.lockfile new file mode 100644 index 0000000000..2182fb1b69 --- /dev/null +++ b/servicetalk-data-jackson/gradle.lockfile @@ -0,0 +1,15 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson.core:jackson-annotations:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-data-protobuf-jersey/gradle.lockfile b/servicetalk-data-protobuf-jersey/gradle.lockfile new file mode 100644 index 0000000000..393ecbbef2 --- /dev/null +++ b/servicetalk-data-protobuf-jersey/gradle.lockfile @@ -0,0 +1,44 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson.core:jackson-annotations:2.16.2=runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.16.2=runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.16.2=runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +com.sun.activation:jakarta.activation:1.2.2=runtimeClasspath +com.sun.xml.bind:jaxb-core:2.3.0.1=runtimeClasspath +com.sun.xml.bind:jaxb-impl:2.3.3=runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +jakarta.activation:jakarta.activation-api:1.2.2=runtimeClasspath +jakarta.annotation:jakarta.annotation-api:1.3.5=compileClasspath,runtimeClasspath +jakarta.validation:jakarta.validation-api:2.0.2=compileClasspath,runtimeClasspath +jakarta.ws.rs:jakarta.ws.rs-api:2.1.6=compileClasspath,runtimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:2.3.3=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.hk2.external:jakarta.inject:2.6.1=compileClasspath,runtimeClasspath +org.glassfish.hk2:osgi-resource-locator:1.0.3=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-client:2.41=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-common:2.41=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-server:2.41=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,protobuf,spotbugsPlugins,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-data-protobuf-jersey3-jakarta10/gradle.lockfile b/servicetalk-data-protobuf-jersey3-jakarta10/gradle.lockfile new file mode 100644 index 0000000000..0dbe4596d6 --- /dev/null +++ b/servicetalk-data-protobuf-jersey3-jakarta10/gradle.lockfile @@ -0,0 +1,49 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson.core:jackson-annotations:2.16.2=runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.16.2=runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.16.2=runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +com.sun.activation:jakarta.activation:1.2.2=runtimeClasspath +com.sun.istack:istack-commons-runtime:4.1.2=compileClasspath,runtimeClasspath +com.sun.xml.bind:jaxb-core:2.3.0.1=runtimeClasspath +com.sun.xml.bind:jaxb-impl:2.3.3=runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +jakarta.activation:jakarta.activation-api:2.1.3=compileClasspath,runtimeClasspath +jakarta.annotation:jakarta.annotation-api:2.1.1=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +jakarta.validation:jakarta.validation-api:3.0.2=compileClasspath,runtimeClasspath +jakarta.ws.rs:jakarta.ws.rs-api:3.1.0=compileClasspath,runtimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:4.0.2=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.eclipse.angus:angus-activation:2.0.2=runtimeClasspath +org.glassfish.hk2:osgi-resource-locator:1.0.3=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-core:4.0.5=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-runtime:4.0.5=compileClasspath,runtimeClasspath +org.glassfish.jaxb:txw2:4.0.5=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-client:3.1.6=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-common:3.1.6=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-server:3.1.6=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:3.1.6=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,protobuf,spotbugsPlugins,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-data-protobuf-jersey3-jakarta9/gradle.lockfile b/servicetalk-data-protobuf-jersey3-jakarta9/gradle.lockfile new file mode 100644 index 0000000000..4fd69bcf67 --- /dev/null +++ b/servicetalk-data-protobuf-jersey3-jakarta9/gradle.lockfile @@ -0,0 +1,48 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson.core:jackson-annotations:2.16.2=runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.16.2=runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.16.2=runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +com.sun.activation:jakarta.activation:2.0.1=compileClasspath,runtimeClasspath +com.sun.istack:istack-commons-runtime:4.0.1=compileClasspath,runtimeClasspath +com.sun.xml.bind:jaxb-core:2.3.0.1=runtimeClasspath +com.sun.xml.bind:jaxb-impl:2.3.3=runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +jakarta.activation:jakarta.activation-api:2.0.1=compileClasspath,runtimeClasspath +jakarta.annotation:jakarta.annotation-api:2.1.1=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +jakarta.validation:jakarta.validation-api:3.0.2=compileClasspath,runtimeClasspath +jakarta.ws.rs:jakarta.ws.rs-api:3.0.0=compileClasspath,runtimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:3.0.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.hk2:osgi-resource-locator:1.0.3=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-core:3.0.2=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-runtime:3.0.2=compileClasspath,runtimeClasspath +org.glassfish.jaxb:txw2:3.0.2=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-client:3.0.13=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-common:3.0.13=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-server:3.0.13=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:3.0.13=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,protobuf,spotbugsPlugins,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-data-protobuf/gradle.lockfile b/servicetalk-data-protobuf/gradle.lockfile new file mode 100644 index 0000000000..b80d425d76 --- /dev/null +++ b/servicetalk-data-protobuf/gradle.lockfile @@ -0,0 +1,13 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,protobuf,spotbugsPlugins,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-dependencies/gradle.lockfile b/servicetalk-dependencies/gradle.lockfile new file mode 100644 index 0000000000..8ccf21c9ed --- /dev/null +++ b/servicetalk-dependencies/gradle.lockfile @@ -0,0 +1,4 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +empty=annotationProcessor,compileClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath diff --git a/servicetalk-dns-discovery-netty/gradle.lockfile b/servicetalk-dns-discovery-netty/gradle.lockfile new file mode 100644 index 0000000000..dd87317d1a --- /dev/null +++ b/servicetalk-dns-discovery-netty/gradle.lockfile @@ -0,0 +1,31 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-handler:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-transport:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-encoding-api-internal/gradle.lockfile b/servicetalk-encoding-api-internal/gradle.lockfile new file mode 100644 index 0000000000..060083310f --- /dev/null +++ b/servicetalk-encoding-api-internal/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-encoding-api/gradle.lockfile b/servicetalk-encoding-api/gradle.lockfile new file mode 100644 index 0000000000..aa5b06c9a1 --- /dev/null +++ b/servicetalk-encoding-api/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-encoding-netty/gradle.lockfile b/servicetalk-encoding-netty/gradle.lockfile new file mode 100644 index 0000000000..d9dd42eb0a --- /dev/null +++ b/servicetalk-encoding-netty/gradle.lockfile @@ -0,0 +1,17 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-transport:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-examples/gradle.lockfile b/servicetalk-examples/gradle.lockfile new file mode 100644 index 0000000000..8ccf21c9ed --- /dev/null +++ b/servicetalk-examples/gradle.lockfile @@ -0,0 +1,4 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +empty=annotationProcessor,compileClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath diff --git a/servicetalk-examples/grpc/compression/gradle.lockfile b/servicetalk-examples/grpc/compression/gradle.lockfile new file mode 100644 index 0000000000..4bd2b60bd7 --- /dev/null +++ b/servicetalk-examples/grpc/compression/gradle.lockfile @@ -0,0 +1,38 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.29.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,protobuf,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-examples/grpc/deadline/gradle.lockfile b/servicetalk-examples/grpc/deadline/gradle.lockfile new file mode 100644 index 0000000000..bf10d5a52a --- /dev/null +++ b/servicetalk-examples/grpc/deadline/gradle.lockfile @@ -0,0 +1,38 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.29.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,protobuf,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-examples/grpc/debugging/gradle.lockfile b/servicetalk-examples/grpc/debugging/gradle.lockfile new file mode 100644 index 0000000000..4bd2b60bd7 --- /dev/null +++ b/servicetalk-examples/grpc/debugging/gradle.lockfile @@ -0,0 +1,38 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.29.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,protobuf,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-examples/grpc/errors/gradle.lockfile b/servicetalk-examples/grpc/errors/gradle.lockfile new file mode 100644 index 0000000000..4bd2b60bd7 --- /dev/null +++ b/servicetalk-examples/grpc/errors/gradle.lockfile @@ -0,0 +1,38 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.29.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,protobuf,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-examples/grpc/execution-strategy/gradle.lockfile b/servicetalk-examples/grpc/execution-strategy/gradle.lockfile new file mode 100644 index 0000000000..4bd2b60bd7 --- /dev/null +++ b/servicetalk-examples/grpc/execution-strategy/gradle.lockfile @@ -0,0 +1,38 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.29.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,protobuf,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-examples/grpc/gradle.lockfile b/servicetalk-examples/grpc/gradle.lockfile new file mode 100644 index 0000000000..8ccf21c9ed --- /dev/null +++ b/servicetalk-examples/grpc/gradle.lockfile @@ -0,0 +1,4 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +empty=annotationProcessor,compileClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath diff --git a/servicetalk-examples/grpc/health/gradle.lockfile b/servicetalk-examples/grpc/health/gradle.lockfile new file mode 100644 index 0000000000..4bd2b60bd7 --- /dev/null +++ b/servicetalk-examples/grpc/health/gradle.lockfile @@ -0,0 +1,38 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.29.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,protobuf,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-examples/grpc/helloworld/gradle.lockfile b/servicetalk-examples/grpc/helloworld/gradle.lockfile new file mode 100644 index 0000000000..4bd2b60bd7 --- /dev/null +++ b/servicetalk-examples/grpc/helloworld/gradle.lockfile @@ -0,0 +1,38 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.29.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,protobuf,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-examples/grpc/keepalive/gradle.lockfile b/servicetalk-examples/grpc/keepalive/gradle.lockfile new file mode 100644 index 0000000000..4bd2b60bd7 --- /dev/null +++ b/servicetalk-examples/grpc/keepalive/gradle.lockfile @@ -0,0 +1,38 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.29.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,protobuf,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-examples/grpc/observer/gradle.lockfile b/servicetalk-examples/grpc/observer/gradle.lockfile new file mode 100644 index 0000000000..bf10d5a52a --- /dev/null +++ b/servicetalk-examples/grpc/observer/gradle.lockfile @@ -0,0 +1,38 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.29.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,protobuf,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-examples/grpc/protoc-options/gradle.lockfile b/servicetalk-examples/grpc/protoc-options/gradle.lockfile new file mode 100644 index 0000000000..4bd2b60bd7 --- /dev/null +++ b/servicetalk-examples/grpc/protoc-options/gradle.lockfile @@ -0,0 +1,38 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.29.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,protobuf,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-examples/grpc/request-response-context/gradle.lockfile b/servicetalk-examples/grpc/request-response-context/gradle.lockfile new file mode 100644 index 0000000000..bf10d5a52a --- /dev/null +++ b/servicetalk-examples/grpc/request-response-context/gradle.lockfile @@ -0,0 +1,38 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.29.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,protobuf,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-examples/grpc/routeguide/gradle.lockfile b/servicetalk-examples/grpc/routeguide/gradle.lockfile new file mode 100644 index 0000000000..428ce4a9e1 --- /dev/null +++ b/servicetalk-examples/grpc/routeguide/gradle.lockfile @@ -0,0 +1,46 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.29.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.code.gson:gson:2.8.9=compileClasspath,runtimeClasspath +com.google.errorprone:error_prone_annotations:2.18.0=compileClasspath,runtimeClasspath +com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath +com.google.guava:guava:32.0.1-jre=compileClasspath,runtimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath +com.google.j2objc:j2objc-annotations:2.8=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java-util:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.checkerframework:checker-qual:3.33.0=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,protobuf,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-examples/http/compression/gradle.lockfile b/servicetalk-examples/http/compression/gradle.lockfile new file mode 100644 index 0000000000..0075ca6ae7 --- /dev/null +++ b/servicetalk-examples/http/compression/gradle.lockfile @@ -0,0 +1,36 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,testAnnotationProcessor diff --git a/servicetalk-examples/http/debugging/gradle.lockfile b/servicetalk-examples/http/debugging/gradle.lockfile new file mode 100644 index 0000000000..86fca49305 --- /dev/null +++ b/servicetalk-examples/http/debugging/gradle.lockfile @@ -0,0 +1,37 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.hamcrest:hamcrest:2.2=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,testAnnotationProcessor diff --git a/servicetalk-examples/http/defaultloadbalancer/gradle.lockfile b/servicetalk-examples/http/defaultloadbalancer/gradle.lockfile new file mode 100644 index 0000000000..0075ca6ae7 --- /dev/null +++ b/servicetalk-examples/http/defaultloadbalancer/gradle.lockfile @@ -0,0 +1,36 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,testAnnotationProcessor diff --git a/servicetalk-examples/http/files/gradle.lockfile b/servicetalk-examples/http/files/gradle.lockfile new file mode 100644 index 0000000000..e143640f16 --- /dev/null +++ b/servicetalk-examples/http/files/gradle.lockfile @@ -0,0 +1,36 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor diff --git a/servicetalk-examples/http/gradle.lockfile b/servicetalk-examples/http/gradle.lockfile new file mode 100644 index 0000000000..8ccf21c9ed --- /dev/null +++ b/servicetalk-examples/http/gradle.lockfile @@ -0,0 +1,4 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +empty=annotationProcessor,compileClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath diff --git a/servicetalk-examples/http/helloworld/gradle.lockfile b/servicetalk-examples/http/helloworld/gradle.lockfile new file mode 100644 index 0000000000..0075ca6ae7 --- /dev/null +++ b/servicetalk-examples/http/helloworld/gradle.lockfile @@ -0,0 +1,36 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,testAnnotationProcessor diff --git a/servicetalk-examples/http/http2/gradle.lockfile b/servicetalk-examples/http/http2/gradle.lockfile new file mode 100644 index 0000000000..86fca49305 --- /dev/null +++ b/servicetalk-examples/http/http2/gradle.lockfile @@ -0,0 +1,37 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.hamcrest:hamcrest:2.2=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,testAnnotationProcessor diff --git a/servicetalk-examples/http/jaxrs/gradle.lockfile b/servicetalk-examples/http/jaxrs/gradle.lockfile new file mode 100644 index 0000000000..9b338ecb83 --- /dev/null +++ b/servicetalk-examples/http/jaxrs/gradle.lockfile @@ -0,0 +1,61 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson.core:jackson-annotations:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +com.sun.activation:jakarta.activation:1.2.2=runtimeClasspath +com.sun.xml.bind:jaxb-core:2.3.0.1=runtimeClasspath +com.sun.xml.bind:jaxb-impl:2.3.3=runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +jakarta.activation:jakarta.activation-api:1.2.2=runtimeClasspath +jakarta.annotation:jakarta.annotation-api:1.3.5=compileClasspath,runtimeClasspath +jakarta.validation:jakarta.validation-api:2.0.2=runtimeClasspath +jakarta.ws.rs:jakarta.ws.rs-api:2.1.6=compileClasspath,runtimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:2.3.3=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.hk2.external:aopalliance-repackaged:2.6.1=runtimeClasspath +org.glassfish.hk2.external:jakarta.inject:2.6.1=compileClasspath,runtimeClasspath +org.glassfish.hk2:hk2-api:2.6.1=runtimeClasspath +org.glassfish.hk2:hk2-locator:2.6.1=runtimeClasspath +org.glassfish.hk2:hk2-utils:2.6.1=runtimeClasspath +org.glassfish.hk2:osgi-resource-locator:1.0.3=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-client:2.41=runtimeClasspath +org.glassfish.jersey.core:jersey-common:2.41=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-server:2.41=runtimeClasspath +org.glassfish.jersey.inject:jersey-hk2:2.41=runtimeClasspath +org.glassfish.jersey.media:jersey-media-multipart:2.41=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.javassist:javassist:3.29.2-GA=runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.jvnet.mimepull:mimepull:1.9.15=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,protobuf,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-examples/http/metadata/gradle.lockfile b/servicetalk-examples/http/metadata/gradle.lockfile new file mode 100644 index 0000000000..0075ca6ae7 --- /dev/null +++ b/servicetalk-examples/http/metadata/gradle.lockfile @@ -0,0 +1,36 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,testAnnotationProcessor diff --git a/servicetalk-examples/http/mutual-tls/gradle.lockfile b/servicetalk-examples/http/mutual-tls/gradle.lockfile new file mode 100644 index 0000000000..86fca49305 --- /dev/null +++ b/servicetalk-examples/http/mutual-tls/gradle.lockfile @@ -0,0 +1,37 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.hamcrest:hamcrest:2.2=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,testAnnotationProcessor diff --git a/servicetalk-examples/http/observer/gradle.lockfile b/servicetalk-examples/http/observer/gradle.lockfile new file mode 100644 index 0000000000..0075ca6ae7 --- /dev/null +++ b/servicetalk-examples/http/observer/gradle.lockfile @@ -0,0 +1,36 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,testAnnotationProcessor diff --git a/servicetalk-examples/http/opentracing/gradle.lockfile b/servicetalk-examples/http/opentracing/gradle.lockfile new file mode 100644 index 0000000000..45f04d2bf0 --- /dev/null +++ b/servicetalk-examples/http/opentracing/gradle.lockfile @@ -0,0 +1,42 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +io.opentracing.brave:brave-opentracing:1.0.1=compileClasspath,runtimeClasspath +io.opentracing:opentracing-api:0.33.0=compileClasspath,runtimeClasspath +io.zipkin.brave:brave:5.17.1=compileClasspath,runtimeClasspath +io.zipkin.reporter2:zipkin-reporter-brave:2.17.2=compileClasspath,runtimeClasspath +io.zipkin.reporter2:zipkin-reporter:2.17.2=compileClasspath,runtimeClasspath +io.zipkin.zipkin2:zipkin:2.27.0=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,testAnnotationProcessor diff --git a/servicetalk-examples/http/redirects/gradle.lockfile b/servicetalk-examples/http/redirects/gradle.lockfile new file mode 100644 index 0000000000..eaaa9c9816 --- /dev/null +++ b/servicetalk-examples/http/redirects/gradle.lockfile @@ -0,0 +1,37 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.hamcrest:hamcrest:2.2=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,testAnnotationProcessor diff --git a/servicetalk-examples/http/retry/gradle.lockfile b/servicetalk-examples/http/retry/gradle.lockfile new file mode 100644 index 0000000000..0075ca6ae7 --- /dev/null +++ b/servicetalk-examples/http/retry/gradle.lockfile @@ -0,0 +1,36 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,testAnnotationProcessor diff --git a/servicetalk-examples/http/serialization/bytes/gradle.lockfile b/servicetalk-examples/http/serialization/bytes/gradle.lockfile new file mode 100644 index 0000000000..0075ca6ae7 --- /dev/null +++ b/servicetalk-examples/http/serialization/bytes/gradle.lockfile @@ -0,0 +1,36 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,testAnnotationProcessor diff --git a/servicetalk-examples/http/serialization/gradle.lockfile b/servicetalk-examples/http/serialization/gradle.lockfile new file mode 100644 index 0000000000..8ccf21c9ed --- /dev/null +++ b/servicetalk-examples/http/serialization/gradle.lockfile @@ -0,0 +1,4 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +empty=annotationProcessor,compileClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath diff --git a/servicetalk-examples/http/serialization/json/gradle.lockfile b/servicetalk-examples/http/serialization/json/gradle.lockfile new file mode 100644 index 0000000000..96ed010243 --- /dev/null +++ b/servicetalk-examples/http/serialization/json/gradle.lockfile @@ -0,0 +1,39 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson.core:jackson-annotations:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,testAnnotationProcessor diff --git a/servicetalk-examples/http/serialization/protobuf/gradle.lockfile b/servicetalk-examples/http/serialization/protobuf/gradle.lockfile new file mode 100644 index 0000000000..db40c88cc0 --- /dev/null +++ b/servicetalk-examples/http/serialization/protobuf/gradle.lockfile @@ -0,0 +1,37 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,protobuf,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-examples/http/service-composition/gradle.lockfile b/servicetalk-examples/http/service-composition/gradle.lockfile new file mode 100644 index 0000000000..395850dfb1 --- /dev/null +++ b/servicetalk-examples/http/service-composition/gradle.lockfile @@ -0,0 +1,39 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson.core:jackson-annotations:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,testAnnotationProcessor diff --git a/servicetalk-examples/http/timeout/gradle.lockfile b/servicetalk-examples/http/timeout/gradle.lockfile new file mode 100644 index 0000000000..0075ca6ae7 --- /dev/null +++ b/servicetalk-examples/http/timeout/gradle.lockfile @@ -0,0 +1,36 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,testAnnotationProcessor diff --git a/servicetalk-examples/http/uds/gradle.lockfile b/servicetalk-examples/http/uds/gradle.lockfile new file mode 100644 index 0000000000..0075ca6ae7 --- /dev/null +++ b/servicetalk-examples/http/uds/gradle.lockfile @@ -0,0 +1,36 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.apache.logging.log4j:log4j-slf4j-impl:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,testAnnotationProcessor diff --git a/servicetalk-gradle-plugin-internal/gradle.lockfile b/servicetalk-gradle-plugin-internal/gradle.lockfile new file mode 100644 index 0000000000..87797eb53a --- /dev/null +++ b/servicetalk-gradle-plugin-internal/gradle.lockfile @@ -0,0 +1,5 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.github.spotbugs.snom:spotbugs-gradle-plugin:5.0.13=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-grpc-api/gradle.lockfile b/servicetalk-grpc-api/gradle.lockfile new file mode 100644 index 0000000000..8960c1304e --- /dev/null +++ b/servicetalk-grpc-api/gradle.lockfile @@ -0,0 +1,14 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.29.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-grpc-health/gradle.lockfile b/servicetalk-grpc-health/gradle.lockfile new file mode 100644 index 0000000000..3fc2a083cd --- /dev/null +++ b/servicetalk-grpc-health/gradle.lockfile @@ -0,0 +1,35 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.29.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=runtimeClasspath +io.netty:netty-common:4.1.112.Final=runtimeClasspath +io.netty:netty-handler:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=runtimeClasspath +io.netty:netty-transport:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,protobuf,spotbugsPlugins,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-grpc-internal/gradle.lockfile b/servicetalk-grpc-internal/gradle.lockfile new file mode 100644 index 0000000000..060083310f --- /dev/null +++ b/servicetalk-grpc-internal/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-grpc-netty/gradle.lockfile b/servicetalk-grpc-netty/gradle.lockfile new file mode 100644 index 0000000000..9238361913 --- /dev/null +++ b/servicetalk-grpc-netty/gradle.lockfile @@ -0,0 +1,35 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.29.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=runtimeClasspath +io.netty:netty-codec:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-handler:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-transport:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,protobuf,spotbugsPlugins,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-grpc-protobuf/gradle.lockfile b/servicetalk-grpc-protobuf/gradle.lockfile new file mode 100644 index 0000000000..79fbfe9d56 --- /dev/null +++ b/servicetalk-grpc-protobuf/gradle.lockfile @@ -0,0 +1,16 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.29.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-common:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,protobuf,spotbugsPlugins,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-grpc-protoc/gradle.lockfile b/servicetalk-grpc-protoc/gradle.lockfile new file mode 100644 index 0000000000..be1b37f954 --- /dev/null +++ b/servicetalk-grpc-protoc/gradle.lockfile @@ -0,0 +1,14 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath +com.squareup:javapoet:1.13.0=compileClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,protobuf,shadow,spotbugsPlugins,testAnnotationProcessor,testProtobuf diff --git a/servicetalk-grpc-utils/gradle.lockfile b/servicetalk-grpc-utils/gradle.lockfile new file mode 100644 index 0000000000..2dcb3bd230 --- /dev/null +++ b/servicetalk-grpc-utils/gradle.lockfile @@ -0,0 +1,14 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.api.grpc:proto-google-common-protos:2.29.0=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-java:3.25.3=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-http-api/gradle.lockfile b/servicetalk-http-api/gradle.lockfile new file mode 100644 index 0000000000..8b4a4f28f3 --- /dev/null +++ b/servicetalk-http-api/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor,testPropsAnnotationProcessor diff --git a/servicetalk-http-netty/gradle.lockfile b/servicetalk-http-netty/gradle.lockfile new file mode 100644 index 0000000000..c9965adafd --- /dev/null +++ b/servicetalk-http-netty/gradle.lockfile @@ -0,0 +1,33 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-codec-http2:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec-http:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-handler:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-resolver-dns-classes-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns-native-macos:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver-dns:4.1.112.Final=runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-transport:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor,testPropsAnnotationProcessor diff --git a/servicetalk-http-router-jersey-internal/gradle.lockfile b/servicetalk-http-router-jersey-internal/gradle.lockfile new file mode 100644 index 0000000000..b08da879f5 --- /dev/null +++ b/servicetalk-http-router-jersey-internal/gradle.lockfile @@ -0,0 +1,17 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +jakarta.annotation:jakarta.annotation-api:1.3.5=compileClasspath,runtimeClasspath +jakarta.ws.rs:jakarta.ws.rs-api:2.1.6=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.hk2.external:jakarta.inject:2.6.1=compileClasspath,runtimeClasspath +org.glassfish.hk2:osgi-resource-locator:1.0.3=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-common:2.41=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-http-router-jersey/gradle.lockfile b/servicetalk-http-router-jersey/gradle.lockfile new file mode 100644 index 0000000000..545f7cfc6b --- /dev/null +++ b/servicetalk-http-router-jersey/gradle.lockfile @@ -0,0 +1,28 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson.core:jackson-annotations:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.sun.activation:jakarta.activation:1.2.2=compileClasspath,runtimeClasspath +com.sun.xml.bind:jaxb-core:2.3.0.1=compileClasspath,runtimeClasspath +com.sun.xml.bind:jaxb-impl:2.3.3=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +jakarta.activation:jakarta.activation-api:1.2.2=compileClasspath,runtimeClasspath +jakarta.annotation:jakarta.annotation-api:1.3.5=compileClasspath,runtimeClasspath +jakarta.validation:jakarta.validation-api:2.0.2=compileClasspath,runtimeClasspath +jakarta.ws.rs:jakarta.ws.rs-api:2.1.6=compileClasspath,runtimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:2.3.3=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.hk2.external:jakarta.inject:2.6.1=compileClasspath,runtimeClasspath +org.glassfish.hk2:osgi-resource-locator:1.0.3=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-client:2.41=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-common:2.41=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-server:2.41=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor diff --git a/servicetalk-http-router-jersey3-jakarta10-internal/gradle.lockfile b/servicetalk-http-router-jersey3-jakarta10-internal/gradle.lockfile new file mode 100644 index 0000000000..3caeb7673b --- /dev/null +++ b/servicetalk-http-router-jersey3-jakarta10-internal/gradle.lockfile @@ -0,0 +1,24 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.sun.istack:istack-commons-runtime:4.1.2=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +jakarta.activation:jakarta.activation-api:2.1.3=compileClasspath,runtimeClasspath +jakarta.annotation:jakarta.annotation-api:2.1.1=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +jakarta.ws.rs:jakarta.ws.rs-api:3.1.0=compileClasspath,runtimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:4.0.2=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.eclipse.angus:angus-activation:2.0.2=runtimeClasspath +org.glassfish.hk2:osgi-resource-locator:1.0.3=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-core:4.0.5=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-runtime:4.0.5=compileClasspath,runtimeClasspath +org.glassfish.jaxb:txw2:4.0.5=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-common:3.1.6=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:3.1.6=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-http-router-jersey3-jakarta10/gradle.lockfile b/servicetalk-http-router-jersey3-jakarta10/gradle.lockfile new file mode 100644 index 0000000000..beea305703 --- /dev/null +++ b/servicetalk-http-router-jersey3-jakarta10/gradle.lockfile @@ -0,0 +1,33 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson.core:jackson-annotations:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.sun.activation:jakarta.activation:1.2.2=compileClasspath,runtimeClasspath +com.sun.istack:istack-commons-runtime:4.1.2=compileClasspath,runtimeClasspath +com.sun.xml.bind:jaxb-core:2.3.0.1=compileClasspath,runtimeClasspath +com.sun.xml.bind:jaxb-impl:2.3.3=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +jakarta.activation:jakarta.activation-api:2.1.3=compileClasspath,runtimeClasspath +jakarta.annotation:jakarta.annotation-api:2.1.1=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +jakarta.validation:jakarta.validation-api:3.0.2=compileClasspath,runtimeClasspath +jakarta.ws.rs:jakarta.ws.rs-api:3.1.0=compileClasspath,runtimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:4.0.2=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.eclipse.angus:angus-activation:2.0.2=runtimeClasspath +org.glassfish.hk2:osgi-resource-locator:1.0.3=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-core:4.0.5=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-runtime:4.0.5=compileClasspath,runtimeClasspath +org.glassfish.jaxb:txw2:4.0.5=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-client:3.1.6=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-common:3.1.6=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-server:3.1.6=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:3.1.6=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor diff --git a/servicetalk-http-router-jersey3-jakarta9-internal/gradle.lockfile b/servicetalk-http-router-jersey3-jakarta9-internal/gradle.lockfile new file mode 100644 index 0000000000..114bc94728 --- /dev/null +++ b/servicetalk-http-router-jersey3-jakarta9-internal/gradle.lockfile @@ -0,0 +1,24 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.sun.activation:jakarta.activation:2.0.1=compileClasspath,runtimeClasspath +com.sun.istack:istack-commons-runtime:4.0.1=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +jakarta.activation:jakarta.activation-api:2.0.1=compileClasspath,runtimeClasspath +jakarta.annotation:jakarta.annotation-api:2.1.1=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +jakarta.ws.rs:jakarta.ws.rs-api:3.0.0=compileClasspath,runtimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:3.0.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.hk2:osgi-resource-locator:1.0.3=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-core:3.0.2=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-runtime:3.0.2=compileClasspath,runtimeClasspath +org.glassfish.jaxb:txw2:3.0.2=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-common:3.0.13=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:3.0.13=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-http-router-jersey3-jakarta9/gradle.lockfile b/servicetalk-http-router-jersey3-jakarta9/gradle.lockfile new file mode 100644 index 0000000000..a0c647d500 --- /dev/null +++ b/servicetalk-http-router-jersey3-jakarta9/gradle.lockfile @@ -0,0 +1,32 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson.core:jackson-annotations:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-core:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.16.2=compileClasspath,runtimeClasspath +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.sun.activation:jakarta.activation:2.0.1=compileClasspath,runtimeClasspath +com.sun.istack:istack-commons-runtime:4.0.1=compileClasspath,runtimeClasspath +com.sun.xml.bind:jaxb-core:2.3.0.1=compileClasspath,runtimeClasspath +com.sun.xml.bind:jaxb-impl:2.3.3=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +jakarta.activation:jakarta.activation-api:2.0.1=compileClasspath,runtimeClasspath +jakarta.annotation:jakarta.annotation-api:2.1.1=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +jakarta.validation:jakarta.validation-api:3.0.2=compileClasspath,runtimeClasspath +jakarta.ws.rs:jakarta.ws.rs-api:3.0.0=compileClasspath,runtimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:3.0.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.hk2:osgi-resource-locator:1.0.3=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-core:3.0.2=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-runtime:3.0.2=compileClasspath,runtimeClasspath +org.glassfish.jaxb:txw2:3.0.2=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-client:3.0.13=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-common:3.0.13=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-server:3.0.13=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:3.0.13=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor diff --git a/servicetalk-http-router-predicate/gradle.lockfile b/servicetalk-http-router-predicate/gradle.lockfile new file mode 100644 index 0000000000..060083310f --- /dev/null +++ b/servicetalk-http-router-predicate/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-http-security-jersey/gradle.lockfile b/servicetalk-http-security-jersey/gradle.lockfile new file mode 100644 index 0000000000..b08da879f5 --- /dev/null +++ b/servicetalk-http-security-jersey/gradle.lockfile @@ -0,0 +1,17 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +jakarta.annotation:jakarta.annotation-api:1.3.5=compileClasspath,runtimeClasspath +jakarta.ws.rs:jakarta.ws.rs-api:2.1.6=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.hk2.external:jakarta.inject:2.6.1=compileClasspath,runtimeClasspath +org.glassfish.hk2:osgi-resource-locator:1.0.3=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-common:2.41=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-http-security-jersey3-jakarta10/gradle.lockfile b/servicetalk-http-security-jersey3-jakarta10/gradle.lockfile new file mode 100644 index 0000000000..3caeb7673b --- /dev/null +++ b/servicetalk-http-security-jersey3-jakarta10/gradle.lockfile @@ -0,0 +1,24 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.sun.istack:istack-commons-runtime:4.1.2=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +jakarta.activation:jakarta.activation-api:2.1.3=compileClasspath,runtimeClasspath +jakarta.annotation:jakarta.annotation-api:2.1.1=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +jakarta.ws.rs:jakarta.ws.rs-api:3.1.0=compileClasspath,runtimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:4.0.2=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.eclipse.angus:angus-activation:2.0.2=runtimeClasspath +org.glassfish.hk2:osgi-resource-locator:1.0.3=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-core:4.0.5=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-runtime:4.0.5=compileClasspath,runtimeClasspath +org.glassfish.jaxb:txw2:4.0.5=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-common:3.1.6=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:3.1.6=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-http-security-jersey3-jakarta9/gradle.lockfile b/servicetalk-http-security-jersey3-jakarta9/gradle.lockfile new file mode 100644 index 0000000000..114bc94728 --- /dev/null +++ b/servicetalk-http-security-jersey3-jakarta9/gradle.lockfile @@ -0,0 +1,24 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +com.sun.activation:jakarta.activation:2.0.1=compileClasspath,runtimeClasspath +com.sun.istack:istack-commons-runtime:4.0.1=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +jakarta.activation:jakarta.activation-api:2.0.1=compileClasspath,runtimeClasspath +jakarta.annotation:jakarta.annotation-api:2.1.1=compileClasspath,runtimeClasspath +jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath +jakarta.ws.rs:jakarta.ws.rs-api:3.0.0=compileClasspath,runtimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:3.0.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.hk2:osgi-resource-locator:1.0.3=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-core:3.0.2=compileClasspath,runtimeClasspath +org.glassfish.jaxb:jaxb-runtime:3.0.2=compileClasspath,runtimeClasspath +org.glassfish.jaxb:txw2:3.0.2=compileClasspath,runtimeClasspath +org.glassfish.jersey.core:jersey-common:3.0.13=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:3.0.13=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-http-utils/gradle.lockfile b/servicetalk-http-utils/gradle.lockfile new file mode 100644 index 0000000000..aa5b06c9a1 --- /dev/null +++ b/servicetalk-http-utils/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-loadbalancer-experimental-provider/gradle.lockfile b/servicetalk-loadbalancer-experimental-provider/gradle.lockfile new file mode 100644 index 0000000000..aa5b06c9a1 --- /dev/null +++ b/servicetalk-loadbalancer-experimental-provider/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-loadbalancer-experimental/gradle.lockfile b/servicetalk-loadbalancer-experimental/gradle.lockfile new file mode 100644 index 0000000000..aa5b06c9a1 --- /dev/null +++ b/servicetalk-loadbalancer-experimental/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-loadbalancer/gradle.lockfile b/servicetalk-loadbalancer/gradle.lockfile new file mode 100644 index 0000000000..aa5b06c9a1 --- /dev/null +++ b/servicetalk-loadbalancer/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-log4j2-mdc-utils/gradle.lockfile b/servicetalk-log4j2-mdc-utils/gradle.lockfile new file mode 100644 index 0000000000..5a79326138 --- /dev/null +++ b/servicetalk-log4j2-mdc-utils/gradle.lockfile @@ -0,0 +1,14 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor diff --git a/servicetalk-log4j2-mdc/gradle.lockfile b/servicetalk-log4j2-mdc/gradle.lockfile new file mode 100644 index 0000000000..933bf1d9a4 --- /dev/null +++ b/servicetalk-log4j2-mdc/gradle.lockfile @@ -0,0 +1,14 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-logging-api/gradle.lockfile b/servicetalk-logging-api/gradle.lockfile new file mode 100644 index 0000000000..d800045c99 --- /dev/null +++ b/servicetalk-logging-api/gradle.lockfile @@ -0,0 +1,10 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=runtimeClasspath +empty=annotationProcessor,compileClasspath,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-logging-slf4j-internal/gradle.lockfile b/servicetalk-logging-slf4j-internal/gradle.lockfile new file mode 100644 index 0000000000..890e99981b --- /dev/null +++ b/servicetalk-logging-slf4j-internal/gradle.lockfile @@ -0,0 +1,11 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-oio-api-internal/gradle.lockfile b/servicetalk-oio-api-internal/gradle.lockfile new file mode 100644 index 0000000000..8dcf2731a8 --- /dev/null +++ b/servicetalk-oio-api-internal/gradle.lockfile @@ -0,0 +1,11 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-oio-api/gradle.lockfile b/servicetalk-oio-api/gradle.lockfile new file mode 100644 index 0000000000..52a468d6a7 --- /dev/null +++ b/servicetalk-oio-api/gradle.lockfile @@ -0,0 +1,10 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-opentelemetry-asynccontext/gradle.lockfile b/servicetalk-opentelemetry-asynccontext/gradle.lockfile new file mode 100644 index 0000000000..c6ecc999e4 --- /dev/null +++ b/servicetalk-opentelemetry-asynccontext/gradle.lockfile @@ -0,0 +1,14 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.opentelemetry:opentelemetry-api:1.28.0=compileClasspath,runtimeClasspath +io.opentelemetry:opentelemetry-context:1.28.0=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-opentelemetry-http/gradle.lockfile b/servicetalk-opentelemetry-http/gradle.lockfile new file mode 100644 index 0000000000..fc162c9dfc --- /dev/null +++ b/servicetalk-opentelemetry-http/gradle.lockfile @@ -0,0 +1,18 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-semconv:1.28.0-alpha=compileClasspath,runtimeClasspath +io.opentelemetry.instrumentation:opentelemetry-instrumentation-api:1.28.0=compileClasspath,runtimeClasspath +io.opentelemetry:opentelemetry-api:1.28.0=compileClasspath,runtimeClasspath +io.opentelemetry:opentelemetry-context:1.28.0=compileClasspath,runtimeClasspath +io.opentelemetry:opentelemetry-extension-incubator:1.28.0-alpha=runtimeClasspath +io.opentelemetry:opentelemetry-semconv:1.28.0-alpha=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-opentracing-asynccontext/gradle.lockfile b/servicetalk-opentracing-asynccontext/gradle.lockfile new file mode 100644 index 0000000000..e7ac7a5dbf --- /dev/null +++ b/servicetalk-opentracing-asynccontext/gradle.lockfile @@ -0,0 +1,13 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.opentracing:opentracing-api:0.33.0=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-opentracing-http/gradle.lockfile b/servicetalk-opentracing-http/gradle.lockfile new file mode 100644 index 0000000000..ede6767382 --- /dev/null +++ b/servicetalk-opentracing-http/gradle.lockfile @@ -0,0 +1,13 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.opentracing:opentracing-api:0.33.0=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-opentracing-inmemory-api/gradle.lockfile b/servicetalk-opentracing-inmemory-api/gradle.lockfile new file mode 100644 index 0000000000..cd183c6f72 --- /dev/null +++ b/servicetalk-opentracing-inmemory-api/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.opentracing:opentracing-api:0.33.0=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-opentracing-inmemory/gradle.lockfile b/servicetalk-opentracing-inmemory/gradle.lockfile new file mode 100644 index 0000000000..ede6767382 --- /dev/null +++ b/servicetalk-opentracing-inmemory/gradle.lockfile @@ -0,0 +1,13 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.opentracing:opentracing-api:0.33.0=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-opentracing-internal/gradle.lockfile b/servicetalk-opentracing-internal/gradle.lockfile new file mode 100644 index 0000000000..8dcf2731a8 --- /dev/null +++ b/servicetalk-opentracing-internal/gradle.lockfile @@ -0,0 +1,11 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-opentracing-log4j2/gradle.lockfile b/servicetalk-opentracing-log4j2/gradle.lockfile new file mode 100644 index 0000000000..c0ea9cb8a0 --- /dev/null +++ b/servicetalk-opentracing-log4j2/gradle.lockfile @@ -0,0 +1,15 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.opentracing:opentracing-api:0.33.0=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-api:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-core:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-opentracing-zipkin-publisher/gradle.lockfile b/servicetalk-opentracing-zipkin-publisher/gradle.lockfile new file mode 100644 index 0000000000..e583aed597 --- /dev/null +++ b/servicetalk-opentracing-zipkin-publisher/gradle.lockfile @@ -0,0 +1,30 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-handler:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-transport:4.1.112.Final=compileClasspath,runtimeClasspath +io.opentracing:opentracing-api:0.33.0=compileClasspath,runtimeClasspath +io.zipkin.reporter2:zipkin-reporter:2.17.2=compileClasspath,runtimeClasspath +io.zipkin.zipkin2:zipkin:2.27.0=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-router-api/gradle.lockfile b/servicetalk-router-api/gradle.lockfile new file mode 100644 index 0000000000..52a468d6a7 --- /dev/null +++ b/servicetalk-router-api/gradle.lockfile @@ -0,0 +1,10 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-router-utils-internal/gradle.lockfile b/servicetalk-router-utils-internal/gradle.lockfile new file mode 100644 index 0000000000..060083310f --- /dev/null +++ b/servicetalk-router-utils-internal/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-serialization-api/gradle.lockfile b/servicetalk-serialization-api/gradle.lockfile new file mode 100644 index 0000000000..060083310f --- /dev/null +++ b/servicetalk-serialization-api/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-serializer-api/gradle.lockfile b/servicetalk-serializer-api/gradle.lockfile new file mode 100644 index 0000000000..060083310f --- /dev/null +++ b/servicetalk-serializer-api/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-serializer-utils/gradle.lockfile b/servicetalk-serializer-utils/gradle.lockfile new file mode 100644 index 0000000000..060083310f --- /dev/null +++ b/servicetalk-serializer-utils/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-tcp-netty-internal/gradle.lockfile b/servicetalk-tcp-netty-internal/gradle.lockfile new file mode 100644 index 0000000000..d17aaea145 --- /dev/null +++ b/servicetalk-tcp-netty-internal/gradle.lockfile @@ -0,0 +1,27 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-handler:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-transport:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor diff --git a/servicetalk-test-resources/gradle.lockfile b/servicetalk-test-resources/gradle.lockfile new file mode 100644 index 0000000000..c183417bfb --- /dev/null +++ b/servicetalk-test-resources/gradle.lockfile @@ -0,0 +1,13 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.hamcrest:hamcrest:2.2=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-traffic-resilience-http/gradle.lockfile b/servicetalk-traffic-resilience-http/gradle.lockfile new file mode 100644 index 0000000000..aa5b06c9a1 --- /dev/null +++ b/servicetalk-traffic-resilience-http/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-transport-api/gradle.lockfile b/servicetalk-transport-api/gradle.lockfile new file mode 100644 index 0000000000..aa5b06c9a1 --- /dev/null +++ b/servicetalk-transport-api/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-transport-netty-internal/gradle.lockfile b/servicetalk-transport-netty-internal/gradle.lockfile new file mode 100644 index 0000000000..e2578f9949 --- /dev/null +++ b/servicetalk-transport-netty-internal/gradle.lockfile @@ -0,0 +1,27 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-handler:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-transport:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor diff --git a/servicetalk-transport-netty/gradle.lockfile b/servicetalk-transport-netty/gradle.lockfile new file mode 100644 index 0000000000..882230cb96 --- /dev/null +++ b/servicetalk-transport-netty/gradle.lockfile @@ -0,0 +1,27 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.25.Final=runtimeClasspath +io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.25.Final=runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-buffer:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-codec:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-handler:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-resolver:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.65.Final=runtimeClasspath +io.netty:netty-tcnative-classes:2.0.65.Final=runtimeClasspath +io.netty:netty-transport-classes-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-classes-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-epoll:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-kqueue:4.1.112.Final=runtimeClasspath +io.netty:netty-transport-native-unix-common:4.1.112.Final=compileClasspath,runtimeClasspath +io.netty:netty-transport:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=runtimeClasspath +org.slf4j:slf4j-api:1.7.36=runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor diff --git a/servicetalk-utils-internal/gradle.lockfile b/servicetalk-utils-internal/gradle.lockfile new file mode 100644 index 0000000000..9b0f7d1674 --- /dev/null +++ b/servicetalk-utils-internal/gradle.lockfile @@ -0,0 +1,12 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath +com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath +io.netty:netty-bom:4.1.112.Final=compileClasspath,runtimeClasspath +org.apache.logging.log4j:log4j-bom:2.23.1=compileClasspath,runtimeClasspath +org.glassfish.jersey:jersey-bom:2.41=compileClasspath,runtimeClasspath +org.jctools:jctools-core:4.0.3=compileClasspath,runtimeClasspath +org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath +empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor