Skip to content

Commit 9b34795

Browse files
authored
[b/353527405] Add gradle version lock files (GoogleCloudPlatform#503)
* Add gradle version lock files * Add gradle version lock files
1 parent b13ee20 commit 9b34795

11 files changed

Lines changed: 760 additions & 0 deletions

File tree

dumper/app/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,10 @@ dependencies {
100100
sources "ch.qos.logback:logback-classic:${libs.versions.logback.get()}@sources"
101101
}
102102

103+
dependencyLocking {
104+
lockAllConfigurations()
105+
}
106+
103107
jacoco {
104108
toolVersion = "0.8.11"
105109
}

dumper/app/gradle.lockfile

Lines changed: 245 additions & 0 deletions
Large diffs are not rendered by default.

dumper/lib-common/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,7 @@ dependencies {
2424
testFixturesApi "commons-io:commons-io"
2525
testFixturesImplementation "org.apache.commons:commons-lang3"
2626
}
27+
28+
dependencyLocking {
29+
lockAllConfigurations()
30+
}

dumper/lib-common/gradle.lockfile

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This is a Gradle generated file for dependency locking.
2+
# Manual edits can break the build and are not advised.
3+
# This file is expected to be part of source control.
4+
ch.qos.logback:logback-classic:1.2.11=testRuntimeClasspath
5+
ch.qos.logback:logback-core:1.2.11=testRuntimeClasspath
6+
com.github.stephenc.jcip:jcip-annotations:1.0-1=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
7+
com.google.auto.service:auto-service-annotations:1.1.1=annotationProcessor,compileClasspath,testAnnotationProcessor,testCompileClasspath,testFixturesAnnotationProcessor,testFixturesCompileClasspath
8+
com.google.auto.service:auto-service:1.1.1=annotationProcessor,compileClasspath,testAnnotationProcessor,testCompileClasspath,testFixturesAnnotationProcessor,testFixturesCompileClasspath
9+
com.google.auto.value:auto-value-annotations:1.10.2=compileClasspath,testCompileClasspath,testFixturesCompileClasspath
10+
com.google.auto.value:auto-value:1.10.2=annotationProcessor,testAnnotationProcessor,testFixturesAnnotationProcessor
11+
com.google.auto:auto-common:1.2.1=annotationProcessor,compileClasspath,testAnnotationProcessor,testCompileClasspath,testFixturesAnnotationProcessor,testFixturesCompileClasspath
12+
com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,compileClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testFixturesAnnotationProcessor,testFixturesCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
13+
com.google.errorprone:error_prone_annotations:2.18.0=annotationProcessor,compileClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testFixturesAnnotationProcessor,testFixturesCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
14+
com.google.guava:failureaccess:1.0.1=annotationProcessor,compileClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testFixturesAnnotationProcessor,testFixturesCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
15+
com.google.guava:guava-parent:32.1.2-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
16+
com.google.guava:guava:32.0.1-jre=annotationProcessor,testAnnotationProcessor,testFixturesAnnotationProcessor
17+
com.google.guava:guava:32.1.2-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
18+
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=annotationProcessor,compileClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testFixturesAnnotationProcessor,testFixturesCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
19+
com.google.j2objc:j2objc-annotations:2.8=annotationProcessor,compileClasspath,testAnnotationProcessor,testCompileClasspath,testFixturesAnnotationProcessor,testFixturesCompileClasspath
20+
commons-io:commons-io:2.11.0=testCompileClasspath,testFixturesCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
21+
junit:junit:4.13.2=testCompileClasspath,testRuntimeClasspath
22+
org.apache.commons:commons-compress:1.18=testCompileClasspath,testFixturesCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
23+
org.apache.commons:commons-lang3:3.8.1=testFixturesCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
24+
org.checkerframework:checker-qual:3.33.0=annotationProcessor,compileClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testFixturesAnnotationProcessor,testFixturesCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
25+
org.hamcrest:hamcrest-core:1.3=testCompileClasspath,testRuntimeClasspath
26+
org.slf4j:jcl-over-slf4j:1.7.14=testRuntimeClasspath
27+
org.slf4j:jul-to-slf4j:1.7.30=testRuntimeClasspath
28+
org.slf4j:log4j-over-slf4j:1.7.14=testRuntimeClasspath
29+
org.slf4j:slf4j-api:1.7.30=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesCompileClasspath,testFixturesRuntimeClasspath
30+
org.slf4j:slf4j-api:1.7.32=testRuntimeClasspath
31+
empty=

dumper/lib-dumper-spi/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,7 @@ dependencies {
2323
implementation libs.jackson.dataformat.yaml
2424
implementation libs.jackson.datatype.jsr310
2525
}
26+
27+
dependencyLocking {
28+
lockAllConfigurations()
29+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# This is a Gradle generated file for dependency locking.
2+
# Manual edits can break the build and are not advised.
3+
# This file is expected to be part of source control.
4+
ch.qos.logback:logback-classic:1.2.11=testRuntimeClasspath
5+
ch.qos.logback:logback-core:1.2.11=testRuntimeClasspath
6+
com.fasterxml.jackson.core:jackson-annotations:2.14.2=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
7+
com.fasterxml.jackson.core:jackson-core:2.14.2=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
8+
com.fasterxml.jackson.core:jackson-databind:2.14.2=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
9+
com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.14.2=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
10+
com.fasterxml.jackson:jackson-bom:2.14.2=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
11+
com.github.stephenc.jcip:jcip-annotations:1.0-1=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
12+
com.google.auto.service:auto-service-annotations:1.1.1=annotationProcessor,compileClasspath,testAnnotationProcessor,testCompileClasspath,testFixturesAnnotationProcessor,testFixturesCompileClasspath
13+
com.google.auto.service:auto-service:1.1.1=annotationProcessor,compileClasspath,testAnnotationProcessor,testCompileClasspath,testFixturesAnnotationProcessor,testFixturesCompileClasspath
14+
com.google.auto.value:auto-value-annotations:1.10.2=compileClasspath,testCompileClasspath,testFixturesCompileClasspath
15+
com.google.auto.value:auto-value:1.10.2=annotationProcessor,testAnnotationProcessor,testFixturesAnnotationProcessor
16+
com.google.auto:auto-common:1.2.1=annotationProcessor,compileClasspath,testAnnotationProcessor,testCompileClasspath,testFixturesAnnotationProcessor,testFixturesCompileClasspath
17+
com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,compileClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testFixturesAnnotationProcessor,testFixturesCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
18+
com.google.errorprone:error_prone_annotations:2.18.0=annotationProcessor,compileClasspath,testAnnotationProcessor,testCompileClasspath,testFixturesAnnotationProcessor,testFixturesCompileClasspath
19+
com.google.guava:failureaccess:1.0.1=annotationProcessor,compileClasspath,testAnnotationProcessor,testCompileClasspath,testFixturesAnnotationProcessor,testFixturesCompileClasspath
20+
com.google.guava:guava-parent:32.1.2-jre=compileClasspath,testCompileClasspath,testFixturesCompileClasspath
21+
com.google.guava:guava:32.0.1-jre=annotationProcessor,testAnnotationProcessor,testFixturesAnnotationProcessor
22+
com.google.guava:guava:32.1.2-jre=compileClasspath,testCompileClasspath,testFixturesCompileClasspath
23+
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=annotationProcessor,compileClasspath,testAnnotationProcessor,testCompileClasspath,testFixturesAnnotationProcessor,testFixturesCompileClasspath
24+
com.google.j2objc:j2objc-annotations:2.8=annotationProcessor,compileClasspath,testAnnotationProcessor,testCompileClasspath,testFixturesAnnotationProcessor,testFixturesCompileClasspath
25+
junit:junit:4.13.2=testCompileClasspath,testRuntimeClasspath
26+
org.checkerframework:checker-qual:3.19.0=runtimeClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
27+
org.checkerframework:checker-qual:3.33.0=annotationProcessor,compileClasspath,testAnnotationProcessor,testCompileClasspath,testFixturesAnnotationProcessor,testFixturesCompileClasspath
28+
org.hamcrest:hamcrest-core:1.3=testCompileClasspath,testRuntimeClasspath
29+
org.slf4j:jcl-over-slf4j:1.7.14=testRuntimeClasspath
30+
org.slf4j:jul-to-slf4j:1.7.30=testRuntimeClasspath
31+
org.slf4j:log4j-over-slf4j:1.7.14=testRuntimeClasspath
32+
org.slf4j:slf4j-api:1.7.30=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesCompileClasspath,testFixturesRuntimeClasspath
33+
org.slf4j:slf4j-api:1.7.32=testRuntimeClasspath
34+
org.yaml:snakeyaml:2.0=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
35+
empty=

dumper/lib-ext-bigquery/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,7 @@ dependencies {
2222
implementation "com.swrve:rate-limited-logger"
2323
implementation "com.google.cloud:google-cloud-bigquery"
2424
}
25+
26+
dependencyLocking {
27+
lockAllConfigurations()
28+
}

0 commit comments

Comments
 (0)