mirror of
https://github.com/google/nomulus.git
synced 2025-07-25 12:08:36 +02:00
Upgrade to Gradle 7.0 (#1712)
* Convert to gradle 7. * More fixes, regenerated lockfiles. * Update lockfiles for dependency update. * Fix show_upgrade_diff for new lockfile format * Add property for allowInsecureProtocol Allow us to override the restriction against use of plain HTTP for communication to dependency repositories. We need this to be able to use a local proxy for dependency gathering. * Checking in missing gradle.lockfile
This commit is contained in:
parent
68f975451e
commit
06ca9266b4
349 changed files with 3999 additions and 26646 deletions
|
@ -38,55 +38,55 @@ project.build.dependsOn buildProxyImage
|
|||
dependencies {
|
||||
def deps = rootProject.dependencyMap
|
||||
|
||||
compile deps['com.beust:jcommander']
|
||||
compile deps['com.google.api-client:google-api-client']
|
||||
compile deps['com.google.apis:google-api-services-cloudkms']
|
||||
compile deps['com.google.apis:google-api-services-monitoring']
|
||||
compile deps['com.google.auth:google-auth-library-credentials']
|
||||
compile deps['com.google.auth:google-auth-library-oauth2-http']
|
||||
compile deps['com.google.auto.value:auto-value-annotations']
|
||||
compile deps['com.google.cloud:google-cloud-core']
|
||||
compile deps['com.google.cloud:google-cloud-core-http']
|
||||
compile deps['com.google.cloud:google-cloud-storage']
|
||||
compile deps['com.google.code.findbugs:jsr305']
|
||||
compile deps['com.google.code.gson:gson']
|
||||
compile deps['com.google.dagger:dagger']
|
||||
compile deps['com.google.flogger:flogger']
|
||||
compile deps['com.google.guava:guava']
|
||||
compile deps['com.google.http-client:google-http-client']
|
||||
compile deps['com.google.monitoring-client:metrics']
|
||||
compile deps['com.google.monitoring-client:stackdriver']
|
||||
compile deps['io.netty:netty-buffer']
|
||||
compile deps['io.netty:netty-codec-http']
|
||||
compile deps['io.netty:netty-codec']
|
||||
compile deps['io.netty:netty-common']
|
||||
compile deps['io.netty:netty-handler']
|
||||
compile deps['io.netty:netty-transport']
|
||||
compile deps['javax.inject:javax.inject']
|
||||
compile deps['joda-time:joda-time']
|
||||
compile deps['org.bouncycastle:bcpkix-jdk15on']
|
||||
compile deps['org.bouncycastle:bcprov-jdk15on']
|
||||
compile project(':common')
|
||||
compile project(':networking')
|
||||
compile project(':util')
|
||||
implementation deps['com.beust:jcommander']
|
||||
implementation deps['com.google.api-client:google-api-client']
|
||||
implementation deps['com.google.apis:google-api-services-cloudkms']
|
||||
implementation deps['com.google.apis:google-api-services-monitoring']
|
||||
implementation deps['com.google.auth:google-auth-library-credentials']
|
||||
implementation deps['com.google.auth:google-auth-library-oauth2-http']
|
||||
implementation deps['com.google.auto.value:auto-value-annotations']
|
||||
implementation deps['com.google.cloud:google-cloud-core']
|
||||
implementation deps['com.google.cloud:google-cloud-core-http']
|
||||
implementation deps['com.google.cloud:google-cloud-storage']
|
||||
implementation deps['com.google.code.findbugs:jsr305']
|
||||
implementation deps['com.google.code.gson:gson']
|
||||
implementation deps['com.google.dagger:dagger']
|
||||
implementation deps['com.google.flogger:flogger']
|
||||
implementation deps['com.google.guava:guava']
|
||||
implementation deps['com.google.http-client:google-http-client']
|
||||
implementation deps['com.google.monitoring-client:metrics']
|
||||
implementation deps['com.google.monitoring-client:stackdriver']
|
||||
implementation deps['io.netty:netty-buffer']
|
||||
implementation deps['io.netty:netty-codec-http']
|
||||
implementation deps['io.netty:netty-codec']
|
||||
implementation deps['io.netty:netty-common']
|
||||
implementation deps['io.netty:netty-handler']
|
||||
implementation deps['io.netty:netty-transport']
|
||||
implementation deps['javax.inject:javax.inject']
|
||||
implementation deps['joda-time:joda-time']
|
||||
implementation deps['org.bouncycastle:bcpkix-jdk15on']
|
||||
implementation deps['org.bouncycastle:bcprov-jdk15on']
|
||||
implementation project(':common')
|
||||
implementation project(':networking')
|
||||
implementation project(':util')
|
||||
|
||||
runtime deps['com.google.flogger:flogger-system-backend']
|
||||
runtime deps['com.google.auto.value:auto-value']
|
||||
runtime deps['io.netty:netty-tcnative-boringssl-static']
|
||||
runtimeOnly deps['com.google.flogger:flogger-system-backend']
|
||||
runtimeOnly deps['com.google.auto.value:auto-value']
|
||||
runtimeOnly deps['io.netty:netty-tcnative-boringssl-static']
|
||||
|
||||
testCompile deps['com.google.monitoring-client:contrib']
|
||||
testCompile deps['com.google.truth:truth']
|
||||
testCompile deps['junit:junit']
|
||||
testCompile deps['org.junit.jupiter:junit-jupiter-api']
|
||||
testCompile deps['org.junit.jupiter:junit-jupiter-engine']
|
||||
testCompile deps['org.junit.jupiter:junit-jupiter-params']
|
||||
testCompile deps['org.junit.platform:junit-platform-runner']
|
||||
testCompile deps['org.junit.platform:junit-platform-suite-api']
|
||||
testCompile deps['org.mockito:mockito-core']
|
||||
testCompile deps['org.testcontainers:junit-jupiter']
|
||||
testCompile deps['org.yaml:snakeyaml']
|
||||
testCompile project(path: ':common', configuration: 'testing')
|
||||
testCompile project(path: ':networking', configuration: 'testRuntime')
|
||||
testImplementation deps['com.google.monitoring-client:contrib']
|
||||
testImplementation deps['com.google.truth:truth']
|
||||
testImplementation deps['junit:junit']
|
||||
testImplementation deps['org.junit.jupiter:junit-jupiter-api']
|
||||
testImplementation deps['org.junit.jupiter:junit-jupiter-engine']
|
||||
testImplementation deps['org.junit.jupiter:junit-jupiter-params']
|
||||
testImplementation deps['org.junit.platform:junit-platform-runner']
|
||||
testImplementation deps['org.junit.platform:junit-platform-suite-api']
|
||||
testImplementation deps['org.mockito:mockito-core']
|
||||
testImplementation deps['org.testcontainers:junit-jupiter']
|
||||
testImplementation deps['org.yaml:snakeyaml']
|
||||
testImplementation project(path: ':common', configuration: 'testing')
|
||||
testImplementation project(path: ':networking', configuration: 'testRuntimeOnly')
|
||||
|
||||
// Include auto-value in compile until nebula-lint understands
|
||||
// annotationProcessor
|
||||
|
|
|
@ -1,3 +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=classpath
|
193
proxy/gradle.lockfile
Normal file
193
proxy/gradle.lockfile
Normal file
|
@ -0,0 +1,193 @@
|
|||
# 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.
|
||||
antlr:antlr:2.7.7=checkstyle
|
||||
com.beust:jcommander:1.60=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.13.3=testCompileClasspath,testRuntimeClasspath
|
||||
com.fasterxml.jackson.core:jackson-core:2.13.3=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.fasterxml.jackson:jackson-bom:2.13.3=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.github.ben-manes.caffeine:caffeine:2.7.0=annotationProcessor,errorprone,testAnnotationProcessor
|
||||
com.github.ben-manes.caffeine:caffeine:2.9.3=default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.github.docker-java:docker-java-api:3.2.13=testCompileClasspath,testRuntimeClasspath
|
||||
com.github.docker-java:docker-java-transport-zerodep:3.2.13=testCompileClasspath,testRuntimeClasspath
|
||||
com.github.docker-java:docker-java-transport:3.2.13=testCompileClasspath,testRuntimeClasspath
|
||||
com.github.kevinstern:software-and-algorithms:1.0=annotationProcessor,errorprone,testAnnotationProcessor
|
||||
com.google.android:annotations:4.1.1.4=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
com.google.api-client:google-api-client:1.35.1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2:2.3.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.93.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.93.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
com.google.api.grpc:proto-google-common-protos:2.9.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.api.grpc:proto-google-iam-v1:1.4.1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.api:api-common:2.2.1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.api:gax-grpc:2.18.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
com.google.api:gax-httpjson:0.103.2=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.api:gax:2.18.2=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.apis:google-api-services-cloudkms:v1-rev20220701-1.32.1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.apis:google-api-services-monitoring:v3-rev20220715-1.32.1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.apis:google-api-services-storage:v1-rev20220705-1.32.1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.appengine:appengine-api-1.0-sdk:1.9.86=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
com.google.appengine:appengine-testing:1.9.86=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
com.google.auth:google-auth-library-credentials:1.7.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.auth:google-auth-library-oauth2-http:1.7.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.auto.value:auto-value-annotations:1.9=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.auto.value:auto-value:1.9=annotationProcessor,default,deploy_jar,runtimeClasspath,testAnnotationProcessor,testRuntimeClasspath
|
||||
com.google.auto:auto-common:0.10=annotationProcessor,errorprone,testAnnotationProcessor
|
||||
com.google.cloud:google-cloud-core-http:2.8.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.cloud:google-cloud-core:2.8.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.cloud:google-cloud-storage:2.10.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.cloud:google-cloud-tasks:2.3.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
com.google.code.findbugs:jFormatString:3.0.0=annotationProcessor,errorprone,testAnnotationProcessor
|
||||
com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClasspath,default,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.code.gson:gson:2.9.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.dagger:dagger-compiler:2.43=annotationProcessor,testAnnotationProcessor
|
||||
com.google.dagger:dagger-producers:2.43=annotationProcessor,testAnnotationProcessor
|
||||
com.google.dagger:dagger-spi:2.43=annotationProcessor,testAnnotationProcessor
|
||||
com.google.dagger:dagger:2.43=annotationProcessor,compileClasspath,default,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.devtools.ksp:symbol-processing-api:1.7.0-1.0.6=annotationProcessor,testAnnotationProcessor
|
||||
com.google.errorprone:error_prone_annotation:2.3.4=annotationProcessor,errorprone,testAnnotationProcessor
|
||||
com.google.errorprone:error_prone_annotations:2.11.0=compileClasspath,testCompileClasspath
|
||||
com.google.errorprone:error_prone_annotations:2.14.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
com.google.errorprone:error_prone_annotations:2.3.4=checkstyle,errorprone
|
||||
com.google.errorprone:error_prone_annotations:2.7.1=annotationProcessor,testAnnotationProcessor
|
||||
com.google.errorprone:error_prone_check_api:2.3.4=annotationProcessor,errorprone,testAnnotationProcessor
|
||||
com.google.errorprone:error_prone_core:2.3.4=annotationProcessor,errorprone,testAnnotationProcessor
|
||||
com.google.errorprone:error_prone_type_annotations:2.3.4=annotationProcessor,errorprone,testAnnotationProcessor
|
||||
com.google.errorprone:javac-shaded:9-dev-r4023-3=annotationProcessor,testAnnotationProcessor
|
||||
com.google.flogger:flogger-system-backend:0.7.4=default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.flogger:flogger:0.7.4=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.googlejavaformat:google-java-format:1.5=annotationProcessor,testAnnotationProcessor
|
||||
com.google.guava:failureaccess:1.0.1=annotationProcessor,checkstyle,compileClasspath,default,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.guava:guava:27.0.1-jre=errorprone
|
||||
com.google.guava:guava:29.0-jre=checkstyle
|
||||
com.google.guava:guava:31.0.1-jre=annotationProcessor,testAnnotationProcessor
|
||||
com.google.guava:guava:31.1-jre=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=annotationProcessor,checkstyle,compileClasspath,default,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.http-client:google-http-client-apache-v2:1.42.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.http-client:google-http-client-appengine:1.42.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.http-client:google-http-client-gson:1.42.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.http-client:google-http-client-jackson2:1.42.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.http-client:google-http-client:1.42.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.j2objc:j2objc-annotations:1.1=errorprone
|
||||
com.google.j2objc:j2objc-annotations:1.3=annotationProcessor,checkstyle,compileClasspath,default,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.monitoring-client:contrib:1.0.7=testCompileClasspath,testRuntimeClasspath
|
||||
com.google.monitoring-client:metrics:1.0.7=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.monitoring-client:stackdriver:1.0.7=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.oauth-client:google-oauth-client:1.34.1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.protobuf:protobuf-java-util:3.21.1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.protobuf:protobuf-java:3.21.1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.google.protobuf:protobuf-java:3.4.0=annotationProcessor,errorprone,testAnnotationProcessor
|
||||
com.google.re2j:re2j:1.1=compileClasspath,testCompileClasspath
|
||||
com.google.re2j:re2j:1.7=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
com.google.truth:truth:1.1.3=default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
com.googlecode.java-diff-utils:diffutils:1.3.0=annotationProcessor,errorprone,testAnnotationProcessor
|
||||
com.ibm.icu:icu4j:71.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
com.puppycrawl.tools:checkstyle:8.37=checkstyle
|
||||
com.squareup:javapoet:1.13.0=annotationProcessor,testAnnotationProcessor
|
||||
commons-beanutils:commons-beanutils:1.9.4=checkstyle
|
||||
commons-codec:commons-codec:1.11=compileClasspath,testCompileClasspath
|
||||
commons-codec:commons-codec:1.15=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
commons-collections:commons-collections:3.2.2=checkstyle
|
||||
commons-logging:commons-logging:1.2=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
info.picocli:picocli:4.5.2=checkstyle
|
||||
io.github.java-diff-utils:java-diff-utils:4.12=default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
io.grpc:grpc-alts:1.47.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
io.grpc:grpc-api:1.47.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
io.grpc:grpc-auth:1.47.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
io.grpc:grpc-context:1.47.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
io.grpc:grpc-core:1.47.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
io.grpc:grpc-googleapis:1.47.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
io.grpc:grpc-grpclb:1.47.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
io.grpc:grpc-netty-shaded:1.47.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
io.grpc:grpc-protobuf-lite:1.47.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
io.grpc:grpc-protobuf:1.47.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
io.grpc:grpc-services:1.47.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
io.grpc:grpc-stub:1.47.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
io.grpc:grpc-xds:1.47.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
io.netty:netty-buffer:4.1.59.Final=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
io.netty:netty-codec-http:4.1.59.Final=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
io.netty:netty-codec:4.1.59.Final=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
io.netty:netty-common:4.1.59.Final=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
io.netty:netty-handler:4.1.59.Final=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
io.netty:netty-resolver:4.1.59.Final=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
io.netty:netty-tcnative-boringssl-static:2.0.54.Final=default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
io.netty:netty-tcnative-classes:2.0.54.Final=default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
io.netty:netty-transport:4.1.59.Final=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
io.opencensus:opencensus-api:0.31.1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
io.opencensus:opencensus-contrib-http-util:0.31.1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
io.opencensus:opencensus-proto:0.2.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
io.perfmark:perfmark-api:0.25.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
javax.activation:activation:1.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
javax.activation:javax.activation-api:1.2.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
javax.annotation:javax.annotation-api:1.3.2=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
javax.inject:javax.inject:1=annotationProcessor,compileClasspath,default,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath
|
||||
javax.mail:mail:1.5.0-b01=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
javax.xml.bind:jaxb-api:2.4.0-b180830.0359=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
joda-time:joda-time:2.10.14=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
junit:junit:4.13.2=default,testCompileClasspath,testRuntimeClasspath
|
||||
net.bytebuddy:byte-buddy-agent:1.12.10=testCompileClasspath,testRuntimeClasspath
|
||||
net.bytebuddy:byte-buddy:1.12.10=testCompileClasspath,testRuntimeClasspath
|
||||
net.java.dev.jna:jna:5.8.0=testCompileClasspath,testRuntimeClasspath
|
||||
net.ltgt.gradle.incap:incap:0.2=annotationProcessor,testAnnotationProcessor
|
||||
net.sf.saxon:Saxon-HE:10.3=checkstyle
|
||||
org.antlr:antlr4-runtime:4.8-1=checkstyle
|
||||
org.apache.commons:commons-compress:1.21=testCompileClasspath,testRuntimeClasspath
|
||||
org.apache.httpcomponents:httpclient:4.5.13=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
org.apache.httpcomponents:httpcore:4.4.15=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
|
||||
org.bouncycastle:bcpkix-jdk15on:1.67=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
org.bouncycastle:bcprov-jdk15on:1.67=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
org.checkerframework:checker-compat-qual:2.5.3=compileClasspath,testCompileClasspath
|
||||
org.checkerframework:checker-compat-qual:2.5.5=annotationProcessor,default,deploy_jar,runtimeClasspath,testAnnotationProcessor,testRuntimeClasspath
|
||||
org.checkerframework:checker-qual:2.11.1=checkstyle
|
||||
org.checkerframework:checker-qual:3.0.0=errorprone
|
||||
org.checkerframework:checker-qual:3.12.0=annotationProcessor,testAnnotationProcessor
|
||||
org.checkerframework:checker-qual:3.22.2=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
org.checkerframework:dataflow:3.0.0=annotationProcessor,errorprone,testAnnotationProcessor
|
||||
org.checkerframework:javacutil:3.0.0=annotationProcessor,errorprone,testAnnotationProcessor
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.17=errorprone
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.21=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
org.conscrypt:conscrypt-openjdk-uber:2.5.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath
|
||||
org.hamcrest:hamcrest-core:1.3=default,testCompileClasspath,testRuntimeClasspath
|
||||
org.jacoco:org.jacoco.agent:0.8.6=jacocoAgent,jacocoAnt
|
||||
org.jacoco:org.jacoco.ant:0.8.6=jacocoAnt
|
||||
org.jacoco:org.jacoco.core:0.8.6=jacocoAnt
|
||||
org.jacoco:org.jacoco.report:0.8.6=jacocoAnt
|
||||
org.javassist:javassist:3.26.0-GA=checkstyle
|
||||
org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0=annotationProcessor,testAnnotationProcessor
|
||||
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.0=annotationProcessor,testAnnotationProcessor
|
||||
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.0=annotationProcessor,testAnnotationProcessor
|
||||
org.jetbrains.kotlin:kotlin-stdlib:1.7.0=annotationProcessor,testAnnotationProcessor
|
||||
org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.4.2=annotationProcessor,testAnnotationProcessor
|
||||
org.jetbrains:annotations:13.0=annotationProcessor,testAnnotationProcessor
|
||||
org.jetbrains:annotations:17.0.0=testCompileClasspath,testRuntimeClasspath
|
||||
org.junit.jupiter:junit-jupiter-api:5.9.0-RC1=testCompileClasspath,testRuntimeClasspath
|
||||
org.junit.jupiter:junit-jupiter-engine:5.9.0-RC1=testCompileClasspath,testRuntimeClasspath
|
||||
org.junit.jupiter:junit-jupiter-params:5.9.0-RC1=testCompileClasspath,testRuntimeClasspath
|
||||
org.junit.platform:junit-platform-commons:1.9.0-RC1=testCompileClasspath,testRuntimeClasspath
|
||||
org.junit.platform:junit-platform-engine:1.9.0-RC1=testCompileClasspath,testRuntimeClasspath
|
||||
org.junit.platform:junit-platform-launcher:1.9.0-RC1=testCompileClasspath,testRuntimeClasspath
|
||||
org.junit.platform:junit-platform-runner:1.9.0-RC1=testCompileClasspath,testRuntimeClasspath
|
||||
org.junit.platform:junit-platform-suite-api:1.9.0-RC1=testCompileClasspath,testRuntimeClasspath
|
||||
org.junit.platform:junit-platform-suite-commons:1.9.0-RC1=testRuntimeClasspath
|
||||
org.junit:junit-bom:5.9.0-RC1=testCompileClasspath,testRuntimeClasspath
|
||||
org.mockito:mockito-core:4.6.1=testCompileClasspath,testRuntimeClasspath
|
||||
org.objenesis:objenesis:3.2=testRuntimeClasspath
|
||||
org.opentest4j:opentest4j:1.2.0=testCompileClasspath,testRuntimeClasspath
|
||||
org.ow2.asm:asm-analysis:8.0.1=jacocoAnt
|
||||
org.ow2.asm:asm-commons:8.0.1=jacocoAnt
|
||||
org.ow2.asm:asm-tree:8.0.1=jacocoAnt
|
||||
org.ow2.asm:asm:8.0.1=jacocoAnt
|
||||
org.ow2.asm:asm:9.1=default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
org.pcollections:pcollections:2.1.2=annotationProcessor,errorprone,testAnnotationProcessor
|
||||
org.plumelib:plume-util:1.0.6=annotationProcessor,errorprone,testAnnotationProcessor
|
||||
org.plumelib:reflection-util:0.0.2=annotationProcessor,errorprone,testAnnotationProcessor
|
||||
org.plumelib:require-javadoc:0.1.0=annotationProcessor,errorprone,testAnnotationProcessor
|
||||
org.reflections:reflections:0.9.12=checkstyle
|
||||
org.rnorth.duct-tape:duct-tape:1.0.8=testCompileClasspath,testRuntimeClasspath
|
||||
org.slf4j:slf4j-api:1.7.36=testCompileClasspath,testRuntimeClasspath
|
||||
org.testcontainers:junit-jupiter:1.17.3=testCompileClasspath,testRuntimeClasspath
|
||||
org.testcontainers:testcontainers:1.17.3=testCompileClasspath,testRuntimeClasspath
|
||||
org.threeten:threetenbp:1.6.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
org.yaml:snakeyaml:1.30=default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
|
||||
empty=archives,errorproneJavac
|
|
@ -1,44 +0,0 @@
|
|||
# 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.ben-manes.caffeine:caffeine:2.7.0
|
||||
com.github.kevinstern:software-and-algorithms:1.0
|
||||
com.google.auto.value:auto-value:1.9
|
||||
com.google.auto:auto-common:0.10
|
||||
com.google.code.findbugs:jFormatString:3.0.0
|
||||
com.google.code.findbugs:jsr305:3.0.2
|
||||
com.google.dagger:dagger-compiler:2.42
|
||||
com.google.dagger:dagger-producers:2.42
|
||||
com.google.dagger:dagger-spi:2.42
|
||||
com.google.dagger:dagger:2.42
|
||||
com.google.devtools.ksp:symbol-processing-api:1.5.30-1.0.0
|
||||
com.google.errorprone:error_prone_annotation:2.3.4
|
||||
com.google.errorprone:error_prone_annotations:2.7.1
|
||||
com.google.errorprone:error_prone_check_api:2.3.4
|
||||
com.google.errorprone:error_prone_core:2.3.4
|
||||
com.google.errorprone:error_prone_type_annotations:2.3.4
|
||||
com.google.errorprone:javac-shaded:9-dev-r4023-3
|
||||
com.google.googlejavaformat:google-java-format:1.5
|
||||
com.google.guava:failureaccess:1.0.1
|
||||
com.google.guava:guava:31.0.1-jre
|
||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
||||
com.google.j2objc:j2objc-annotations:1.3
|
||||
com.google.protobuf:protobuf-java:3.4.0
|
||||
com.googlecode.java-diff-utils:diffutils:1.3.0
|
||||
com.squareup:javapoet:1.13.0
|
||||
javax.inject:javax.inject:1
|
||||
net.ltgt.gradle.incap:incap:0.2
|
||||
org.checkerframework:checker-compat-qual:2.5.5
|
||||
org.checkerframework:checker-qual:3.12.0
|
||||
org.checkerframework:dataflow:3.0.0
|
||||
org.checkerframework:javacutil:3.0.0
|
||||
org.jetbrains.kotlin:kotlin-stdlib-common:1.6.10
|
||||
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.32
|
||||
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.32
|
||||
org.jetbrains.kotlin:kotlin-stdlib:1.6.10
|
||||
org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.4.2
|
||||
org.jetbrains:annotations:13.0
|
||||
org.pcollections:pcollections:2.1.2
|
||||
org.plumelib:plume-util:1.0.6
|
||||
org.plumelib:reflection-util:0.0.2
|
||||
org.plumelib:require-javadoc:0.1.0
|
|
@ -1,3 +0,0 @@
|
|||
# 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.
|
|
@ -1,3 +0,0 @@
|
|||
# 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.
|
|
@ -1,19 +0,0 @@
|
|||
# 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.
|
||||
antlr:antlr:2.7.7
|
||||
com.google.code.findbugs:jsr305:3.0.2
|
||||
com.google.errorprone:error_prone_annotations:2.3.4
|
||||
com.google.guava:failureaccess:1.0.1
|
||||
com.google.guava:guava:29.0-jre
|
||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
||||
com.google.j2objc:j2objc-annotations:1.3
|
||||
com.puppycrawl.tools:checkstyle:8.37
|
||||
commons-beanutils:commons-beanutils:1.9.4
|
||||
commons-collections:commons-collections:3.2.2
|
||||
info.picocli:picocli:4.5.2
|
||||
net.sf.saxon:Saxon-HE:10.3
|
||||
org.antlr:antlr4-runtime:4.8-1
|
||||
org.checkerframework:checker-qual:2.11.1
|
||||
org.javassist:javassist:3.26.0-GA
|
||||
org.reflections:reflections:0.9.12
|
|
@ -1,98 +0,0 @@
|
|||
# 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.beust:jcommander:1.60
|
||||
com.fasterxml.jackson.core:jackson-core:2.13.3
|
||||
com.fasterxml.jackson:jackson-bom:2.13.3
|
||||
com.github.ben-manes.caffeine:caffeine:2.9.3
|
||||
com.google.android:annotations:4.1.1.4
|
||||
com.google.api-client:google-api-client:1.35.1
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2:2.3.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.93.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.93.0
|
||||
com.google.api.grpc:proto-google-common-protos:2.9.0
|
||||
com.google.api.grpc:proto-google-iam-v1:1.4.1
|
||||
com.google.api:api-common:2.2.1
|
||||
com.google.api:gax-grpc:2.18.2
|
||||
com.google.api:gax-httpjson:0.103.2
|
||||
com.google.api:gax:2.18.2
|
||||
com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1
|
||||
com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1
|
||||
com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1
|
||||
com.google.appengine:appengine-api-1.0-sdk:1.9.86
|
||||
com.google.appengine:appengine-testing:1.9.86
|
||||
com.google.auth:google-auth-library-credentials:1.7.0
|
||||
com.google.auth:google-auth-library-oauth2-http:1.7.0
|
||||
com.google.auto.value:auto-value-annotations:1.9
|
||||
com.google.auto.value:auto-value:1.9
|
||||
com.google.cloud:google-cloud-core-http:2.8.0
|
||||
com.google.cloud:google-cloud-core:2.8.0
|
||||
com.google.cloud:google-cloud-storage:2.9.2
|
||||
com.google.cloud:google-cloud-tasks:2.3.0
|
||||
com.google.code.findbugs:jsr305:3.0.2
|
||||
com.google.code.gson:gson:2.9.0
|
||||
com.google.dagger:dagger:2.42
|
||||
com.google.errorprone:error_prone_annotations:2.14.0
|
||||
com.google.flogger:flogger-system-backend:0.7.4
|
||||
com.google.flogger:flogger:0.7.4
|
||||
com.google.guava:failureaccess:1.0.1
|
||||
com.google.guava:guava:31.1-jre
|
||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
||||
com.google.http-client:google-http-client-apache-v2:1.42.0
|
||||
com.google.http-client:google-http-client-appengine:1.42.0
|
||||
com.google.http-client:google-http-client-gson:1.42.0
|
||||
com.google.http-client:google-http-client-jackson2:1.42.0
|
||||
com.google.http-client:google-http-client:1.42.0
|
||||
com.google.j2objc:j2objc-annotations:1.3
|
||||
com.google.monitoring-client:metrics:1.0.7
|
||||
com.google.monitoring-client:stackdriver:1.0.7
|
||||
com.google.oauth-client:google-oauth-client:1.34.1
|
||||
com.google.protobuf:protobuf-java-util:3.21.1
|
||||
com.google.protobuf:protobuf-java:3.21.1
|
||||
com.google.re2j:re2j:1.7
|
||||
com.ibm.icu:icu4j:71.1
|
||||
commons-codec:commons-codec:1.15
|
||||
commons-logging:commons-logging:1.2
|
||||
io.grpc:grpc-alts:1.47.0
|
||||
io.grpc:grpc-api:1.47.0
|
||||
io.grpc:grpc-auth:1.47.0
|
||||
io.grpc:grpc-context:1.47.0
|
||||
io.grpc:grpc-core:1.47.0
|
||||
io.grpc:grpc-googleapis:1.47.0
|
||||
io.grpc:grpc-grpclb:1.47.0
|
||||
io.grpc:grpc-netty-shaded:1.47.0
|
||||
io.grpc:grpc-protobuf-lite:1.47.0
|
||||
io.grpc:grpc-protobuf:1.47.0
|
||||
io.grpc:grpc-services:1.47.0
|
||||
io.grpc:grpc-stub:1.47.0
|
||||
io.grpc:grpc-xds:1.47.0
|
||||
io.netty:netty-buffer:4.1.59.Final
|
||||
io.netty:netty-codec-http:4.1.59.Final
|
||||
io.netty:netty-codec:4.1.59.Final
|
||||
io.netty:netty-common:4.1.59.Final
|
||||
io.netty:netty-handler:4.1.59.Final
|
||||
io.netty:netty-resolver:4.1.59.Final
|
||||
io.netty:netty-tcnative-boringssl-static:2.0.53.Final
|
||||
io.netty:netty-tcnative-classes:2.0.53.Final
|
||||
io.netty:netty-transport:4.1.59.Final
|
||||
io.opencensus:opencensus-api:0.31.1
|
||||
io.opencensus:opencensus-contrib-http-util:0.31.1
|
||||
io.opencensus:opencensus-proto:0.2.0
|
||||
io.perfmark:perfmark-api:0.25.0
|
||||
javax.activation:activation:1.1
|
||||
javax.activation:javax.activation-api:1.2.0
|
||||
javax.annotation:javax.annotation-api:1.3.2
|
||||
javax.inject:javax.inject:1
|
||||
javax.mail:mail:1.5.0-b01
|
||||
javax.xml.bind:jaxb-api:2.4.0-b180830.0359
|
||||
joda-time:joda-time:2.10.14
|
||||
org.apache.httpcomponents:httpclient:4.5.13
|
||||
org.apache.httpcomponents:httpcore:4.4.15
|
||||
org.bouncycastle:bcpkix-jdk15on:1.67
|
||||
org.bouncycastle:bcprov-jdk15on:1.67
|
||||
org.checkerframework:checker-compat-qual:2.5.5
|
||||
org.checkerframework:checker-qual:3.22.2
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.21
|
||||
org.conscrypt:conscrypt-openjdk-uber:2.5.1
|
||||
org.threeten:threetenbp:1.6.0
|
||||
org.yaml:snakeyaml:1.30
|
|
@ -1,85 +0,0 @@
|
|||
# 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.beust:jcommander:1.60
|
||||
com.fasterxml.jackson.core:jackson-core:2.13.3
|
||||
com.fasterxml.jackson:jackson-bom:2.13.3
|
||||
com.github.ben-manes.caffeine:caffeine:2.9.3
|
||||
com.google.api-client:google-api-client:1.35.1
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2:2.3.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.93.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.93.0
|
||||
com.google.api.grpc:proto-google-common-protos:2.9.0
|
||||
com.google.api.grpc:proto-google-iam-v1:1.4.1
|
||||
com.google.api:api-common:2.2.1
|
||||
com.google.api:gax-grpc:2.18.2
|
||||
com.google.api:gax-httpjson:0.103.2
|
||||
com.google.api:gax:2.18.2
|
||||
com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1
|
||||
com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1
|
||||
com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1
|
||||
com.google.appengine:appengine-api-1.0-sdk:1.9.86
|
||||
com.google.appengine:appengine-testing:1.9.86
|
||||
com.google.auth:google-auth-library-credentials:1.7.0
|
||||
com.google.auth:google-auth-library-oauth2-http:1.7.0
|
||||
com.google.auto.value:auto-value-annotations:1.9
|
||||
com.google.auto.value:auto-value:1.9
|
||||
com.google.cloud:google-cloud-core-http:2.8.0
|
||||
com.google.cloud:google-cloud-core:2.8.0
|
||||
com.google.cloud:google-cloud-storage:2.9.2
|
||||
com.google.cloud:google-cloud-tasks:2.3.0
|
||||
com.google.code.findbugs:jsr305:3.0.2
|
||||
com.google.code.gson:gson:2.9.0
|
||||
com.google.dagger:dagger:2.42
|
||||
com.google.errorprone:error_prone_annotations:2.14.0
|
||||
com.google.flogger:flogger-system-backend:0.7.4
|
||||
com.google.flogger:flogger:0.7.4
|
||||
com.google.guava:failureaccess:1.0.1
|
||||
com.google.guava:guava:31.1-jre
|
||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
||||
com.google.http-client:google-http-client-apache-v2:1.42.0
|
||||
com.google.http-client:google-http-client-appengine:1.42.0
|
||||
com.google.http-client:google-http-client-gson:1.42.0
|
||||
com.google.http-client:google-http-client-jackson2:1.42.0
|
||||
com.google.http-client:google-http-client:1.42.0
|
||||
com.google.j2objc:j2objc-annotations:1.3
|
||||
com.google.monitoring-client:metrics:1.0.7
|
||||
com.google.monitoring-client:stackdriver:1.0.7
|
||||
com.google.oauth-client:google-oauth-client:1.34.1
|
||||
com.google.protobuf:protobuf-java-util:3.21.1
|
||||
com.google.protobuf:protobuf-java:3.21.1
|
||||
com.google.re2j:re2j:1.7
|
||||
com.ibm.icu:icu4j:71.1
|
||||
commons-codec:commons-codec:1.15
|
||||
commons-logging:commons-logging:1.2
|
||||
io.grpc:grpc-api:1.47.0
|
||||
io.grpc:grpc-context:1.47.0
|
||||
io.grpc:grpc-protobuf-lite:1.47.0
|
||||
io.grpc:grpc-protobuf:1.47.0
|
||||
io.grpc:grpc-stub:1.47.0
|
||||
io.netty:netty-buffer:4.1.59.Final
|
||||
io.netty:netty-codec-http:4.1.59.Final
|
||||
io.netty:netty-codec:4.1.59.Final
|
||||
io.netty:netty-common:4.1.59.Final
|
||||
io.netty:netty-handler:4.1.59.Final
|
||||
io.netty:netty-resolver:4.1.59.Final
|
||||
io.netty:netty-tcnative-boringssl-static:2.0.53.Final
|
||||
io.netty:netty-tcnative-classes:2.0.53.Final
|
||||
io.netty:netty-transport:4.1.59.Final
|
||||
io.opencensus:opencensus-api:0.31.1
|
||||
io.opencensus:opencensus-contrib-http-util:0.31.1
|
||||
javax.activation:activation:1.1
|
||||
javax.activation:javax.activation-api:1.2.0
|
||||
javax.annotation:javax.annotation-api:1.3.2
|
||||
javax.inject:javax.inject:1
|
||||
javax.mail:mail:1.5.0-b01
|
||||
javax.xml.bind:jaxb-api:2.4.0-b180830.0359
|
||||
joda-time:joda-time:2.10.14
|
||||
org.apache.httpcomponents:httpclient:4.5.13
|
||||
org.apache.httpcomponents:httpcore:4.4.15
|
||||
org.bouncycastle:bcpkix-jdk15on:1.67
|
||||
org.bouncycastle:bcprov-jdk15on:1.67
|
||||
org.checkerframework:checker-compat-qual:2.5.5
|
||||
org.checkerframework:checker-qual:3.22.2
|
||||
org.threeten:threetenbp:1.6.0
|
||||
org.yaml:snakeyaml:1.30
|
|
@ -1,98 +0,0 @@
|
|||
# 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.beust:jcommander:1.60
|
||||
com.fasterxml.jackson.core:jackson-core:2.13.3
|
||||
com.fasterxml.jackson:jackson-bom:2.13.3
|
||||
com.github.ben-manes.caffeine:caffeine:2.9.3
|
||||
com.google.android:annotations:4.1.1.4
|
||||
com.google.api-client:google-api-client:1.35.1
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2:2.3.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.93.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.93.0
|
||||
com.google.api.grpc:proto-google-common-protos:2.9.0
|
||||
com.google.api.grpc:proto-google-iam-v1:1.4.1
|
||||
com.google.api:api-common:2.2.1
|
||||
com.google.api:gax-grpc:2.18.2
|
||||
com.google.api:gax-httpjson:0.103.2
|
||||
com.google.api:gax:2.18.2
|
||||
com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1
|
||||
com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1
|
||||
com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1
|
||||
com.google.appengine:appengine-api-1.0-sdk:1.9.86
|
||||
com.google.appengine:appengine-testing:1.9.86
|
||||
com.google.auth:google-auth-library-credentials:1.7.0
|
||||
com.google.auth:google-auth-library-oauth2-http:1.7.0
|
||||
com.google.auto.value:auto-value-annotations:1.9
|
||||
com.google.auto.value:auto-value:1.9
|
||||
com.google.cloud:google-cloud-core-http:2.8.0
|
||||
com.google.cloud:google-cloud-core:2.8.0
|
||||
com.google.cloud:google-cloud-storage:2.9.2
|
||||
com.google.cloud:google-cloud-tasks:2.3.0
|
||||
com.google.code.findbugs:jsr305:3.0.2
|
||||
com.google.code.gson:gson:2.9.0
|
||||
com.google.dagger:dagger:2.42
|
||||
com.google.errorprone:error_prone_annotations:2.14.0
|
||||
com.google.flogger:flogger-system-backend:0.7.4
|
||||
com.google.flogger:flogger:0.7.4
|
||||
com.google.guava:failureaccess:1.0.1
|
||||
com.google.guava:guava:31.1-jre
|
||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
||||
com.google.http-client:google-http-client-apache-v2:1.42.0
|
||||
com.google.http-client:google-http-client-appengine:1.42.0
|
||||
com.google.http-client:google-http-client-gson:1.42.0
|
||||
com.google.http-client:google-http-client-jackson2:1.42.0
|
||||
com.google.http-client:google-http-client:1.42.0
|
||||
com.google.j2objc:j2objc-annotations:1.3
|
||||
com.google.monitoring-client:metrics:1.0.7
|
||||
com.google.monitoring-client:stackdriver:1.0.7
|
||||
com.google.oauth-client:google-oauth-client:1.34.1
|
||||
com.google.protobuf:protobuf-java-util:3.21.1
|
||||
com.google.protobuf:protobuf-java:3.21.1
|
||||
com.google.re2j:re2j:1.7
|
||||
com.ibm.icu:icu4j:71.1
|
||||
commons-codec:commons-codec:1.15
|
||||
commons-logging:commons-logging:1.2
|
||||
io.grpc:grpc-alts:1.47.0
|
||||
io.grpc:grpc-api:1.47.0
|
||||
io.grpc:grpc-auth:1.47.0
|
||||
io.grpc:grpc-context:1.47.0
|
||||
io.grpc:grpc-core:1.47.0
|
||||
io.grpc:grpc-googleapis:1.47.0
|
||||
io.grpc:grpc-grpclb:1.47.0
|
||||
io.grpc:grpc-netty-shaded:1.47.0
|
||||
io.grpc:grpc-protobuf-lite:1.47.0
|
||||
io.grpc:grpc-protobuf:1.47.0
|
||||
io.grpc:grpc-services:1.47.0
|
||||
io.grpc:grpc-stub:1.47.0
|
||||
io.grpc:grpc-xds:1.47.0
|
||||
io.netty:netty-buffer:4.1.59.Final
|
||||
io.netty:netty-codec-http:4.1.59.Final
|
||||
io.netty:netty-codec:4.1.59.Final
|
||||
io.netty:netty-common:4.1.59.Final
|
||||
io.netty:netty-handler:4.1.59.Final
|
||||
io.netty:netty-resolver:4.1.59.Final
|
||||
io.netty:netty-tcnative-boringssl-static:2.0.53.Final
|
||||
io.netty:netty-tcnative-classes:2.0.53.Final
|
||||
io.netty:netty-transport:4.1.59.Final
|
||||
io.opencensus:opencensus-api:0.31.1
|
||||
io.opencensus:opencensus-contrib-http-util:0.31.1
|
||||
io.opencensus:opencensus-proto:0.2.0
|
||||
io.perfmark:perfmark-api:0.25.0
|
||||
javax.activation:activation:1.1
|
||||
javax.activation:javax.activation-api:1.2.0
|
||||
javax.annotation:javax.annotation-api:1.3.2
|
||||
javax.inject:javax.inject:1
|
||||
javax.mail:mail:1.5.0-b01
|
||||
javax.xml.bind:jaxb-api:2.4.0-b180830.0359
|
||||
joda-time:joda-time:2.10.14
|
||||
org.apache.httpcomponents:httpclient:4.5.13
|
||||
org.apache.httpcomponents:httpcore:4.4.15
|
||||
org.bouncycastle:bcpkix-jdk15on:1.67
|
||||
org.bouncycastle:bcprov-jdk15on:1.67
|
||||
org.checkerframework:checker-compat-qual:2.5.5
|
||||
org.checkerframework:checker-qual:3.22.2
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.21
|
||||
org.conscrypt:conscrypt-openjdk-uber:2.5.1
|
||||
org.threeten:threetenbp:1.6.0
|
||||
org.yaml:snakeyaml:1.30
|
|
@ -1,98 +0,0 @@
|
|||
# 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.beust:jcommander:1.60
|
||||
com.fasterxml.jackson.core:jackson-core:2.13.3
|
||||
com.fasterxml.jackson:jackson-bom:2.13.3
|
||||
com.github.ben-manes.caffeine:caffeine:2.9.3
|
||||
com.google.android:annotations:4.1.1.4
|
||||
com.google.api-client:google-api-client:1.35.1
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2:2.3.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.93.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.93.0
|
||||
com.google.api.grpc:proto-google-common-protos:2.9.0
|
||||
com.google.api.grpc:proto-google-iam-v1:1.4.1
|
||||
com.google.api:api-common:2.2.1
|
||||
com.google.api:gax-grpc:2.18.2
|
||||
com.google.api:gax-httpjson:0.103.2
|
||||
com.google.api:gax:2.18.2
|
||||
com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1
|
||||
com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1
|
||||
com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1
|
||||
com.google.appengine:appengine-api-1.0-sdk:1.9.86
|
||||
com.google.appengine:appengine-testing:1.9.86
|
||||
com.google.auth:google-auth-library-credentials:1.7.0
|
||||
com.google.auth:google-auth-library-oauth2-http:1.7.0
|
||||
com.google.auto.value:auto-value-annotations:1.9
|
||||
com.google.auto.value:auto-value:1.9
|
||||
com.google.cloud:google-cloud-core-http:2.8.0
|
||||
com.google.cloud:google-cloud-core:2.8.0
|
||||
com.google.cloud:google-cloud-storage:2.9.2
|
||||
com.google.cloud:google-cloud-tasks:2.3.0
|
||||
com.google.code.findbugs:jsr305:3.0.2
|
||||
com.google.code.gson:gson:2.9.0
|
||||
com.google.dagger:dagger:2.42
|
||||
com.google.errorprone:error_prone_annotations:2.14.0
|
||||
com.google.flogger:flogger-system-backend:0.7.4
|
||||
com.google.flogger:flogger:0.7.4
|
||||
com.google.guava:failureaccess:1.0.1
|
||||
com.google.guava:guava:31.1-jre
|
||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
||||
com.google.http-client:google-http-client-apache-v2:1.42.0
|
||||
com.google.http-client:google-http-client-appengine:1.42.0
|
||||
com.google.http-client:google-http-client-gson:1.42.0
|
||||
com.google.http-client:google-http-client-jackson2:1.42.0
|
||||
com.google.http-client:google-http-client:1.42.0
|
||||
com.google.j2objc:j2objc-annotations:1.3
|
||||
com.google.monitoring-client:metrics:1.0.7
|
||||
com.google.monitoring-client:stackdriver:1.0.7
|
||||
com.google.oauth-client:google-oauth-client:1.34.1
|
||||
com.google.protobuf:protobuf-java-util:3.21.1
|
||||
com.google.protobuf:protobuf-java:3.21.1
|
||||
com.google.re2j:re2j:1.7
|
||||
com.ibm.icu:icu4j:71.1
|
||||
commons-codec:commons-codec:1.15
|
||||
commons-logging:commons-logging:1.2
|
||||
io.grpc:grpc-alts:1.47.0
|
||||
io.grpc:grpc-api:1.47.0
|
||||
io.grpc:grpc-auth:1.47.0
|
||||
io.grpc:grpc-context:1.47.0
|
||||
io.grpc:grpc-core:1.47.0
|
||||
io.grpc:grpc-googleapis:1.47.0
|
||||
io.grpc:grpc-grpclb:1.47.0
|
||||
io.grpc:grpc-netty-shaded:1.47.0
|
||||
io.grpc:grpc-protobuf-lite:1.47.0
|
||||
io.grpc:grpc-protobuf:1.47.0
|
||||
io.grpc:grpc-services:1.47.0
|
||||
io.grpc:grpc-stub:1.47.0
|
||||
io.grpc:grpc-xds:1.47.0
|
||||
io.netty:netty-buffer:4.1.59.Final
|
||||
io.netty:netty-codec-http:4.1.59.Final
|
||||
io.netty:netty-codec:4.1.59.Final
|
||||
io.netty:netty-common:4.1.59.Final
|
||||
io.netty:netty-handler:4.1.59.Final
|
||||
io.netty:netty-resolver:4.1.59.Final
|
||||
io.netty:netty-tcnative-boringssl-static:2.0.53.Final
|
||||
io.netty:netty-tcnative-classes:2.0.53.Final
|
||||
io.netty:netty-transport:4.1.59.Final
|
||||
io.opencensus:opencensus-api:0.31.1
|
||||
io.opencensus:opencensus-contrib-http-util:0.31.1
|
||||
io.opencensus:opencensus-proto:0.2.0
|
||||
io.perfmark:perfmark-api:0.25.0
|
||||
javax.activation:activation:1.1
|
||||
javax.activation:javax.activation-api:1.2.0
|
||||
javax.annotation:javax.annotation-api:1.3.2
|
||||
javax.inject:javax.inject:1
|
||||
javax.mail:mail:1.5.0-b01
|
||||
javax.xml.bind:jaxb-api:2.4.0-b180830.0359
|
||||
joda-time:joda-time:2.10.14
|
||||
org.apache.httpcomponents:httpclient:4.5.13
|
||||
org.apache.httpcomponents:httpcore:4.4.15
|
||||
org.bouncycastle:bcpkix-jdk15on:1.67
|
||||
org.bouncycastle:bcprov-jdk15on:1.67
|
||||
org.checkerframework:checker-compat-qual:2.5.5
|
||||
org.checkerframework:checker-qual:3.22.2
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.21
|
||||
org.conscrypt:conscrypt-openjdk-uber:2.5.1
|
||||
org.threeten:threetenbp:1.6.0
|
||||
org.yaml:snakeyaml:1.30
|
|
@ -1,27 +0,0 @@
|
|||
# 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.ben-manes.caffeine:caffeine:2.7.0
|
||||
com.github.kevinstern:software-and-algorithms:1.0
|
||||
com.google.auto:auto-common:0.10
|
||||
com.google.code.findbugs:jFormatString:3.0.0
|
||||
com.google.code.findbugs:jsr305:3.0.2
|
||||
com.google.errorprone:error_prone_annotation:2.3.4
|
||||
com.google.errorprone:error_prone_annotations:2.3.4
|
||||
com.google.errorprone:error_prone_check_api:2.3.4
|
||||
com.google.errorprone:error_prone_core:2.3.4
|
||||
com.google.errorprone:error_prone_type_annotations:2.3.4
|
||||
com.google.guava:failureaccess:1.0.1
|
||||
com.google.guava:guava:27.0.1-jre
|
||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
||||
com.google.j2objc:j2objc-annotations:1.1
|
||||
com.google.protobuf:protobuf-java:3.4.0
|
||||
com.googlecode.java-diff-utils:diffutils:1.3.0
|
||||
org.checkerframework:checker-qual:3.0.0
|
||||
org.checkerframework:dataflow:3.0.0
|
||||
org.checkerframework:javacutil:3.0.0
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.17
|
||||
org.pcollections:pcollections:2.1.2
|
||||
org.plumelib:plume-util:1.0.6
|
||||
org.plumelib:reflection-util:0.0.2
|
||||
org.plumelib:require-javadoc:0.1.0
|
|
@ -1,3 +0,0 @@
|
|||
# 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.
|
|
@ -1,4 +0,0 @@
|
|||
# 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.
|
||||
org.jacoco:org.jacoco.agent:0.8.6
|
|
@ -1,11 +0,0 @@
|
|||
# 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.
|
||||
org.jacoco:org.jacoco.agent:0.8.6
|
||||
org.jacoco:org.jacoco.ant:0.8.6
|
||||
org.jacoco:org.jacoco.core:0.8.6
|
||||
org.jacoco:org.jacoco.report:0.8.6
|
||||
org.ow2.asm:asm-analysis:8.0.1
|
||||
org.ow2.asm:asm-commons:8.0.1
|
||||
org.ow2.asm:asm-tree:8.0.1
|
||||
org.ow2.asm:asm:8.0.1
|
|
@ -1,98 +0,0 @@
|
|||
# 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.beust:jcommander:1.60
|
||||
com.fasterxml.jackson.core:jackson-core:2.13.3
|
||||
com.fasterxml.jackson:jackson-bom:2.13.3
|
||||
com.github.ben-manes.caffeine:caffeine:2.9.3
|
||||
com.google.android:annotations:4.1.1.4
|
||||
com.google.api-client:google-api-client:1.35.1
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2:2.3.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.93.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.93.0
|
||||
com.google.api.grpc:proto-google-common-protos:2.9.0
|
||||
com.google.api.grpc:proto-google-iam-v1:1.4.1
|
||||
com.google.api:api-common:2.2.1
|
||||
com.google.api:gax-grpc:2.18.2
|
||||
com.google.api:gax-httpjson:0.103.2
|
||||
com.google.api:gax:2.18.2
|
||||
com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1
|
||||
com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1
|
||||
com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1
|
||||
com.google.appengine:appengine-api-1.0-sdk:1.9.86
|
||||
com.google.appengine:appengine-testing:1.9.86
|
||||
com.google.auth:google-auth-library-credentials:1.7.0
|
||||
com.google.auth:google-auth-library-oauth2-http:1.7.0
|
||||
com.google.auto.value:auto-value-annotations:1.9
|
||||
com.google.auto.value:auto-value:1.9
|
||||
com.google.cloud:google-cloud-core-http:2.8.0
|
||||
com.google.cloud:google-cloud-core:2.8.0
|
||||
com.google.cloud:google-cloud-storage:2.9.2
|
||||
com.google.cloud:google-cloud-tasks:2.3.0
|
||||
com.google.code.findbugs:jsr305:3.0.2
|
||||
com.google.code.gson:gson:2.9.0
|
||||
com.google.dagger:dagger:2.42
|
||||
com.google.errorprone:error_prone_annotations:2.14.0
|
||||
com.google.flogger:flogger-system-backend:0.7.4
|
||||
com.google.flogger:flogger:0.7.4
|
||||
com.google.guava:failureaccess:1.0.1
|
||||
com.google.guava:guava:31.1-jre
|
||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
||||
com.google.http-client:google-http-client-apache-v2:1.42.0
|
||||
com.google.http-client:google-http-client-appengine:1.42.0
|
||||
com.google.http-client:google-http-client-gson:1.42.0
|
||||
com.google.http-client:google-http-client-jackson2:1.42.0
|
||||
com.google.http-client:google-http-client:1.42.0
|
||||
com.google.j2objc:j2objc-annotations:1.3
|
||||
com.google.monitoring-client:metrics:1.0.7
|
||||
com.google.monitoring-client:stackdriver:1.0.7
|
||||
com.google.oauth-client:google-oauth-client:1.34.1
|
||||
com.google.protobuf:protobuf-java-util:3.21.1
|
||||
com.google.protobuf:protobuf-java:3.21.1
|
||||
com.google.re2j:re2j:1.7
|
||||
com.ibm.icu:icu4j:71.1
|
||||
commons-codec:commons-codec:1.15
|
||||
commons-logging:commons-logging:1.2
|
||||
io.grpc:grpc-alts:1.47.0
|
||||
io.grpc:grpc-api:1.47.0
|
||||
io.grpc:grpc-auth:1.47.0
|
||||
io.grpc:grpc-context:1.47.0
|
||||
io.grpc:grpc-core:1.47.0
|
||||
io.grpc:grpc-googleapis:1.47.0
|
||||
io.grpc:grpc-grpclb:1.47.0
|
||||
io.grpc:grpc-netty-shaded:1.47.0
|
||||
io.grpc:grpc-protobuf-lite:1.47.0
|
||||
io.grpc:grpc-protobuf:1.47.0
|
||||
io.grpc:grpc-services:1.47.0
|
||||
io.grpc:grpc-stub:1.47.0
|
||||
io.grpc:grpc-xds:1.47.0
|
||||
io.netty:netty-buffer:4.1.59.Final
|
||||
io.netty:netty-codec-http:4.1.59.Final
|
||||
io.netty:netty-codec:4.1.59.Final
|
||||
io.netty:netty-common:4.1.59.Final
|
||||
io.netty:netty-handler:4.1.59.Final
|
||||
io.netty:netty-resolver:4.1.59.Final
|
||||
io.netty:netty-tcnative-boringssl-static:2.0.53.Final
|
||||
io.netty:netty-tcnative-classes:2.0.53.Final
|
||||
io.netty:netty-transport:4.1.59.Final
|
||||
io.opencensus:opencensus-api:0.31.1
|
||||
io.opencensus:opencensus-contrib-http-util:0.31.1
|
||||
io.opencensus:opencensus-proto:0.2.0
|
||||
io.perfmark:perfmark-api:0.25.0
|
||||
javax.activation:activation:1.1
|
||||
javax.activation:javax.activation-api:1.2.0
|
||||
javax.annotation:javax.annotation-api:1.3.2
|
||||
javax.inject:javax.inject:1
|
||||
javax.mail:mail:1.5.0-b01
|
||||
javax.xml.bind:jaxb-api:2.4.0-b180830.0359
|
||||
joda-time:joda-time:2.10.14
|
||||
org.apache.httpcomponents:httpclient:4.5.13
|
||||
org.apache.httpcomponents:httpcore:4.4.15
|
||||
org.bouncycastle:bcpkix-jdk15on:1.67
|
||||
org.bouncycastle:bcprov-jdk15on:1.67
|
||||
org.checkerframework:checker-compat-qual:2.5.5
|
||||
org.checkerframework:checker-qual:3.22.2
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.21
|
||||
org.conscrypt:conscrypt-openjdk-uber:2.5.1
|
||||
org.threeten:threetenbp:1.6.0
|
||||
org.yaml:snakeyaml:1.30
|
|
@ -1,98 +0,0 @@
|
|||
# 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.beust:jcommander:1.60
|
||||
com.fasterxml.jackson.core:jackson-core:2.13.3
|
||||
com.fasterxml.jackson:jackson-bom:2.13.3
|
||||
com.github.ben-manes.caffeine:caffeine:2.9.3
|
||||
com.google.android:annotations:4.1.1.4
|
||||
com.google.api-client:google-api-client:1.35.1
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2:2.3.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.93.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.93.0
|
||||
com.google.api.grpc:proto-google-common-protos:2.9.0
|
||||
com.google.api.grpc:proto-google-iam-v1:1.4.1
|
||||
com.google.api:api-common:2.2.1
|
||||
com.google.api:gax-grpc:2.18.2
|
||||
com.google.api:gax-httpjson:0.103.2
|
||||
com.google.api:gax:2.18.2
|
||||
com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1
|
||||
com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1
|
||||
com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1
|
||||
com.google.appengine:appengine-api-1.0-sdk:1.9.86
|
||||
com.google.appengine:appengine-testing:1.9.86
|
||||
com.google.auth:google-auth-library-credentials:1.7.0
|
||||
com.google.auth:google-auth-library-oauth2-http:1.7.0
|
||||
com.google.auto.value:auto-value-annotations:1.9
|
||||
com.google.auto.value:auto-value:1.9
|
||||
com.google.cloud:google-cloud-core-http:2.8.0
|
||||
com.google.cloud:google-cloud-core:2.8.0
|
||||
com.google.cloud:google-cloud-storage:2.9.2
|
||||
com.google.cloud:google-cloud-tasks:2.3.0
|
||||
com.google.code.findbugs:jsr305:3.0.2
|
||||
com.google.code.gson:gson:2.9.0
|
||||
com.google.dagger:dagger:2.42
|
||||
com.google.errorprone:error_prone_annotations:2.14.0
|
||||
com.google.flogger:flogger-system-backend:0.7.4
|
||||
com.google.flogger:flogger:0.7.4
|
||||
com.google.guava:failureaccess:1.0.1
|
||||
com.google.guava:guava:31.1-jre
|
||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
||||
com.google.http-client:google-http-client-apache-v2:1.42.0
|
||||
com.google.http-client:google-http-client-appengine:1.42.0
|
||||
com.google.http-client:google-http-client-gson:1.42.0
|
||||
com.google.http-client:google-http-client-jackson2:1.42.0
|
||||
com.google.http-client:google-http-client:1.42.0
|
||||
com.google.j2objc:j2objc-annotations:1.3
|
||||
com.google.monitoring-client:metrics:1.0.7
|
||||
com.google.monitoring-client:stackdriver:1.0.7
|
||||
com.google.oauth-client:google-oauth-client:1.34.1
|
||||
com.google.protobuf:protobuf-java-util:3.21.1
|
||||
com.google.protobuf:protobuf-java:3.21.1
|
||||
com.google.re2j:re2j:1.7
|
||||
com.ibm.icu:icu4j:71.1
|
||||
commons-codec:commons-codec:1.15
|
||||
commons-logging:commons-logging:1.2
|
||||
io.grpc:grpc-alts:1.47.0
|
||||
io.grpc:grpc-api:1.47.0
|
||||
io.grpc:grpc-auth:1.47.0
|
||||
io.grpc:grpc-context:1.47.0
|
||||
io.grpc:grpc-core:1.47.0
|
||||
io.grpc:grpc-googleapis:1.47.0
|
||||
io.grpc:grpc-grpclb:1.47.0
|
||||
io.grpc:grpc-netty-shaded:1.47.0
|
||||
io.grpc:grpc-protobuf-lite:1.47.0
|
||||
io.grpc:grpc-protobuf:1.47.0
|
||||
io.grpc:grpc-services:1.47.0
|
||||
io.grpc:grpc-stub:1.47.0
|
||||
io.grpc:grpc-xds:1.47.0
|
||||
io.netty:netty-buffer:4.1.59.Final
|
||||
io.netty:netty-codec-http:4.1.59.Final
|
||||
io.netty:netty-codec:4.1.59.Final
|
||||
io.netty:netty-common:4.1.59.Final
|
||||
io.netty:netty-handler:4.1.59.Final
|
||||
io.netty:netty-resolver:4.1.59.Final
|
||||
io.netty:netty-tcnative-boringssl-static:2.0.53.Final
|
||||
io.netty:netty-tcnative-classes:2.0.53.Final
|
||||
io.netty:netty-transport:4.1.59.Final
|
||||
io.opencensus:opencensus-api:0.31.1
|
||||
io.opencensus:opencensus-contrib-http-util:0.31.1
|
||||
io.opencensus:opencensus-proto:0.2.0
|
||||
io.perfmark:perfmark-api:0.25.0
|
||||
javax.activation:activation:1.1
|
||||
javax.activation:javax.activation-api:1.2.0
|
||||
javax.annotation:javax.annotation-api:1.3.2
|
||||
javax.inject:javax.inject:1
|
||||
javax.mail:mail:1.5.0-b01
|
||||
javax.xml.bind:jaxb-api:2.4.0-b180830.0359
|
||||
joda-time:joda-time:2.10.14
|
||||
org.apache.httpcomponents:httpclient:4.5.13
|
||||
org.apache.httpcomponents:httpcore:4.4.15
|
||||
org.bouncycastle:bcpkix-jdk15on:1.67
|
||||
org.bouncycastle:bcprov-jdk15on:1.67
|
||||
org.checkerframework:checker-compat-qual:2.5.5
|
||||
org.checkerframework:checker-qual:3.22.2
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.21
|
||||
org.conscrypt:conscrypt-openjdk-uber:2.5.1
|
||||
org.threeten:threetenbp:1.6.0
|
||||
org.yaml:snakeyaml:1.30
|
|
@ -1,44 +0,0 @@
|
|||
# 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.ben-manes.caffeine:caffeine:2.7.0
|
||||
com.github.kevinstern:software-and-algorithms:1.0
|
||||
com.google.auto.value:auto-value:1.9
|
||||
com.google.auto:auto-common:0.10
|
||||
com.google.code.findbugs:jFormatString:3.0.0
|
||||
com.google.code.findbugs:jsr305:3.0.2
|
||||
com.google.dagger:dagger-compiler:2.42
|
||||
com.google.dagger:dagger-producers:2.42
|
||||
com.google.dagger:dagger-spi:2.42
|
||||
com.google.dagger:dagger:2.42
|
||||
com.google.devtools.ksp:symbol-processing-api:1.5.30-1.0.0
|
||||
com.google.errorprone:error_prone_annotation:2.3.4
|
||||
com.google.errorprone:error_prone_annotations:2.7.1
|
||||
com.google.errorprone:error_prone_check_api:2.3.4
|
||||
com.google.errorprone:error_prone_core:2.3.4
|
||||
com.google.errorprone:error_prone_type_annotations:2.3.4
|
||||
com.google.errorprone:javac-shaded:9-dev-r4023-3
|
||||
com.google.googlejavaformat:google-java-format:1.5
|
||||
com.google.guava:failureaccess:1.0.1
|
||||
com.google.guava:guava:31.0.1-jre
|
||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
||||
com.google.j2objc:j2objc-annotations:1.3
|
||||
com.google.protobuf:protobuf-java:3.4.0
|
||||
com.googlecode.java-diff-utils:diffutils:1.3.0
|
||||
com.squareup:javapoet:1.13.0
|
||||
javax.inject:javax.inject:1
|
||||
net.ltgt.gradle.incap:incap:0.2
|
||||
org.checkerframework:checker-compat-qual:2.5.5
|
||||
org.checkerframework:checker-qual:3.12.0
|
||||
org.checkerframework:dataflow:3.0.0
|
||||
org.checkerframework:javacutil:3.0.0
|
||||
org.jetbrains.kotlin:kotlin-stdlib-common:1.6.10
|
||||
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.32
|
||||
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.32
|
||||
org.jetbrains.kotlin:kotlin-stdlib:1.6.10
|
||||
org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.4.2
|
||||
org.jetbrains:annotations:13.0
|
||||
org.pcollections:pcollections:2.1.2
|
||||
org.plumelib:plume-util:1.0.6
|
||||
org.plumelib:reflection-util:0.0.2
|
||||
org.plumelib:require-javadoc:0.1.0
|
|
@ -1,129 +0,0 @@
|
|||
# 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.beust:jcommander:1.60
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.13.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.13.3
|
||||
com.fasterxml.jackson:jackson-bom:2.13.3
|
||||
com.github.ben-manes.caffeine:caffeine:2.9.3
|
||||
com.github.docker-java:docker-java-api:3.2.13
|
||||
com.github.docker-java:docker-java-transport-zerodep:3.2.13
|
||||
com.github.docker-java:docker-java-transport:3.2.13
|
||||
com.google.android:annotations:4.1.1.4
|
||||
com.google.api-client:google-api-client:1.35.1
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2:2.3.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.93.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.93.0
|
||||
com.google.api.grpc:proto-google-common-protos:2.9.0
|
||||
com.google.api.grpc:proto-google-iam-v1:1.4.1
|
||||
com.google.api:api-common:2.2.1
|
||||
com.google.api:gax-grpc:2.18.2
|
||||
com.google.api:gax-httpjson:0.103.2
|
||||
com.google.api:gax:2.18.2
|
||||
com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1
|
||||
com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1
|
||||
com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1
|
||||
com.google.appengine:appengine-api-1.0-sdk:1.9.86
|
||||
com.google.appengine:appengine-testing:1.9.86
|
||||
com.google.auth:google-auth-library-credentials:1.7.0
|
||||
com.google.auth:google-auth-library-oauth2-http:1.7.0
|
||||
com.google.auto.value:auto-value-annotations:1.9
|
||||
com.google.auto.value:auto-value:1.9
|
||||
com.google.cloud:google-cloud-core-http:2.8.0
|
||||
com.google.cloud:google-cloud-core:2.8.0
|
||||
com.google.cloud:google-cloud-storage:2.9.2
|
||||
com.google.cloud:google-cloud-tasks:2.3.0
|
||||
com.google.code.findbugs:jsr305:3.0.2
|
||||
com.google.code.gson:gson:2.9.0
|
||||
com.google.dagger:dagger:2.42
|
||||
com.google.errorprone:error_prone_annotations:2.14.0
|
||||
com.google.flogger:flogger-system-backend:0.7.4
|
||||
com.google.flogger:flogger:0.7.4
|
||||
com.google.guava:failureaccess:1.0.1
|
||||
com.google.guava:guava:31.1-jre
|
||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
||||
com.google.http-client:google-http-client-apache-v2:1.42.0
|
||||
com.google.http-client:google-http-client-appengine:1.42.0
|
||||
com.google.http-client:google-http-client-gson:1.42.0
|
||||
com.google.http-client:google-http-client-jackson2:1.42.0
|
||||
com.google.http-client:google-http-client:1.42.0
|
||||
com.google.j2objc:j2objc-annotations:1.3
|
||||
com.google.monitoring-client:contrib:1.0.7
|
||||
com.google.monitoring-client:metrics:1.0.7
|
||||
com.google.monitoring-client:stackdriver:1.0.7
|
||||
com.google.oauth-client:google-oauth-client:1.34.1
|
||||
com.google.protobuf:protobuf-java-util:3.21.1
|
||||
com.google.protobuf:protobuf-java:3.21.1
|
||||
com.google.re2j:re2j:1.7
|
||||
com.google.truth:truth:1.1.3
|
||||
com.ibm.icu:icu4j:71.1
|
||||
commons-codec:commons-codec:1.15
|
||||
commons-logging:commons-logging:1.2
|
||||
io.grpc:grpc-alts:1.47.0
|
||||
io.grpc:grpc-api:1.47.0
|
||||
io.grpc:grpc-auth:1.47.0
|
||||
io.grpc:grpc-context:1.47.0
|
||||
io.grpc:grpc-core:1.47.0
|
||||
io.grpc:grpc-googleapis:1.47.0
|
||||
io.grpc:grpc-grpclb:1.47.0
|
||||
io.grpc:grpc-netty-shaded:1.47.0
|
||||
io.grpc:grpc-protobuf-lite:1.47.0
|
||||
io.grpc:grpc-protobuf:1.47.0
|
||||
io.grpc:grpc-services:1.47.0
|
||||
io.grpc:grpc-stub:1.47.0
|
||||
io.grpc:grpc-xds:1.47.0
|
||||
io.netty:netty-buffer:4.1.59.Final
|
||||
io.netty:netty-codec-http:4.1.59.Final
|
||||
io.netty:netty-codec:4.1.59.Final
|
||||
io.netty:netty-common:4.1.59.Final
|
||||
io.netty:netty-handler:4.1.59.Final
|
||||
io.netty:netty-resolver:4.1.59.Final
|
||||
io.netty:netty-tcnative-boringssl-static:2.0.53.Final
|
||||
io.netty:netty-tcnative-classes:2.0.53.Final
|
||||
io.netty:netty-transport:4.1.59.Final
|
||||
io.opencensus:opencensus-api:0.31.1
|
||||
io.opencensus:opencensus-contrib-http-util:0.31.1
|
||||
io.opencensus:opencensus-proto:0.2.0
|
||||
io.perfmark:perfmark-api:0.25.0
|
||||
javax.activation:activation:1.1
|
||||
javax.activation:javax.activation-api:1.2.0
|
||||
javax.annotation:javax.annotation-api:1.3.2
|
||||
javax.inject:javax.inject:1
|
||||
javax.mail:mail:1.5.0-b01
|
||||
javax.xml.bind:jaxb-api:2.4.0-b180830.0359
|
||||
joda-time:joda-time:2.10.14
|
||||
junit:junit:4.13.2
|
||||
net.bytebuddy:byte-buddy-agent:1.12.10
|
||||
net.bytebuddy:byte-buddy:1.12.10
|
||||
net.java.dev.jna:jna:5.8.0
|
||||
org.apache.commons:commons-compress:1.21
|
||||
org.apache.httpcomponents:httpclient:4.5.13
|
||||
org.apache.httpcomponents:httpcore:4.4.15
|
||||
org.bouncycastle:bcpkix-jdk15on:1.67
|
||||
org.bouncycastle:bcprov-jdk15on:1.67
|
||||
org.checkerframework:checker-compat-qual:2.5.5
|
||||
org.checkerframework:checker-qual:3.22.2
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.21
|
||||
org.conscrypt:conscrypt-openjdk-uber:2.5.1
|
||||
org.hamcrest:hamcrest-core:1.3
|
||||
org.jetbrains:annotations:17.0.0
|
||||
org.junit.jupiter:junit-jupiter-api:5.9.0-RC1
|
||||
org.junit.jupiter:junit-jupiter-engine:5.9.0-RC1
|
||||
org.junit.jupiter:junit-jupiter-params:5.9.0-RC1
|
||||
org.junit.platform:junit-platform-commons:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-engine:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-launcher:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-runner:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-suite-api:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-suite-commons:1.9.0-RC1
|
||||
org.junit:junit-bom:5.9.0-RC1
|
||||
org.mockito:mockito-core:4.6.1
|
||||
org.objenesis:objenesis:3.2
|
||||
org.opentest4j:opentest4j:1.2.0
|
||||
org.ow2.asm:asm:9.1
|
||||
org.rnorth.duct-tape:duct-tape:1.0.8
|
||||
org.slf4j:slf4j-api:1.7.36
|
||||
org.testcontainers:junit-jupiter:1.17.3
|
||||
org.testcontainers:testcontainers:1.17.3
|
||||
org.threeten:threetenbp:1.6.0
|
||||
org.yaml:snakeyaml:1.30
|
|
@ -1,115 +0,0 @@
|
|||
# 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.beust:jcommander:1.60
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.13.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.13.3
|
||||
com.fasterxml.jackson:jackson-bom:2.13.3
|
||||
com.github.ben-manes.caffeine:caffeine:2.9.3
|
||||
com.github.docker-java:docker-java-api:3.2.13
|
||||
com.github.docker-java:docker-java-transport-zerodep:3.2.13
|
||||
com.github.docker-java:docker-java-transport:3.2.13
|
||||
com.google.api-client:google-api-client:1.35.1
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2:2.3.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.93.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.93.0
|
||||
com.google.api.grpc:proto-google-common-protos:2.9.0
|
||||
com.google.api.grpc:proto-google-iam-v1:1.4.1
|
||||
com.google.api:api-common:2.2.1
|
||||
com.google.api:gax-grpc:2.18.2
|
||||
com.google.api:gax-httpjson:0.103.2
|
||||
com.google.api:gax:2.18.2
|
||||
com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1
|
||||
com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1
|
||||
com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1
|
||||
com.google.appengine:appengine-api-1.0-sdk:1.9.86
|
||||
com.google.appengine:appengine-testing:1.9.86
|
||||
com.google.auth:google-auth-library-credentials:1.7.0
|
||||
com.google.auth:google-auth-library-oauth2-http:1.7.0
|
||||
com.google.auto.value:auto-value-annotations:1.9
|
||||
com.google.auto.value:auto-value:1.9
|
||||
com.google.cloud:google-cloud-core-http:2.8.0
|
||||
com.google.cloud:google-cloud-core:2.8.0
|
||||
com.google.cloud:google-cloud-storage:2.9.2
|
||||
com.google.cloud:google-cloud-tasks:2.3.0
|
||||
com.google.code.findbugs:jsr305:3.0.2
|
||||
com.google.code.gson:gson:2.9.0
|
||||
com.google.dagger:dagger:2.42
|
||||
com.google.errorprone:error_prone_annotations:2.14.0
|
||||
com.google.flogger:flogger-system-backend:0.7.4
|
||||
com.google.flogger:flogger:0.7.4
|
||||
com.google.guava:failureaccess:1.0.1
|
||||
com.google.guava:guava:31.1-jre
|
||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
||||
com.google.http-client:google-http-client-apache-v2:1.42.0
|
||||
com.google.http-client:google-http-client-appengine:1.42.0
|
||||
com.google.http-client:google-http-client-gson:1.42.0
|
||||
com.google.http-client:google-http-client-jackson2:1.42.0
|
||||
com.google.http-client:google-http-client:1.42.0
|
||||
com.google.j2objc:j2objc-annotations:1.3
|
||||
com.google.monitoring-client:contrib:1.0.7
|
||||
com.google.monitoring-client:metrics:1.0.7
|
||||
com.google.monitoring-client:stackdriver:1.0.7
|
||||
com.google.oauth-client:google-oauth-client:1.34.1
|
||||
com.google.protobuf:protobuf-java-util:3.21.1
|
||||
com.google.protobuf:protobuf-java:3.21.1
|
||||
com.google.re2j:re2j:1.7
|
||||
com.google.truth:truth:1.1.3
|
||||
com.ibm.icu:icu4j:71.1
|
||||
commons-codec:commons-codec:1.15
|
||||
commons-logging:commons-logging:1.2
|
||||
io.grpc:grpc-api:1.47.0
|
||||
io.grpc:grpc-context:1.47.0
|
||||
io.grpc:grpc-protobuf-lite:1.47.0
|
||||
io.grpc:grpc-protobuf:1.47.0
|
||||
io.grpc:grpc-stub:1.47.0
|
||||
io.netty:netty-buffer:4.1.59.Final
|
||||
io.netty:netty-codec-http:4.1.59.Final
|
||||
io.netty:netty-codec:4.1.59.Final
|
||||
io.netty:netty-common:4.1.59.Final
|
||||
io.netty:netty-handler:4.1.59.Final
|
||||
io.netty:netty-resolver:4.1.59.Final
|
||||
io.netty:netty-tcnative-boringssl-static:2.0.53.Final
|
||||
io.netty:netty-tcnative-classes:2.0.53.Final
|
||||
io.netty:netty-transport:4.1.59.Final
|
||||
io.opencensus:opencensus-api:0.31.1
|
||||
io.opencensus:opencensus-contrib-http-util:0.31.1
|
||||
javax.activation:activation:1.1
|
||||
javax.activation:javax.activation-api:1.2.0
|
||||
javax.annotation:javax.annotation-api:1.3.2
|
||||
javax.inject:javax.inject:1
|
||||
javax.mail:mail:1.5.0-b01
|
||||
javax.xml.bind:jaxb-api:2.4.0-b180830.0359
|
||||
joda-time:joda-time:2.10.14
|
||||
junit:junit:4.13.2
|
||||
net.bytebuddy:byte-buddy-agent:1.12.10
|
||||
net.bytebuddy:byte-buddy:1.12.10
|
||||
net.java.dev.jna:jna:5.8.0
|
||||
org.apache.commons:commons-compress:1.21
|
||||
org.apache.httpcomponents:httpclient:4.5.13
|
||||
org.apache.httpcomponents:httpcore:4.4.15
|
||||
org.apiguardian:apiguardian-api:1.1.2
|
||||
org.bouncycastle:bcpkix-jdk15on:1.67
|
||||
org.bouncycastle:bcprov-jdk15on:1.67
|
||||
org.checkerframework:checker-compat-qual:2.5.5
|
||||
org.checkerframework:checker-qual:3.22.2
|
||||
org.hamcrest:hamcrest-core:1.3
|
||||
org.jetbrains:annotations:17.0.0
|
||||
org.junit.jupiter:junit-jupiter-api:5.9.0-RC1
|
||||
org.junit.jupiter:junit-jupiter-engine:5.9.0-RC1
|
||||
org.junit.jupiter:junit-jupiter-params:5.9.0-RC1
|
||||
org.junit.platform:junit-platform-commons:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-engine:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-launcher:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-runner:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-suite-api:1.9.0-RC1
|
||||
org.junit:junit-bom:5.9.0-RC1
|
||||
org.mockito:mockito-core:4.6.1
|
||||
org.opentest4j:opentest4j:1.2.0
|
||||
org.ow2.asm:asm:9.1
|
||||
org.rnorth.duct-tape:duct-tape:1.0.8
|
||||
org.slf4j:slf4j-api:1.7.36
|
||||
org.testcontainers:junit-jupiter:1.17.3
|
||||
org.testcontainers:testcontainers:1.17.3
|
||||
org.threeten:threetenbp:1.6.0
|
||||
org.yaml:snakeyaml:1.30
|
|
@ -1,3 +0,0 @@
|
|||
# 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.
|
|
@ -1,129 +0,0 @@
|
|||
# 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.beust:jcommander:1.60
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.13.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.13.3
|
||||
com.fasterxml.jackson:jackson-bom:2.13.3
|
||||
com.github.ben-manes.caffeine:caffeine:2.9.3
|
||||
com.github.docker-java:docker-java-api:3.2.13
|
||||
com.github.docker-java:docker-java-transport-zerodep:3.2.13
|
||||
com.github.docker-java:docker-java-transport:3.2.13
|
||||
com.google.android:annotations:4.1.1.4
|
||||
com.google.api-client:google-api-client:1.35.1
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2:2.3.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.93.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.93.0
|
||||
com.google.api.grpc:proto-google-common-protos:2.9.0
|
||||
com.google.api.grpc:proto-google-iam-v1:1.4.1
|
||||
com.google.api:api-common:2.2.1
|
||||
com.google.api:gax-grpc:2.18.2
|
||||
com.google.api:gax-httpjson:0.103.2
|
||||
com.google.api:gax:2.18.2
|
||||
com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1
|
||||
com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1
|
||||
com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1
|
||||
com.google.appengine:appengine-api-1.0-sdk:1.9.86
|
||||
com.google.appengine:appengine-testing:1.9.86
|
||||
com.google.auth:google-auth-library-credentials:1.7.0
|
||||
com.google.auth:google-auth-library-oauth2-http:1.7.0
|
||||
com.google.auto.value:auto-value-annotations:1.9
|
||||
com.google.auto.value:auto-value:1.9
|
||||
com.google.cloud:google-cloud-core-http:2.8.0
|
||||
com.google.cloud:google-cloud-core:2.8.0
|
||||
com.google.cloud:google-cloud-storage:2.9.2
|
||||
com.google.cloud:google-cloud-tasks:2.3.0
|
||||
com.google.code.findbugs:jsr305:3.0.2
|
||||
com.google.code.gson:gson:2.9.0
|
||||
com.google.dagger:dagger:2.42
|
||||
com.google.errorprone:error_prone_annotations:2.14.0
|
||||
com.google.flogger:flogger-system-backend:0.7.4
|
||||
com.google.flogger:flogger:0.7.4
|
||||
com.google.guava:failureaccess:1.0.1
|
||||
com.google.guava:guava:31.1-jre
|
||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
||||
com.google.http-client:google-http-client-apache-v2:1.42.0
|
||||
com.google.http-client:google-http-client-appengine:1.42.0
|
||||
com.google.http-client:google-http-client-gson:1.42.0
|
||||
com.google.http-client:google-http-client-jackson2:1.42.0
|
||||
com.google.http-client:google-http-client:1.42.0
|
||||
com.google.j2objc:j2objc-annotations:1.3
|
||||
com.google.monitoring-client:contrib:1.0.7
|
||||
com.google.monitoring-client:metrics:1.0.7
|
||||
com.google.monitoring-client:stackdriver:1.0.7
|
||||
com.google.oauth-client:google-oauth-client:1.34.1
|
||||
com.google.protobuf:protobuf-java-util:3.21.1
|
||||
com.google.protobuf:protobuf-java:3.21.1
|
||||
com.google.re2j:re2j:1.7
|
||||
com.google.truth:truth:1.1.3
|
||||
com.ibm.icu:icu4j:71.1
|
||||
commons-codec:commons-codec:1.15
|
||||
commons-logging:commons-logging:1.2
|
||||
io.grpc:grpc-alts:1.47.0
|
||||
io.grpc:grpc-api:1.47.0
|
||||
io.grpc:grpc-auth:1.47.0
|
||||
io.grpc:grpc-context:1.47.0
|
||||
io.grpc:grpc-core:1.47.0
|
||||
io.grpc:grpc-googleapis:1.47.0
|
||||
io.grpc:grpc-grpclb:1.47.0
|
||||
io.grpc:grpc-netty-shaded:1.47.0
|
||||
io.grpc:grpc-protobuf-lite:1.47.0
|
||||
io.grpc:grpc-protobuf:1.47.0
|
||||
io.grpc:grpc-services:1.47.0
|
||||
io.grpc:grpc-stub:1.47.0
|
||||
io.grpc:grpc-xds:1.47.0
|
||||
io.netty:netty-buffer:4.1.59.Final
|
||||
io.netty:netty-codec-http:4.1.59.Final
|
||||
io.netty:netty-codec:4.1.59.Final
|
||||
io.netty:netty-common:4.1.59.Final
|
||||
io.netty:netty-handler:4.1.59.Final
|
||||
io.netty:netty-resolver:4.1.59.Final
|
||||
io.netty:netty-tcnative-boringssl-static:2.0.53.Final
|
||||
io.netty:netty-tcnative-classes:2.0.53.Final
|
||||
io.netty:netty-transport:4.1.59.Final
|
||||
io.opencensus:opencensus-api:0.31.1
|
||||
io.opencensus:opencensus-contrib-http-util:0.31.1
|
||||
io.opencensus:opencensus-proto:0.2.0
|
||||
io.perfmark:perfmark-api:0.25.0
|
||||
javax.activation:activation:1.1
|
||||
javax.activation:javax.activation-api:1.2.0
|
||||
javax.annotation:javax.annotation-api:1.3.2
|
||||
javax.inject:javax.inject:1
|
||||
javax.mail:mail:1.5.0-b01
|
||||
javax.xml.bind:jaxb-api:2.4.0-b180830.0359
|
||||
joda-time:joda-time:2.10.14
|
||||
junit:junit:4.13.2
|
||||
net.bytebuddy:byte-buddy-agent:1.12.10
|
||||
net.bytebuddy:byte-buddy:1.12.10
|
||||
net.java.dev.jna:jna:5.8.0
|
||||
org.apache.commons:commons-compress:1.21
|
||||
org.apache.httpcomponents:httpclient:4.5.13
|
||||
org.apache.httpcomponents:httpcore:4.4.15
|
||||
org.bouncycastle:bcpkix-jdk15on:1.67
|
||||
org.bouncycastle:bcprov-jdk15on:1.67
|
||||
org.checkerframework:checker-compat-qual:2.5.5
|
||||
org.checkerframework:checker-qual:3.22.2
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.21
|
||||
org.conscrypt:conscrypt-openjdk-uber:2.5.1
|
||||
org.hamcrest:hamcrest-core:1.3
|
||||
org.jetbrains:annotations:17.0.0
|
||||
org.junit.jupiter:junit-jupiter-api:5.9.0-RC1
|
||||
org.junit.jupiter:junit-jupiter-engine:5.9.0-RC1
|
||||
org.junit.jupiter:junit-jupiter-params:5.9.0-RC1
|
||||
org.junit.platform:junit-platform-commons:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-engine:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-launcher:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-runner:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-suite-api:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-suite-commons:1.9.0-RC1
|
||||
org.junit:junit-bom:5.9.0-RC1
|
||||
org.mockito:mockito-core:4.6.1
|
||||
org.objenesis:objenesis:3.2
|
||||
org.opentest4j:opentest4j:1.2.0
|
||||
org.ow2.asm:asm:9.1
|
||||
org.rnorth.duct-tape:duct-tape:1.0.8
|
||||
org.slf4j:slf4j-api:1.7.36
|
||||
org.testcontainers:junit-jupiter:1.17.3
|
||||
org.testcontainers:testcontainers:1.17.3
|
||||
org.threeten:threetenbp:1.6.0
|
||||
org.yaml:snakeyaml:1.30
|
|
@ -1,129 +0,0 @@
|
|||
# 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.beust:jcommander:1.60
|
||||
com.fasterxml.jackson.core:jackson-annotations:2.13.3
|
||||
com.fasterxml.jackson.core:jackson-core:2.13.3
|
||||
com.fasterxml.jackson:jackson-bom:2.13.3
|
||||
com.github.ben-manes.caffeine:caffeine:2.9.3
|
||||
com.github.docker-java:docker-java-api:3.2.13
|
||||
com.github.docker-java:docker-java-transport-zerodep:3.2.13
|
||||
com.github.docker-java:docker-java-transport:3.2.13
|
||||
com.google.android:annotations:4.1.1.4
|
||||
com.google.api-client:google-api-client:1.35.1
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2:2.3.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.93.0
|
||||
com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.93.0
|
||||
com.google.api.grpc:proto-google-common-protos:2.9.0
|
||||
com.google.api.grpc:proto-google-iam-v1:1.4.1
|
||||
com.google.api:api-common:2.2.1
|
||||
com.google.api:gax-grpc:2.18.2
|
||||
com.google.api:gax-httpjson:0.103.2
|
||||
com.google.api:gax:2.18.2
|
||||
com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1
|
||||
com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1
|
||||
com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1
|
||||
com.google.appengine:appengine-api-1.0-sdk:1.9.86
|
||||
com.google.appengine:appengine-testing:1.9.86
|
||||
com.google.auth:google-auth-library-credentials:1.7.0
|
||||
com.google.auth:google-auth-library-oauth2-http:1.7.0
|
||||
com.google.auto.value:auto-value-annotations:1.9
|
||||
com.google.auto.value:auto-value:1.9
|
||||
com.google.cloud:google-cloud-core-http:2.8.0
|
||||
com.google.cloud:google-cloud-core:2.8.0
|
||||
com.google.cloud:google-cloud-storage:2.9.2
|
||||
com.google.cloud:google-cloud-tasks:2.3.0
|
||||
com.google.code.findbugs:jsr305:3.0.2
|
||||
com.google.code.gson:gson:2.9.0
|
||||
com.google.dagger:dagger:2.42
|
||||
com.google.errorprone:error_prone_annotations:2.14.0
|
||||
com.google.flogger:flogger-system-backend:0.7.4
|
||||
com.google.flogger:flogger:0.7.4
|
||||
com.google.guava:failureaccess:1.0.1
|
||||
com.google.guava:guava:31.1-jre
|
||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
||||
com.google.http-client:google-http-client-apache-v2:1.42.0
|
||||
com.google.http-client:google-http-client-appengine:1.42.0
|
||||
com.google.http-client:google-http-client-gson:1.42.0
|
||||
com.google.http-client:google-http-client-jackson2:1.42.0
|
||||
com.google.http-client:google-http-client:1.42.0
|
||||
com.google.j2objc:j2objc-annotations:1.3
|
||||
com.google.monitoring-client:contrib:1.0.7
|
||||
com.google.monitoring-client:metrics:1.0.7
|
||||
com.google.monitoring-client:stackdriver:1.0.7
|
||||
com.google.oauth-client:google-oauth-client:1.34.1
|
||||
com.google.protobuf:protobuf-java-util:3.21.1
|
||||
com.google.protobuf:protobuf-java:3.21.1
|
||||
com.google.re2j:re2j:1.7
|
||||
com.google.truth:truth:1.1.3
|
||||
com.ibm.icu:icu4j:71.1
|
||||
commons-codec:commons-codec:1.15
|
||||
commons-logging:commons-logging:1.2
|
||||
io.grpc:grpc-alts:1.47.0
|
||||
io.grpc:grpc-api:1.47.0
|
||||
io.grpc:grpc-auth:1.47.0
|
||||
io.grpc:grpc-context:1.47.0
|
||||
io.grpc:grpc-core:1.47.0
|
||||
io.grpc:grpc-googleapis:1.47.0
|
||||
io.grpc:grpc-grpclb:1.47.0
|
||||
io.grpc:grpc-netty-shaded:1.47.0
|
||||
io.grpc:grpc-protobuf-lite:1.47.0
|
||||
io.grpc:grpc-protobuf:1.47.0
|
||||
io.grpc:grpc-services:1.47.0
|
||||
io.grpc:grpc-stub:1.47.0
|
||||
io.grpc:grpc-xds:1.47.0
|
||||
io.netty:netty-buffer:4.1.59.Final
|
||||
io.netty:netty-codec-http:4.1.59.Final
|
||||
io.netty:netty-codec:4.1.59.Final
|
||||
io.netty:netty-common:4.1.59.Final
|
||||
io.netty:netty-handler:4.1.59.Final
|
||||
io.netty:netty-resolver:4.1.59.Final
|
||||
io.netty:netty-tcnative-boringssl-static:2.0.53.Final
|
||||
io.netty:netty-tcnative-classes:2.0.53.Final
|
||||
io.netty:netty-transport:4.1.59.Final
|
||||
io.opencensus:opencensus-api:0.31.1
|
||||
io.opencensus:opencensus-contrib-http-util:0.31.1
|
||||
io.opencensus:opencensus-proto:0.2.0
|
||||
io.perfmark:perfmark-api:0.25.0
|
||||
javax.activation:activation:1.1
|
||||
javax.activation:javax.activation-api:1.2.0
|
||||
javax.annotation:javax.annotation-api:1.3.2
|
||||
javax.inject:javax.inject:1
|
||||
javax.mail:mail:1.5.0-b01
|
||||
javax.xml.bind:jaxb-api:2.4.0-b180830.0359
|
||||
joda-time:joda-time:2.10.14
|
||||
junit:junit:4.13.2
|
||||
net.bytebuddy:byte-buddy-agent:1.12.10
|
||||
net.bytebuddy:byte-buddy:1.12.10
|
||||
net.java.dev.jna:jna:5.8.0
|
||||
org.apache.commons:commons-compress:1.21
|
||||
org.apache.httpcomponents:httpclient:4.5.13
|
||||
org.apache.httpcomponents:httpcore:4.4.15
|
||||
org.bouncycastle:bcpkix-jdk15on:1.67
|
||||
org.bouncycastle:bcprov-jdk15on:1.67
|
||||
org.checkerframework:checker-compat-qual:2.5.5
|
||||
org.checkerframework:checker-qual:3.22.2
|
||||
org.codehaus.mojo:animal-sniffer-annotations:1.21
|
||||
org.conscrypt:conscrypt-openjdk-uber:2.5.1
|
||||
org.hamcrest:hamcrest-core:1.3
|
||||
org.jetbrains:annotations:17.0.0
|
||||
org.junit.jupiter:junit-jupiter-api:5.9.0-RC1
|
||||
org.junit.jupiter:junit-jupiter-engine:5.9.0-RC1
|
||||
org.junit.jupiter:junit-jupiter-params:5.9.0-RC1
|
||||
org.junit.platform:junit-platform-commons:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-engine:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-launcher:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-runner:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-suite-api:1.9.0-RC1
|
||||
org.junit.platform:junit-platform-suite-commons:1.9.0-RC1
|
||||
org.junit:junit-bom:5.9.0-RC1
|
||||
org.mockito:mockito-core:4.6.1
|
||||
org.objenesis:objenesis:3.2
|
||||
org.opentest4j:opentest4j:1.2.0
|
||||
org.ow2.asm:asm:9.1
|
||||
org.rnorth.duct-tape:duct-tape:1.0.8
|
||||
org.slf4j:slf4j-api:1.7.36
|
||||
org.testcontainers:junit-jupiter:1.17.3
|
||||
org.testcontainers:testcontainers:1.17.3
|
||||
org.threeten:threetenbp:1.6.0
|
||||
org.yaml:snakeyaml:1.30
|
Loading…
Add table
Add a link
Reference in a new issue