Skip to content

Commit

Permalink
Address dependencies issues in servicetalk-benchmarks module (#3165)
Browse files Browse the repository at this point in the history
Motivation:

Dependency-analysis plugin detected that all dependencies in
`servicetalk-benchmarks` module should be declared under
`jmhImplementation` scope rather than `implementation`.

Modifications:

- Change the scope from `implementation` to `jmhImplementation`;
- Add `jmhCompileClasspath` and `jmhRuntimeClasspath` scopes for
dependency locking;
- Regenerate all dependency locks;

Result:

Addresses all warning from dependency-analysis plugin for
`servicetalk-benchmarks` module.
  • Loading branch information
idelpivnitskiy authored Jan 10, 2025
1 parent 7f5c850 commit 1c1993b
Show file tree
Hide file tree
Showing 121 changed files with 192 additions and 176 deletions.
6 changes: 6 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,12 @@ subprojects {
runtimeClasspath {
resolutionStrategy.activateDependencyLocking()
}
jmhCompileClasspath {
resolutionStrategy.activateDependencyLocking()
}
jmhRuntimeClasspath {
resolutionStrategy.activateDependencyLocking()
}
}

tasks.register("resolveAndLockAll") {
Expand Down
2 changes: 1 addition & 1 deletion servicetalk-annotations/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor
50 changes: 25 additions & 25 deletions servicetalk-benchmarks/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,31 +22,31 @@ plugins {
apply plugin: "io.servicetalk.servicetalk-gradle-plugin-internal-library"

dependencies {
implementation platform("com.fasterxml.jackson:jackson-bom:$jacksonVersion")
implementation platform("io.netty:netty-bom:$nettyVersion")
implementation project(":servicetalk-annotations")
implementation project(":servicetalk-buffer-api")
implementation project(":servicetalk-buffer-netty")
implementation project(":servicetalk-client-api")
implementation project(":servicetalk-concurrent")
implementation project(":servicetalk-concurrent-api")
implementation project(":servicetalk-concurrent-api-internal")
implementation project(":servicetalk-concurrent-internal")
implementation project(":servicetalk-context-api")
implementation project(":servicetalk-data-jackson")
implementation project(":servicetalk-http-api")
implementation project(":servicetalk-http-netty")
implementation project(":servicetalk-loadbalancer")
implementation project(":servicetalk-serializer-api")
implementation project(":servicetalk-transport-api")
implementation project(":servicetalk-transport-netty-internal")
implementation "com.fasterxml.jackson.core:jackson-core"
implementation "com.fasterxml.jackson.core:jackson-databind"
implementation "io.netty:netty-buffer"
implementation "io.netty:netty-codec-http"
implementation "io.netty:netty-common"
implementation "io.netty:netty-transport"
implementation "org.openjdk.jmh:jmh-core:$jmhCoreVersion"
jmhImplementation platform("com.fasterxml.jackson:jackson-bom:$jacksonVersion")
jmhImplementation platform("io.netty:netty-bom:$nettyVersion")
jmhImplementation project(":servicetalk-annotations")
jmhImplementation project(":servicetalk-buffer-api")
jmhImplementation project(":servicetalk-buffer-netty")
jmhImplementation project(":servicetalk-client-api")
jmhImplementation project(":servicetalk-concurrent")
jmhImplementation project(":servicetalk-concurrent-api")
jmhImplementation project(":servicetalk-concurrent-api-internal")
jmhImplementation project(":servicetalk-concurrent-internal")
jmhImplementation project(":servicetalk-context-api")
jmhImplementation project(":servicetalk-data-jackson")
jmhImplementation project(":servicetalk-http-api")
jmhImplementation project(":servicetalk-http-netty")
jmhImplementation project(":servicetalk-loadbalancer")
jmhImplementation project(":servicetalk-serializer-api")
jmhImplementation project(":servicetalk-transport-api")
jmhImplementation project(":servicetalk-transport-netty-internal")
jmhImplementation "com.fasterxml.jackson.core:jackson-core"
jmhImplementation "com.fasterxml.jackson.core:jackson-databind"
jmhImplementation "io.netty:netty-buffer"
jmhImplementation "io.netty:netty-codec-http"
jmhImplementation "io.netty:netty-common"
jmhImplementation "io.netty:netty-transport"
jmhImplementation "org.openjdk.jmh:jmh-core:$jmhCoreVersion"
}

jmh {
Expand Down
76 changes: 43 additions & 33 deletions servicetalk-benchmarks/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -1,36 +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.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
io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.26.Final=runtimeClasspath
io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.26.Final=runtimeClasspath
io.netty:netty-bom:4.1.116.Final=compileClasspath,runtimeClasspath
io.netty:netty-buffer:4.1.116.Final=compileClasspath,runtimeClasspath
io.netty:netty-codec-dns:4.1.116.Final=runtimeClasspath
io.netty:netty-codec-http2:4.1.116.Final=runtimeClasspath
io.netty:netty-codec-http:4.1.116.Final=compileClasspath,runtimeClasspath
io.netty:netty-codec:4.1.116.Final=compileClasspath,runtimeClasspath
io.netty:netty-common:4.1.116.Final=compileClasspath,runtimeClasspath
io.netty:netty-handler:4.1.116.Final=compileClasspath,runtimeClasspath
io.netty:netty-resolver-dns-classes-macos:4.1.116.Final=runtimeClasspath
io.netty:netty-resolver-dns-native-macos:4.1.116.Final=runtimeClasspath
io.netty:netty-resolver-dns:4.1.116.Final=runtimeClasspath
io.netty:netty-resolver:4.1.116.Final=compileClasspath,runtimeClasspath
io.netty:netty-tcnative-boringssl-static:2.0.69.Final=runtimeClasspath
io.netty:netty-tcnative-classes:2.0.69.Final=runtimeClasspath
io.netty:netty-transport-classes-epoll:4.1.116.Final=runtimeClasspath
io.netty:netty-transport-classes-kqueue:4.1.116.Final=runtimeClasspath
io.netty:netty-transport-native-epoll:4.1.116.Final=runtimeClasspath
io.netty:netty-transport-native-kqueue:4.1.116.Final=runtimeClasspath
io.netty:netty-transport-native-unix-common:4.1.116.Final=compileClasspath,runtimeClasspath
io.netty:netty-transport:4.1.116.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.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
com.fasterxml.jackson.core:jackson-annotations:2.16.2=jmhCompileClasspath,jmhRuntimeClasspath
com.fasterxml.jackson.core:jackson-core:2.16.2=jmhCompileClasspath,jmhRuntimeClasspath
com.fasterxml.jackson.core:jackson-databind:2.16.2=jmhCompileClasspath,jmhRuntimeClasspath
com.fasterxml.jackson:jackson-bom:2.16.2=jmhCompileClasspath,jmhRuntimeClasspath
com.google.code.findbugs:jsr305:3.0.2=jmhCompileClasspath,jmhRuntimeClasspath
io.netty.incubator:netty-incubator-transport-classes-io_uring:0.0.26.Final=jmhRuntimeClasspath
io.netty.incubator:netty-incubator-transport-native-io_uring:0.0.26.Final=jmhRuntimeClasspath
io.netty:netty-bom:4.1.116.Final=jmhCompileClasspath,jmhRuntimeClasspath
io.netty:netty-buffer:4.1.116.Final=jmhCompileClasspath,jmhRuntimeClasspath
io.netty:netty-codec-dns:4.1.116.Final=jmhRuntimeClasspath
io.netty:netty-codec-http2:4.1.116.Final=jmhRuntimeClasspath
io.netty:netty-codec-http:4.1.116.Final=jmhCompileClasspath,jmhRuntimeClasspath
io.netty:netty-codec:4.1.116.Final=jmhCompileClasspath,jmhRuntimeClasspath
io.netty:netty-common:4.1.116.Final=jmhCompileClasspath,jmhRuntimeClasspath
io.netty:netty-handler:4.1.116.Final=jmhCompileClasspath,jmhRuntimeClasspath
io.netty:netty-resolver-dns-classes-macos:4.1.116.Final=jmhRuntimeClasspath
io.netty:netty-resolver-dns-native-macos:4.1.116.Final=jmhRuntimeClasspath
io.netty:netty-resolver-dns:4.1.116.Final=jmhRuntimeClasspath
io.netty:netty-resolver:4.1.116.Final=jmhCompileClasspath,jmhRuntimeClasspath
io.netty:netty-tcnative-boringssl-static:2.0.69.Final=jmhRuntimeClasspath
io.netty:netty-tcnative-classes:2.0.69.Final=jmhRuntimeClasspath
io.netty:netty-transport-classes-epoll:4.1.116.Final=jmhRuntimeClasspath
io.netty:netty-transport-classes-kqueue:4.1.116.Final=jmhRuntimeClasspath
io.netty:netty-transport-native-epoll:4.1.116.Final=jmhRuntimeClasspath
io.netty:netty-transport-native-kqueue:4.1.116.Final=jmhRuntimeClasspath
io.netty:netty-transport-native-unix-common:4.1.116.Final=jmhCompileClasspath,jmhRuntimeClasspath
io.netty:netty-transport:4.1.116.Final=jmhCompileClasspath,jmhRuntimeClasspath
net.sf.jopt-simple:jopt-simple:5.0.4=jmhCompileClasspath,jmhRuntimeClasspath
org.apache.commons:commons-math3:3.6.1=jmhCompileClasspath,jmhRuntimeClasspath
org.jctools:jctools-core:4.0.3=jmhRuntimeClasspath
org.junit.jupiter:junit-jupiter-api:5.11.4=jmhRuntimeClasspath
org.junit.jupiter:junit-jupiter-engine:5.11.4=jmhRuntimeClasspath
org.junit.platform:junit-platform-commons:1.11.4=jmhRuntimeClasspath
org.junit.platform:junit-platform-engine:1.11.4=jmhRuntimeClasspath
org.junit:junit-bom:5.11.4=jmhRuntimeClasspath
org.openjdk.jmh:jmh-core:1.37=jmhCompileClasspath,jmhRuntimeClasspath
org.openjdk.jmh:jmh-generator-asm:1.37=jmhCompileClasspath,jmhRuntimeClasspath
org.openjdk.jmh:jmh-generator-bytecode:1.37=jmhCompileClasspath,jmhRuntimeClasspath
org.openjdk.jmh:jmh-generator-reflection:1.37=jmhCompileClasspath,jmhRuntimeClasspath
org.opentest4j:opentest4j:1.3.0=jmhRuntimeClasspath
org.ow2.asm:asm:9.0=jmhCompileClasspath,jmhRuntimeClasspath
org.slf4j:slf4j-api:1.7.36=jmhRuntimeClasspath
empty=annotationProcessor,compileClasspath,jmhAnnotationProcessor,runtimeClasspath,shadow,spotbugsPlugins,testAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-bom/gradle.lockfile
Original file line number Diff line number Diff line change
@@ -1,4 +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
empty=annotationProcessor,classpath,compileClasspath,jmhCompileClasspath,jmhRuntimeClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath
2 changes: 1 addition & 1 deletion servicetalk-buffer-api/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-buffer-netty/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ io.netty:netty-buffer:4.1.116.Final=compileClasspath,runtimeClasspath
io.netty:netty-common:4.1.116.Final=compileClasspath,runtimeClasspath
org.jctools:jctools-core:4.0.3=runtimeClasspath
org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-capacity-limiter-api/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath
org.jctools:jctools-core:4.0.3=runtimeClasspath
org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-circuit-breaker-api/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-circuit-breaker-resilience4j/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ io.github.resilience4j:resilience4j-core:1.7.1=compileClasspath,runtimeClasspath
io.vavr:vavr-match:0.10.2=compileClasspath,runtimeClasspath
io.vavr:vavr:0.10.2=compileClasspath,runtimeClasspath
org.slf4j:slf4j-api:1.7.30=runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-client-api-internal/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath
org.jctools:jctools-core:4.0.3=runtimeClasspath
org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-client-api/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath
org.jctools:jctools-core:4.0.3=runtimeClasspath
org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-concurrent-api-internal/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath
org.jctools:jctools-core:4.0.3=runtimeClasspath
org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-concurrent-api-test/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath
org.jctools:jctools-core:4.0.3=runtimeClasspath
org.slf4j:slf4j-api:1.7.36=runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-concurrent-api/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath
org.jctools:jctools-core:4.0.3=runtimeClasspath
org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-concurrent-internal/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath
org.jctools:jctools-core:4.0.3=runtimeClasspath
org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-concurrent-jdkflow/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath
org.jctools:jctools-core:4.0.3=runtimeClasspath
org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-concurrent-reactivestreams/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ io.netty:netty-common:4.1.116.Final=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
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor,testFixturesAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-concurrent-test-internal/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath
org.jctools:jctools-core:4.0.3=runtimeClasspath
org.slf4j:slf4j-api:1.7.36=runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-concurrent/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-context-api/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-data-jackson-jersey/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ 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
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-data-jackson-jersey3-jakarta10/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ org.glassfish.jersey.core:jersey-server:3.1.9=compileClasspath,runtimeClasspath
org.glassfish.jersey:jersey-bom:3.1.9=compileClasspath,runtimeClasspath
org.jctools:jctools-core:4.0.3=runtimeClasspath
org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-data-jackson-jersey3-jakarta9/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ org.glassfish.jersey.core:jersey-server:3.0.17=compileClasspath,runtimeClasspath
org.glassfish.jersey:jersey-bom:3.0.17=compileClasspath,runtimeClasspath
org.jctools:jctools-core:4.0.3=runtimeClasspath
org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-data-jackson/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath
com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath
org.jctools:jctools-core:4.0.3=runtimeClasspath
org.slf4j:slf4j-api:1.7.36=compileClasspath,runtimeClasspath
empty=annotationProcessor,spotbugsPlugins,testAnnotationProcessor
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,spotbugsPlugins,testAnnotationProcessor
2 changes: 1 addition & 1 deletion servicetalk-data-protobuf-jersey/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ 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
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,protobuf,spotbugsPlugins,testAnnotationProcessor,testProtobuf
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ org.glassfish.jersey.core:jersey-server:3.1.9=compileClasspath,runtimeClasspath
org.glassfish.jersey:jersey-bom:3.1.9=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
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,protobuf,spotbugsPlugins,testAnnotationProcessor,testProtobuf
2 changes: 1 addition & 1 deletion servicetalk-data-protobuf-jersey3-jakarta9/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ org.glassfish.jersey.core:jersey-server:3.0.17=compileClasspath,runtimeClasspath
org.glassfish.jersey:jersey-bom:3.0.17=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
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,protobuf,spotbugsPlugins,testAnnotationProcessor,testProtobuf
2 changes: 1 addition & 1 deletion servicetalk-data-protobuf/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ com.google.protobuf:protobuf-bom:3.25.3=compileClasspath,runtimeClasspath
com.google.protobuf:protobuf-java:3.25.3=compileClasspath,runtimeClasspath
org.jctools:jctools-core:4.0.3=runtimeClasspath
org.slf4j:slf4j-api:1.7.36=runtimeClasspath
empty=annotationProcessor,protobuf,spotbugsPlugins,testAnnotationProcessor,testProtobuf
empty=annotationProcessor,jmhCompileClasspath,jmhRuntimeClasspath,protobuf,spotbugsPlugins,testAnnotationProcessor,testProtobuf
Loading

0 comments on commit 1c1993b

Please sign in to comment.