Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Gradle Lock files #2983

Merged
merged 6 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci-prq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
31 changes: 31 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,35 @@ subprojects {
}
}
}

// Configure dependency locking: https://docs.gradle.org/current/userguide/dependency_locking.html
dependencyLocking {
lockMode = LockMode.STRICT
}

configurations {
daschl marked this conversation as resolved.
Show resolved Hide resolved
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() }
}
}
}
31 changes: 31 additions & 0 deletions scripts/check-lockfiles.sh
Original file line number Diff line number Diff line change
@@ -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
10 changes: 10 additions & 0 deletions servicetalk-annotations/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
39 changes: 39 additions & 0 deletions servicetalk-benchmarks/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
4 changes: 4 additions & 0 deletions servicetalk-bom/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
10 changes: 10 additions & 0 deletions servicetalk-buffer-api/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
14 changes: 14 additions & 0 deletions servicetalk-buffer-netty/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
12 changes: 12 additions & 0 deletions servicetalk-capacity-limiter-api/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
10 changes: 10 additions & 0 deletions servicetalk-circuit-breaker-api/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
15 changes: 15 additions & 0 deletions servicetalk-circuit-breaker-resilience4j/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
12 changes: 12 additions & 0 deletions servicetalk-client-api-internal/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
12 changes: 12 additions & 0 deletions servicetalk-client-api/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
12 changes: 12 additions & 0 deletions servicetalk-concurrent-api-internal/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
12 changes: 12 additions & 0 deletions servicetalk-concurrent-api-test/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
12 changes: 12 additions & 0 deletions servicetalk-concurrent-api/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
12 changes: 12 additions & 0 deletions servicetalk-concurrent-internal/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
12 changes: 12 additions & 0 deletions servicetalk-concurrent-jdkflow/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
15 changes: 15 additions & 0 deletions servicetalk-concurrent-reactivestreams/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
12 changes: 12 additions & 0 deletions servicetalk-concurrent-test-internal/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
10 changes: 10 additions & 0 deletions servicetalk-concurrent/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
10 changes: 10 additions & 0 deletions servicetalk-context-api/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -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
Loading
Loading