diff --git a/appengine_war.gradle b/appengine_war.gradle index 44140dfcc..a5cd719c8 100644 --- a/appengine_war.gradle +++ b/appengine_war.gradle @@ -77,7 +77,7 @@ appengine { } dependencies { - compile project(path: ':core', configuration: 'deploy_jar') + implementation project(path: ':core', configuration: 'deploy_jar') } // The tools.jar file gets pulled in from the java environment and for some @@ -96,6 +96,8 @@ explodeWar.doLast { rootProject.deploy.dependsOn appengineDeployAll rootProject.stage.dependsOn appengineStage +tasks['war'].dependsOn ':core:compileProdJS' +tasks['war'].dependsOn ':core:processResources' // Impose verification for all of the deployment tasks. We haven't found a // better way to do this other than to apply to each of them independently. diff --git a/build.gradle b/build.gradle index 4fa3d0ec5..c8c79156a 100644 --- a/build.gradle +++ b/build.gradle @@ -29,7 +29,7 @@ buildscript { dependencies { classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.4.1' - classpath 'net.ltgt.gradle:gradle-errorprone-plugin:0.6.1' + classpath 'net.ltgt.gradle:gradle-errorprone-plugin:2.0.2' classpath 'org.sonatype.aether:aether-api:1.13.1' classpath 'org.sonatype.aether:aether-impl:1.13.1' } @@ -39,7 +39,7 @@ plugins { // Java static analysis plugins. Keep versions consistent with // ./buildSrc/build.gradle id 'nebula.lint' version '16.0.2' - id 'net.ltgt.errorprone' version '0.6.1' + id 'net.ltgt.errorprone' version '2.0.2' id 'checkstyle' id 'com.github.johnrengelman.shadow' version '5.1.0' @@ -53,6 +53,10 @@ plugins { id 'com.dorongold.task-tree' version '2.1.0' } +dependencyLocking { + lockAllConfigurations() +} + node { download = true version = "16.14.0" @@ -172,6 +176,9 @@ rootProject.ext.verifyDeploymentConfig = { // Subproject configuration. +// Alias this since it collides with the closure variable name +def allowInsecure = allowInsecureProtocol + allprojects { // Skip no-op project if (project.name == 'services') return @@ -181,6 +188,7 @@ allprojects { maven { println "Java dependencies: Using repo ${mavenUrl}..." url mavenUrl + allowInsecureProtocol = allowInsecure == "true" } } else { println "Java dependencies: Using Maven Central..." @@ -278,6 +286,11 @@ subprojects { // see https://discuss.gradle.org/t/signing-a-custom-gradle-plugin-thats-downloaded-by-the-build-system-from-github/1365 exclude "META-INF/*.SF", "META-INF/*.DSA", "META-INF/*.RSA" exclude excludes + + // We do seem to get duplicates when constructing uber-jars, either + // this is a product of something in gradle 7 or a product of gradle 7 + // now giving an error about them when it didn't previously. + duplicatesStrategy DuplicatesStrategy.WARN } } @@ -297,7 +310,7 @@ subprojects { // The ':integration' project runs server/schema integration tests using // dynamically specified jars with no transitive dependency. Therefore // dependency-locking does not make sense. Furthermore, during - // evaluation it resolves the 'testRuntime' configuration, making it + // evaluation it resolves the 'testRuntimeOnly' configuration, making it // immutable. Locking activation would trigger an invalid operation // exception. // diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle deleted file mode 100644 index b51906be0..000000000 --- a/buildSrc/build.gradle +++ /dev/null @@ -1,112 +0,0 @@ -// Copyright 2019 The Nomulus Authors. All Rights Reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -import static com.google.common.base.Strings.isNullOrEmpty; - -buildscript { - if (project.enableDependencyLocking.toBoolean()) { - // Lock buildscript dependencies. - configurations.classpath { - resolutionStrategy.activateDependencyLocking() - } - } -} - -plugins { - // Java static analysis plugins. Keep versions consistent with ../build.gradle - id 'nebula.lint' version '16.0.2' - id 'net.ltgt.errorprone' version '0.6.1' - id 'checkstyle' - id 'com.diffplug.gradle.spotless' version '3.25.0' -} - -if (rootProject.enableDependencyLocking.toBoolean()) { - // Lock application dependencies. - dependencyLocking { - lockAllConfigurations() - } -} - -repositories { - if (isNullOrEmpty(project.ext.properties.mavenUrl)) { - println "Java dependencies: Using Maven central..." - mavenCentral() - google() - } else { - maven { - println "Java dependencies: Using repo ${mavenUrl}..." - url mavenUrl - } - } -} - -apply from: '../dependencies.gradle' -apply from: '../dependency_lic.gradle' -apply from: '../java_common.gradle' - -sourceSets { - main { - java { - srcDirs += "${project.buildDir}/generated/source/apt/main" - } - } -} - -checkstyle { - configDir file('../config/checkstyle') -} - -dependencies { - def deps = dependencyMap - 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.common.html.types:types'] - compile deps['com.google.cloud:google-cloud-core'] - compile deps['com.google.cloud:google-cloud-storage'] - compile deps['com.google.guava:guava'] - compile deps['com.google.protobuf:protobuf-java'] - compile deps['com.google.template:soy'] - compile deps['org.apache.commons:commons-text'] - annotationProcessor deps['com.google.auto.value:auto-value'] - testCompile deps['com.google.truth:truth'] - testCompile deps['com.google.truth.extensions:truth-java8-extension'] - testCompile deps['org.junit.jupiter:junit-jupiter-api'] - testCompile deps['org.junit.jupiter:junit-jupiter-engine'] - testCompile deps['org.mockito:mockito-core'] -} - -gradle.projectsEvaluated { - tasks.withType(JavaCompile) { - options.compilerArgs << "-Xlint:unchecked" - } -} - -task exportDependencies { - def outputFileProperty = 'dependencyExportFile' - def output = project.hasProperty(outputFileProperty) - ? new PrintStream( - new File(project.getProperty(outputFileProperty))) - : System.out - - doLast { - project.configurations.all { - it.dependencies.findAll { - it.group != null - }.each { - output.println("${it.group}:${it.name}") - } - } - } -} diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts new file mode 100644 index 000000000..f9beafce9 --- /dev/null +++ b/buildSrc/build.gradle.kts @@ -0,0 +1,128 @@ +// Copyright 2019 The Nomulus Authors. All Rights Reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +import java.io.PrintStream; + +val enableDependencyLocking: String by project +val allowInsecureProtocol: String by project +val allowInsecure = allowInsecureProtocol + +buildscript { + // We need to do this again within "buildscript" because setting it in the + // main script doesn't affect build dependencies. + val enableDependencyLocking: String by project + if (enableDependencyLocking.toBoolean()) { + // Lock application dependencies. + dependencyLocking { + lockAllConfigurations() + } + } +} + +plugins { + // Java static analysis plugins. Keep versions consistent with ../build.gradle + // id("nebula.lint") version "16.0.2" // unsupported for kotlin + id("net.ltgt.errorprone") version "2.0.2" + checkstyle + id("com.diffplug.gradle.spotless") version "3.25.0" +} + +checkstyle { + configDirectory.set(file("../config/checkstyle")) +} + +println("enableDependencyLocking is $enableDependencyLocking") +if (enableDependencyLocking.toBoolean()) { + // Lock application dependencies. + dependencyLocking { + lockAllConfigurations() + } +} + +repositories { + val mavenUrl = (project.ext.properties.get("mavenUrl") ?: "") as String + if (mavenUrl.isEmpty()) { + println("Java dependencies: Using Maven central...") + mavenCentral() + google() + } else { + maven { + println("Java dependencies: Using repo ${mavenUrl}...") + url = uri(mavenUrl) + isAllowInsecureProtocol = allowInsecureProtocol == "true" + } + } +} + +apply(from = "../dependencies.gradle") +apply(from = "../dependency_lic.gradle") +apply(from = "../java_common.gradle") + +project.the()["main"].java { + srcDir("${project.buildDir}/generated/source/apt/main") +} + +// checkstyle { +// configDir file("../config/checkstyle") +// } + +dependencies { + val deps = project.ext["dependencyMap"] as Map + val implementation by configurations + val testImplementation by configurations + val annotationProcessor by configurations + 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.common.html.types:types"]!!) + implementation(deps["com.google.cloud:google-cloud-core"]!!) + implementation(deps["com.google.cloud:google-cloud-storage"]!!) + implementation(deps["com.google.guava:guava"]!!) + implementation(deps["com.google.protobuf:protobuf-java"]!!) + implementation(deps["com.google.template:soy"]!!) + implementation(deps["org.apache.commons:commons-text"]!!) + annotationProcessor(deps["com.google.auto.value:auto-value"]!!) + testImplementation(deps["com.google.truth:truth"]!!) + testImplementation( + deps["com.google.truth.extensions:truth-java8-extension"]!!) + testImplementation(deps["org.junit.jupiter:junit-jupiter-api"]!!) + testImplementation(deps["org.junit.jupiter:junit-jupiter-engine"]!!) + testImplementation(deps["org.mockito:mockito-core"]!!) +} + +gradle.projectsEvaluated { + tasks.withType { + options.compilerArgs.add("-Xlint:unchecked") + } +} + +tasks.register("exportDependencies") { + val outputFileProperty = "dependencyExportFile" + val output = if (project.hasProperty(outputFileProperty)) { + PrintStream(file(project.ext.properties[outputFileProperty])) + } else { + System.out + } + + doLast { + project.configurations.forEach { + println("dependency is $it") + // it.dependencies.findAll { + // it.group != null + // }.each { + // output.println("${it.group}:${it.name}") + // } + } + } +} diff --git a/buildSrc/buildscript-gradle.lockfile b/buildSrc/buildscript-gradle.lockfile new file mode 100644 index 000000000..671c4b06c --- /dev/null +++ b/buildSrc/buildscript-gradle.lockfile @@ -0,0 +1,24 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +com.diffplug.durian:durian-collect:1.2.0=classpath +com.diffplug.durian:durian-core:1.2.0=classpath +com.diffplug.durian:durian-io:1.2.0=classpath +com.diffplug.gradle.spotless:com.diffplug.gradle.spotless.gradle.plugin:3.25.0=classpath +com.diffplug.spotless:spotless-lib-extra:1.25.0=classpath +com.diffplug.spotless:spotless-lib:1.25.0=classpath +com.diffplug.spotless:spotless-plugin-gradle:3.25.0=classpath +com.googlecode.concurrent-trees:concurrent-trees:2.6.1=classpath +com.googlecode.javaewah:JavaEWAH:1.1.6=classpath +com.jcraft:jsch:0.1.55=classpath +com.jcraft:jzlib:1.1.1=classpath +net.ltgt.errorprone:net.ltgt.errorprone.gradle.plugin:2.0.2=classpath +net.ltgt.gradle:gradle-errorprone-plugin:2.0.2=classpath +org.bouncycastle:bcpg-jdk15on:1.61=classpath +org.bouncycastle:bcpkix-jdk15on:1.61=classpath +org.bouncycastle:bcprov-jdk15on:1.61=classpath +org.codehaus.groovy:groovy-xml:2.4.7=classpath +org.codehaus.groovy:groovy:2.4.7=classpath +org.eclipse.jgit:org.eclipse.jgit:5.5.0.201909110433-r=classpath +org.slf4j:slf4j-api:1.7.2=classpath +empty= diff --git a/buildSrc/gradle.lockfile b/buildSrc/gradle.lockfile new file mode 100644 index 000000000..a5c1618af --- /dev/null +++ b/buildSrc/gradle.lockfile @@ -0,0 +1,120 @@ +# 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 +aopalliance:aopalliance:1.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +args4j:args4j:2.0.23=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-core:2.13.3=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson:jackson-bom:2.13.3=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.github.ben-manes.caffeine:caffeine:2.7.0=annotationProcessor,testAnnotationProcessor +com.github.kevinstern:software-and-algorithms:1.0=annotationProcessor,testAnnotationProcessor +com.google.api-client:google-api-client:1.35.1=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-common-protos:2.9.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-iam-v1:1.4.1=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:api-common:2.2.1=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax-httpjson:0.103.2=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax:2.18.2=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-storage:v1-rev20220705-1.32.1=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-credentials:1.7.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-oauth2-http:1.7.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.value:auto-value-annotations:1.9=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.value:auto-value:1.9=annotationProcessor +com.google.auto:auto-common:0.10=annotationProcessor,testAnnotationProcessor +com.google.cloud:google-cloud-core-http:2.8.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core:2.8.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-storage:2.10.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.code.findbugs:jFormatString:3.0.0=annotationProcessor,testAnnotationProcessor +com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.code.gson:gson:2.9.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.common.html.types:types:1.0.6=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotation:2.3.4=annotationProcessor,testAnnotationProcessor +com.google.errorprone:error_prone_annotations:2.11.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.3.4=annotationProcessor,checkstyle,testAnnotationProcessor +com.google.errorprone:error_prone_check_api:2.3.4=annotationProcessor,testAnnotationProcessor +com.google.errorprone:error_prone_core:2.3.4=annotationProcessor,testAnnotationProcessor +com.google.errorprone:error_prone_type_annotations:2.3.4=annotationProcessor,testAnnotationProcessor +com.google.escapevelocity:escapevelocity:0.9.1=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:failureaccess:1.0.1=annotationProcessor,checkstyle,compileClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.guava:guava:27.0.1-jre=annotationProcessor,testAnnotationProcessor +com.google.guava:guava:29.0-jre=checkstyle +com.google.guava:guava:31.1-jre=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=annotationProcessor,checkstyle,compileClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-apache-v2:1.42.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-appengine:1.42.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-gson:1.42.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-jackson2:1.42.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client:1.42.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.inject.extensions:guice-multibindings:4.1.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.inject:guice:4.1.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.j2objc:j2objc-annotations:1.1=annotationProcessor,testAnnotationProcessor +com.google.j2objc:j2objc-annotations:1.3=checkstyle,compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.jsinterop:jsinterop-annotations:1.0.1=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client:1.34.1=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java-util:3.21.1=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:3.21.1=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:3.4.0=annotationProcessor,testAnnotationProcessor +com.google.template:soy:2021-02-01=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.google.truth.extensions:truth-java8-extension:1.1.3=testCompileClasspath,testRuntimeClasspath +com.google.truth:truth:1.1.3=testCompileClasspath,testRuntimeClasspath +com.googlecode.java-diff-utils:diffutils:1.3.0=annotationProcessor,testAnnotationProcessor +com.ibm.icu:icu4j:57.1=compileClasspath,testCompileClasspath,testRuntimeClasspath +com.puppycrawl.tools:checkstyle:8.37=checkstyle +commons-beanutils:commons-beanutils:1.9.4=checkstyle +commons-codec:commons-codec:1.11=compileClasspath,testCompileClasspath,testRuntimeClasspath +commons-collections:commons-collections:3.2.2=checkstyle +commons-logging:commons-logging:1.2=compileClasspath,testCompileClasspath,testRuntimeClasspath +info.picocli:picocli:4.5.2=checkstyle +io.grpc:grpc-context:1.47.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-api:0.31.1=compileClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-http-util:0.31.1=compileClasspath,testCompileClasspath,testRuntimeClasspath +javax.annotation:javax.annotation-api:1.3.2=compileClasspath,testCompileClasspath,testRuntimeClasspath +javax.annotation:jsr250-api:1.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +javax.inject:javax.inject:1=compileClasspath,testCompileClasspath,testRuntimeClasspath +junit:junit:4.13.2=testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy-agent:1.12.10=testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy:1.12.10=testCompileClasspath,testRuntimeClasspath +net.sf.saxon:Saxon-HE:10.3=checkstyle +org.antlr:antlr4-runtime:4.8-1=checkstyle +org.apache.commons:commons-lang3:3.11=compileClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-text:1.9=compileClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.httpcomponents:httpclient:4.5.13=compileClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.httpcomponents:httpcore:4.4.15=compileClasspath,testCompileClasspath,testRuntimeClasspath +org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath +org.checkerframework:checker-qual:2.11.1=checkstyle +org.checkerframework:checker-qual:3.0.0=annotationProcessor,testAnnotationProcessor +org.checkerframework:checker-qual:3.22.2=compileClasspath,testCompileClasspath,testRuntimeClasspath +org.checkerframework:dataflow:3.0.0=annotationProcessor,testAnnotationProcessor +org.checkerframework:javacutil:3.0.0=annotationProcessor,testAnnotationProcessor +org.codehaus.mojo:animal-sniffer-annotations:1.17=annotationProcessor,testAnnotationProcessor +org.hamcrest:hamcrest-core:1.3=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.json:json:20160212=compileClasspath,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.platform:junit-platform-commons:1.9.0-RC1=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-engine:1.9.0-RC1=testCompileClasspath,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:7.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-analysis:8.0.1=jacocoAnt +org.ow2.asm:asm-commons:7.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-commons:8.0.1=jacocoAnt +org.ow2.asm:asm-tree:7.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-tree:8.0.1=jacocoAnt +org.ow2.asm:asm-util:7.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm:7.0=compileClasspath +org.ow2.asm:asm:8.0.1=jacocoAnt +org.ow2.asm:asm:9.1=testCompileClasspath,testRuntimeClasspath +org.pcollections:pcollections:2.1.2=annotationProcessor,testAnnotationProcessor +org.plumelib:plume-util:1.0.6=annotationProcessor,testAnnotationProcessor +org.plumelib:reflection-util:0.0.2=annotationProcessor,testAnnotationProcessor +org.plumelib:require-javadoc:0.1.0=annotationProcessor,testAnnotationProcessor +org.reflections:reflections:0.9.12=checkstyle +org.threeten:threetenbp:1.6.0=compileClasspath,testCompileClasspath,testRuntimeClasspath +empty= diff --git a/buildSrc/gradle.properties b/buildSrc/gradle.properties index 5f54828f4..c7ef7adbd 100644 --- a/buildSrc/gradle.properties +++ b/buildSrc/gradle.properties @@ -1 +1,3 @@ +pluginsUrl=https://plugins.gradle.org/m2/ +allowInsecureProtocol= enableDependencyLocking=true diff --git a/buildSrc/gradle/dependency-locks/annotationProcessor.lockfile b/buildSrc/gradle/dependency-locks/annotationProcessor.lockfile deleted file mode 100644 index ea61c45a8..000000000 --- a/buildSrc/gradle/dependency-locks/annotationProcessor.lockfile +++ /dev/null @@ -1,28 +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.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 diff --git a/buildSrc/gradle/dependency-locks/buildscript-classpath.lockfile b/buildSrc/gradle/dependency-locks/buildscript-classpath.lockfile deleted file mode 100644 index bdb0d49ee..000000000 --- a/buildSrc/gradle/dependency-locks/buildscript-classpath.lockfile +++ /dev/null @@ -1,51 +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.diffplug.durian:durian-collect:1.2.0 -com.diffplug.durian:durian-core:1.2.0 -com.diffplug.durian:durian-io:1.2.0 -com.diffplug.gradle.spotless:com.diffplug.gradle.spotless.gradle.plugin:3.25.0 -com.diffplug.spotless:spotless-lib-extra:1.25.0 -com.diffplug.spotless:spotless-lib:1.25.0 -com.diffplug.spotless:spotless-plugin-gradle:3.25.0 -com.google.guava:guava:19.0 -com.googlecode.concurrent-trees:concurrent-trees:2.6.1 -com.googlecode.javaewah:JavaEWAH:1.1.6 -com.jcraft:jsch:0.1.55 -com.jcraft:jzlib:1.1.1 -com.netflix.nebula:gradle-lint-plugin:16.0.2 -com.netflix.nebula:nebula-gradle-interop:1.0.11 -commons-lang:commons-lang:2.6 -javax.inject:javax.inject:1 -junit:junit:4.12 -nebula.lint:nebula.lint.gradle.plugin:16.0.2 -net.ltgt.errorprone:net.ltgt.errorprone.gradle.plugin:0.6.1 -net.ltgt.gradle:gradle-errorprone-plugin:0.6.1 -org.apache.commons:commons-lang3:3.8.1 -org.apache.maven:maven-artifact:3.6.2 -org.apache.maven:maven-builder-support:3.6.2 -org.apache.maven:maven-model-builder:3.6.2 -org.apache.maven:maven-model:3.6.2 -org.bouncycastle:bcpg-jdk15on:1.61 -org.bouncycastle:bcpkix-jdk15on:1.61 -org.bouncycastle:bcprov-jdk15on:1.61 -org.codehaus.gpars:gpars:1.2.1 -org.codehaus.groovy:groovy-xml:2.4.7 -org.codehaus.groovy:groovy:2.4.7 -org.codehaus.jsr166-mirror:jsr166y:1.7.0 -org.codehaus.plexus:plexus-interpolation:1.25 -org.codehaus.plexus:plexus-utils:3.2.1 -org.eclipse.jgit:org.eclipse.jgit:5.5.0.201909110433-r -org.eclipse.sisu:org.eclipse.sisu.inject:0.3.3 -org.hamcrest:hamcrest-core:1.3 -org.jetbrains.kotlin:kotlin-stdlib-common:1.3.50 -org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.50 -org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50 -org.jetbrains.kotlin:kotlin-stdlib:1.3.50 -org.jetbrains:annotations:13.0 -org.multiverse:multiverse-core:0.7.0 -org.ow2.asm:asm-analysis:7.1 -org.ow2.asm:asm-commons:7.1 -org.ow2.asm:asm-tree:7.1 -org.ow2.asm:asm:7.1 -org.slf4j:slf4j-api:1.7.2 diff --git a/buildSrc/gradle/dependency-locks/checkstyle.lockfile b/buildSrc/gradle/dependency-locks/checkstyle.lockfile deleted file mode 100644 index c0dab047f..000000000 --- a/buildSrc/gradle/dependency-locks/checkstyle.lockfile +++ /dev/null @@ -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 diff --git a/buildSrc/gradle/dependency-locks/compile.lockfile b/buildSrc/gradle/dependency-locks/compile.lockfile deleted file mode 100644 index b693d0765..000000000 --- a/buildSrc/gradle/dependency-locks/compile.lockfile +++ /dev/null @@ -1,62 +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. -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.fasterxml.jackson.core:jackson-core:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.google.api-client:google-api-client:1.35.1 -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-httpjson:0.103.2 -com.google.api:gax:2.18.2 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -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.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.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.errorprone:error_prone_annotations:2.11.0 -com.google.escapevelocity:escapevelocity:0.9.1 -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.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:1.0.1 -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.template:soy:2021-02-01 -com.ibm.icu:icu4j:57.1 -commons-codec:commons-codec:1.11 -commons-logging:commons-logging:1.2 -io.grpc:grpc-context:1.47.0 -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-http-util:0.31.1 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -org.apache.commons:commons-lang3:3.11 -org.apache.commons:commons-text:1.9 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.checkerframework:checker-qual:3.22.2 -org.json:json:20160212 -org.ow2.asm:asm-analysis:7.0 -org.ow2.asm:asm-commons:7.0 -org.ow2.asm:asm-tree:7.0 -org.ow2.asm:asm-util:7.0 -org.ow2.asm:asm:7.0 -org.threeten:threetenbp:1.6.0 diff --git a/buildSrc/gradle/dependency-locks/compileClasspath.lockfile b/buildSrc/gradle/dependency-locks/compileClasspath.lockfile deleted file mode 100644 index b693d0765..000000000 --- a/buildSrc/gradle/dependency-locks/compileClasspath.lockfile +++ /dev/null @@ -1,62 +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. -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.fasterxml.jackson.core:jackson-core:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.google.api-client:google-api-client:1.35.1 -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-httpjson:0.103.2 -com.google.api:gax:2.18.2 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -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.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.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.errorprone:error_prone_annotations:2.11.0 -com.google.escapevelocity:escapevelocity:0.9.1 -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.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:1.0.1 -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.template:soy:2021-02-01 -com.ibm.icu:icu4j:57.1 -commons-codec:commons-codec:1.11 -commons-logging:commons-logging:1.2 -io.grpc:grpc-context:1.47.0 -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-http-util:0.31.1 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -org.apache.commons:commons-lang3:3.11 -org.apache.commons:commons-text:1.9 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.checkerframework:checker-qual:3.22.2 -org.json:json:20160212 -org.ow2.asm:asm-analysis:7.0 -org.ow2.asm:asm-commons:7.0 -org.ow2.asm:asm-tree:7.0 -org.ow2.asm:asm-util:7.0 -org.ow2.asm:asm:7.0 -org.threeten:threetenbp:1.6.0 diff --git a/buildSrc/gradle/dependency-locks/deploy_jar.lockfile b/buildSrc/gradle/dependency-locks/deploy_jar.lockfile deleted file mode 100644 index b693d0765..000000000 --- a/buildSrc/gradle/dependency-locks/deploy_jar.lockfile +++ /dev/null @@ -1,62 +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. -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.fasterxml.jackson.core:jackson-core:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.google.api-client:google-api-client:1.35.1 -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-httpjson:0.103.2 -com.google.api:gax:2.18.2 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -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.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.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.errorprone:error_prone_annotations:2.11.0 -com.google.escapevelocity:escapevelocity:0.9.1 -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.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:1.0.1 -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.template:soy:2021-02-01 -com.ibm.icu:icu4j:57.1 -commons-codec:commons-codec:1.11 -commons-logging:commons-logging:1.2 -io.grpc:grpc-context:1.47.0 -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-http-util:0.31.1 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -org.apache.commons:commons-lang3:3.11 -org.apache.commons:commons-text:1.9 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.checkerframework:checker-qual:3.22.2 -org.json:json:20160212 -org.ow2.asm:asm-analysis:7.0 -org.ow2.asm:asm-commons:7.0 -org.ow2.asm:asm-tree:7.0 -org.ow2.asm:asm-util:7.0 -org.ow2.asm:asm:7.0 -org.threeten:threetenbp:1.6.0 diff --git a/buildSrc/gradle/dependency-locks/jacocoAgent.lockfile b/buildSrc/gradle/dependency-locks/jacocoAgent.lockfile deleted file mode 100644 index 837b06fc2..000000000 --- a/buildSrc/gradle/dependency-locks/jacocoAgent.lockfile +++ /dev/null @@ -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 diff --git a/buildSrc/gradle/dependency-locks/jacocoAnt.lockfile b/buildSrc/gradle/dependency-locks/jacocoAnt.lockfile deleted file mode 100644 index a717958c0..000000000 --- a/buildSrc/gradle/dependency-locks/jacocoAnt.lockfile +++ /dev/null @@ -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 diff --git a/buildSrc/gradle/dependency-locks/runtime.lockfile b/buildSrc/gradle/dependency-locks/runtime.lockfile deleted file mode 100644 index b693d0765..000000000 --- a/buildSrc/gradle/dependency-locks/runtime.lockfile +++ /dev/null @@ -1,62 +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. -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.fasterxml.jackson.core:jackson-core:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.google.api-client:google-api-client:1.35.1 -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-httpjson:0.103.2 -com.google.api:gax:2.18.2 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -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.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.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.errorprone:error_prone_annotations:2.11.0 -com.google.escapevelocity:escapevelocity:0.9.1 -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.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:1.0.1 -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.template:soy:2021-02-01 -com.ibm.icu:icu4j:57.1 -commons-codec:commons-codec:1.11 -commons-logging:commons-logging:1.2 -io.grpc:grpc-context:1.47.0 -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-http-util:0.31.1 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -org.apache.commons:commons-lang3:3.11 -org.apache.commons:commons-text:1.9 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.checkerframework:checker-qual:3.22.2 -org.json:json:20160212 -org.ow2.asm:asm-analysis:7.0 -org.ow2.asm:asm-commons:7.0 -org.ow2.asm:asm-tree:7.0 -org.ow2.asm:asm-util:7.0 -org.ow2.asm:asm:7.0 -org.threeten:threetenbp:1.6.0 diff --git a/buildSrc/gradle/dependency-locks/runtimeClasspath.lockfile b/buildSrc/gradle/dependency-locks/runtimeClasspath.lockfile deleted file mode 100644 index b693d0765..000000000 --- a/buildSrc/gradle/dependency-locks/runtimeClasspath.lockfile +++ /dev/null @@ -1,62 +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. -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.fasterxml.jackson.core:jackson-core:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.google.api-client:google-api-client:1.35.1 -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-httpjson:0.103.2 -com.google.api:gax:2.18.2 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -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.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.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.errorprone:error_prone_annotations:2.11.0 -com.google.escapevelocity:escapevelocity:0.9.1 -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.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:1.0.1 -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.template:soy:2021-02-01 -com.ibm.icu:icu4j:57.1 -commons-codec:commons-codec:1.11 -commons-logging:commons-logging:1.2 -io.grpc:grpc-context:1.47.0 -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-http-util:0.31.1 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -org.apache.commons:commons-lang3:3.11 -org.apache.commons:commons-text:1.9 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.checkerframework:checker-qual:3.22.2 -org.json:json:20160212 -org.ow2.asm:asm-analysis:7.0 -org.ow2.asm:asm-commons:7.0 -org.ow2.asm:asm-tree:7.0 -org.ow2.asm:asm-util:7.0 -org.ow2.asm:asm:7.0 -org.threeten:threetenbp:1.6.0 diff --git a/buildSrc/gradle/dependency-locks/testAnnotationProcessor.lockfile b/buildSrc/gradle/dependency-locks/testAnnotationProcessor.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/buildSrc/gradle/dependency-locks/testAnnotationProcessor.lockfile +++ /dev/null @@ -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 diff --git a/buildSrc/gradle/dependency-locks/testCompile.lockfile b/buildSrc/gradle/dependency-locks/testCompile.lockfile deleted file mode 100644 index 0dc86bd86..000000000 --- a/buildSrc/gradle/dependency-locks/testCompile.lockfile +++ /dev/null @@ -1,76 +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. -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.fasterxml.jackson.core:jackson-core:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.google.api-client:google-api-client:1.35.1 -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-httpjson:0.103.2 -com.google.api:gax:2.18.2 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -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.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.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.errorprone:error_prone_annotations:2.11.0 -com.google.escapevelocity:escapevelocity:0.9.1 -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.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:1.0.1 -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.template:soy:2021-02-01 -com.google.truth.extensions:truth-java8-extension:1.1.3 -com.google.truth:truth:1.1.3 -com.ibm.icu:icu4j:57.1 -commons-codec:commons-codec:1.11 -commons-logging:commons-logging:1.2 -io.grpc:grpc-context:1.47.0 -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-http-util:0.31.1 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -junit:junit:4.13.2 -net.bytebuddy:byte-buddy-agent:1.12.10 -net.bytebuddy:byte-buddy:1.12.10 -org.apache.commons:commons-lang3:3.11 -org.apache.commons:commons-text:1.9 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.checkerframework:checker-qual:3.22.2 -org.hamcrest:hamcrest-core:1.3 -org.json:json:20160212 -org.junit.jupiter:junit-jupiter-api:5.9.0-RC1 -org.junit.jupiter:junit-jupiter-engine: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: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-analysis:7.0 -org.ow2.asm:asm-commons:7.0 -org.ow2.asm:asm-tree:7.0 -org.ow2.asm:asm-util:7.0 -org.ow2.asm:asm:9.1 -org.threeten:threetenbp:1.6.0 diff --git a/buildSrc/gradle/dependency-locks/testCompileClasspath.lockfile b/buildSrc/gradle/dependency-locks/testCompileClasspath.lockfile deleted file mode 100644 index b5d5bf357..000000000 --- a/buildSrc/gradle/dependency-locks/testCompileClasspath.lockfile +++ /dev/null @@ -1,76 +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. -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.fasterxml.jackson.core:jackson-core:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.google.api-client:google-api-client:1.35.1 -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-httpjson:0.103.2 -com.google.api:gax:2.18.2 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -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.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.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.errorprone:error_prone_annotations:2.11.0 -com.google.escapevelocity:escapevelocity:0.9.1 -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.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:1.0.1 -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.template:soy:2021-02-01 -com.google.truth.extensions:truth-java8-extension:1.1.3 -com.google.truth:truth:1.1.3 -com.ibm.icu:icu4j:57.1 -commons-codec:commons-codec:1.11 -commons-logging:commons-logging:1.2 -io.grpc:grpc-context:1.47.0 -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-http-util:0.31.1 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -junit:junit:4.13.2 -net.bytebuddy:byte-buddy-agent:1.12.10 -net.bytebuddy:byte-buddy:1.12.10 -org.apache.commons:commons-lang3:3.11 -org.apache.commons:commons-text:1.9 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.apiguardian:apiguardian-api:1.1.2 -org.checkerframework:checker-qual:3.22.2 -org.hamcrest:hamcrest-core:1.3 -org.json:json:20160212 -org.junit.jupiter:junit-jupiter-api:5.9.0-RC1 -org.junit.jupiter:junit-jupiter-engine: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:junit-bom:5.9.0-RC1 -org.mockito:mockito-core:4.6.1 -org.opentest4j:opentest4j:1.2.0 -org.ow2.asm:asm-analysis:7.0 -org.ow2.asm:asm-commons:7.0 -org.ow2.asm:asm-tree:7.0 -org.ow2.asm:asm-util:7.0 -org.ow2.asm:asm:9.1 -org.threeten:threetenbp:1.6.0 diff --git a/buildSrc/gradle/dependency-locks/testRuntime.lockfile b/buildSrc/gradle/dependency-locks/testRuntime.lockfile deleted file mode 100644 index 0dc86bd86..000000000 --- a/buildSrc/gradle/dependency-locks/testRuntime.lockfile +++ /dev/null @@ -1,76 +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. -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.fasterxml.jackson.core:jackson-core:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.google.api-client:google-api-client:1.35.1 -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-httpjson:0.103.2 -com.google.api:gax:2.18.2 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -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.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.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.errorprone:error_prone_annotations:2.11.0 -com.google.escapevelocity:escapevelocity:0.9.1 -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.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:1.0.1 -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.template:soy:2021-02-01 -com.google.truth.extensions:truth-java8-extension:1.1.3 -com.google.truth:truth:1.1.3 -com.ibm.icu:icu4j:57.1 -commons-codec:commons-codec:1.11 -commons-logging:commons-logging:1.2 -io.grpc:grpc-context:1.47.0 -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-http-util:0.31.1 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -junit:junit:4.13.2 -net.bytebuddy:byte-buddy-agent:1.12.10 -net.bytebuddy:byte-buddy:1.12.10 -org.apache.commons:commons-lang3:3.11 -org.apache.commons:commons-text:1.9 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.checkerframework:checker-qual:3.22.2 -org.hamcrest:hamcrest-core:1.3 -org.json:json:20160212 -org.junit.jupiter:junit-jupiter-api:5.9.0-RC1 -org.junit.jupiter:junit-jupiter-engine: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: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-analysis:7.0 -org.ow2.asm:asm-commons:7.0 -org.ow2.asm:asm-tree:7.0 -org.ow2.asm:asm-util:7.0 -org.ow2.asm:asm:9.1 -org.threeten:threetenbp:1.6.0 diff --git a/buildSrc/gradle/dependency-locks/testRuntimeClasspath.lockfile b/buildSrc/gradle/dependency-locks/testRuntimeClasspath.lockfile deleted file mode 100644 index 0dc86bd86..000000000 --- a/buildSrc/gradle/dependency-locks/testRuntimeClasspath.lockfile +++ /dev/null @@ -1,76 +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. -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.fasterxml.jackson.core:jackson-core:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.google.api-client:google-api-client:1.35.1 -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-httpjson:0.103.2 -com.google.api:gax:2.18.2 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -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.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.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.errorprone:error_prone_annotations:2.11.0 -com.google.escapevelocity:escapevelocity:0.9.1 -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.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:1.0.1 -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.template:soy:2021-02-01 -com.google.truth.extensions:truth-java8-extension:1.1.3 -com.google.truth:truth:1.1.3 -com.ibm.icu:icu4j:57.1 -commons-codec:commons-codec:1.11 -commons-logging:commons-logging:1.2 -io.grpc:grpc-context:1.47.0 -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-http-util:0.31.1 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -junit:junit:4.13.2 -net.bytebuddy:byte-buddy-agent:1.12.10 -net.bytebuddy:byte-buddy:1.12.10 -org.apache.commons:commons-lang3:3.11 -org.apache.commons:commons-text:1.9 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.checkerframework:checker-qual:3.22.2 -org.hamcrest:hamcrest-core:1.3 -org.json:json:20160212 -org.junit.jupiter:junit-jupiter-api:5.9.0-RC1 -org.junit.jupiter:junit-jupiter-engine: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: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-analysis:7.0 -org.ow2.asm:asm-commons:7.0 -org.ow2.asm:asm-tree:7.0 -org.ow2.asm:asm-util:7.0 -org.ow2.asm:asm:9.1 -org.threeten:threetenbp:1.6.0 diff --git a/buildSrc/settings.gradle b/buildSrc/settings.gradle new file mode 100644 index 000000000..a85c9dbc9 --- /dev/null +++ b/buildSrc/settings.gradle @@ -0,0 +1,29 @@ +// Copyright 2019 The Nomulus Authors. All Rights Reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Alias this since it collides with the closure variable name +def allowInsecure = allowInsecureProtocol + +if (!pluginsUrl.isEmpty()) { + pluginManagement { + repositories { + maven { + url pluginsUrl + allowInsecureProtocol = allowInsecure == "true" + } + } + } +} else { + println "Plugins: Using default repo..." +} diff --git a/buildscript-gradle.lockfile b/buildscript-gradle.lockfile new file mode 100644 index 000000000..408e27165 --- /dev/null +++ b/buildscript-gradle.lockfile @@ -0,0 +1,79 @@ +# 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.diffplug.durian:durian-collect:1.2.0=classpath +com.diffplug.durian:durian-core:1.2.0=classpath +com.diffplug.durian:durian-io:1.2.0=classpath +com.diffplug.gradle.spotless:com.diffplug.gradle.spotless.gradle.plugin:3.25.0=classpath +com.diffplug.spotless:spotless-lib-extra:1.25.0=classpath +com.diffplug.spotless:spotless-lib:1.25.0=classpath +com.diffplug.spotless:spotless-plugin-gradle:3.25.0=classpath +com.dorongold.plugins:task-tree:2.1.0=classpath +com.dorongold.task-tree:com.dorongold.task-tree.gradle.plugin:2.1.0=classpath +com.github.jengelman.gradle.plugins:shadow:5.1.0=classpath +com.github.johnrengelman.shadow:com.github.johnrengelman.shadow.gradle.plugin:5.1.0=classpath +com.github.node-gradle.node:com.github.node-gradle.node.gradle.plugin:3.0.1=classpath +com.github.node-gradle:gradle-node-plugin:3.0.1=classpath +com.google.cloud.tools:appengine-gradle-plugin:2.4.1=classpath +com.google.cloud.tools:appengine-plugins-core:0.9.1=classpath +com.google.code.findbugs:jsr305:3.0.2=classpath +com.google.code.gson:gson:2.8.6=classpath +com.google.errorprone:error_prone_annotations:2.3.4=classpath +com.google.guava:failureaccess:1.0.1=classpath +com.google.guava:guava:28.2-jre=classpath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=classpath +com.google.j2objc:j2objc-annotations:1.3=classpath +com.googlecode.concurrent-trees:concurrent-trees:2.6.1=classpath +com.googlecode.javaewah:JavaEWAH:1.1.6=classpath +com.jcraft:jsch:0.1.55=classpath +com.jcraft:jzlib:1.1.1=classpath +com.netflix.nebula:gradle-lint-plugin:16.0.2=classpath +com.netflix.nebula:nebula-gradle-interop:1.0.11=classpath +commons-io:commons-io:2.6=classpath +commons-lang:commons-lang:2.6=classpath +javax.inject:javax.inject:1=classpath +junit:junit:4.12=classpath +nebula.lint:nebula.lint.gradle.plugin:16.0.2=classpath +net.ltgt.errorprone:net.ltgt.errorprone.gradle.plugin:2.0.2=classpath +net.ltgt.gradle:gradle-errorprone-plugin:2.0.2=classpath +org.apache.ant:ant-launcher:1.9.7=classpath +org.apache.ant:ant:1.9.7=classpath +org.apache.commons:commons-compress:1.20=classpath +org.apache.commons:commons-lang3:3.8.1=classpath +org.apache.maven:maven-artifact:3.6.2=classpath +org.apache.maven:maven-builder-support:3.6.2=classpath +org.apache.maven:maven-model-builder:3.6.2=classpath +org.apache.maven:maven-model:3.6.2=classpath +org.bouncycastle:bcpg-jdk15on:1.61=classpath +org.bouncycastle:bcpkix-jdk15on:1.61=classpath +org.bouncycastle:bcprov-jdk15on:1.61=classpath +org.checkerframework:checker-qual:2.10.0=classpath +org.codehaus.gpars:gpars:1.2.1=classpath +org.codehaus.groovy:groovy-xml:2.4.7=classpath +org.codehaus.groovy:groovy:2.4.7=classpath +org.codehaus.jsr166-mirror:jsr166y:1.7.0=classpath +org.codehaus.plexus:plexus-interpolation:1.25=classpath +org.codehaus.plexus:plexus-utils:3.2.1=classpath +org.eclipse.jgit:org.eclipse.jgit:5.5.0.201909110433-r=classpath +org.eclipse.sisu:org.eclipse.sisu.inject:0.3.3=classpath +org.glassfish:javax.json:1.0.4=classpath +org.hamcrest:hamcrest-core:1.3=classpath +org.jdom:jdom2:2.0.6=classpath +org.jetbrains.kotlin:kotlin-stdlib-common:1.3.50=classpath +org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.50=classpath +org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50=classpath +org.jetbrains.kotlin:kotlin-stdlib:1.3.50=classpath +org.jetbrains:annotations:13.0=classpath +org.multiverse:multiverse-core:0.7.0=classpath +org.ow2.asm:asm-analysis:7.1=classpath +org.ow2.asm:asm-commons:7.1=classpath +org.ow2.asm:asm-tree:7.1=classpath +org.ow2.asm:asm:7.1=classpath +org.slf4j:slf4j-api:1.7.2=classpath +org.sonatype.aether:aether-api:1.13.1=classpath +org.sonatype.aether:aether-impl:1.13.1=classpath +org.sonatype.aether:aether-spi:1.13.1=classpath +org.sonatype.aether:aether-util:1.13.1=classpath +org.vafer:jdependency:2.1.1=classpath +org.yaml:snakeyaml:1.21=classpath +empty= diff --git a/common/build.gradle b/common/build.gradle index b4799ec89..0d27df480 100644 --- a/common/build.gradle +++ b/common/build.gradle @@ -28,15 +28,17 @@ sourceSets { } configurations { - testingCompile.extendsFrom compile - testingRuntime.extendsFrom runtime + // For reasons I don't understand, testingCompileOnly is the configuration + // used for compiling the classes in the "testing" jar. + testingCompileOnly.extendsFrom implementation + testingRuntimeOnly.extendsFrom runtimeOnly - testCompile.extendsFrom testingCompile - testRuntime.extendsFrom testingRuntime + testImplementation.extendsFrom testingCompile + testRuntimeOnly.extendsFrom testingRuntime // All testing util classes. Other projects may declare dependency as: - // testCompile project(path: 'common', configuration: 'testing') - testing + // testImplementation project(path: 'common', configuration: 'testing') + testing.extendsFrom testingCompileOnly } task testingJar(type: Jar) { @@ -51,17 +53,15 @@ artifacts { dependencies { def deps = rootProject.dependencyMap - compile deps['com.github.ben-manes.caffeine:caffeine'] - compile deps['com.google.code.findbugs:jsr305'] - compile deps['com.google.guava:guava'] - compile deps['javax.inject:javax.inject'] - compile deps['joda-time:joda-time'] + implementation deps['com.github.ben-manes.caffeine:caffeine'] + implementation deps['com.google.code.findbugs:jsr305'] + implementation deps['com.google.guava:guava'] + implementation deps['javax.inject:javax.inject'] + implementation deps['joda-time:joda-time'] + implementation deps['com.google.flogger:flogger'] + implementation deps['io.github.java-diff-utils:java-diff-utils'] + implementation deps['com.google.truth:truth'] - testingCompile deps['com.google.flogger:flogger'] - testingRuntime deps['com.google.flogger:flogger-system-backend'] - testingCompile deps['com.google.truth:truth'] - testingCompile deps['io.github.java-diff-utils:java-diff-utils'] - - testCompile deps['org.junit.jupiter:junit-jupiter-api'] - testCompile deps['org.junit.jupiter:junit-jupiter-engine'] + testImplementation deps['org.junit.jupiter:junit-jupiter-api'] + testImplementation deps['org.junit.jupiter:junit-jupiter-engine'] } diff --git a/common/gradle/dependency-locks/errorproneJavac.lockfile b/common/buildscript-gradle.lockfile similarity index 91% rename from common/gradle/dependency-locks/errorproneJavac.lockfile rename to common/buildscript-gradle.lockfile index 656c5dbcc..0d156738b 100644 --- a/common/gradle/dependency-locks/errorproneJavac.lockfile +++ b/common/buildscript-gradle.lockfile @@ -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 diff --git a/common/gradle.lockfile b/common/gradle.lockfile new file mode 100644 index 000000000..81278d967 --- /dev/null +++ b/common/gradle.lockfile @@ -0,0 +1,69 @@ +# 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.github.ben-manes.caffeine:caffeine:2.7.0=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +com.github.ben-manes.caffeine:caffeine:2.9.3=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +com.github.kevinstern:software-and-algorithms:1.0=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +com.google.auto.value:auto-value-annotations:1.8.1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +com.google.auto:auto-common:0.10=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +com.google.code.findbugs:jFormatString:3.0.0=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClasspath,default,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath,testing,testingAnnotationProcessor,testingCompileClasspath +com.google.errorprone:error_prone_annotation:2.3.4=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +com.google.errorprone:error_prone_annotations:2.11.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +com.google.errorprone:error_prone_annotations:2.3.4=annotationProcessor,checkstyle,errorprone,testAnnotationProcessor,testingAnnotationProcessor +com.google.errorprone:error_prone_check_api:2.3.4=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +com.google.errorprone:error_prone_core:2.3.4=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +com.google.errorprone:error_prone_type_annotations:2.3.4=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +com.google.flogger:flogger:0.7.4=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +com.google.guava:failureaccess:1.0.1=annotationProcessor,checkstyle,compileClasspath,default,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath,testing,testingAnnotationProcessor,testingCompileClasspath +com.google.guava:guava:27.0.1-jre=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +com.google.guava:guava:29.0-jre=checkstyle +com.google.guava:guava:31.1-jre=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=annotationProcessor,checkstyle,compileClasspath,default,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath,testing,testingAnnotationProcessor,testingCompileClasspath +com.google.j2objc:j2objc-annotations:1.1=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +com.google.j2objc:j2objc-annotations:1.3=checkstyle,compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +com.google.protobuf:protobuf-java:3.4.0=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +com.google.truth:truth:1.1.3=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +com.googlecode.java-diff-utils:diffutils:1.3.0=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +com.puppycrawl.tools:checkstyle:8.37=checkstyle +commons-beanutils:commons-beanutils:1.9.4=checkstyle +commons-collections:commons-collections:3.2.2=checkstyle +info.picocli:picocli:4.5.2=checkstyle +io.github.java-diff-utils:java-diff-utils:4.12=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +javax.inject:javax.inject:1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +joda-time:joda-time:2.10.14=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +junit:junit:4.13.2=default,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +net.sf.saxon:Saxon-HE:10.3=checkstyle +org.antlr:antlr4-runtime:4.8-1=checkstyle +org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath +org.checkerframework:checker-compat-qual:2.5.3=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +org.checkerframework:checker-qual:2.11.1=checkstyle +org.checkerframework:checker-qual:3.0.0=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +org.checkerframework:checker-qual:3.19.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +org.checkerframework:dataflow:3.0.0=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +org.checkerframework:javacutil:3.0.0=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +org.codehaus.mojo:animal-sniffer-annotations:1.17=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +org.hamcrest:hamcrest-core:1.3=default,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +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.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.platform:junit-platform-commons:1.9.0-RC1=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-engine:1.9.0-RC1=testCompileClasspath,testRuntimeClasspath +org.junit:junit-bom:5.9.0-RC1=testCompileClasspath,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=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +org.pcollections:pcollections:2.1.2=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +org.plumelib:plume-util:1.0.6=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +org.plumelib:reflection-util:0.0.2=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +org.plumelib:require-javadoc:0.1.0=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor +org.reflections:reflections:0.9.12=checkstyle +empty=archives,errorproneJavac,testingCompile,testingRuntime,testingRuntimeClasspath diff --git a/common/gradle/dependency-locks/annotationProcessor.lockfile b/common/gradle/dependency-locks/annotationProcessor.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/common/gradle/dependency-locks/annotationProcessor.lockfile +++ /dev/null @@ -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 diff --git a/common/gradle/dependency-locks/checkstyle.lockfile b/common/gradle/dependency-locks/checkstyle.lockfile deleted file mode 100644 index c0dab047f..000000000 --- a/common/gradle/dependency-locks/checkstyle.lockfile +++ /dev/null @@ -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 diff --git a/common/gradle/dependency-locks/compile.lockfile b/common/gradle/dependency-locks/compile.lockfile deleted file mode 100644 index 83779feb6..000000000 --- a/common/gradle/dependency-locks/compile.lockfile +++ /dev/null @@ -1,13 +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.9.3 -com.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -javax.inject:javax.inject:1 -joda-time:joda-time:2.10.14 -org.checkerframework:checker-qual:3.19.0 diff --git a/common/gradle/dependency-locks/compileClasspath.lockfile b/common/gradle/dependency-locks/compileClasspath.lockfile deleted file mode 100644 index 83779feb6..000000000 --- a/common/gradle/dependency-locks/compileClasspath.lockfile +++ /dev/null @@ -1,13 +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.9.3 -com.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -javax.inject:javax.inject:1 -joda-time:joda-time:2.10.14 -org.checkerframework:checker-qual:3.19.0 diff --git a/common/gradle/dependency-locks/default.lockfile b/common/gradle/dependency-locks/default.lockfile deleted file mode 100644 index 83779feb6..000000000 --- a/common/gradle/dependency-locks/default.lockfile +++ /dev/null @@ -1,13 +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.9.3 -com.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -javax.inject:javax.inject:1 -joda-time:joda-time:2.10.14 -org.checkerframework:checker-qual:3.19.0 diff --git a/common/gradle/dependency-locks/deploy_jar.lockfile b/common/gradle/dependency-locks/deploy_jar.lockfile deleted file mode 100644 index 83779feb6..000000000 --- a/common/gradle/dependency-locks/deploy_jar.lockfile +++ /dev/null @@ -1,13 +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.9.3 -com.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -javax.inject:javax.inject:1 -joda-time:joda-time:2.10.14 -org.checkerframework:checker-qual:3.19.0 diff --git a/common/gradle/dependency-locks/errorprone.lockfile b/common/gradle/dependency-locks/errorprone.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/common/gradle/dependency-locks/errorprone.lockfile +++ /dev/null @@ -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 diff --git a/common/gradle/dependency-locks/jacocoAgent.lockfile b/common/gradle/dependency-locks/jacocoAgent.lockfile deleted file mode 100644 index 837b06fc2..000000000 --- a/common/gradle/dependency-locks/jacocoAgent.lockfile +++ /dev/null @@ -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 diff --git a/common/gradle/dependency-locks/jacocoAnt.lockfile b/common/gradle/dependency-locks/jacocoAnt.lockfile deleted file mode 100644 index a717958c0..000000000 --- a/common/gradle/dependency-locks/jacocoAnt.lockfile +++ /dev/null @@ -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 diff --git a/common/gradle/dependency-locks/runtime.lockfile b/common/gradle/dependency-locks/runtime.lockfile deleted file mode 100644 index 83779feb6..000000000 --- a/common/gradle/dependency-locks/runtime.lockfile +++ /dev/null @@ -1,13 +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.9.3 -com.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -javax.inject:javax.inject:1 -joda-time:joda-time:2.10.14 -org.checkerframework:checker-qual:3.19.0 diff --git a/common/gradle/dependency-locks/runtimeClasspath.lockfile b/common/gradle/dependency-locks/runtimeClasspath.lockfile deleted file mode 100644 index 83779feb6..000000000 --- a/common/gradle/dependency-locks/runtimeClasspath.lockfile +++ /dev/null @@ -1,13 +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.9.3 -com.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -javax.inject:javax.inject:1 -joda-time:joda-time:2.10.14 -org.checkerframework:checker-qual:3.19.0 diff --git a/common/gradle/dependency-locks/testAnnotationProcessor.lockfile b/common/gradle/dependency-locks/testAnnotationProcessor.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/common/gradle/dependency-locks/testAnnotationProcessor.lockfile +++ /dev/null @@ -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 diff --git a/common/gradle/dependency-locks/testCompile.lockfile b/common/gradle/dependency-locks/testCompile.lockfile deleted file mode 100644 index 72d9dfb7c..000000000 --- a/common/gradle/dependency-locks/testCompile.lockfile +++ /dev/null @@ -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.9.3 -com.google.auto.value:auto-value-annotations:1.8.1 -com.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -com.google.truth:truth:1.1.3 -io.github.java-diff-utils:java-diff-utils:4.11 -javax.inject:javax.inject:1 -joda-time:joda-time:2.10.14 -junit:junit:4.13.2 -org.checkerframework:checker-compat-qual:2.5.3 -org.checkerframework:checker-qual:3.19.0 -org.hamcrest:hamcrest-core:1.3 -org.junit.jupiter:junit-jupiter-api:5.9.0-RC1 -org.junit.jupiter:junit-jupiter-engine: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:junit-bom:5.9.0-RC1 -org.opentest4j:opentest4j:1.2.0 -org.ow2.asm:asm:9.1 diff --git a/common/gradle/dependency-locks/testCompileClasspath.lockfile b/common/gradle/dependency-locks/testCompileClasspath.lockfile deleted file mode 100644 index fa0dd7842..000000000 --- a/common/gradle/dependency-locks/testCompileClasspath.lockfile +++ /dev/null @@ -1,28 +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.9.3 -com.google.auto.value:auto-value-annotations:1.8.1 -com.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -com.google.truth:truth:1.1.3 -io.github.java-diff-utils:java-diff-utils:4.11 -javax.inject:javax.inject:1 -joda-time:joda-time:2.10.14 -junit:junit:4.13.2 -org.apiguardian:apiguardian-api:1.1.2 -org.checkerframework:checker-compat-qual:2.5.3 -org.checkerframework:checker-qual:3.19.0 -org.hamcrest:hamcrest-core:1.3 -org.junit.jupiter:junit-jupiter-api:5.9.0-RC1 -org.junit.jupiter:junit-jupiter-engine: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:junit-bom:5.9.0-RC1 -org.opentest4j:opentest4j:1.2.0 -org.ow2.asm:asm:9.1 diff --git a/common/gradle/dependency-locks/testCompileOnly.lockfile b/common/gradle/dependency-locks/testCompileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/common/gradle/dependency-locks/testCompileOnly.lockfile +++ /dev/null @@ -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. diff --git a/common/gradle/dependency-locks/testRuntime.lockfile b/common/gradle/dependency-locks/testRuntime.lockfile deleted file mode 100644 index caac95cfc..000000000 --- a/common/gradle/dependency-locks/testRuntime.lockfile +++ /dev/null @@ -1,28 +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.9.3 -com.google.auto.value:auto-value-annotations:1.8.1 -com.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.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.j2objc:j2objc-annotations:1.3 -com.google.truth:truth:1.1.3 -io.github.java-diff-utils:java-diff-utils:4.11 -javax.inject:javax.inject:1 -joda-time:joda-time:2.10.14 -junit:junit:4.13.2 -org.checkerframework:checker-compat-qual:2.5.3 -org.checkerframework:checker-qual:3.19.0 -org.hamcrest:hamcrest-core:1.3 -org.junit.jupiter:junit-jupiter-api:5.9.0-RC1 -org.junit.jupiter:junit-jupiter-engine: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:junit-bom:5.9.0-RC1 -org.opentest4j:opentest4j:1.2.0 -org.ow2.asm:asm:9.1 diff --git a/common/gradle/dependency-locks/testRuntimeClasspath.lockfile b/common/gradle/dependency-locks/testRuntimeClasspath.lockfile deleted file mode 100644 index caac95cfc..000000000 --- a/common/gradle/dependency-locks/testRuntimeClasspath.lockfile +++ /dev/null @@ -1,28 +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.9.3 -com.google.auto.value:auto-value-annotations:1.8.1 -com.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.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.j2objc:j2objc-annotations:1.3 -com.google.truth:truth:1.1.3 -io.github.java-diff-utils:java-diff-utils:4.11 -javax.inject:javax.inject:1 -joda-time:joda-time:2.10.14 -junit:junit:4.13.2 -org.checkerframework:checker-compat-qual:2.5.3 -org.checkerframework:checker-qual:3.19.0 -org.hamcrest:hamcrest-core:1.3 -org.junit.jupiter:junit-jupiter-api:5.9.0-RC1 -org.junit.jupiter:junit-jupiter-engine: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:junit-bom:5.9.0-RC1 -org.opentest4j:opentest4j:1.2.0 -org.ow2.asm:asm:9.1 diff --git a/common/gradle/dependency-locks/testing.lockfile b/common/gradle/dependency-locks/testing.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/common/gradle/dependency-locks/testing.lockfile +++ /dev/null @@ -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. diff --git a/common/gradle/dependency-locks/testingAnnotationProcessor.lockfile b/common/gradle/dependency-locks/testingAnnotationProcessor.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/common/gradle/dependency-locks/testingAnnotationProcessor.lockfile +++ /dev/null @@ -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 diff --git a/common/gradle/dependency-locks/testingCompile.lockfile b/common/gradle/dependency-locks/testingCompile.lockfile deleted file mode 100644 index c9ce505ee..000000000 --- a/common/gradle/dependency-locks/testingCompile.lockfile +++ /dev/null @@ -1,21 +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.9.3 -com.google.auto.value:auto-value-annotations:1.8.1 -com.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -com.google.truth:truth:1.1.3 -io.github.java-diff-utils:java-diff-utils:4.11 -javax.inject:javax.inject:1 -joda-time:joda-time:2.10.14 -junit:junit:4.13.2 -org.checkerframework:checker-compat-qual:2.5.3 -org.checkerframework:checker-qual:3.19.0 -org.hamcrest:hamcrest-core:1.3 -org.ow2.asm:asm:9.1 diff --git a/common/gradle/dependency-locks/testingCompileClasspath.lockfile b/common/gradle/dependency-locks/testingCompileClasspath.lockfile deleted file mode 100644 index c9ce505ee..000000000 --- a/common/gradle/dependency-locks/testingCompileClasspath.lockfile +++ /dev/null @@ -1,21 +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.9.3 -com.google.auto.value:auto-value-annotations:1.8.1 -com.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -com.google.truth:truth:1.1.3 -io.github.java-diff-utils:java-diff-utils:4.11 -javax.inject:javax.inject:1 -joda-time:joda-time:2.10.14 -junit:junit:4.13.2 -org.checkerframework:checker-compat-qual:2.5.3 -org.checkerframework:checker-qual:3.19.0 -org.hamcrest:hamcrest-core:1.3 -org.ow2.asm:asm:9.1 diff --git a/common/gradle/dependency-locks/testingCompileOnly.lockfile b/common/gradle/dependency-locks/testingCompileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/common/gradle/dependency-locks/testingCompileOnly.lockfile +++ /dev/null @@ -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. diff --git a/common/gradle/dependency-locks/testingRuntime.lockfile b/common/gradle/dependency-locks/testingRuntime.lockfile deleted file mode 100644 index 65ea01316..000000000 --- a/common/gradle/dependency-locks/testingRuntime.lockfile +++ /dev/null @@ -1,22 +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.9.3 -com.google.auto.value:auto-value-annotations:1.8.1 -com.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.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.j2objc:j2objc-annotations:1.3 -com.google.truth:truth:1.1.3 -io.github.java-diff-utils:java-diff-utils:4.11 -javax.inject:javax.inject:1 -joda-time:joda-time:2.10.14 -junit:junit:4.13.2 -org.checkerframework:checker-compat-qual:2.5.3 -org.checkerframework:checker-qual:3.19.0 -org.hamcrest:hamcrest-core:1.3 -org.ow2.asm:asm:9.1 diff --git a/common/gradle/dependency-locks/testingRuntimeClasspath.lockfile b/common/gradle/dependency-locks/testingRuntimeClasspath.lockfile deleted file mode 100644 index 65ea01316..000000000 --- a/common/gradle/dependency-locks/testingRuntimeClasspath.lockfile +++ /dev/null @@ -1,22 +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.9.3 -com.google.auto.value:auto-value-annotations:1.8.1 -com.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.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.j2objc:j2objc-annotations:1.3 -com.google.truth:truth:1.1.3 -io.github.java-diff-utils:java-diff-utils:4.11 -javax.inject:javax.inject:1 -joda-time:joda-time:2.10.14 -junit:junit:4.13.2 -org.checkerframework:checker-compat-qual:2.5.3 -org.checkerframework:checker-qual:3.19.0 -org.hamcrest:hamcrest-core:1.3 -org.ow2.asm:asm:9.1 diff --git a/config/nom_build.py b/config/nom_build.py index 315396f23..36c8f3e94 100644 --- a/config/nom_build.py +++ b/config/nom_build.py @@ -84,6 +84,10 @@ PROPERTIES = [ Property('pluginsUrl', 'URL to use for the gradle plugins repository (defaults to maven ' 'central, see also mavenUrl'), + Property('allowInsecureProtocol', + 'Allow connecting to plain HTTP repositories. This is provided ' + 'to allow us to communicate to a local proxy when doing ' + 'dependency updates.'), Property('uploaderDestination', 'Location to upload test reports to. Normally this should be a ' 'GCS url (see also uploaderCredentialsFile)'), diff --git a/config/show_upgrade_diffs.py b/config/show_upgrade_diffs.py index d2ecfbbb8..7f341e37a 100644 --- a/config/show_upgrade_diffs.py +++ b/config/show_upgrade_diffs.py @@ -58,7 +58,10 @@ def parse_lockfile(filename: str) -> PackageMap: if line.startswith(b'#'): continue line = line.rstrip() - package = cast(Tuple[bytes, bytes, bytes], tuple(line.split(b':'))) + package = line.split(b'=')[0] + if package == 'empty': + continue + package = cast(Tuple[bytes, bytes, bytes], tuple(package.split(b':'))) result.setdefault(package[:-1], set()).add(package[-1]) return result diff --git a/core/build.gradle b/core/build.gradle index 97d86a2db..1615a811b 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -125,11 +125,11 @@ configurations { closureCompiler devtool - nonprodCompile.extendsFrom compile + nonprodImplementation.extendsFrom implementation nonprodRuntime.extendsFrom runtime - testCompile.extendsFrom nonprodCompile - testRuntime.extendsFrom nonprodRuntime + testImplementation.extendsFrom nonprodImplementation + testRuntimeOnly.extendsFrom nonprodRuntime // Published jars that are used for server/schema compatibility tests. // See the integration project @@ -165,147 +165,147 @@ dependencies { // Custom-built objectify jar at commit ecd5165, included in Nomulus // release. - compile files( + implementation files( "${rootDir}/third_party/objectify/v4_1/objectify-4.1.3.jar") - testRuntime files(sourceSets.test.resources.srcDirs) + testRuntimeOnly files(sourceSets.test.resources.srcDirs) - compile deps['com.beust:jcommander'] - compile deps['com.github.ben-manes.caffeine:caffeine'] - compile deps['com.google.api:gax'] - compile deps['com.google.api.grpc:proto-google-cloud-datastore-v1'] - compile deps['com.google.api.grpc:proto-google-common-protos'] - compile deps['com.google.api.grpc:proto-google-cloud-secretmanager-v1'] - compile deps['com.google.api-client:google-api-client'] - compile deps['com.google.api-client:google-api-client-appengine'] - compile deps['com.google.api-client:google-api-client-servlet'] - compile deps['com.google.monitoring-client:metrics'] - compile deps['com.google.monitoring-client:stackdriver'] - compile deps['com.google.api-client:google-api-client-java6'] - compile deps['com.google.api.grpc:proto-google-cloud-tasks-v2'] - compile deps['com.google.apis:google-api-services-admin-directory'] - compile deps['com.google.apis:google-api-services-appengine'] - compile deps['com.google.apis:google-api-services-bigquery'] - compile deps['com.google.apis:google-api-services-cloudkms'] - compile deps['com.google.apis:google-api-services-dataflow'] - compile deps['com.google.apis:google-api-services-dns'] - compile deps['com.google.apis:google-api-services-drive'] - compile deps['com.google.apis:google-api-services-groupssettings'] - compile deps['com.google.apis:google-api-services-monitoring'] - compile deps['com.google.apis:google-api-services-sheets'] - compile deps['com.google.apis:google-api-services-storage'] - testCompile deps['com.google.appengine:appengine-api-stubs'] - compile deps['com.google.appengine.tools:appengine-gcs-client'] - compile deps['com.google.appengine.tools:appengine-pipeline'] - compile deps['com.google.appengine:appengine-remote-api'] - compile deps['com.google.auth:google-auth-library-credentials'] - compile deps['com.google.auth:google-auth-library-oauth2-http'] - compile deps['com.google.cloud.bigdataoss:util'] - compile deps['com.google.cloud.datastore:datastore-v1-proto-client'] - compile deps['com.google.cloud.sql:jdbc-socket-factory-core'] + implementation deps['com.beust:jcommander'] + implementation deps['com.github.ben-manes.caffeine:caffeine'] + implementation deps['com.google.api:gax'] + implementation deps['com.google.api.grpc:proto-google-cloud-datastore-v1'] + implementation deps['com.google.api.grpc:proto-google-common-protos'] + implementation deps['com.google.api.grpc:proto-google-cloud-secretmanager-v1'] + implementation deps['com.google.api-client:google-api-client'] + implementation deps['com.google.api-client:google-api-client-appengine'] + implementation deps['com.google.api-client:google-api-client-servlet'] + implementation deps['com.google.monitoring-client:metrics'] + implementation deps['com.google.monitoring-client:stackdriver'] + implementation deps['com.google.api-client:google-api-client-java6'] + implementation deps['com.google.api.grpc:proto-google-cloud-tasks-v2'] + implementation deps['com.google.apis:google-api-services-admin-directory'] + implementation deps['com.google.apis:google-api-services-appengine'] + implementation deps['com.google.apis:google-api-services-bigquery'] + implementation deps['com.google.apis:google-api-services-cloudkms'] + implementation deps['com.google.apis:google-api-services-dataflow'] + implementation deps['com.google.apis:google-api-services-dns'] + implementation deps['com.google.apis:google-api-services-drive'] + implementation deps['com.google.apis:google-api-services-groupssettings'] + implementation deps['com.google.apis:google-api-services-monitoring'] + implementation deps['com.google.apis:google-api-services-sheets'] + implementation deps['com.google.apis:google-api-services-storage'] + testImplementation deps['com.google.appengine:appengine-api-stubs'] + implementation deps['com.google.appengine.tools:appengine-gcs-client'] + implementation deps['com.google.appengine.tools:appengine-pipeline'] + implementation deps['com.google.appengine:appengine-remote-api'] + implementation deps['com.google.auth:google-auth-library-credentials'] + implementation deps['com.google.auth:google-auth-library-oauth2-http'] + implementation deps['com.google.cloud.bigdataoss:util'] + implementation deps['com.google.cloud.datastore:datastore-v1-proto-client'] + implementation deps['com.google.cloud.sql:jdbc-socket-factory-core'] runtimeOnly deps['com.google.cloud.sql:postgres-socket-factory'] - compile deps['com.google.cloud:google-cloud-secretmanager'] - compile deps['com.google.code.gson:gson'] - compile deps['com.google.auto.service:auto-service-annotations'] - compile deps['com.google.auto.value:auto-value-annotations'] - compile deps['com.google.code.findbugs:jsr305'] - compile deps['com.google.dagger:dagger'] - compile deps['com.google.errorprone:error_prone_annotations'] - compile deps['com.google.flogger:flogger'] + implementation deps['com.google.cloud:google-cloud-secretmanager'] + implementation deps['com.google.code.gson:gson'] + implementation deps['com.google.auto.service:auto-service-annotations'] + implementation deps['com.google.auto.value:auto-value-annotations'] + implementation deps['com.google.code.findbugs:jsr305'] + implementation deps['com.google.dagger:dagger'] + implementation deps['com.google.errorprone:error_prone_annotations'] + implementation deps['com.google.flogger:flogger'] runtime deps['com.google.flogger:flogger-system-backend'] - compile deps['com.google.guava:guava'] - compile deps['com.google.protobuf:protobuf-java'] + implementation deps['com.google.guava:guava'] + implementation deps['com.google.protobuf:protobuf-java'] gradleLint.ignore('unused-dependency') { - compile deps['com.google.gwt:gwt-user'] + implementation deps['com.google.gwt:gwt-user'] } - compile deps['com.google.cloud:google-cloud-core'] - compile deps['com.google.cloud:google-cloud-storage'] - compile deps['com.google.cloud:google-cloud-tasks'] - compile deps['com.google.http-client:google-http-client'] - compile deps['com.google.http-client:google-http-client-appengine'] - compile deps['com.google.http-client:google-http-client-jackson2'] - compile deps['com.google.oauth-client:google-oauth-client'] - compile deps['com.google.oauth-client:google-oauth-client-java6'] - compile deps['com.google.oauth-client:google-oauth-client-jetty'] - compile deps['com.google.oauth-client:google-oauth-client-appengine'] - compile deps['com.google.oauth-client:google-oauth-client-servlet'] - compile deps['com.google.protobuf:protobuf-java'] - compile deps['com.google.re2j:re2j'] - compile deps['com.google.template:soy'] - compile deps['com.googlecode.json-simple:json-simple'] - compile deps['com.jcraft:jsch'] - testCompile deps['com.thoughtworks.qdox:qdox'] - compile deps['com.zaxxer:HikariCP'] - compile deps['dnsjava:dnsjava'] + implementation deps['com.google.cloud:google-cloud-core'] + implementation deps['com.google.cloud:google-cloud-storage'] + implementation deps['com.google.cloud:google-cloud-tasks'] + implementation deps['com.google.http-client:google-http-client'] + implementation deps['com.google.http-client:google-http-client-appengine'] + implementation deps['com.google.http-client:google-http-client-jackson2'] + implementation deps['com.google.oauth-client:google-oauth-client'] + implementation deps['com.google.oauth-client:google-oauth-client-java6'] + implementation deps['com.google.oauth-client:google-oauth-client-jetty'] + implementation deps['com.google.oauth-client:google-oauth-client-appengine'] + implementation deps['com.google.oauth-client:google-oauth-client-servlet'] + implementation deps['com.google.protobuf:protobuf-java'] + implementation deps['com.google.re2j:re2j'] + implementation deps['com.google.template:soy'] + implementation deps['com.googlecode.json-simple:json-simple'] + implementation deps['com.jcraft:jsch'] + testImplementation deps['com.thoughtworks.qdox:qdox'] + implementation deps['com.zaxxer:HikariCP'] + implementation deps['dnsjava:dnsjava'] runtime deps['guru.nidi:graphviz-java-all-j2v8'] - testCompile deps['io.github.classgraph:classgraph'] - testRuntime deps['io.github.java-diff-utils:java-diff-utils'] - testCompile deps['javax.annotation:javax.annotation-api'] - testCompile deps['javax.annotation:jsr250-api'] - compile deps['javax.mail:mail'] - compile deps['javax.inject:javax.inject'] - compile deps['javax.persistence:javax.persistence-api'] - compile deps['javax.servlet:servlet-api'] - compile deps['javax.xml.bind:jaxb-api'] - compile deps['jline:jline'] - compile deps['joda-time:joda-time'] - compile deps['org.apache.avro:avro'] - testCompile deps['org.apache.beam:beam-runners-core-construction-java'] - testCompile deps['org.apache.beam:beam-runners-direct-java'] - compile deps['org.apache.beam:beam-runners-google-cloud-dataflow-java'] - compile deps['org.apache.beam:beam-sdks-java-core'] - compile deps['org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core'] - compile deps['org.apache.beam:beam-sdks-java-io-google-cloud-platform'] - compile deps['org.apache.commons:commons-csv'] - compile deps['org.apache.commons:commons-lang3'] - testCompile deps['org.apache.commons:commons-text'] - testCompile deps['org.apache.ftpserver:ftplet-api'] - testCompile deps['org.apache.ftpserver:ftpserver-core'] - compile deps['org.apache.httpcomponents:httpclient'] - compile deps['org.apache.httpcomponents:httpcore'] - testCompile deps['org.apache.sshd:sshd-core'] - testCompile deps['org.apache.sshd:sshd-scp'] - testCompile deps['org.apache.sshd:sshd-sftp'] - testCompile deps['org.apache.tomcat:tomcat-annotations-api'] - compile deps['org.bouncycastle:bcpg-jdk15on'] - testCompile deps['org.bouncycastle:bcpkix-jdk15on'] - compile deps['org.bouncycastle:bcprov-jdk15on'] - testCompile deps['com.fasterxml.jackson.core:jackson-databind'] + testImplementation deps['io.github.classgraph:classgraph'] + testRuntimeOnly deps['io.github.java-diff-utils:java-diff-utils'] + testImplementation deps['javax.annotation:javax.annotation-api'] + testImplementation deps['javax.annotation:jsr250-api'] + implementation deps['javax.mail:mail'] + implementation deps['javax.inject:javax.inject'] + implementation deps['javax.persistence:javax.persistence-api'] + implementation deps['javax.servlet:servlet-api'] + implementation deps['javax.xml.bind:jaxb-api'] + implementation deps['jline:jline'] + implementation deps['joda-time:joda-time'] + implementation deps['org.apache.avro:avro'] + testImplementation deps['org.apache.beam:beam-runners-core-construction-java'] + testImplementation deps['org.apache.beam:beam-runners-direct-java'] + implementation deps['org.apache.beam:beam-runners-google-cloud-dataflow-java'] + implementation deps['org.apache.beam:beam-sdks-java-core'] + implementation deps['org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core'] + implementation deps['org.apache.beam:beam-sdks-java-io-google-cloud-platform'] + implementation deps['org.apache.commons:commons-csv'] + implementation deps['org.apache.commons:commons-lang3'] + testImplementation deps['org.apache.commons:commons-text'] + testImplementation deps['org.apache.ftpserver:ftplet-api'] + testImplementation deps['org.apache.ftpserver:ftpserver-core'] + implementation deps['org.apache.httpcomponents:httpclient'] + implementation deps['org.apache.httpcomponents:httpcore'] + testImplementation deps['org.apache.sshd:sshd-core'] + testImplementation deps['org.apache.sshd:sshd-scp'] + testImplementation deps['org.apache.sshd:sshd-sftp'] + testImplementation deps['org.apache.tomcat:tomcat-annotations-api'] + implementation deps['org.bouncycastle:bcpg-jdk15on'] + testImplementation deps['org.bouncycastle:bcpkix-jdk15on'] + implementation deps['org.bouncycastle:bcprov-jdk15on'] + testImplementation deps['com.fasterxml.jackson.core:jackson-databind'] runtime deps['org.glassfish.jaxb:jaxb-runtime'] - compile deps['org.hibernate:hibernate-core'] - compile deps['org.hibernate:hibernate-hikaricp'] - compile deps['org.joda:joda-money'] - compile deps['org.json:json'] - compile deps['org.jsoup:jsoup'] - testCompile deps['org.mortbay.jetty:jetty'] - compile deps['org.postgresql:postgresql'] - testCompile deps['org.seleniumhq.selenium:selenium-api'] - testCompile deps['org.seleniumhq.selenium:selenium-chrome-driver'] - testCompile deps['org.seleniumhq.selenium:selenium-java'] - testCompile deps['org.seleniumhq.selenium:selenium-remote-driver'] + implementation deps['org.hibernate:hibernate-core'] + implementation deps['org.hibernate:hibernate-hikaricp'] + implementation deps['org.joda:joda-money'] + implementation deps['org.json:json'] + implementation deps['org.jsoup:jsoup'] + testImplementation deps['org.mortbay.jetty:jetty'] + implementation deps['org.postgresql:postgresql'] + testImplementation deps['org.seleniumhq.selenium:selenium-api'] + testImplementation deps['org.seleniumhq.selenium:selenium-chrome-driver'] + testImplementation deps['org.seleniumhq.selenium:selenium-java'] + testImplementation deps['org.seleniumhq.selenium:selenium-remote-driver'] runtimeOnly deps['org.slf4j:slf4j-jdk14'] - testCompile deps['org.testcontainers:jdbc'] - testCompile deps['org.testcontainers:junit-jupiter'] - compile deps['org.testcontainers:postgresql'] - testCompile deps['org.testcontainers:selenium'] - testCompile deps['org.testcontainers:testcontainers'] - compile deps['us.fatehi:schemacrawler'] - compile deps['us.fatehi:schemacrawler-api'] - compile deps['us.fatehi:schemacrawler-diagram'] - compile deps['us.fatehi:schemacrawler-tools'] - compile deps['xerces:xmlParserAPIs'] - compile deps['xpp3:xpp3'] + testImplementation deps['org.testcontainers:jdbc'] + testImplementation deps['org.testcontainers:junit-jupiter'] + implementation deps['org.testcontainers:postgresql'] + testImplementation deps['org.testcontainers:selenium'] + testImplementation deps['org.testcontainers:testcontainers'] + implementation deps['us.fatehi:schemacrawler'] + implementation deps['us.fatehi:schemacrawler-api'] + implementation deps['us.fatehi:schemacrawler-diagram'] + implementation deps['us.fatehi:schemacrawler-tools'] + implementation deps['xerces:xmlParserAPIs'] + implementation deps['xpp3:xpp3'] // This dependency must come after javax.mail:mail as it would otherwise // shadow classes in package javax.mail with its own implementation. - compile deps['com.google.appengine:appengine-api-1.0-sdk'] + implementation deps['com.google.appengine:appengine-api-1.0-sdk'] // Known issue: nebula-lint misses inherited dependency. - compile project(':common') - testCompile project(path: ':common', configuration: 'testing') - compile project(':util') - // Import NomulusPostreSql from ':db' for compile but exclude dependencies. - compile project(path: ':db', configuration: 'compileApi') - testRuntime project(':db') + implementation project(':common') + testImplementation project(path: ':common', configuration: 'testing') + implementation project(':util') + // Import NomulusPostreSql from ':db' for implementation but exclude dependencies. + implementation project(path: ':db', configuration: 'implementationApi') + testRuntimeOnly project(':db') annotationProcessor deps['com.google.auto.service:auto-service'] annotationProcessor deps['com.google.auto.value:auto-value'] @@ -315,33 +315,33 @@ dependencies { annotationProcessor project(':processor') testAnnotationProcessor project(':processor') - testCompile deps['com.google.cloud:google-cloud-nio'] - testCompile deps['com.google.appengine:appengine-testing'] - testCompile deps['com.google.guava:guava-testlib'] - testCompile deps['com.google.monitoring-client:contrib'] - testCompile deps['com.google.protobuf:protobuf-java-util'] - testCompile deps['com.google.truth:truth'] - testCompile deps['com.google.truth.extensions:truth-java8-extension'] - testCompile deps['org.checkerframework:checker-qual'] - testCompile deps['org.hamcrest:hamcrest'] - testCompile deps['org.hamcrest:hamcrest-core'] - testCompile deps['org.hamcrest:hamcrest-library'] - 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-migrationsupport'] - testCompile deps['org.junit.jupiter:junit-jupiter-params'] - testCompile deps['org.junit-pioneer:junit-pioneer'] - 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.mockito:mockito-junit-jupiter'] + testImplementation deps['com.google.cloud:google-cloud-nio'] + testImplementation deps['com.google.appengine:appengine-testing'] + testImplementation deps['com.google.guava:guava-testlib'] + testImplementation deps['com.google.monitoring-client:contrib'] + testImplementation deps['com.google.protobuf:protobuf-java-util'] + testImplementation deps['com.google.truth:truth'] + testImplementation deps['com.google.truth.extensions:truth-java8-extension'] + testImplementation deps['org.checkerframework:checker-qual'] + testImplementation deps['org.hamcrest:hamcrest'] + testImplementation deps['org.hamcrest:hamcrest-core'] + testImplementation deps['org.hamcrest:hamcrest-library'] + 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-migrationsupport'] + testImplementation deps['org.junit.jupiter:junit-jupiter-params'] + testImplementation deps['org.junit-pioneer:junit-pioneer'] + 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.mockito:mockito-junit-jupiter'] runtime deps['org.postgresql:postgresql'] // Indirect dependency found by undeclared-dependency check. Such - // dependencies should go after all other compile and testCompile + // dependencies should go after all other implementation and testImplementation // dependencies to avoid overriding them accidentally. - compile deps['com.google.oauth-client:google-oauth-client-java6'] + implementation deps['com.google.oauth-client:google-oauth-client-java6'] // Dependencies needed for jaxb compilation. // Use jaxb 2.2.11 because 2.3 is known to break the Ant task we use. @@ -362,10 +362,10 @@ dependencies { css deps['args4j:args4j'] // Tool dependencies. used for doc generation. - compile files("${System.properties['java.home']}/../lib/tools.jar") + implementation files("${System.properties['java.home']}/../lib/tools.jar") // Flyway classes needed to generate the golden file. - compile deps['org.flywaydb:flyway-core'] + implementation deps['org.flywaydb:flyway-core'] closureCompiler deps['com.google.javascript:closure-compiler'] } @@ -604,6 +604,7 @@ task compileProdJS(type: JavaExec) { closureArgs << "--js=${soySourceDir}/**.js" args closureArgs } +compileProdJS.dependsOn soyToJava compileJava.dependsOn jaxbToJava compileJava.dependsOn soyToJava @@ -632,7 +633,7 @@ task testJar(type: Jar) { } artifacts { - testRuntime testJar + testRuntimeOnly testJar } task findGoldenImages(type: JavaExec) { @@ -930,6 +931,7 @@ class FilteringTest extends Test { * *

Must be defined before "test", if at all. */ + @Input boolean excludeTestCases = true void setTests(List tests) { diff --git a/common/gradle/dependency-locks/archives.lockfile b/core/buildscript-gradle.lockfile similarity index 91% rename from common/gradle/dependency-locks/archives.lockfile rename to core/buildscript-gradle.lockfile index 656c5dbcc..0d156738b 100644 --- a/common/gradle/dependency-locks/archives.lockfile +++ b/core/buildscript-gradle.lockfile @@ -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 diff --git a/core/gradle.lockfile b/core/gradle.lockfile new file mode 100644 index 000000000..4d306e506 --- /dev/null +++ b/core/gradle.lockfile @@ -0,0 +1,486 @@ +# 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,compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +aopalliance:aopalliance:1.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testCompileClasspath,testRuntimeClasspath +args4j:args4j:2.0.23=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testCompileClasspath,testRuntimeClasspath +args4j:args4j:2.0.26=css +cglib:cglib-nodep:2.2=css +com.101tec:zkclient:0.10=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.beust:jcommander:1.60=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.13.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-core:2.13.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.13.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson:jackson-bom:2.13.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml:classmate:1.5.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.ben-manes.caffeine:caffeine:2.7.0=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor +com.github.ben-manes.caffeine:caffeine:2.9.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-api:3.2.13=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-transport-zerodep:3.2.13=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-transport:3.2.13=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jffi:1.3.9=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-a64asm:1.0.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-constants:0.10.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-enxio:0.32.13=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-ffi:2.2.11=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-posix:3.1.15=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-unixsocket:0.38.17=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-x86asm:1.0.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.kevinstern:software-and-algorithms:1.0=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor +com.google.android:annotations:4.1.1.4=default,deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-appengine:1.35.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-jackson2:1.32.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-java6:1.35.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-servlet:1.35.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client:1.35.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-common-protos:2.8.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2:2.3.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.93.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.93.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-common-protos:2.9.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-iam-v1:1.4.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:api-common:2.2.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax-grpc:2.18.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax-httpjson:0.103.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax:2.18.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-admin-directory:directory_v1-rev118-1.25.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-cloudkms:v1-rev20220701-1.32.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-drive:v2-rev393-1.25.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-monitoring:v3-rev20220715-1.32.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-sqladmin:v1beta4-rev20220623-1.32.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-storage:v1-rev20220705-1.32.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine.tools:appengine-gcs-client:0.8.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine.tools:appengine-pipeline:0.2.13=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine:appengine-api-1.0-sdk:2.0.5=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine:appengine-api-stubs:2.0.5=testCompileClasspath,testRuntimeClasspath +com.google.appengine:appengine-remote-api:2.0.5=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine:appengine-testing:1.9.86=default,deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-credentials:1.8.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-oauth2-http:1.8.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.service:auto-service-annotations:1.0.1=annotationProcessor,compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.service:auto-service:1.0.1=annotationProcessor +com.google.auto.value:auto-value-annotations:1.9=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.value:auto-value:1.9=annotationProcessor,default,deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testAnnotationProcessor,testRuntimeClasspath +com.google.auto:auto-common:0.10=errorprone,nonprodAnnotationProcessor,testAnnotationProcessor +com.google.auto:auto-common:1.2=annotationProcessor +com.google.closure-stylesheets:closure-stylesheets:1.5.0=css +com.google.cloud.bigdataoss:gcsio:2.2.6=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.bigdataoss:util:2.2.6=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.bigtable:bigtable-client-core:1.26.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.bigtable:bigtable-metrics-api:1.26.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.datastore:datastore-v1-proto-client:2.2.10=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.sql:jdbc-socket-factory-core:1.6.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.sql:postgres-socket-factory:1.6.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-bigquerystorage:2.12.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-bigtable:2.6.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core-grpc:2.6.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core-http:2.8.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core:2.8.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-firestore:3.1.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-monitoring:1.82.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-nio:0.124.10=testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-pubsub:1.116.4=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-pubsublite:1.5.4=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-secretmanager:2.3.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-spanner:6.23.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-storage:2.10.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-tasks:2.3.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:grpc-gcp:1.1.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.code.findbugs:jFormatString:3.0.0=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor +com.google.code.findbugs:jsr305:3.0.1=css +com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClasspath,default,deploy_jar,errorprone,nonprodAnnotationProcessor,nonprodCompileClasspath,nonprodRuntime,nonprodRuntimeClasspath,runtime,runtimeClasspath,soy,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.code.gson:gson:2.7=css,soy +com.google.code.gson:gson:2.9.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.common.html.types:types:1.0.6=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,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,nonprodCompileClasspath,nonprodRuntimeClasspath,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,nonprodAnnotationProcessor,testAnnotationProcessor +com.google.errorprone:error_prone_annotations:2.14.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.3.4=checkstyle,errorprone,nonprodAnnotationProcessor,soy +com.google.errorprone:error_prone_annotations:2.7.1=annotationProcessor,testAnnotationProcessor +com.google.errorprone:error_prone_check_api:2.3.4=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor +com.google.errorprone:error_prone_core:2.3.4=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor +com.google.errorprone:error_prone_type_annotations:2.3.4=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor +com.google.errorprone:javac-shaded:9-dev-r4023-3=annotationProcessor,testAnnotationProcessor +com.google.escapevelocity:escapevelocity:0.9.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testCompileClasspath,testRuntimeClasspath +com.google.flatbuffers:flatbuffers-java:1.12.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flogger:flogger-system-backend:0.7.4=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntime,nonprodRuntimeClasspath,runtime,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flogger:flogger:0.7.4=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntime,nonprodRuntimeClasspath,runtime,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flogger:google-extensions:0.7.4=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,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,nonprodAnnotationProcessor,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.guava:guava-testlib:31.1-jre=testCompileClasspath,testRuntimeClasspath +com.google.guava:guava:20.0=css +com.google.guava:guava:27.0.1-jre=errorprone,nonprodAnnotationProcessor +com.google.guava:guava:29.0-jre=checkstyle +com.google.guava:guava:30.1-jre=soy +com.google.guava:guava:31.0.1-jre=annotationProcessor,testAnnotationProcessor +com.google.guava:guava:31.1-jre=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=annotationProcessor,checkstyle,compileClasspath,default,deploy_jar,errorprone,nonprodAnnotationProcessor,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.gwt:gwt-user:2.10.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-apache-v2:1.42.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-appengine:1.42.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-gson:1.42.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-jackson2:1.42.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-protobuf:1.41.7=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client:1.42.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.inject.extensions:guice-multibindings:4.1.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testCompileClasspath,testRuntimeClasspath +com.google.inject:guice:4.1.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.inject:guice:5.1.0=soy +com.google.j2objc:j2objc-annotations:1.1=errorprone,nonprodAnnotationProcessor +com.google.j2objc:j2objc-annotations:1.3=annotationProcessor,checkstyle,compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.javascript:closure-compiler-externs:v20160713=css +com.google.javascript:closure-compiler-unshaded:v20160713=css +com.google.javascript:closure-compiler:v20210505=closureCompiler +com.google.jsinterop:jsinterop-annotations:1.0.1=soy +com.google.jsinterop:jsinterop-annotations:2.0.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.monitoring-client:contrib:1.0.7=testCompileClasspath,testRuntimeClasspath +com.google.monitoring-client:metrics:1.0.7=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.monitoring-client:stackdriver:1.0.7=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-appengine:1.34.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-java6:1.34.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-jetty:1.34.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-servlet:1.34.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client:1.34.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java-util:3.21.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:2.5.0=css +com.google.protobuf:protobuf-java:3.21.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:3.4.0=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor +com.google.protobuf:protobuf-java:4.0.0-rc-2=soy +com.google.re2j:re2j:1.7=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.template:soy:2021-02-01=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testCompileClasspath,testRuntimeClasspath +com.google.truth.extensions:truth-java8-extension:1.1.3=testCompileClasspath,testRuntimeClasspath +com.google.truth:truth:1.1.3=default,deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.googlecode.java-diff-utils:diffutils:1.3.0=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor +com.googlecode.json-simple:json-simple:1.1.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.ibm.icu:icu4j:57.1=compileClasspath,nonprodCompileClasspath,soy,testCompileClasspath +com.ibm.icu:icu4j:71.1=default,deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.jcraft:jsch:0.1.55=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.lmax:disruptor:3.4.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.puppycrawl.tools:checkstyle:8.37=checkstyle +com.squareup.okhttp3:okhttp:3.11.0=testCompileClasspath,testRuntimeClasspath +com.squareup.okio:okio:1.14.0=testCompileClasspath,testRuntimeClasspath +com.squareup:javapoet:1.13.0=annotationProcessor,testAnnotationProcessor +com.sun.activation:jakarta.activation:1.2.2=jaxb +com.sun.activation:javax.activation:1.2.0=jaxb +com.sun.istack:istack-commons-runtime:3.0.7=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.sun.istack:istack-commons-runtime:4.1.1=nonprodRuntime,runtime +com.sun.xml.bind:jaxb-impl:2.3.3=jaxb +com.sun.xml.bind:jaxb-osgi:4.0.0=jaxb +com.sun.xml.bind:jaxb-xjc:2.3.3=jaxb +com.sun.xml.fastinfoset:FastInfoset:1.2.15=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.thoughtworks.paranamer:paranamer:2.7=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.thoughtworks.qdox:qdox:1.12.1=testCompileClasspath,testRuntimeClasspath +com.zaxxer:HikariCP:3.4.5=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +commons-beanutils:commons-beanutils:1.9.4=checkstyle +commons-codec:commons-codec:1.15=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +commons-collections:commons-collections:3.2.2=checkstyle +commons-logging:commons-logging:1.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +dnsjava:dnsjava:3.5.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0=nonprodRuntime,runtime,testRuntimeClasspath +guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0=nonprodRuntime,runtime,testRuntimeClasspath +guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0=nonprodRuntime,runtime,testRuntimeClasspath +guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0=nonprodRuntime,runtime,testRuntimeClasspath +guru.nidi.com.kitfox:svgSalamander:1.1.3=nonprodRuntime,runtime,testRuntimeClasspath +guru.nidi:graphviz-java-all-j2v8:0.18.1=nonprodRuntime,runtime,testRuntimeClasspath +guru.nidi:graphviz-java:0.18.1=nonprodRuntime,runtime,testRuntimeClasspath +info.picocli:picocli:4.5.2=checkstyle +io.confluent:common-config:5.3.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:common-utils:5.3.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:kafka-avro-serializer:5.3.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:kafka-schema-registry-client:5.3.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.dropwizard.metrics:metrics-core:3.1.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.github.classgraph:classgraph:4.8.104=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.github.java-diff-utils:java-diff-utils:4.12=default,deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-alts:1.45.1=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.grpc:grpc-alts:1.47.0=default,deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-api:1.47.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-auth:1.45.1=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.grpc:grpc-auth:1.47.0=default,deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-census:1.45.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-context:1.47.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-core:1.45.1=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.grpc:grpc-core:1.47.0=default,deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-googleapis:1.47.0=default,deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-grpclb:1.45.1=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.grpc:grpc-grpclb:1.47.0=default,deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-netty-shaded:1.45.1=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.grpc:grpc-netty-shaded:1.47.0=default,deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-netty:1.45.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf-lite:1.47.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf:1.47.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-services:1.45.1=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.grpc:grpc-services:1.47.0=default,deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-stub:1.47.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-xds:1.45.1=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.grpc:grpc-xds:1.47.0=default,deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.netty:netty-buffer:4.1.72.Final=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-http2:4.1.72.Final=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-http:4.1.72.Final=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-socks:4.1.72.Final=default,deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.netty:netty-codec:4.1.72.Final=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-common:4.1.72.Final=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-handler-proxy:4.1.72.Final=default,deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.netty:netty-handler:4.1.72.Final=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-resolver:4.1.72.Final=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.46.Final=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-tcnative-classes:2.0.46.Final=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-transport:4.1.72.Final=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-api:0.31.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-exemplar-util:0.31.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-grpc-metrics:0.31.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-grpc-util:0.31.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-http-util:0.31.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-resource-util:0.31.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-exporter-metrics-util:0.31.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-impl-core:0.31.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-impl:0.31.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-proto:0.2.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.perfmark:perfmark-api:0.25.0=default,deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +jakarta.activation:jakarta.activation-api:2.1.0=jaxb,nonprodRuntime,runtime +jakarta.xml.bind:jakarta.xml.bind-api:4.0.0=jaxb,nonprodRuntime,runtime +javacc:javacc:4.1=css +javax.activation:activation:1.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.activation:javax.activation-api:1.2.0=compileClasspath,default,deploy_jar,jaxb,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.annotation:javax.annotation-api:1.3.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.annotation:jsr250-api:1.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testCompileClasspath,testRuntimeClasspath +javax.inject:javax.inject:1=annotationProcessor,compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +javax.jdo:jdo2-api:2.3-20090302111651=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.mail:mail:1.5.0-b01=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.persistence:javax.persistence-api:2.2=annotationProcessor,compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +javax.servlet:servlet-api:2.5=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.validation:validation-api:1.0.0.GA=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.xml.bind:jaxb-api:2.3.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.xml.bind:jaxb-api:2.4.0-b180830.0359=jaxb +jline:jline:1.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +joda-time:joda-time:2.10.10=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +junit:junit:4.13.2=default,nonprodCompileClasspath,nonprodRuntimeClasspath,testCompileClasspath,testRuntimeClasspath +net.arnx:nashorn-promise:0.1.1=nonprodRuntime,runtime,testRuntimeClasspath +net.bytebuddy:byte-buddy-agent:1.12.10=testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy:1.12.10=testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy:1.12.9=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath +net.java.dev.javacc:javacc:4.1=css +net.java.dev.jna:jna:5.8.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,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.arrow:arrow-format:5.0.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.arrow:arrow-memory-core:5.0.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.arrow:arrow-vector:5.0.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.avro:avro:1.8.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-model-fn-execution:2.40.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-model-job-management:2.40.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-model-pipeline:2.40.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-core-construction-java:2.40.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-core-java:2.40.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-direct-java:2.40.0=testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-java-fn-execution:2.40.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-core:2.40.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-expansion-service:2.40.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-fn-execution:2.40.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-io-kafka:2.40.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-grpc-1_43_2:0.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-guava-26_0-jre:0.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-compress:1.21=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-csv:1.9.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-exec:1.3=nonprodRuntime,runtime,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-lang3:3.11=testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-lang3:3.12.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath +org.apache.commons:commons-text:1.9=testCompileClasspath,testRuntimeClasspath +org.apache.ftpserver:ftplet-api:1.2.0=testCompileClasspath,testRuntimeClasspath +org.apache.ftpserver:ftpserver-core:1.2.0=testCompileClasspath,testRuntimeClasspath +org.apache.httpcomponents:httpclient:4.5.13=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.httpcomponents:httpcore:4.4.15=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.mina:mina-core:2.1.6=testCompileClasspath,testRuntimeClasspath +org.apache.sshd:sshd-core:2.0.0=testCompileClasspath,testRuntimeClasspath +org.apache.sshd:sshd-scp:2.0.0=testCompileClasspath,testRuntimeClasspath +org.apache.sshd:sshd-sftp:2.0.0=testCompileClasspath,testRuntimeClasspath +org.apache.tomcat:tomcat-annotations-api:10.1.0-M17=testCompileClasspath,testRuntimeClasspath +org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath +org.bouncycastle:bcpg-jdk15on:1.67=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcpkix-jdk15on:1.67=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcprov-jdk15on:1.67=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.checkerframework:checker-compat-qual:2.5.3=nonprodRuntime,runtime +org.checkerframework:checker-compat-qual:2.5.5=annotationProcessor,compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +org.checkerframework:checker-qual:2.11.1=checkstyle +org.checkerframework:checker-qual:3.0.0=errorprone,nonprodAnnotationProcessor +org.checkerframework:checker-qual:3.12.0=annotationProcessor,testAnnotationProcessor +org.checkerframework:checker-qual:3.22.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.checkerframework:checker-qual:3.5.0=nonprodRuntime,runtime,soy +org.checkerframework:dataflow:3.0.0=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor +org.checkerframework:javacutil:3.0.0=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor +org.codehaus.jackson:jackson-core-asl:1.9.13=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.codehaus.jackson:jackson-mapper-asl:1.9.13=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.17=errorprone,nonprodAnnotationProcessor +org.codehaus.mojo:animal-sniffer-annotations:1.21=default,deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +org.conscrypt:conscrypt-openjdk-uber:2.5.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.easymock:easymock:3.0=css +org.eclipse.angus:angus-activation:1.0.0=nonprodRuntime,runtime +org.flywaydb:flyway-core:9.0.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.glassfish.jaxb:jaxb-core:4.0.0=nonprodRuntime,runtime +org.glassfish.jaxb:jaxb-runtime:2.3.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.glassfish.jaxb:jaxb-runtime:4.0.0=nonprodRuntime,runtime +org.glassfish.jaxb:txw2:2.3.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.glassfish.jaxb:txw2:4.0.0=nonprodRuntime,runtime +org.gwtproject:gwt-user:2.10.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hamcrest:hamcrest-core:1.1=css +org.hamcrest:hamcrest-core:1.3=default,nonprodCompileClasspath,nonprodRuntimeClasspath +org.hamcrest:hamcrest-core:2.2=testCompileClasspath,testRuntimeClasspath +org.hamcrest:hamcrest-library:2.2=testCompileClasspath,testRuntimeClasspath +org.hamcrest:hamcrest:2.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath +org.hamcrest:hamcrest:2.2=testCompileClasspath,testRuntimeClasspath +org.hibernate.common:hibernate-commons-annotations:5.1.2.Final=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hibernate:hibernate-core:5.6.10.Final=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hibernate:hibernate-hikaricp:5.6.10.Final=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,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.jboss.logging:jboss-logging:3.4.3.Final=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jboss:jandex:2.4.2.Final=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +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=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.joda:joda-money:1.0.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.json:json:20160212=soy +org.json:json:20200518=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jsoup:jsoup:1.15.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.junit-pioneer:junit-pioneer:1.7.1=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-migrationsupport: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.jvnet.staxex:stax-ex:1.8=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-core:1.10.19=css +org.mockito:mockito-core:4.6.1=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-junit-jupiter:4.6.1=testCompileClasspath,testRuntimeClasspath +org.mortbay.jetty:jetty-util:6.1.26=testCompileClasspath,testRuntimeClasspath +org.mortbay.jetty:jetty:6.1.26=testCompileClasspath,testRuntimeClasspath +org.objenesis:objenesis:2.1=css +org.objenesis:objenesis:3.2=testRuntimeClasspath +org.opentest4j:opentest4j:1.2.0=testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-analysis:7.0=soy +org.ow2.asm:asm-analysis:8.0.1=jacocoAnt +org.ow2.asm:asm-analysis:9.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-commons:7.0=soy +org.ow2.asm:asm-commons:8.0.1=jacocoAnt +org.ow2.asm:asm-commons:9.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-tree:7.0=soy +org.ow2.asm:asm-tree:8.0.1=jacocoAnt +org.ow2.asm:asm-tree:9.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-util:7.0=soy +org.ow2.asm:asm-util:9.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm:7.0=soy +org.ow2.asm:asm:8.0.1=jacocoAnt +org.ow2.asm:asm:9.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.pcollections:pcollections:2.1.2=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor +org.plumelib:plume-util:1.0.6=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor +org.plumelib:reflection-util:0.0.2=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor +org.plumelib:require-javadoc:0.1.0=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor +org.postgresql:postgresql:42.4.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntime,nonprodRuntimeClasspath,runtime,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.reflections:reflections:0.9.12=checkstyle +org.rnorth.duct-tape:duct-tape:1.0.8=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-api:3.141.59=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-chrome-driver:3.141.59=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-edge-driver:3.141.59=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-firefox-driver:3.141.59=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-ie-driver:3.141.59=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-java:3.141.59=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-opera-driver:3.141.59=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-remote-driver:3.141.59=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-safari-driver:3.141.59=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-support:3.141.59=testCompileClasspath,testRuntimeClasspath +org.slf4j:jcl-over-slf4j:1.7.30=nonprodRuntime,runtime,testRuntimeClasspath +org.slf4j:jul-to-slf4j:1.7.30=nonprodRuntime,runtime,testRuntimeClasspath +org.slf4j:slf4j-api:1.7.30=nonprodRuntime,runtime +org.slf4j:slf4j-api:1.7.36=compileClasspath,nonprodCompileClasspath,nonprodRuntimeClasspath,testCompileClasspath +org.slf4j:slf4j-api:2.0.0-alpha7=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.slf4j:slf4j-jdk14:2.0.0-alpha7=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.springframework:spring-core:5.3.18=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-expression:5.3.18=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-jcl:5.3.18=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:database-commons:1.17.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:jdbc:1.17.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:junit-jupiter:1.17.3=testCompileClasspath,testRuntimeClasspath +org.testcontainers:postgresql:1.17.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:selenium:1.17.3=testCompileClasspath,testRuntimeClasspath +org.testcontainers:testcontainers:1.17.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.threeten:threetenbp:1.6.0=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.tukaani:xz:1.5=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.w3c.css:sac:1.3=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.webjars.npm:viz.js-graphviz-java:2.1.3=nonprodRuntime,runtime,testRuntimeClasspath +org.xerial.snappy:snappy-java:1.1.8.4=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.yaml:snakeyaml:1.30=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-api:16.10.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-diagram:16.10.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-tools:16.10.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-utility:16.10.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler:16.10.1=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +xerces:xmlParserAPIs:2.6.2=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +xpp3:xpp3:1.1.4c=compileClasspath,default,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +empty=archives,devtool,errorproneJavac,nomulus_test diff --git a/core/gradle/dependency-locks/annotationProcessor.lockfile b/core/gradle/dependency-locks/annotationProcessor.lockfile deleted file mode 100644 index e5fc687be..000000000 --- a/core/gradle/dependency-locks/annotationProcessor.lockfile +++ /dev/null @@ -1,47 +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.service:auto-service-annotations:1.0.1 -com.google.auto.service:auto-service:1.0.1 -com.google.auto.value:auto-value:1.9 -com.google.auto:auto-common:1.2 -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 -javax.persistence:javax.persistence-api:2.2 -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 diff --git a/core/gradle/dependency-locks/archives.lockfile b/core/gradle/dependency-locks/archives.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/core/gradle/dependency-locks/archives.lockfile +++ /dev/null @@ -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. diff --git a/core/gradle/dependency-locks/buildscript-classpath.lockfile b/core/gradle/dependency-locks/buildscript-classpath.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/core/gradle/dependency-locks/buildscript-classpath.lockfile +++ /dev/null @@ -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. diff --git a/core/gradle/dependency-locks/checkstyle.lockfile b/core/gradle/dependency-locks/checkstyle.lockfile deleted file mode 100644 index c0dab047f..000000000 --- a/core/gradle/dependency-locks/checkstyle.lockfile +++ /dev/null @@ -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 diff --git a/core/gradle/dependency-locks/closureCompiler.lockfile b/core/gradle/dependency-locks/closureCompiler.lockfile deleted file mode 100644 index 0fe333f72..000000000 --- a/core/gradle/dependency-locks/closureCompiler.lockfile +++ /dev/null @@ -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. -com.google.javascript:closure-compiler:v20210505 diff --git a/core/gradle/dependency-locks/compile.lockfile b/core/gradle/dependency-locks/compile.lockfile deleted file mode 100644 index c6816a02e..000000000 --- a/core/gradle/dependency-locks/compile.lockfile +++ /dev/null @@ -1,306 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -junit:junit:4.13.2 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest-core:1.3 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:slf4j-api:1.7.36 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/core/gradle/dependency-locks/compileClasspath.lockfile b/core/gradle/dependency-locks/compileClasspath.lockfile deleted file mode 100644 index d6cb21f35..000000000 --- a/core/gradle/dependency-locks/compileClasspath.lockfile +++ /dev/null @@ -1,298 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.45.1 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.45.1 -io.grpc:grpc-census:1.45.1 -io.grpc:grpc-context:1.47.0 -io.grpc:grpc-core:1.45.1 -io.grpc:grpc-grpclb:1.45.1 -io.grpc:grpc-netty-shaded:1.45.1 -io.grpc:grpc-netty:1.45.1 -io.grpc:grpc-protobuf-lite:1.47.0 -io.grpc:grpc-protobuf:1.47.0 -io.grpc:grpc-services:1.45.1 -io.grpc:grpc-stub:1.47.0 -io.grpc:grpc-xds:1.45.1 -io.netty:netty-buffer:4.1.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -io.opencensus:opencensus-proto:0.2.0 -javax.activation:activation:1.1 -javax.activation:javax.activation-api:1.2.0 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:slf4j-api:1.7.36 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/core/gradle/dependency-locks/compileOnly.lockfile b/core/gradle/dependency-locks/compileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/core/gradle/dependency-locks/compileOnly.lockfile +++ /dev/null @@ -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. diff --git a/core/gradle/dependency-locks/css.lockfile b/core/gradle/dependency-locks/css.lockfile deleted file mode 100644 index 845be8824..000000000 --- a/core/gradle/dependency-locks/css.lockfile +++ /dev/null @@ -1,18 +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. -args4j:args4j:2.0.26 -cglib:cglib-nodep:2.2 -com.google.closure-stylesheets:closure-stylesheets:1.5.0 -com.google.code.findbugs:jsr305:3.0.1 -com.google.code.gson:gson:2.7 -com.google.guava:guava:20.0 -com.google.javascript:closure-compiler-externs:v20160713 -com.google.javascript:closure-compiler-unshaded:v20160713 -com.google.protobuf:protobuf-java:2.5.0 -javacc:javacc:4.1 -net.java.dev.javacc:javacc:4.1 -org.easymock:easymock:3.0 -org.hamcrest:hamcrest-core:1.1 -org.mockito:mockito-core:1.10.19 -org.objenesis:objenesis:2.1 diff --git a/core/gradle/dependency-locks/default.lockfile b/core/gradle/dependency-locks/default.lockfile deleted file mode 100644 index 5b1b7de03..000000000 --- a/core/gradle/dependency-locks/default.lockfile +++ /dev/null @@ -1,320 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -junit:junit:4.13.2 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest-core:1.3 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/core/gradle/dependency-locks/deploy_jar.lockfile b/core/gradle/dependency-locks/deploy_jar.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/core/gradle/dependency-locks/deploy_jar.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/core/gradle/dependency-locks/devtool.lockfile b/core/gradle/dependency-locks/devtool.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/core/gradle/dependency-locks/devtool.lockfile +++ /dev/null @@ -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. diff --git a/core/gradle/dependency-locks/errorprone.lockfile b/core/gradle/dependency-locks/errorprone.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/core/gradle/dependency-locks/errorprone.lockfile +++ /dev/null @@ -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 diff --git a/core/gradle/dependency-locks/errorproneJavac.lockfile b/core/gradle/dependency-locks/errorproneJavac.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/core/gradle/dependency-locks/errorproneJavac.lockfile +++ /dev/null @@ -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. diff --git a/core/gradle/dependency-locks/jacocoAgent.lockfile b/core/gradle/dependency-locks/jacocoAgent.lockfile deleted file mode 100644 index 837b06fc2..000000000 --- a/core/gradle/dependency-locks/jacocoAgent.lockfile +++ /dev/null @@ -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 diff --git a/core/gradle/dependency-locks/jacocoAnt.lockfile b/core/gradle/dependency-locks/jacocoAnt.lockfile deleted file mode 100644 index a717958c0..000000000 --- a/core/gradle/dependency-locks/jacocoAnt.lockfile +++ /dev/null @@ -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 diff --git a/core/gradle/dependency-locks/jaxb.lockfile b/core/gradle/dependency-locks/jaxb.lockfile deleted file mode 100644 index d18855a7b..000000000 --- a/core/gradle/dependency-locks/jaxb.lockfile +++ /dev/null @@ -1,12 +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.sun.activation:jakarta.activation:1.2.2 -com.sun.activation:javax.activation:1.2.0 -com.sun.xml.bind:jaxb-impl:2.3.3 -com.sun.xml.bind:jaxb-osgi:4.0.0 -com.sun.xml.bind:jaxb-xjc:2.3.3 -jakarta.activation:jakarta.activation-api:2.1.0 -jakarta.xml.bind:jakarta.xml.bind-api:4.0.0 -javax.activation:javax.activation-api:1.2.0 -javax.xml.bind:jaxb-api:2.4.0-b180830.0359 diff --git a/core/gradle/dependency-locks/nomulus_test.lockfile b/core/gradle/dependency-locks/nomulus_test.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/core/gradle/dependency-locks/nomulus_test.lockfile +++ /dev/null @@ -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. diff --git a/core/gradle/dependency-locks/nonprodAnnotationProcessor.lockfile b/core/gradle/dependency-locks/nonprodAnnotationProcessor.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/core/gradle/dependency-locks/nonprodAnnotationProcessor.lockfile +++ /dev/null @@ -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 diff --git a/core/gradle/dependency-locks/nonprodCompile.lockfile b/core/gradle/dependency-locks/nonprodCompile.lockfile deleted file mode 100644 index c6816a02e..000000000 --- a/core/gradle/dependency-locks/nonprodCompile.lockfile +++ /dev/null @@ -1,306 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -junit:junit:4.13.2 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest-core:1.3 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:slf4j-api:1.7.36 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/core/gradle/dependency-locks/nonprodCompileClasspath.lockfile b/core/gradle/dependency-locks/nonprodCompileClasspath.lockfile deleted file mode 100644 index b338b2af2..000000000 --- a/core/gradle/dependency-locks/nonprodCompileClasspath.lockfile +++ /dev/null @@ -1,300 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.45.1 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.45.1 -io.grpc:grpc-census:1.45.1 -io.grpc:grpc-context:1.47.0 -io.grpc:grpc-core:1.45.1 -io.grpc:grpc-grpclb:1.45.1 -io.grpc:grpc-netty-shaded:1.45.1 -io.grpc:grpc-netty:1.45.1 -io.grpc:grpc-protobuf-lite:1.47.0 -io.grpc:grpc-protobuf:1.47.0 -io.grpc:grpc-services:1.45.1 -io.grpc:grpc-stub:1.47.0 -io.grpc:grpc-xds:1.45.1 -io.netty:netty-buffer:4.1.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -io.opencensus:opencensus-proto:0.2.0 -javax.activation:activation:1.1 -javax.activation:javax.activation-api:1.2.0 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -junit:junit:4.13.2 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest-core:1.3 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:slf4j-api:1.7.36 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/core/gradle/dependency-locks/nonprodCompileOnly.lockfile b/core/gradle/dependency-locks/nonprodCompileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/core/gradle/dependency-locks/nonprodCompileOnly.lockfile +++ /dev/null @@ -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. diff --git a/core/gradle/dependency-locks/nonprodRuntime.lockfile b/core/gradle/dependency-locks/nonprodRuntime.lockfile deleted file mode 100644 index a53a2cfa9..000000000 --- a/core/gradle/dependency-locks/nonprodRuntime.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -junit:junit:4.13.2 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest-core:1.3 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:1.7.36 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/core/gradle/dependency-locks/nonprodRuntimeClasspath.lockfile b/core/gradle/dependency-locks/nonprodRuntimeClasspath.lockfile deleted file mode 100644 index a53a2cfa9..000000000 --- a/core/gradle/dependency-locks/nonprodRuntimeClasspath.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -junit:junit:4.13.2 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest-core:1.3 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:1.7.36 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/core/gradle/dependency-locks/runtime.lockfile b/core/gradle/dependency-locks/runtime.lockfile deleted file mode 100644 index a53a2cfa9..000000000 --- a/core/gradle/dependency-locks/runtime.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -junit:junit:4.13.2 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest-core:1.3 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:1.7.36 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/core/gradle/dependency-locks/runtimeClasspath.lockfile b/core/gradle/dependency-locks/runtimeClasspath.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/core/gradle/dependency-locks/runtimeClasspath.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/core/gradle/dependency-locks/soy.lockfile b/core/gradle/dependency-locks/soy.lockfile deleted file mode 100644 index e42715656..000000000 --- a/core/gradle/dependency-locks/soy.lockfile +++ /dev/null @@ -1,29 +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. -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.7 -com.google.common.html.types:types:1.0.6 -com.google.errorprone:error_prone_annotations:2.3.4 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.guava:failureaccess:1.0.1 -com.google.guava:guava:30.1-jre -com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:5.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:1.0.1 -com.google.protobuf:protobuf-java:4.0.0-rc-2 -com.google.template:soy:2021-02-01 -com.ibm.icu:icu4j:57.1 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -org.checkerframework:checker-qual:3.5.0 -org.json:json:20160212 -org.ow2.asm:asm-analysis:7.0 -org.ow2.asm:asm-commons:7.0 -org.ow2.asm:asm-tree:7.0 -org.ow2.asm:asm-util:7.0 -org.ow2.asm:asm:7.0 diff --git a/core/gradle/dependency-locks/testAnnotationProcessor.lockfile b/core/gradle/dependency-locks/testAnnotationProcessor.lockfile deleted file mode 100644 index a70c6bbe1..000000000 --- a/core/gradle/dependency-locks/testAnnotationProcessor.lockfile +++ /dev/null @@ -1,45 +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 -javax.persistence:javax.persistence-api:2.2 -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 diff --git a/core/gradle/dependency-locks/testCompile.lockfile b/core/gradle/dependency-locks/testCompile.lockfile deleted file mode 100644 index 4831d579e..000000000 --- a/core/gradle/dependency-locks/testCompile.lockfile +++ /dev/null @@ -1,357 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-api-stubs:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-nio:0.124.7 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.0 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions:0.7.4 -com.google.guava:failureaccess:1.0.1 -com.google.guava:guava-testlib:31.1-jre -com.google.guava:guava:31.1-jre -com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava -com.google.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -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-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.google.truth.extensions:truth-java8-extension:1.1.3 -com.google.truth:truth:1.1.3 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.squareup.okhttp3:okhttp:3.11.0 -com.squareup.okio:okio:1.14.0 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.thoughtworks.qdox:qdox:1.12.1 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -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.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-direct-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.11 -org.apache.commons:commons-text:1.9 -org.apache.ftpserver:ftplet-api:1.2.0 -org.apache.ftpserver:ftpserver-core:1.2.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.apache.mina:mina-core:2.1.6 -org.apache.sshd:sshd-core:2.0.0 -org.apache.sshd:sshd-scp:2.0.0 -org.apache.sshd:sshd-sftp:2.0.0 -org.apache.tomcat:tomcat-annotations-api:10.1.0-M16 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest-core:2.2 -org.hamcrest:hamcrest-library:2.2 -org.hamcrest:hamcrest:2.2 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.junit-pioneer:junit-pioneer:1.7.1 -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-migrationsupport: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.jvnet.staxex:stax-ex:1.8 -org.mockito:mockito-core:4.6.1 -org.mockito:mockito-junit-jupiter:4.6.1 -org.mortbay.jetty:jetty-util:6.1.26 -org.mortbay.jetty:jetty:6.1.26 -org.objenesis:objenesis:3.2 -org.opentest4j:opentest4j:1.2.0 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.seleniumhq.selenium:selenium-api:3.141.59 -org.seleniumhq.selenium:selenium-chrome-driver:3.141.59 -org.seleniumhq.selenium:selenium-edge-driver:3.141.59 -org.seleniumhq.selenium:selenium-firefox-driver:3.141.59 -org.seleniumhq.selenium:selenium-ie-driver:3.141.59 -org.seleniumhq.selenium:selenium-java:3.141.59 -org.seleniumhq.selenium:selenium-opera-driver:3.141.59 -org.seleniumhq.selenium:selenium-remote-driver:3.141.59 -org.seleniumhq.selenium:selenium-safari-driver:3.141.59 -org.seleniumhq.selenium:selenium-support:3.141.59 -org.slf4j:slf4j-api:1.7.36 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:junit-jupiter:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:selenium:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/core/gradle/dependency-locks/testCompileClasspath.lockfile b/core/gradle/dependency-locks/testCompileClasspath.lockfile deleted file mode 100644 index 3cc9798fd..000000000 --- a/core/gradle/dependency-locks/testCompileClasspath.lockfile +++ /dev/null @@ -1,350 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-api-stubs:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-nio:0.124.7 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.0 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions:0.7.4 -com.google.guava:failureaccess:1.0.1 -com.google.guava:guava-testlib:31.1-jre -com.google.guava:guava:31.1-jre -com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava -com.google.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -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-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.google.truth.extensions:truth-java8-extension:1.1.3 -com.google.truth:truth:1.1.3 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.squareup.okhttp3:okhttp:3.11.0 -com.squareup.okio:okio:1.14.0 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.thoughtworks.qdox:qdox:1.12.1 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.45.1 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.45.1 -io.grpc:grpc-census:1.45.1 -io.grpc:grpc-context:1.47.0 -io.grpc:grpc-core:1.45.1 -io.grpc:grpc-grpclb:1.45.1 -io.grpc:grpc-netty-shaded:1.45.1 -io.grpc:grpc-netty:1.45.1 -io.grpc:grpc-protobuf-lite:1.47.0 -io.grpc:grpc-protobuf:1.47.0 -io.grpc:grpc-services:1.45.1 -io.grpc:grpc-stub:1.47.0 -io.grpc:grpc-xds:1.45.1 -io.netty:netty-buffer:4.1.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -io.opencensus:opencensus-proto:0.2.0 -javax.activation:activation:1.1 -javax.activation:javax.activation-api:1.2.0 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -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.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-direct-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.11 -org.apache.commons:commons-text:1.9 -org.apache.ftpserver:ftplet-api:1.2.0 -org.apache.ftpserver:ftpserver-core:1.2.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.apache.mina:mina-core:2.1.6 -org.apache.sshd:sshd-core:2.0.0 -org.apache.sshd:sshd-scp:2.0.0 -org.apache.sshd:sshd-sftp:2.0.0 -org.apache.tomcat:tomcat-annotations-api:10.1.0-M16 -org.apiguardian:apiguardian-api:1.1.2 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest-core:2.2 -org.hamcrest:hamcrest-library:2.2 -org.hamcrest:hamcrest:2.2 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.junit-pioneer:junit-pioneer:1.7.1 -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-migrationsupport: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.jvnet.staxex:stax-ex:1.8 -org.mockito:mockito-core:4.6.1 -org.mockito:mockito-junit-jupiter:4.6.1 -org.mortbay.jetty:jetty-util:6.1.26 -org.mortbay.jetty:jetty:6.1.26 -org.opentest4j:opentest4j:1.2.0 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.seleniumhq.selenium:selenium-api:3.141.59 -org.seleniumhq.selenium:selenium-chrome-driver:3.141.59 -org.seleniumhq.selenium:selenium-edge-driver:3.141.59 -org.seleniumhq.selenium:selenium-firefox-driver:3.141.59 -org.seleniumhq.selenium:selenium-ie-driver:3.141.59 -org.seleniumhq.selenium:selenium-java:3.141.59 -org.seleniumhq.selenium:selenium-opera-driver:3.141.59 -org.seleniumhq.selenium:selenium-remote-driver:3.141.59 -org.seleniumhq.selenium:selenium-safari-driver:3.141.59 -org.seleniumhq.selenium:selenium-support:3.141.59 -org.slf4j:slf4j-api:1.7.36 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:junit-jupiter:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:selenium:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/core/gradle/dependency-locks/testCompileOnly.lockfile b/core/gradle/dependency-locks/testCompileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/core/gradle/dependency-locks/testCompileOnly.lockfile +++ /dev/null @@ -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. diff --git a/core/gradle/dependency-locks/testRuntime.lockfile b/core/gradle/dependency-locks/testRuntime.lockfile deleted file mode 100644 index 2f20efc3c..000000000 --- a/core/gradle/dependency-locks/testRuntime.lockfile +++ /dev/null @@ -1,370 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-api-stubs:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-nio:0.124.7 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.0 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions:0.7.4 -com.google.guava:failureaccess:1.0.1 -com.google.guava:guava-testlib:31.1-jre -com.google.guava:guava:31.1-jre -com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava -com.google.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -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-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.google.truth.extensions:truth-java8-extension:1.1.3 -com.google.truth:truth:1.1.3 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.squareup.okhttp3:okhttp:3.11.0 -com.squareup.okio:okio:1.14.0 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.thoughtworks.qdox:qdox:1.12.1 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.github.java-diff-utils:java-diff-utils:4.11 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -junit:junit:4.13.2 -net.arnx:nashorn-promise:0.1.1 -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.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-direct-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.11 -org.apache.commons:commons-text:1.9 -org.apache.ftpserver:ftplet-api:1.2.0 -org.apache.ftpserver:ftpserver-core:1.2.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.apache.mina:mina-core:2.1.6 -org.apache.sshd:sshd-core:2.0.0 -org.apache.sshd:sshd-scp:2.0.0 -org.apache.sshd:sshd-sftp:2.0.0 -org.apache.tomcat:tomcat-annotations-api:10.1.0-M16 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest-core:2.2 -org.hamcrest:hamcrest-library:2.2 -org.hamcrest:hamcrest:2.2 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.junit-pioneer:junit-pioneer:1.7.1 -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-migrationsupport: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.jvnet.staxex:stax-ex:1.8 -org.mockito:mockito-core:4.6.1 -org.mockito:mockito-junit-jupiter:4.6.1 -org.mortbay.jetty:jetty-util:6.1.26 -org.mortbay.jetty:jetty:6.1.26 -org.objenesis:objenesis:3.2 -org.opentest4j:opentest4j:1.2.0 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.seleniumhq.selenium:selenium-api:3.141.59 -org.seleniumhq.selenium:selenium-chrome-driver:3.141.59 -org.seleniumhq.selenium:selenium-edge-driver:3.141.59 -org.seleniumhq.selenium:selenium-firefox-driver:3.141.59 -org.seleniumhq.selenium:selenium-ie-driver:3.141.59 -org.seleniumhq.selenium:selenium-java:3.141.59 -org.seleniumhq.selenium:selenium-opera-driver:3.141.59 -org.seleniumhq.selenium:selenium-remote-driver:3.141.59 -org.seleniumhq.selenium:selenium-safari-driver:3.141.59 -org.seleniumhq.selenium:selenium-support:3.141.59 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:1.7.36 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:junit-jupiter:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:selenium:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/core/gradle/dependency-locks/testRuntimeClasspath.lockfile b/core/gradle/dependency-locks/testRuntimeClasspath.lockfile deleted file mode 100644 index c789ec764..000000000 --- a/core/gradle/dependency-locks/testRuntimeClasspath.lockfile +++ /dev/null @@ -1,371 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-api-stubs:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-nio:0.124.7 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.0 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions:0.7.4 -com.google.guava:failureaccess:1.0.1 -com.google.guava:guava-testlib:31.1-jre -com.google.guava:guava:31.1-jre -com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava -com.google.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -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-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.google.truth.extensions:truth-java8-extension:1.1.3 -com.google.truth:truth:1.1.3 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.squareup.okhttp3:okhttp:3.11.0 -com.squareup.okio:okio:1.14.0 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.thoughtworks.qdox:qdox:1.12.1 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.github.java-diff-utils:java-diff-utils:4.11 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -junit:junit:4.13.2 -net.arnx:nashorn-promise:0.1.1 -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.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-direct-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.11 -org.apache.commons:commons-text:1.9 -org.apache.ftpserver:ftplet-api:1.2.0 -org.apache.ftpserver:ftpserver-core:1.2.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.apache.mina:mina-core:2.1.6 -org.apache.sshd:sshd-core:2.0.0 -org.apache.sshd:sshd-scp:2.0.0 -org.apache.sshd:sshd-sftp:2.0.0 -org.apache.tomcat:tomcat-annotations-api:10.1.0-M16 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest-core:2.2 -org.hamcrest:hamcrest-library:2.2 -org.hamcrest:hamcrest:2.2 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.junit-pioneer:junit-pioneer:1.7.1 -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-migrationsupport: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.jvnet.staxex:stax-ex:1.8 -org.mockito:mockito-core:4.6.1 -org.mockito:mockito-junit-jupiter:4.6.1 -org.mortbay.jetty:jetty-util:6.1.26 -org.mortbay.jetty:jetty:6.1.26 -org.objenesis:objenesis:3.2 -org.opentest4j:opentest4j:1.2.0 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.seleniumhq.selenium:selenium-api:3.141.59 -org.seleniumhq.selenium:selenium-chrome-driver:3.141.59 -org.seleniumhq.selenium:selenium-edge-driver:3.141.59 -org.seleniumhq.selenium:selenium-firefox-driver:3.141.59 -org.seleniumhq.selenium:selenium-ie-driver:3.141.59 -org.seleniumhq.selenium:selenium-java:3.141.59 -org.seleniumhq.selenium:selenium-opera-driver:3.141.59 -org.seleniumhq.selenium:selenium-remote-driver:3.141.59 -org.seleniumhq.selenium:selenium-safari-driver:3.141.59 -org.seleniumhq.selenium:selenium-support:3.141.59 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:junit-jupiter:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:selenium:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/db/build.gradle b/db/build.gradle index 9459ccc9f..1c53b0cf1 100644 --- a/db/build.gradle +++ b/db/build.gradle @@ -97,24 +97,24 @@ task schemaJar(type: Jar) { } } -// Expose NomulusPostgreSql class to ':core' for compile, without leaking -// unnecessary dependencies to the release artifacts through ':core'. -// Jar is put in the 'compileApi' configuration. -task compileApiJar(type: Jar) { - archiveBaseName = 'compile' +// Expose NomulusPostgreSql class to ':core' for implementation, without +// leaking unnecessary dependencies to the release artifacts through ':core'. +// Jar is put in the 'implementationApi' configuration. +task implementationApiJar(type: Jar) { + archiveBaseName = 'implementation' from(sourceSets.main.output) { include 'google/registry/persistence/NomulusPostgreSql**' } } configurations { - compileApi + implementationApi schema integration } artifacts { - compileApi compileApiJar + implementationApi implementationApiJar schema schemaJar } @@ -159,23 +159,23 @@ flyway { dependencies { def deps = rootProject.dependencyMap - compile deps['org.flywaydb:flyway-core'] + implementation deps['org.flywaydb:flyway-core'] runtimeOnly deps['com.google.cloud.sql:postgres-socket-factory'] runtimeOnly deps['org.postgresql:postgresql'] - testCompile deps['com.google.flogger:flogger'] - testRuntime deps['com.google.flogger:flogger-system-backend'] - testCompile deps['com.google.guava:guava'] - testCompile deps['com.google.truth:truth'] - testRuntime deps['io.github.java-diff-utils:java-diff-utils'] - testCompile deps['org.junit.jupiter:junit-jupiter-api'] - testCompile deps['org.junit.jupiter:junit-jupiter-engine'] - testCompile deps['org.testcontainers:postgresql'] - testCompile deps['org.testcontainers:testcontainers'] - testCompile deps['org.testcontainers:junit-jupiter'] - testCompile deps['org.testcontainers:postgresql'] - testCompile project(path: ':common', configuration: 'testing') + testImplementation deps['com.google.flogger:flogger'] + testRuntimeOnly deps['com.google.flogger:flogger-system-backend'] + testImplementation deps['com.google.guava:guava'] + testImplementation deps['com.google.truth:truth'] + testRuntimeOnly deps['io.github.java-diff-utils:java-diff-utils'] + testImplementation deps['org.junit.jupiter:junit-jupiter-api'] + testImplementation deps['org.junit.jupiter:junit-jupiter-engine'] + testImplementation deps['org.testcontainers:postgresql'] + testImplementation deps['org.testcontainers:testcontainers'] + testImplementation deps['org.testcontainers:junit-jupiter'] + testImplementation deps['org.testcontainers:postgresql'] + testImplementation project(path: ':common', configuration: 'testing') } task generateFlywayIndex { diff --git a/db/buildscript-gradle.lockfile b/db/buildscript-gradle.lockfile new file mode 100644 index 000000000..d0e625cf2 --- /dev/null +++ b/db/buildscript-gradle.lockfile @@ -0,0 +1,7 @@ +# 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. +gradle.plugin.com.boxfuse.client:gradle-plugin-publishing:6.0.1=classpath +org.flywaydb.flyway:org.flywaydb.flyway.gradle.plugin:6.0.1=classpath +org.flywaydb:flyway-core:6.0.1=classpath +empty= diff --git a/db/gradle.lockfile b/db/gradle.lockfile new file mode 100644 index 000000000..a0db12a5b --- /dev/null +++ b/db/gradle.lockfile @@ -0,0 +1,122 @@ +# 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.fasterxml.jackson.core:jackson-annotations:2.10.3=testCompileClasspath,testRuntimeClasspath +com.github.ben-manes.caffeine:caffeine:2.7.0=annotationProcessor,errorprone,testAnnotationProcessor +com.github.ben-manes.caffeine:caffeine:2.9.3=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.jnr:jffi:1.3.9=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-a64asm:1.0.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-constants:0.10.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-enxio:0.32.13=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-ffi:2.2.11=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-posix:3.1.15=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-unixsocket:0.38.17=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-x86asm:1.0.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.kevinstern:software-and-algorithms:1.0=annotationProcessor,errorprone,testAnnotationProcessor +com.google.api-client:google-api-client:1.35.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax:2.18.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-sqladmin:v1beta4-rev20220623-1.32.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-credentials:1.8.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-oauth2-http:1.8.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auto.value:auto-value-annotations:1.8.1=testCompileClasspath +com.google.auto.value:auto-value-annotations:1.9=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auto:auto-common:0.10=annotationProcessor,errorprone,testAnnotationProcessor +com.google.cloud.sql:jdbc-socket-factory-core:1.6.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud.sql:postgres-socket-factory:1.6.2=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,default,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.code.gson:gson:2.9.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotation:2.3.4=annotationProcessor,errorprone,testAnnotationProcessor +com.google.errorprone:error_prone_annotations:2.11.0=testCompileClasspath +com.google.errorprone:error_prone_annotations:2.14.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.3.4=annotationProcessor,checkstyle,errorprone,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.flogger:flogger-system-backend:0.7.4=testRuntimeClasspath +com.google.flogger:flogger:0.7.4=testCompileClasspath,testRuntimeClasspath +com.google.guava:failureaccess:1.0.1=annotationProcessor,checkstyle,default,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.guava:guava:27.0.1-jre=annotationProcessor,errorprone,testAnnotationProcessor +com.google.guava:guava:29.0-jre=checkstyle +com.google.guava:guava:31.1-jre=default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=annotationProcessor,checkstyle,default,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-apache-v2:1.42.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-gson:1.42.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client:1.42.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.j2objc:j2objc-annotations:1.1=annotationProcessor,errorprone,testAnnotationProcessor +com.google.j2objc:j2objc-annotations:1.3=checkstyle,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client:1.34.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:3.4.0=annotationProcessor,errorprone,testAnnotationProcessor +com.google.truth:truth:1.1.3=testCompileClasspath,testRuntimeClasspath +com.googlecode.java-diff-utils:diffutils:1.3.0=annotationProcessor,errorprone,testAnnotationProcessor +com.puppycrawl.tools:checkstyle:8.37=checkstyle +commons-beanutils:commons-beanutils:1.9.4=checkstyle +commons-codec:commons-codec:1.11=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +commons-collections:commons-collections:3.2.2=checkstyle +commons-logging:commons-logging:1.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +info.picocli:picocli:4.5.2=checkstyle +io.github.java-diff-utils:java-diff-utils:4.12=testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-context:1.27.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.opencensus:opencensus-api:0.31.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-http-util:0.31.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +javax.inject:javax.inject:1=testCompileClasspath,testRuntimeClasspath +joda-time:joda-time:2.10.14=testCompileClasspath,testRuntimeClasspath +junit:junit:4.13.2=testCompileClasspath,testRuntimeClasspath +net.java.dev.jna:jna:5.8.0=testCompileClasspath,testRuntimeClasspath +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=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.httpcomponents:httpcore:4.4.15=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath +org.checkerframework:checker-compat-qual:2.5.3=testCompileClasspath +org.checkerframework:checker-compat-qual:2.5.5=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.checkerframework:checker-qual:2.11.1=checkstyle +org.checkerframework:checker-qual:3.0.0=annotationProcessor,errorprone,testAnnotationProcessor +org.checkerframework:checker-qual:3.12.0=default,deploy_jar,runtimeClasspath +org.checkerframework:checker-qual:3.19.0=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=annotationProcessor,errorprone,testAnnotationProcessor +org.flywaydb:flyway-core:9.0.1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hamcrest:hamcrest-core:1.3=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: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.platform:junit-platform-commons:1.9.0-RC1=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-engine:1.9.0-RC1=testCompileClasspath,testRuntimeClasspath +org.junit:junit-bom:5.9.0-RC1=testCompileClasspath,testRuntimeClasspath +org.opentest4j:opentest4j:1.2.0=testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-analysis:8.0.1=jacocoAnt +org.ow2.asm:asm-analysis:9.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.ow2.asm:asm-commons:8.0.1=jacocoAnt +org.ow2.asm:asm-commons:9.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.ow2.asm:asm-tree:8.0.1=jacocoAnt +org.ow2.asm:asm-tree:9.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.ow2.asm:asm-util:9.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.ow2.asm:asm:8.0.1=jacocoAnt +org.ow2.asm:asm:9.1=testCompileClasspath +org.ow2.asm:asm:9.3=default,deploy_jar,runtimeClasspath,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.postgresql:postgresql:42.4.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +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:database-commons:1.17.3=testCompileClasspath,testRuntimeClasspath +org.testcontainers:jdbc:1.17.3=testCompileClasspath,testRuntimeClasspath +org.testcontainers:junit-jupiter:1.17.3=testCompileClasspath,testRuntimeClasspath +org.testcontainers:postgresql:1.17.3=testCompileClasspath,testRuntimeClasspath +org.testcontainers:testcontainers:1.17.3=testCompileClasspath,testRuntimeClasspath +empty=archives,errorproneJavac,implementationApi,schema diff --git a/db/gradle/dependency-locks/annotationProcessor.lockfile b/db/gradle/dependency-locks/annotationProcessor.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/db/gradle/dependency-locks/annotationProcessor.lockfile +++ /dev/null @@ -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 diff --git a/db/gradle/dependency-locks/archives.lockfile b/db/gradle/dependency-locks/archives.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/db/gradle/dependency-locks/archives.lockfile +++ /dev/null @@ -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. diff --git a/db/gradle/dependency-locks/buildscript-classpath.lockfile b/db/gradle/dependency-locks/buildscript-classpath.lockfile deleted file mode 100644 index 12a0e7366..000000000 --- a/db/gradle/dependency-locks/buildscript-classpath.lockfile +++ /dev/null @@ -1,6 +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. -gradle.plugin.com.boxfuse.client:gradle-plugin-publishing:6.0.1 -org.flywaydb.flyway:org.flywaydb.flyway.gradle.plugin:6.0.1 -org.flywaydb:flyway-core:6.0.1 diff --git a/db/gradle/dependency-locks/checkstyle.lockfile b/db/gradle/dependency-locks/checkstyle.lockfile deleted file mode 100644 index c0dab047f..000000000 --- a/db/gradle/dependency-locks/checkstyle.lockfile +++ /dev/null @@ -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 diff --git a/db/gradle/dependency-locks/compile.lockfile b/db/gradle/dependency-locks/compile.lockfile deleted file mode 100644 index e15ec1763..000000000 --- a/db/gradle/dependency-locks/compile.lockfile +++ /dev/null @@ -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.flywaydb:flyway-core:8.5.13 diff --git a/db/gradle/dependency-locks/compileApi.lockfile b/db/gradle/dependency-locks/compileApi.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/db/gradle/dependency-locks/compileApi.lockfile +++ /dev/null @@ -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. diff --git a/db/gradle/dependency-locks/compileClasspath.lockfile b/db/gradle/dependency-locks/compileClasspath.lockfile deleted file mode 100644 index e15ec1763..000000000 --- a/db/gradle/dependency-locks/compileClasspath.lockfile +++ /dev/null @@ -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.flywaydb:flyway-core:8.5.13 diff --git a/db/gradle/dependency-locks/compileOnly.lockfile b/db/gradle/dependency-locks/compileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/db/gradle/dependency-locks/compileOnly.lockfile +++ /dev/null @@ -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. diff --git a/db/gradle/dependency-locks/default.lockfile b/db/gradle/dependency-locks/default.lockfile deleted file mode 100644 index 4a8fb6ec7..000000000 --- a/db/gradle/dependency-locks/default.lockfile +++ /dev/null @@ -1,46 +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.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.api-client:google-api-client:1.35.0 -com.google.api:gax:2.18.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -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.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.errorprone:error_prone_annotations:2.14.0 -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.41.8 -com.google.http-client:google-http-client-gson:1.41.8 -com.google.http-client:google-http-client:1.41.8 -com.google.j2objc:j2objc-annotations:1.3 -com.google.oauth-client:google-oauth-client:1.34.0 -commons-codec:commons-codec:1.11 -commons-logging:commons-logging:1.2 -io.grpc:grpc-context:1.27.2 -io.opencensus:opencensus-api:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.checkerframework:checker-compat-qual:2.5.5 -org.checkerframework:checker-qual:3.12.0 -org.flywaydb:flyway-core:8.5.13 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 diff --git a/db/gradle/dependency-locks/deploy_jar.lockfile b/db/gradle/dependency-locks/deploy_jar.lockfile deleted file mode 100644 index 4a8fb6ec7..000000000 --- a/db/gradle/dependency-locks/deploy_jar.lockfile +++ /dev/null @@ -1,46 +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.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.api-client:google-api-client:1.35.0 -com.google.api:gax:2.18.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -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.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.errorprone:error_prone_annotations:2.14.0 -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.41.8 -com.google.http-client:google-http-client-gson:1.41.8 -com.google.http-client:google-http-client:1.41.8 -com.google.j2objc:j2objc-annotations:1.3 -com.google.oauth-client:google-oauth-client:1.34.0 -commons-codec:commons-codec:1.11 -commons-logging:commons-logging:1.2 -io.grpc:grpc-context:1.27.2 -io.opencensus:opencensus-api:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.checkerframework:checker-compat-qual:2.5.5 -org.checkerframework:checker-qual:3.12.0 -org.flywaydb:flyway-core:8.5.13 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 diff --git a/db/gradle/dependency-locks/errorprone.lockfile b/db/gradle/dependency-locks/errorprone.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/db/gradle/dependency-locks/errorprone.lockfile +++ /dev/null @@ -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 diff --git a/db/gradle/dependency-locks/errorproneJavac.lockfile b/db/gradle/dependency-locks/errorproneJavac.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/db/gradle/dependency-locks/errorproneJavac.lockfile +++ /dev/null @@ -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. diff --git a/db/gradle/dependency-locks/jacocoAgent.lockfile b/db/gradle/dependency-locks/jacocoAgent.lockfile deleted file mode 100644 index 837b06fc2..000000000 --- a/db/gradle/dependency-locks/jacocoAgent.lockfile +++ /dev/null @@ -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 diff --git a/db/gradle/dependency-locks/jacocoAnt.lockfile b/db/gradle/dependency-locks/jacocoAnt.lockfile deleted file mode 100644 index a717958c0..000000000 --- a/db/gradle/dependency-locks/jacocoAnt.lockfile +++ /dev/null @@ -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 diff --git a/db/gradle/dependency-locks/runtime.lockfile b/db/gradle/dependency-locks/runtime.lockfile deleted file mode 100644 index e15ec1763..000000000 --- a/db/gradle/dependency-locks/runtime.lockfile +++ /dev/null @@ -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.flywaydb:flyway-core:8.5.13 diff --git a/db/gradle/dependency-locks/runtimeClasspath.lockfile b/db/gradle/dependency-locks/runtimeClasspath.lockfile deleted file mode 100644 index 4a8fb6ec7..000000000 --- a/db/gradle/dependency-locks/runtimeClasspath.lockfile +++ /dev/null @@ -1,46 +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.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.api-client:google-api-client:1.35.0 -com.google.api:gax:2.18.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -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.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.errorprone:error_prone_annotations:2.14.0 -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.41.8 -com.google.http-client:google-http-client-gson:1.41.8 -com.google.http-client:google-http-client:1.41.8 -com.google.j2objc:j2objc-annotations:1.3 -com.google.oauth-client:google-oauth-client:1.34.0 -commons-codec:commons-codec:1.11 -commons-logging:commons-logging:1.2 -io.grpc:grpc-context:1.27.2 -io.opencensus:opencensus-api:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.checkerframework:checker-compat-qual:2.5.5 -org.checkerframework:checker-qual:3.12.0 -org.flywaydb:flyway-core:8.5.13 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 diff --git a/db/gradle/dependency-locks/schema.lockfile b/db/gradle/dependency-locks/schema.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/db/gradle/dependency-locks/schema.lockfile +++ /dev/null @@ -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. diff --git a/db/gradle/dependency-locks/testAnnotationProcessor.lockfile b/db/gradle/dependency-locks/testAnnotationProcessor.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/db/gradle/dependency-locks/testAnnotationProcessor.lockfile +++ /dev/null @@ -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 diff --git a/db/gradle/dependency-locks/testCompile.lockfile b/db/gradle/dependency-locks/testCompile.lockfile deleted file mode 100644 index 49344a25f..000000000 --- a/db/gradle/dependency-locks/testCompile.lockfile +++ /dev/null @@ -1,38 +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.fasterxml.jackson.core:jackson-annotations:2.10.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.auto.value:auto-value-annotations:1.8.1 -com.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -com.google.truth:truth:1.1.3 -junit:junit:4.13.2 -net.java.dev.jna:jna:5.8.0 -org.apache.commons:commons-compress:1.21 -org.checkerframework:checker-compat-qual:2.5.3 -org.checkerframework:checker-qual:3.13.0 -org.flywaydb:flyway-core:8.5.13 -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.platform:junit-platform-commons:1.9.0-RC1 -org.junit.platform:junit-platform-engine:1.9.0-RC1 -org.junit:junit-bom:5.9.0-RC1 -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:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:junit-jupiter:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 diff --git a/db/gradle/dependency-locks/testCompileClasspath.lockfile b/db/gradle/dependency-locks/testCompileClasspath.lockfile deleted file mode 100644 index f6d32f75a..000000000 --- a/db/gradle/dependency-locks/testCompileClasspath.lockfile +++ /dev/null @@ -1,39 +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.fasterxml.jackson.core:jackson-annotations:2.10.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.auto.value:auto-value-annotations:1.8.1 -com.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -com.google.truth:truth:1.1.3 -junit:junit:4.13.2 -net.java.dev.jna:jna:5.8.0 -org.apache.commons:commons-compress:1.21 -org.apiguardian:apiguardian-api:1.1.2 -org.checkerframework:checker-compat-qual:2.5.3 -org.checkerframework:checker-qual:3.13.0 -org.flywaydb:flyway-core:8.5.13 -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.platform:junit-platform-commons:1.9.0-RC1 -org.junit.platform:junit-platform-engine:1.9.0-RC1 -org.junit:junit-bom:5.9.0-RC1 -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:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:junit-jupiter:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 diff --git a/db/gradle/dependency-locks/testCompileOnly.lockfile b/db/gradle/dependency-locks/testCompileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/db/gradle/dependency-locks/testCompileOnly.lockfile +++ /dev/null @@ -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. diff --git a/db/gradle/dependency-locks/testRuntime.lockfile b/db/gradle/dependency-locks/testRuntime.lockfile deleted file mode 100644 index 9b4ce5525..000000000 --- a/db/gradle/dependency-locks/testRuntime.lockfile +++ /dev/null @@ -1,40 +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.fasterxml.jackson.core:jackson-annotations:2.10.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.auto.value:auto-value-annotations:1.8.1 -com.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.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.j2objc:j2objc-annotations:1.3 -com.google.truth:truth:1.1.3 -io.github.java-diff-utils:java-diff-utils:4.11 -junit:junit:4.13.2 -net.java.dev.jna:jna:5.8.0 -org.apache.commons:commons-compress:1.21 -org.checkerframework:checker-compat-qual:2.5.3 -org.checkerframework:checker-qual:3.13.0 -org.flywaydb:flyway-core:8.5.13 -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.platform:junit-platform-commons:1.9.0-RC1 -org.junit.platform:junit-platform-engine:1.9.0-RC1 -org.junit:junit-bom:5.9.0-RC1 -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:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:junit-jupiter:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 diff --git a/db/gradle/dependency-locks/testRuntimeClasspath.lockfile b/db/gradle/dependency-locks/testRuntimeClasspath.lockfile deleted file mode 100644 index 8dade1e72..000000000 --- a/db/gradle/dependency-locks/testRuntimeClasspath.lockfile +++ /dev/null @@ -1,72 +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.fasterxml.jackson.core:jackson-annotations:2.10.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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.api-client:google-api-client:1.35.0 -com.google.api:gax:2.18.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -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.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -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.41.8 -com.google.http-client:google-http-client-gson:1.41.8 -com.google.http-client:google-http-client:1.41.8 -com.google.j2objc:j2objc-annotations:1.3 -com.google.oauth-client:google-oauth-client:1.34.0 -com.google.truth:truth:1.1.3 -commons-codec:commons-codec:1.11 -commons-logging:commons-logging:1.2 -io.github.java-diff-utils:java-diff-utils:4.11 -io.grpc:grpc-context:1.27.2 -io.opencensus:opencensus-api:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.0 -junit:junit:4.13.2 -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.checkerframework:checker-compat-qual:2.5.5 -org.checkerframework:checker-qual:3.13.0 -org.flywaydb:flyway-core:8.5.13 -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.platform:junit-platform-commons:1.9.0-RC1 -org.junit.platform:junit-platform-engine:1.9.0-RC1 -org.junit:junit-bom:5.9.0-RC1 -org.opentest4j:opentest4j:1.2.0 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:slf4j-api:1.7.36 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:junit-jupiter:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 diff --git a/dependencies.gradle b/dependencies.gradle index f718c45b1..ea48bba98 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -102,10 +102,14 @@ ext { 'com.google.api.grpc:proto-google-cloud-datastore-v1:[0.88.9,)', 'com.google.api.grpc:proto-google-cloud-tasks-v2:[1.33.2,)', 'com.google.api.grpc:proto-google-common-protos:[2.1.0,)', - 'com.google.api-client:google-api-client-java6:[1.31.3,)', - 'com.google.api-client:google-api-client:[1.31.3,)', - 'com.google.api-client:google-api-client-appengine:[1.31.3,)', - 'com.google.api-client:google-api-client-servlet:[1.31.3,)', + + // Excluding versions 2.0 from google-api-client because they're + // runtime incompatible with version 1.25 of admin directory API. + // TODO: see if we can upgrade to a newer version of the latter. + 'com.google.api-client:google-api-client-java6:[1.31.3,2.0)', + 'com.google.api-client:google-api-client:[1.31.3,2.0)', + 'com.google.api-client:google-api-client-appengine:[1.31.3,2.0)', + 'com.google.api-client:google-api-client-servlet:[1.31.3,2.0)', 'com.google.apis:google-api-services-appengine:[v1-rev130-1.25.0,)', 'com.google.apis:google-api-services-bigquery:[v2-rev459-1.25.0,)', 'com.google.apis:google-api-services-cloudkms:[v1-rev108-1.25.0,)', @@ -122,7 +126,6 @@ ext { 'com.google.auto.service:auto-service:[1.0-rc7,)', 'com.google.auto.value:auto-value-annotations:[1.7.4,)', 'com.google.auto.value:auto-value:[1.7.4,)', - 'com.google.common.html.types:types:[1.0.6,)', // The two below are needed only for Datastore bulk delete pipeline. 'com.google.cloud.bigdataoss:util:2.2.6', 'com.google.cloud.datastore:datastore-v1-proto-client:[1.6.3,)', diff --git a/dependency_lic.gradle b/dependency_lic.gradle index af82bb7d0..306227da3 100644 --- a/dependency_lic.gradle +++ b/dependency_lic.gradle @@ -23,7 +23,7 @@ buildscript { } } dependencies { - classpath 'com.github.jk1:gradle-license-report:1.13' + classpath 'com.github.jk1:gradle-license-report:2.0' } } apply plugin: com.github.jk1.license.LicenseReportPlugin diff --git a/docs/build.gradle b/docs/build.gradle index 868d75996..53ae3f3a9 100644 --- a/docs/build.gradle +++ b/docs/build.gradle @@ -15,23 +15,23 @@ dependencies { def deps = rootProject.dependencyMap - compile deps['com.beust:jcommander'] - compile deps['com.google.appengine:appengine-api-1.0-sdk'] - compile deps['com.google.code.findbugs:jsr305'] - compile deps['com.google.flogger:flogger'] - compile deps['com.google.guava:guava'] - compile deps['com.google.re2j:re2j'] - compile project(':core') - compile project(':util') + implementation deps['com.beust:jcommander'] + implementation deps['com.google.appengine:appengine-api-1.0-sdk'] + implementation deps['com.google.code.findbugs:jsr305'] + implementation deps['com.google.flogger:flogger'] + implementation deps['com.google.guava:guava'] + implementation deps['com.google.re2j:re2j'] + implementation project(':core') + implementation project(':util') - testCompile deps['com.google.truth:truth'] - testCompile deps['com.thoughtworks.qdox:qdox'] - testCompile deps['junit:junit'] - testCompile deps['org.junit.jupiter:junit-jupiter-api'] - testCompile deps['org.junit.jupiter:junit-jupiter-engine'] - testCompile deps['org.junit.platform:junit-platform-runner'] - testCompile deps['org.junit.platform:junit-platform-suite-api'] - testCompile deps['org.testcontainers:junit-jupiter'] + testImplementation deps['com.google.truth:truth'] + testImplementation deps['com.thoughtworks.qdox:qdox'] + testImplementation deps['junit:junit'] + testImplementation deps['org.junit.jupiter:junit-jupiter-api'] + testImplementation deps['org.junit.jupiter:junit-jupiter-engine'] + testImplementation deps['org.junit.platform:junit-platform-runner'] + testImplementation deps['org.junit.platform:junit-platform-suite-api'] + testImplementation deps['org.testcontainers:junit-jupiter'] } test { diff --git a/common/gradle/dependency-locks/buildscript-classpath.lockfile b/docs/buildscript-gradle.lockfile similarity index 91% rename from common/gradle/dependency-locks/buildscript-classpath.lockfile rename to docs/buildscript-gradle.lockfile index 656c5dbcc..0d156738b 100644 --- a/common/gradle/dependency-locks/buildscript-classpath.lockfile +++ b/docs/buildscript-gradle.lockfile @@ -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 diff --git a/docs/gradle.lockfile b/docs/gradle.lockfile new file mode 100644 index 000000000..b3adbb45d --- /dev/null +++ b/docs/gradle.lockfile @@ -0,0 +1,372 @@ +# 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,default,deploy_jar,runtimeClasspath,testRuntimeClasspath +aopalliance:aopalliance:1.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +args4j:args4j:2.0.23=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.101tec:zkclient:0.10=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.beust:jcommander:1.60=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.10.3=testCompileClasspath +com.fasterxml.jackson.core:jackson-annotations:2.13.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-core:2.13.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.13.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson:jackson-bom:2.13.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.fasterxml:classmate:1.5.1=default,deploy_jar,runtimeClasspath,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,testRuntimeClasspath +com.github.docker-java:docker-java-api:3.2.13=default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-transport-zerodep:3.2.13=default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-transport:3.2.13=default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jffi:1.3.9=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-a64asm:1.0.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-constants:0.10.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-enxio:0.32.13=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-ffi:2.2.11=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-posix:3.1.15=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-unixsocket:0.38.17=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-x86asm:1.0.2=default,deploy_jar,runtimeClasspath,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-appengine:1.35.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-jackson2:1.32.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-java6:1.35.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-servlet:1.35.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api-client:google-api-client:1.35.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-common-protos:2.8.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha=default,deploy_jar,runtimeClasspath,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=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-iam-v1:1.4.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:api-common:2.2.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax-grpc:2.18.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax-httpjson:0.103.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax:2.18.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-admin-directory:directory_v1-rev118-1.25.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-cloudkms:v1-rev20220701-1.32.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-drive:v2-rev393-1.25.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-monitoring:v3-rev20220715-1.32.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-sqladmin:v1beta4-rev20220623-1.32.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-storage:v1-rev20220705-1.32.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.appengine.tools:appengine-gcs-client:0.8.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.appengine.tools:appengine-pipeline:0.2.13=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.appengine:appengine-api-1.0-sdk:1.9.86=compileClasspath,testCompileClasspath +com.google.appengine:appengine-api-1.0-sdk:2.0.5=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.appengine:appengine-remote-api:2.0.5=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.8.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-oauth2-http:1.8.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auto.service:auto-service-annotations:1.0.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auto.value:auto-value-annotations:1.8.1=testCompileClasspath +com.google.auto.value:auto-value-annotations:1.9=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auto.value:auto-value:1.9=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auto:auto-common:0.10=annotationProcessor,errorprone,testAnnotationProcessor +com.google.cloud.bigdataoss:gcsio:2.2.6=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud.bigdataoss:util:2.2.6=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud.bigtable:bigtable-client-core:1.26.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud.bigtable:bigtable-metrics-api:1.26.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud.datastore:datastore-v1-proto-client:2.2.10=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud.sql:jdbc-socket-factory-core:1.6.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud.sql:postgres-socket-factory:1.6.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-bigquerystorage:2.12.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-bigtable:2.6.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core-grpc:2.6.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core-http:2.8.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core:2.8.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-firestore:3.1.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-monitoring:1.82.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-pubsub:1.116.4=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-pubsublite:1.5.4=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-secretmanager:2.3.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-spanner:6.23.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-storage:2.10.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-tasks:2.3.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:grpc-gcp:1.1.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0=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=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.common.html.types:types:1.0.6=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.dagger:dagger:2.43=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +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=annotationProcessor,checkstyle,errorprone,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.escapevelocity:escapevelocity:0.9.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.flatbuffers:flatbuffers-java:1.12.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.flogger:flogger-system-backend:0.7.4=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.flogger:flogger:0.7.4=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flogger:google-extensions:0.7.4=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +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=annotationProcessor,errorprone,testAnnotationProcessor +com.google.guava:guava:29.0-jre=checkstyle +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.gwt:gwt-user:2.10.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-apache-v2:1.42.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-appengine:1.42.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-gson:1.42.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-jackson2:1.42.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-protobuf:1.41.7=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client:1.42.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.inject.extensions:guice-multibindings:4.1.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.inject:guice:4.1.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.j2objc:j2objc-annotations:1.1=annotationProcessor,errorprone,testAnnotationProcessor +com.google.j2objc:j2objc-annotations:1.3=checkstyle,compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.jsinterop:jsinterop-annotations:2.0.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.monitoring-client:metrics:1.0.7=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.monitoring-client:stackdriver:1.0.7=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-appengine:1.34.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-java6:1.34.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-jetty:1.34.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-servlet:1.34.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client:1.34.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java-util:3.21.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:3.21.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:3.4.0=annotationProcessor,errorprone,testAnnotationProcessor +com.google.re2j:re2j:1.7=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.template:soy:2021-02-01=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.googlecode.json-simple:json-simple:1.1.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.ibm.icu:icu4j:71.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.jcraft:jsch:0.1.55=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.lmax:disruptor:3.4.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.puppycrawl.tools:checkstyle:8.37=checkstyle +com.sun.istack:istack-commons-runtime:3.0.7=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.sun.xml.fastinfoset:FastInfoset:1.2.15=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.thoughtworks.paranamer:paranamer:2.7=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.thoughtworks.qdox:qdox:1.12.1=testCompileClasspath,testRuntimeClasspath +com.zaxxer:HikariCP:3.4.5=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +commons-beanutils:commons-beanutils:1.9.4=checkstyle +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=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +dnsjava:dnsjava:3.5.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +info.picocli:picocli:4.5.2=checkstyle +io.confluent:common-config:5.3.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.confluent:common-utils:5.3.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.confluent:kafka-avro-serializer:5.3.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.confluent:kafka-schema-registry-client:5.3.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.dropwizard.metrics:metrics-core:3.1.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.github.classgraph:classgraph:4.8.104=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.github.java-diff-utils:java-diff-utils:4.12=default,deploy_jar,runtimeClasspath,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-census:1.45.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-context:1.47.0=default,deploy_jar,runtimeClasspath,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-netty:1.45.1=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.72.Final=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.netty:netty-codec-http2:4.1.72.Final=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.netty:netty-codec-http:4.1.72.Final=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.netty:netty-codec-socks:4.1.72.Final=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.netty:netty-codec:4.1.72.Final=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.netty:netty-common:4.1.72.Final=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.netty:netty-handler-proxy:4.1.72.Final=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.netty:netty-handler:4.1.72.Final=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.netty:netty-resolver:4.1.72.Final=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.46.Final=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.netty:netty-tcnative-classes:2.0.46.Final=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.netty:netty-transport:4.1.72.Final=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.opencensus:opencensus-api:0.31.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-exemplar-util:0.31.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-grpc-metrics:0.31.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-grpc-util:0.31.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-http-util:0.31.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-resource-util:0.31.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.opencensus:opencensus-exporter-metrics-util:0.31.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.opencensus:opencensus-impl-core:0.31.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.opencensus:opencensus-impl:0.31.0=default,deploy_jar,runtimeClasspath,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=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +javax.annotation:jsr250-api:1.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +javax.inject:javax.inject:1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.jdo:jdo2-api:2.3-20090302111651=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +javax.mail:mail:1.5.0-b01=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +javax.persistence:javax.persistence-api:2.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +javax.servlet:servlet-api:2.5=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +javax.validation:validation-api:1.0.0.GA=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +javax.xml.bind:jaxb-api:2.3.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +jline:jline:1.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +joda-time:joda-time:2.10.10=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +junit:junit:4.13.2=default,testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy:1.12.9=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +net.java.dev.jna:jna:5.8.0=default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +net.sf.saxon:Saxon-HE:10.3=checkstyle +org.antlr:antlr4-runtime:4.8-1=checkstyle +org.apache.arrow:arrow-format:5.0.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.arrow:arrow-memory-core:5.0.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.arrow:arrow-vector:5.0.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.avro:avro:1.8.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-model-fn-execution:2.40.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-model-job-management:2.40.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-model-pipeline:2.40.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-core-construction-java:2.40.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-core-java:2.40.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-java-fn-execution:2.40.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-core:2.40.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-expansion-service:2.40.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-fn-execution:2.40.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-io-kafka:2.40.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-grpc-1_43_2:0.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-guava-26_0-jre:0.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.commons:commons-compress:1.21=default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-csv:1.9.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.commons:commons-lang3:3.12.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.httpcomponents:httpclient:4.5.13=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.httpcomponents:httpcore:4.4.15=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath +org.bouncycastle:bcpg-jdk15on:1.67=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.bouncycastle:bcpkix-jdk15on:1.67=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.bouncycastle:bcprov-jdk15on:1.67=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.checkerframework:checker-compat-qual:2.5.3=compileClasspath,testCompileClasspath +org.checkerframework:checker-compat-qual:2.5.5=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.checkerframework:checker-qual:2.11.1=checkstyle +org.checkerframework:checker-qual:3.0.0=annotationProcessor,errorprone,testAnnotationProcessor +org.checkerframework:checker-qual:3.12.0=compileClasspath +org.checkerframework:checker-qual:3.13.0=testCompileClasspath +org.checkerframework:checker-qual:3.22.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.checkerframework:dataflow:3.0.0=annotationProcessor,errorprone,testAnnotationProcessor +org.checkerframework:javacutil:3.0.0=annotationProcessor,errorprone,testAnnotationProcessor +org.codehaus.jackson:jackson-core-asl:1.9.13=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.codehaus.jackson:jackson-mapper-asl:1.9.13=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.17=annotationProcessor,errorprone,testAnnotationProcessor +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.flywaydb:flyway-core:9.0.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.glassfish.jaxb:jaxb-runtime:2.3.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.glassfish.jaxb:txw2:2.3.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.gwtproject:gwt-user:2.10.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.hamcrest:hamcrest-core:1.3=default,testCompileClasspath,testRuntimeClasspath +org.hamcrest:hamcrest:2.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.hibernate.common:hibernate-commons-annotations:5.1.2.Final=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.hibernate:hibernate-core:5.6.10.Final=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.hibernate:hibernate-hikaricp:5.6.10.Final=default,deploy_jar,runtimeClasspath,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.jboss.logging:jboss-logging:3.4.3.Final=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.jboss:jandex:2.4.2.Final=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.jetbrains:annotations:17.0.0=default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.joda:joda-money:1.0.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.json:json:20200518=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.jsoup:jsoup:1.15.2=default,deploy_jar,runtimeClasspath,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.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.jvnet.staxex:stax-ex:1.8=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.opentest4j:opentest4j:1.2.0=testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-analysis:8.0.1=jacocoAnt +org.ow2.asm:asm-analysis:9.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.ow2.asm:asm-commons:8.0.1=jacocoAnt +org.ow2.asm:asm-commons:9.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.ow2.asm:asm-tree:8.0.1=jacocoAnt +org.ow2.asm:asm-tree:9.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.ow2.asm:asm-util:9.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.ow2.asm:asm:8.0.1=jacocoAnt +org.ow2.asm:asm:9.1=testCompileClasspath +org.ow2.asm:asm:9.3=default,deploy_jar,runtimeClasspath,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.postgresql:postgresql:42.4.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.reflections:reflections:0.9.12=checkstyle +org.rnorth.duct-tape:duct-tape:1.0.8=default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.slf4j:slf4j-api:1.7.36=testCompileClasspath +org.slf4j:slf4j-api:2.0.0-alpha7=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.slf4j:slf4j-jdk14:2.0.0-alpha7=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.springframework:spring-core:5.3.18=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.springframework:spring-expression:5.3.18=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.springframework:spring-jcl:5.3.18=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.testcontainers:database-commons:1.17.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.testcontainers:jdbc:1.17.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.testcontainers:junit-jupiter:1.17.3=testCompileClasspath,testRuntimeClasspath +org.testcontainers:postgresql:1.17.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.testcontainers:testcontainers:1.17.3=default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.threeten:threetenbp:1.6.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.tukaani:xz:1.5=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.w3c.css:sac:1.3=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.xerial.snappy:snappy-java:1.1.8.4=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.yaml:snakeyaml:1.30=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-api:16.10.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-diagram:16.10.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-tools:16.10.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-utility:16.10.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +us.fatehi:schemacrawler:16.10.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +xerces:xmlParserAPIs:2.6.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +xpp3:xpp3:1.1.4c=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +empty=archives,errorproneJavac diff --git a/docs/gradle/dependency-locks/annotationProcessor.lockfile b/docs/gradle/dependency-locks/annotationProcessor.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/docs/gradle/dependency-locks/annotationProcessor.lockfile +++ /dev/null @@ -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 diff --git a/docs/gradle/dependency-locks/archives.lockfile b/docs/gradle/dependency-locks/archives.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/docs/gradle/dependency-locks/archives.lockfile +++ /dev/null @@ -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. diff --git a/docs/gradle/dependency-locks/buildscript-classpath.lockfile b/docs/gradle/dependency-locks/buildscript-classpath.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/docs/gradle/dependency-locks/buildscript-classpath.lockfile +++ /dev/null @@ -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. diff --git a/docs/gradle/dependency-locks/checkstyle.lockfile b/docs/gradle/dependency-locks/checkstyle.lockfile deleted file mode 100644 index c0dab047f..000000000 --- a/docs/gradle/dependency-locks/checkstyle.lockfile +++ /dev/null @@ -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 diff --git a/docs/gradle/dependency-locks/compile.lockfile b/docs/gradle/dependency-locks/compile.lockfile deleted file mode 100644 index 5b1b7de03..000000000 --- a/docs/gradle/dependency-locks/compile.lockfile +++ /dev/null @@ -1,320 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -junit:junit:4.13.2 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest-core:1.3 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/docs/gradle/dependency-locks/compileClasspath.lockfile b/docs/gradle/dependency-locks/compileClasspath.lockfile deleted file mode 100644 index 61ff643a0..000000000 --- a/docs/gradle/dependency-locks/compileClasspath.lockfile +++ /dev/null @@ -1,306 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.45.1 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.45.1 -io.grpc:grpc-census:1.45.1 -io.grpc:grpc-context:1.47.0 -io.grpc:grpc-core:1.45.1 -io.grpc:grpc-grpclb:1.45.1 -io.grpc:grpc-netty-shaded:1.45.1 -io.grpc:grpc-netty:1.45.1 -io.grpc:grpc-protobuf-lite:1.47.0 -io.grpc:grpc-protobuf:1.47.0 -io.grpc:grpc-services:1.45.1 -io.grpc:grpc-stub:1.47.0 -io.grpc:grpc-xds:1.45.1 -io.netty:netty-buffer:4.1.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -io.opencensus:opencensus-proto:0.2.0 -javax.activation:activation:1.1 -javax.activation:javax.activation-api:1.2.0 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:1.7.36 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/docs/gradle/dependency-locks/compileOnly.lockfile b/docs/gradle/dependency-locks/compileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/docs/gradle/dependency-locks/compileOnly.lockfile +++ /dev/null @@ -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. diff --git a/docs/gradle/dependency-locks/default.lockfile b/docs/gradle/dependency-locks/default.lockfile deleted file mode 100644 index 5b1b7de03..000000000 --- a/docs/gradle/dependency-locks/default.lockfile +++ /dev/null @@ -1,320 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -junit:junit:4.13.2 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest-core:1.3 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/docs/gradle/dependency-locks/deploy_jar.lockfile b/docs/gradle/dependency-locks/deploy_jar.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/docs/gradle/dependency-locks/deploy_jar.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/docs/gradle/dependency-locks/errorprone.lockfile b/docs/gradle/dependency-locks/errorprone.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/docs/gradle/dependency-locks/errorprone.lockfile +++ /dev/null @@ -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 diff --git a/docs/gradle/dependency-locks/errorproneJavac.lockfile b/docs/gradle/dependency-locks/errorproneJavac.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/docs/gradle/dependency-locks/errorproneJavac.lockfile +++ /dev/null @@ -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. diff --git a/docs/gradle/dependency-locks/jacocoAgent.lockfile b/docs/gradle/dependency-locks/jacocoAgent.lockfile deleted file mode 100644 index 837b06fc2..000000000 --- a/docs/gradle/dependency-locks/jacocoAgent.lockfile +++ /dev/null @@ -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 diff --git a/docs/gradle/dependency-locks/jacocoAnt.lockfile b/docs/gradle/dependency-locks/jacocoAnt.lockfile deleted file mode 100644 index a717958c0..000000000 --- a/docs/gradle/dependency-locks/jacocoAnt.lockfile +++ /dev/null @@ -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 diff --git a/docs/gradle/dependency-locks/runtime.lockfile b/docs/gradle/dependency-locks/runtime.lockfile deleted file mode 100644 index 5b1b7de03..000000000 --- a/docs/gradle/dependency-locks/runtime.lockfile +++ /dev/null @@ -1,320 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -junit:junit:4.13.2 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest-core:1.3 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/docs/gradle/dependency-locks/runtimeClasspath.lockfile b/docs/gradle/dependency-locks/runtimeClasspath.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/docs/gradle/dependency-locks/runtimeClasspath.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/docs/gradle/dependency-locks/testAnnotationProcessor.lockfile b/docs/gradle/dependency-locks/testAnnotationProcessor.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/docs/gradle/dependency-locks/testAnnotationProcessor.lockfile +++ /dev/null @@ -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 diff --git a/docs/gradle/dependency-locks/testCompile.lockfile b/docs/gradle/dependency-locks/testCompile.lockfile deleted file mode 100644 index db3fff465..000000000 --- a/docs/gradle/dependency-locks/testCompile.lockfile +++ /dev/null @@ -1,333 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.google.truth:truth:1.1.3 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.thoughtworks.qdox:qdox:1.12.1 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -junit:junit:4.13.2 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest-core:1.3 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.junit.jupiter:junit-jupiter-api:5.9.0-RC1 -org.junit.jupiter:junit-jupiter-engine: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.jvnet.staxex:stax-ex:1.8 -org.opentest4j:opentest4j:1.2.0 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:junit-jupiter:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/docs/gradle/dependency-locks/testCompileClasspath.lockfile b/docs/gradle/dependency-locks/testCompileClasspath.lockfile deleted file mode 100644 index cc6ea9fda..000000000 --- a/docs/gradle/dependency-locks/testCompileClasspath.lockfile +++ /dev/null @@ -1,321 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.google.truth:truth:1.1.3 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.thoughtworks.qdox:qdox:1.12.1 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.45.1 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.45.1 -io.grpc:grpc-census:1.45.1 -io.grpc:grpc-context:1.47.0 -io.grpc:grpc-core:1.45.1 -io.grpc:grpc-grpclb:1.45.1 -io.grpc:grpc-netty-shaded:1.45.1 -io.grpc:grpc-netty:1.45.1 -io.grpc:grpc-protobuf-lite:1.47.0 -io.grpc:grpc-protobuf:1.47.0 -io.grpc:grpc-services:1.45.1 -io.grpc:grpc-stub:1.47.0 -io.grpc:grpc-xds:1.45.1 -io.netty:netty-buffer:4.1.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -io.opencensus:opencensus-proto:0.2.0 -javax.activation:activation:1.1 -javax.activation:javax.activation-api:1.2.0 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -junit:junit:4.13.2 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.apiguardian:apiguardian-api:1.1.2 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest-core:1.3 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.junit.jupiter:junit-jupiter-api:5.9.0-RC1 -org.junit.jupiter:junit-jupiter-engine: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.jvnet.staxex:stax-ex:1.8 -org.opentest4j:opentest4j:1.2.0 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:1.7.36 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:junit-jupiter:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/docs/gradle/dependency-locks/testCompileOnly.lockfile b/docs/gradle/dependency-locks/testCompileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/docs/gradle/dependency-locks/testCompileOnly.lockfile +++ /dev/null @@ -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. diff --git a/docs/gradle/dependency-locks/testRuntime.lockfile b/docs/gradle/dependency-locks/testRuntime.lockfile deleted file mode 100644 index db3fff465..000000000 --- a/docs/gradle/dependency-locks/testRuntime.lockfile +++ /dev/null @@ -1,333 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.google.truth:truth:1.1.3 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.thoughtworks.qdox:qdox:1.12.1 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -junit:junit:4.13.2 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest-core:1.3 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.junit.jupiter:junit-jupiter-api:5.9.0-RC1 -org.junit.jupiter:junit-jupiter-engine: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.jvnet.staxex:stax-ex:1.8 -org.opentest4j:opentest4j:1.2.0 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:junit-jupiter:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/docs/gradle/dependency-locks/testRuntimeClasspath.lockfile b/docs/gradle/dependency-locks/testRuntimeClasspath.lockfile deleted file mode 100644 index db3fff465..000000000 --- a/docs/gradle/dependency-locks/testRuntimeClasspath.lockfile +++ /dev/null @@ -1,333 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.google.truth:truth:1.1.3 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.thoughtworks.qdox:qdox:1.12.1 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -junit:junit:4.13.2 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest-core:1.3 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.junit.jupiter:junit-jupiter-api:5.9.0-RC1 -org.junit.jupiter:junit-jupiter-engine: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.jvnet.staxex:stax-ex:1.8 -org.opentest4j:opentest4j:1.2.0 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:junit-jupiter:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/gradle.lockfile b/gradle.lockfile new file mode 100644 index 000000000..3e223e8c8 --- /dev/null +++ b/gradle.lockfile @@ -0,0 +1,28 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +antlr:antlr:2.7.7=checkstyle +com.google.code.findbugs:jsr305:3.0.2=checkstyle +com.google.errorprone:error_prone_annotations:2.3.4=checkstyle +com.google.guava:failureaccess:1.0.1=checkstyle +com.google.guava:guava:29.0-jre=checkstyle +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle +com.google.j2objc:j2objc-annotations:1.3=checkstyle +com.puppycrawl.tools:checkstyle:8.37=checkstyle +commons-beanutils:commons-beanutils:1.9.4=checkstyle +commons-collections:commons-collections:3.2.2=checkstyle +info.picocli:picocli:4.5.2=checkstyle +net.sf.saxon:Saxon-HE:10.3=checkstyle +org.antlr:antlr4-runtime:4.8-1=checkstyle +org.checkerframework:checker-qual:2.11.1=checkstyle +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.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.reflections:reflections:0.9.12=checkstyle +empty=archives,default,errorprone,errorproneJavac,shadow diff --git a/gradle.properties b/gradle.properties index 2f7a7d20e..ce732df52 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,6 +11,7 @@ org.gradle.jvmargs=-Xmx1024m org.gradle.caching=true mavenUrl= pluginsUrl= +allowInsecureProtocol= uploaderDestination= uploaderCredentialsFile= uploaderMultithreadedUpload= diff --git a/gradle/dependency-locks/buildscript-classpath.lockfile b/gradle/dependency-locks/buildscript-classpath.lockfile deleted file mode 100644 index 273001cd9..000000000 --- a/gradle/dependency-locks/buildscript-classpath.lockfile +++ /dev/null @@ -1,78 +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.diffplug.durian:durian-collect:1.2.0 -com.diffplug.durian:durian-core:1.2.0 -com.diffplug.durian:durian-io:1.2.0 -com.diffplug.gradle.spotless:com.diffplug.gradle.spotless.gradle.plugin:3.25.0 -com.diffplug.spotless:spotless-lib-extra:1.25.0 -com.diffplug.spotless:spotless-lib:1.25.0 -com.diffplug.spotless:spotless-plugin-gradle:3.25.0 -com.dorongold.plugins:task-tree:2.1.0 -com.dorongold.task-tree:com.dorongold.task-tree.gradle.plugin:2.1.0 -com.github.jengelman.gradle.plugins:shadow:5.1.0 -com.github.johnrengelman.shadow:com.github.johnrengelman.shadow.gradle.plugin:5.1.0 -com.github.node-gradle.node:com.github.node-gradle.node.gradle.plugin:3.0.1 -com.github.node-gradle:gradle-node-plugin:3.0.1 -com.google.cloud.tools:appengine-gradle-plugin:2.4.1 -com.google.cloud.tools:appengine-plugins-core:0.9.1 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.8.6 -com.google.errorprone:error_prone_annotations:2.3.4 -com.google.guava:failureaccess:1.0.1 -com.google.guava:guava:28.2-jre -com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava -com.google.j2objc:j2objc-annotations:1.3 -com.googlecode.concurrent-trees:concurrent-trees:2.6.1 -com.googlecode.javaewah:JavaEWAH:1.1.6 -com.jcraft:jsch:0.1.55 -com.jcraft:jzlib:1.1.1 -com.netflix.nebula:gradle-lint-plugin:16.0.2 -com.netflix.nebula:nebula-gradle-interop:1.0.11 -commons-io:commons-io:2.6 -commons-lang:commons-lang:2.6 -javax.inject:javax.inject:1 -junit:junit:4.12 -nebula.lint:nebula.lint.gradle.plugin:16.0.2 -net.ltgt.errorprone:net.ltgt.errorprone.gradle.plugin:0.6.1 -net.ltgt.gradle:gradle-errorprone-plugin:0.6.1 -org.apache.ant:ant-launcher:1.9.7 -org.apache.ant:ant:1.9.7 -org.apache.commons:commons-compress:1.20 -org.apache.commons:commons-lang3:3.8.1 -org.apache.maven:maven-artifact:3.6.2 -org.apache.maven:maven-builder-support:3.6.2 -org.apache.maven:maven-model-builder:3.6.2 -org.apache.maven:maven-model:3.6.2 -org.bouncycastle:bcpg-jdk15on:1.61 -org.bouncycastle:bcpkix-jdk15on:1.61 -org.bouncycastle:bcprov-jdk15on:1.61 -org.checkerframework:checker-qual:2.10.0 -org.codehaus.gpars:gpars:1.2.1 -org.codehaus.groovy:groovy-xml:2.4.7 -org.codehaus.groovy:groovy:2.4.7 -org.codehaus.jsr166-mirror:jsr166y:1.7.0 -org.codehaus.plexus:plexus-interpolation:1.25 -org.codehaus.plexus:plexus-utils:3.2.1 -org.eclipse.jgit:org.eclipse.jgit:5.5.0.201909110433-r -org.eclipse.sisu:org.eclipse.sisu.inject:0.3.3 -org.glassfish:javax.json:1.0.4 -org.hamcrest:hamcrest-core:1.3 -org.jdom:jdom2:2.0.6 -org.jetbrains.kotlin:kotlin-stdlib-common:1.3.50 -org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.50 -org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50 -org.jetbrains.kotlin:kotlin-stdlib:1.3.50 -org.jetbrains:annotations:13.0 -org.multiverse:multiverse-core:0.7.0 -org.ow2.asm:asm-analysis:7.1 -org.ow2.asm:asm-commons:7.1 -org.ow2.asm:asm-tree:7.1 -org.ow2.asm:asm:7.1 -org.slf4j:slf4j-api:1.7.2 -org.sonatype.aether:aether-api:1.13.1 -org.sonatype.aether:aether-impl:1.13.1 -org.sonatype.aether:aether-spi:1.13.1 -org.sonatype.aether:aether-util:1.13.1 -org.vafer:jdependency:2.1.1 -org.yaml:snakeyaml:1.21 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index c19e35bf7..3c4101c3e 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-all.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/integration/build.gradle b/integration/build.gradle index facb28b5f..ac8b3bc16 100644 --- a/integration/build.gradle +++ b/integration/build.gradle @@ -41,22 +41,22 @@ def testUberJarName = '' dependencies { gradleLint.ignore('unused-dependency') { if (schema_version == USE_LOCAL) { - testRuntime project(path: ':db', configuration: 'schema') + testRuntimeOnly project(path: ':db', configuration: 'schema') } else { - testRuntime "google.registry:schema:${schema_version}" + testRuntimeOnly "google.registry:schema:${schema_version}" } if (nomulus_version == USE_LOCAL) { - testRuntime project(path: ':core', configuration: 'nomulus_test') + testRuntimeOnly project(path: ':core', configuration: 'nomulus_test') testUberJarName = 'nomulus-tests-alldeps.jar' } else { - testRuntime "google.registry:nomulus_test:${nomulus_version}:public" - testRuntime "google.registry:nomulus_test:${nomulus_version}:alldeps" + testRuntimeOnly "google.registry:nomulus_test:${nomulus_version}:public" + testRuntimeOnly "google.registry:nomulus_test:${nomulus_version}:alldeps" testUberJarName = "nomulus_test-${nomulus_version}-alldeps.jar" } } } -configurations.testRuntime.transitive = false +configurations.testRuntimeOnly.transitive = false def unpackedTestDir = "${projectDir}/build/unpackedTests/${nomulus_version}" @@ -69,7 +69,7 @@ task extractSqlIntegrationTestSuite (type: Copy) { } outputs.dir unpackedTestDir from zipTree( - configurations.testRuntime + configurations.testRuntimeClasspath .filter { it.name == testUberJarName} .singleFile).matching { include 'google/registry/**/SqlIntegrationTestSuite.class' @@ -83,7 +83,7 @@ task sqlIntegrationTest(type: Test) { // Explicitly choose JUnit 4 for test suites. See :core:sqlIntegrationTest for details. useJUnit() testClassesDirs = files(unpackedTestDir) - classpath = configurations.testRuntime + classpath = configurations.testRuntimeClasspath include 'google/registry/schema/integration/SqlIntegrationTestSuite.*' dependsOn extractSqlIntegrationTestSuite diff --git a/common/gradle/dependency-locks/compileOnly.lockfile b/integration/buildscript-gradle.lockfile similarity index 91% rename from common/gradle/dependency-locks/compileOnly.lockfile rename to integration/buildscript-gradle.lockfile index 656c5dbcc..0d156738b 100644 --- a/common/gradle/dependency-locks/compileOnly.lockfile +++ b/integration/buildscript-gradle.lockfile @@ -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 diff --git a/integration/gradle/dependency-locks/buildscript-classpath.lockfile b/integration/gradle/dependency-locks/buildscript-classpath.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/integration/gradle/dependency-locks/buildscript-classpath.lockfile +++ /dev/null @@ -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. diff --git a/java8compatibility/build.gradle b/java8compatibility/build.gradle index fbfaa198d..2960637ad 100644 --- a/java8compatibility/build.gradle +++ b/java8compatibility/build.gradle @@ -19,12 +19,12 @@ configurations { dependencies { def deps = rootProject.dependencyMap - testCompile deps['com.google.guava:guava'] - testCompile deps['com.google.truth:truth'] - testCompile deps['org.junit.jupiter:junit-jupiter-api'] - testCompile deps['org.junit.jupiter:junit-jupiter-engine'] - testCompile deps['org.junit.jupiter:junit-jupiter-params'] - testRuntime project(path: ':core', configuration: 'deploy_jar') + testImplementation deps['com.google.guava:guava'] + testImplementation deps['com.google.truth:truth'] + testImplementation deps['org.junit.jupiter:junit-jupiter-api'] + testImplementation deps['org.junit.jupiter:junit-jupiter-engine'] + testImplementation deps['org.junit.jupiter:junit-jupiter-params'] + testRuntimeOnly project(path: ':core', configuration: 'deploy_jar') // Collection of jars that get deployed to Appengine. Please refer to // ../appengine_war.gradle for more information. diff --git a/java8compatibility/buildscript-gradle.lockfile b/java8compatibility/buildscript-gradle.lockfile new file mode 100644 index 000000000..0d156738b --- /dev/null +++ b/java8compatibility/buildscript-gradle.lockfile @@ -0,0 +1,4 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +empty=classpath diff --git a/java8compatibility/gradle/dependency-locks/buildscript-classpath.lockfile b/java8compatibility/gradle/dependency-locks/buildscript-classpath.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/java8compatibility/gradle/dependency-locks/buildscript-classpath.lockfile +++ /dev/null @@ -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. diff --git a/java_common.gradle b/java_common.gradle index 0b38eef3f..425555b17 100644 --- a/java_common.gradle +++ b/java_common.gradle @@ -13,7 +13,6 @@ // limitations under the License. apply plugin: 'java' -apply plugin: 'nebula.lint' apply plugin: 'net.ltgt.errorprone' apply plugin: 'checkstyle' apply plugin: 'jacoco' @@ -35,17 +34,17 @@ tasks.test.finalizedBy jacocoTestReport // // Here is the context: // - Some dependencies have test-only jars on their 'compile' classpaths. -// - As a result, they appear in our 'compile', 'runtimeClasspath' and +// - As a result, they appear in our 'implementation', 'runtimeClasspath' and // 'default' configurations, among others, and end up in our release war // files. // - Since these jars are needed for our own tests, we can only exclude them -// from runtimeClasspath. Excluding them from 'compile' or 'runtime' would +// from runtimeClasspath. Excluding them from 'compile' or 'runtimeOnly' would // also exclude them from testCompileClasspath and testRuntimeClasspath, // resulting in test failures. // - If configuration is not specified, project dependency uses the 'default' -// configuration, which always has the same content as 'runtime'. +// configuration, which always has the same content as 'runtimeOnly'. // - When release is involved, 'runtimeClasspath' is actually the right -// configuration to use. The 'runtime' configuration does not include +// configuration to use. The 'runtimeOnly' configuration does not include // 'runtimeOnly' dependencies, while 'runtimeClasspath' does. // - 'runtimeClasspath' cannot be referenced directly by another project. // We use a custom configuration 'deploy_jar' as a proxy. @@ -131,16 +130,6 @@ tasks.withType(JavaCompile).configureEach { compileJava { options.encoding = "UTF-8" } compileTestJava { options.encoding = "UTF-8" } -gradleLint.rules = [ - // Checks if Gradle wrapper is up-to-date - 'archaic-wrapper', - // Checks for indirect dependencies with dynamic version spec. Best - // practice calls for declaring them with specific versions. - 'undeclared-dependency', - 'unused-dependency' - // TODO(weiminyu): enable more dependency checks -] - // To check or fix file formats, run the following commands from this directory: // - Check: ./gradlew spotlessCheck // - Format in place: ./gradlew spotlessApply diff --git a/networking/build.gradle b/networking/build.gradle index d3801904b..b128fe290 100644 --- a/networking/build.gradle +++ b/networking/build.gradle @@ -15,35 +15,35 @@ dependencies { def deps = rootProject.dependencyMap - compile deps['com.google.dagger:dagger'] - compile deps['com.google.flogger:flogger'] - compile deps['com.google.guava:guava'] - compile deps['io.netty:netty-buffer'] - compile deps['io.netty:netty-codec'] - compile deps['io.netty:netty-codec-http'] - 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['org.bouncycastle:bcpkix-jdk15on'] - compile deps['org.bouncycastle:bcprov-jdk15on'] - compile project(':util') - compile project(':common') + implementation deps['com.google.dagger:dagger'] + implementation deps['com.google.flogger:flogger'] + implementation deps['com.google.guava:guava'] + implementation deps['io.netty:netty-buffer'] + implementation deps['io.netty:netty-codec'] + implementation deps['io.netty:netty-codec-http'] + 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['org.bouncycastle:bcpkix-jdk15on'] + implementation deps['org.bouncycastle:bcprov-jdk15on'] + implementation project(':util') + implementation project(':common') - runtime deps['com.google.flogger:flogger-system-backend'] - runtime deps['io.netty:netty-tcnative-boringssl-static'] + runtimeOnly deps['com.google.flogger:flogger-system-backend'] + runtimeOnly deps['io.netty:netty-tcnative-boringssl-static'] - testCompile deps['com.google.truth:truth'] - testCompile deps['junit:junit'] - testCompile deps['org.bouncycastle:bcpkix-jdk15on'] - testCompile deps['org.bouncycastle:bcprov-jdk15on'] - 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.testcontainers:junit-jupiter'] - testCompile project(path: ':common', configuration: 'testing') + testImplementation deps['com.google.truth:truth'] + testImplementation deps['junit:junit'] + testImplementation deps['org.bouncycastle:bcpkix-jdk15on'] + testImplementation deps['org.bouncycastle:bcprov-jdk15on'] + 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.testcontainers:junit-jupiter'] + testImplementation project(path: ':common', configuration: 'testing') annotationProcessor deps['com.google.dagger:dagger-compiler'] testAnnotationProcessor deps['com.google.dagger:dagger-compiler'] @@ -60,5 +60,11 @@ task testJar(type: Jar) { } artifacts { - testRuntime testJar + testRuntimeOnly testJar +} + +configurations { + testRuntimeOnly { + canBeConsumed = true + } } diff --git a/networking/buildscript-gradle.lockfile b/networking/buildscript-gradle.lockfile new file mode 100644 index 000000000..0d156738b --- /dev/null +++ b/networking/buildscript-gradle.lockfile @@ -0,0 +1,4 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +empty=classpath diff --git a/networking/gradle.lockfile b/networking/gradle.lockfile new file mode 100644 index 000000000..19ac38f44 --- /dev/null +++ b/networking/gradle.lockfile @@ -0,0 +1,175 @@ +# 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.fasterxml.jackson.core:jackson-annotations:2.10.3=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.2=default,deploy_jar,runtimeClasspath,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=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-iam-v1:1.4.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:api-common:2.2.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax-grpc:2.18.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax-httpjson:0.103.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax:2.18.2=default,deploy_jar,runtimeClasspath,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=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-oauth2-http:1.7.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auto.value:auto-value-annotations:1.8.1=testCompileClasspath +com.google.auto.value:auto-value-annotations:1.9=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auto.value:auto-value:1.9=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auto:auto-common:0.10=annotationProcessor,errorprone,testAnnotationProcessor +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=default,deploy_jar,runtimeClasspath,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,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=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-gson:1.42.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client:1.42.0=default,deploy_jar,runtimeClasspath,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.oauth-client:google-oauth-client:1.34.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java-util:3.21.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:3.21.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:3.4.0=annotationProcessor,errorprone,testAnnotationProcessor +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.15=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +commons-collections:commons-collections:3.2.2=checkstyle +commons-logging:commons-logging:1.2=default,deploy_jar,runtimeClasspath,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=default,deploy_jar,runtimeClasspath,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,testRuntimeClasspath +io.netty:netty-tcnative-classes:2.0.54.Final=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.netty:netty-transport:4.1.59.Final=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-api:0.31.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-http-util:0.31.1=default,deploy_jar,runtimeClasspath,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=default,deploy_jar,runtimeClasspath,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=default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +junit:junit:4.13.2=default,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=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.httpcomponents:httpcore:4.4.15=default,deploy_jar,runtimeClasspath,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,compileClasspath,testAnnotationProcessor +org.checkerframework:checker-qual:3.19.0=testCompileClasspath +org.checkerframework:checker-qual:3.22.2=default,deploy_jar,runtimeClasspath,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.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=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.yaml:snakeyaml:1.30=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +empty=archives,errorproneJavac diff --git a/networking/gradle/dependency-locks/annotationProcessor.lockfile b/networking/gradle/dependency-locks/annotationProcessor.lockfile deleted file mode 100644 index 80e4f5d26..000000000 --- a/networking/gradle/dependency-locks/annotationProcessor.lockfile +++ /dev/null @@ -1,43 +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.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 diff --git a/networking/gradle/dependency-locks/archives.lockfile b/networking/gradle/dependency-locks/archives.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/networking/gradle/dependency-locks/archives.lockfile +++ /dev/null @@ -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. diff --git a/networking/gradle/dependency-locks/buildscript-classpath.lockfile b/networking/gradle/dependency-locks/buildscript-classpath.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/networking/gradle/dependency-locks/buildscript-classpath.lockfile +++ /dev/null @@ -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. diff --git a/networking/gradle/dependency-locks/checkstyle.lockfile b/networking/gradle/dependency-locks/checkstyle.lockfile deleted file mode 100644 index c0dab047f..000000000 --- a/networking/gradle/dependency-locks/checkstyle.lockfile +++ /dev/null @@ -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 diff --git a/networking/gradle/dependency-locks/compile.lockfile b/networking/gradle/dependency-locks/compile.lockfile deleted file mode 100644 index e88fd05cd..000000000 --- a/networking/gradle/dependency-locks/compile.lockfile +++ /dev/null @@ -1,82 +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.9.3 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client:1.35.2 -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.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-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: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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -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-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 diff --git a/networking/gradle/dependency-locks/compileClasspath.lockfile b/networking/gradle/dependency-locks/compileClasspath.lockfile deleted file mode 100644 index f13ab83f9..000000000 --- a/networking/gradle/dependency-locks/compileClasspath.lockfile +++ /dev/null @@ -1,69 +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.9.3 -com.google.api-client:google-api-client:1.35.2 -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.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.8.0 -com.google.auth:google-auth-library-oauth2-http:1.8.0 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -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: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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.oauth-client:google-oauth-client:1.34.1 -com.google.protobuf:protobuf-java-util:4.0.0-rc-2 -com.google.protobuf:protobuf-java:4.0.0-rc-2 -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-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 diff --git a/networking/gradle/dependency-locks/compileOnly.lockfile b/networking/gradle/dependency-locks/compileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/networking/gradle/dependency-locks/compileOnly.lockfile +++ /dev/null @@ -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. diff --git a/networking/gradle/dependency-locks/default.lockfile b/networking/gradle/dependency-locks/default.lockfile deleted file mode 100644 index 41b6ce2eb..000000000 --- a/networking/gradle/dependency-locks/default.lockfile +++ /dev/null @@ -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.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.2 -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.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-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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -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 diff --git a/networking/gradle/dependency-locks/deploy_jar.lockfile b/networking/gradle/dependency-locks/deploy_jar.lockfile deleted file mode 100644 index 41b6ce2eb..000000000 --- a/networking/gradle/dependency-locks/deploy_jar.lockfile +++ /dev/null @@ -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.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.2 -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.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-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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -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 diff --git a/networking/gradle/dependency-locks/errorprone.lockfile b/networking/gradle/dependency-locks/errorprone.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/networking/gradle/dependency-locks/errorprone.lockfile +++ /dev/null @@ -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 diff --git a/networking/gradle/dependency-locks/errorproneJavac.lockfile b/networking/gradle/dependency-locks/errorproneJavac.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/networking/gradle/dependency-locks/errorproneJavac.lockfile +++ /dev/null @@ -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. diff --git a/networking/gradle/dependency-locks/jacocoAgent.lockfile b/networking/gradle/dependency-locks/jacocoAgent.lockfile deleted file mode 100644 index 837b06fc2..000000000 --- a/networking/gradle/dependency-locks/jacocoAgent.lockfile +++ /dev/null @@ -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 diff --git a/networking/gradle/dependency-locks/jacocoAnt.lockfile b/networking/gradle/dependency-locks/jacocoAnt.lockfile deleted file mode 100644 index a717958c0..000000000 --- a/networking/gradle/dependency-locks/jacocoAnt.lockfile +++ /dev/null @@ -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 diff --git a/networking/gradle/dependency-locks/runtime.lockfile b/networking/gradle/dependency-locks/runtime.lockfile deleted file mode 100644 index 41b6ce2eb..000000000 --- a/networking/gradle/dependency-locks/runtime.lockfile +++ /dev/null @@ -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.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.2 -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.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-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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -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 diff --git a/networking/gradle/dependency-locks/runtimeClasspath.lockfile b/networking/gradle/dependency-locks/runtimeClasspath.lockfile deleted file mode 100644 index 41b6ce2eb..000000000 --- a/networking/gradle/dependency-locks/runtimeClasspath.lockfile +++ /dev/null @@ -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.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.2 -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.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-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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -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 diff --git a/networking/gradle/dependency-locks/testAnnotationProcessor.lockfile b/networking/gradle/dependency-locks/testAnnotationProcessor.lockfile deleted file mode 100644 index 80e4f5d26..000000000 --- a/networking/gradle/dependency-locks/testAnnotationProcessor.lockfile +++ /dev/null @@ -1,43 +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.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 diff --git a/networking/gradle/dependency-locks/testCompile.lockfile b/networking/gradle/dependency-locks/testCompile.lockfile deleted file mode 100644 index a26593c71..000000000 --- a/networking/gradle/dependency-locks/testCompile.lockfile +++ /dev/null @@ -1,108 +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.fasterxml.jackson.core:jackson-annotations:2.10.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.2 -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.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-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: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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -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-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.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.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 diff --git a/networking/gradle/dependency-locks/testCompileClasspath.lockfile b/networking/gradle/dependency-locks/testCompileClasspath.lockfile deleted file mode 100644 index f834f4107..000000000 --- a/networking/gradle/dependency-locks/testCompileClasspath.lockfile +++ /dev/null @@ -1,95 +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.fasterxml.jackson.core:jackson-annotations:2.10.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.2 -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.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.8.0 -com.google.auth:google-auth-library-oauth2-http:1.8.0 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -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: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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.oauth-client:google-oauth-client:1.34.1 -com.google.protobuf:protobuf-java-util:4.0.0-rc-2 -com.google.protobuf:protobuf-java:4.0.0-rc-2 -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-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.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.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 diff --git a/networking/gradle/dependency-locks/testCompileOnly.lockfile b/networking/gradle/dependency-locks/testCompileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/networking/gradle/dependency-locks/testCompileOnly.lockfile +++ /dev/null @@ -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. diff --git a/networking/gradle/dependency-locks/testRuntime.lockfile b/networking/gradle/dependency-locks/testRuntime.lockfile deleted file mode 100644 index a02a9ba5b..000000000 --- a/networking/gradle/dependency-locks/testRuntime.lockfile +++ /dev/null @@ -1,111 +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.fasterxml.jackson.core:jackson-annotations:2.10.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.2 -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.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-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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -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.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.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 diff --git a/networking/gradle/dependency-locks/testRuntimeClasspath.lockfile b/networking/gradle/dependency-locks/testRuntimeClasspath.lockfile deleted file mode 100644 index a02a9ba5b..000000000 --- a/networking/gradle/dependency-locks/testRuntimeClasspath.lockfile +++ /dev/null @@ -1,111 +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.fasterxml.jackson.core:jackson-annotations:2.10.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.2 -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.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-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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -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.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.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 diff --git a/prober/build.gradle b/prober/build.gradle index 579a6b662..16e1bfe3d 100644 --- a/prober/build.gradle +++ b/prober/build.gradle @@ -19,45 +19,45 @@ createUberJar('deployJar', 'prober', 'google.registry.monitoring.blackbox.Prober dependencies { def deps = rootProject.dependencyMap - compile deps['com.google.auto.value:auto-value-annotations'] - 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.monitoring-client:metrics'] - compile deps['io.netty:netty-buffer'] - compile deps['io.netty:netty-codec'] - compile deps['io.netty:netty-codec-http'] - 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 deps['xerces:xmlParserAPIs'] - compile deps['xpp3:xpp3'] - compile project(':common') - compile project(':util') - compile project(':networking') + implementation deps['com.google.auto.value:auto-value-annotations'] + 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.monitoring-client:metrics'] + implementation deps['io.netty:netty-buffer'] + implementation deps['io.netty:netty-codec'] + implementation deps['io.netty:netty-codec-http'] + 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 deps['xerces:xmlParserAPIs'] + implementation deps['xpp3:xpp3'] + implementation project(':common') + implementation project(':util') + implementation project(':networking') - 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 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 project(path: ':common', configuration: 'testing') + testImplementation project(path: ':networking', configuration: 'testRuntimeOnly') // Include auto-value in compile until nebula-lint understands // annotationProcessor diff --git a/prober/buildscript-gradle.lockfile b/prober/buildscript-gradle.lockfile new file mode 100644 index 000000000..0d156738b --- /dev/null +++ b/prober/buildscript-gradle.lockfile @@ -0,0 +1,4 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +empty=classpath diff --git a/prober/gradle.lockfile b/prober/gradle.lockfile new file mode 100644 index 000000000..f820032ba --- /dev/null +++ b/prober/gradle.lockfile @@ -0,0 +1,184 @@ +# 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.fasterxml.jackson.core:jackson-annotations:2.10.3=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.2=default,deploy_jar,runtimeClasspath,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=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-iam-v1:1.4.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:api-common:2.2.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax-grpc:2.18.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax-httpjson:0.103.2=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax:2.18.2=default,deploy_jar,runtimeClasspath,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=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-oauth2-http:1.7.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auto.value:auto-value-annotations:1.8.1=testCompileClasspath +com.google.auto.value:auto-value-annotations:1.9=compileClasspath,default,deploy_jar,runtimeClasspath,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-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=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-gson:1.42.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client:1.42.0=default,deploy_jar,runtimeClasspath,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.oauth-client:google-oauth-client:1.34.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java-util:3.21.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:3.21.1=default,deploy_jar,runtimeClasspath,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.15=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +commons-collections:commons-collections:3.2.2=checkstyle +commons-logging:commons-logging:1.2=default,deploy_jar,runtimeClasspath,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=default,deploy_jar,runtimeClasspath,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=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-http-util:0.31.1=default,deploy_jar,runtimeClasspath,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=default,deploy_jar,runtimeClasspath,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=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.httpcomponents:httpcore:4.4.15=default,deploy_jar,runtimeClasspath,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,compileClasspath,testAnnotationProcessor +org.checkerframework:checker-qual:3.19.0=testCompileClasspath +org.checkerframework:checker-qual:3.22.2=default,deploy_jar,runtimeClasspath,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=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +org.yaml:snakeyaml:1.30=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +xerces:xmlParserAPIs:2.6.2=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +xpp3:xpp3:1.1.4c=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +empty=archives,errorproneJavac diff --git a/prober/gradle/dependency-locks/annotationProcessor.lockfile b/prober/gradle/dependency-locks/annotationProcessor.lockfile deleted file mode 100644 index 5c4bf3b81..000000000 --- a/prober/gradle/dependency-locks/annotationProcessor.lockfile +++ /dev/null @@ -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 diff --git a/prober/gradle/dependency-locks/archives.lockfile b/prober/gradle/dependency-locks/archives.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/prober/gradle/dependency-locks/archives.lockfile +++ /dev/null @@ -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. diff --git a/prober/gradle/dependency-locks/buildscript-classpath.lockfile b/prober/gradle/dependency-locks/buildscript-classpath.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/prober/gradle/dependency-locks/buildscript-classpath.lockfile +++ /dev/null @@ -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. diff --git a/prober/gradle/dependency-locks/checkstyle.lockfile b/prober/gradle/dependency-locks/checkstyle.lockfile deleted file mode 100644 index c0dab047f..000000000 --- a/prober/gradle/dependency-locks/checkstyle.lockfile +++ /dev/null @@ -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 diff --git a/prober/gradle/dependency-locks/compile.lockfile b/prober/gradle/dependency-locks/compile.lockfile deleted file mode 100644 index ba75ecf10..000000000 --- a/prober/gradle/dependency-locks/compile.lockfile +++ /dev/null @@ -1,88 +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.9.3 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client:1.35.2 -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.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-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-gson: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.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 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/prober/gradle/dependency-locks/compileClasspath.lockfile b/prober/gradle/dependency-locks/compileClasspath.lockfile deleted file mode 100644 index f5778baa4..000000000 --- a/prober/gradle/dependency-locks/compileClasspath.lockfile +++ /dev/null @@ -1,75 +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.9.3 -com.google.api-client:google-api-client:1.35.2 -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.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.8.0 -com.google.auth:google-auth-library-oauth2-http:1.8.0 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -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-gson: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.oauth-client:google-oauth-client:1.34.1 -com.google.protobuf:protobuf-java-util:4.0.0-rc-2 -com.google.protobuf:protobuf-java:4.0.0-rc-2 -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 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/prober/gradle/dependency-locks/compileOnly.lockfile b/prober/gradle/dependency-locks/compileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/prober/gradle/dependency-locks/compileOnly.lockfile +++ /dev/null @@ -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. diff --git a/prober/gradle/dependency-locks/default.lockfile b/prober/gradle/dependency-locks/default.lockfile deleted file mode 100644 index ba75ecf10..000000000 --- a/prober/gradle/dependency-locks/default.lockfile +++ /dev/null @@ -1,88 +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.9.3 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client:1.35.2 -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.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-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-gson: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.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 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/prober/gradle/dependency-locks/deploy_jar.lockfile b/prober/gradle/dependency-locks/deploy_jar.lockfile deleted file mode 100644 index ba75ecf10..000000000 --- a/prober/gradle/dependency-locks/deploy_jar.lockfile +++ /dev/null @@ -1,88 +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.9.3 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client:1.35.2 -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.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-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-gson: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.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 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/prober/gradle/dependency-locks/errorprone.lockfile b/prober/gradle/dependency-locks/errorprone.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/prober/gradle/dependency-locks/errorprone.lockfile +++ /dev/null @@ -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 diff --git a/prober/gradle/dependency-locks/errorproneJavac.lockfile b/prober/gradle/dependency-locks/errorproneJavac.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/prober/gradle/dependency-locks/errorproneJavac.lockfile +++ /dev/null @@ -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. diff --git a/prober/gradle/dependency-locks/jacocoAgent.lockfile b/prober/gradle/dependency-locks/jacocoAgent.lockfile deleted file mode 100644 index 837b06fc2..000000000 --- a/prober/gradle/dependency-locks/jacocoAgent.lockfile +++ /dev/null @@ -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 diff --git a/prober/gradle/dependency-locks/jacocoAnt.lockfile b/prober/gradle/dependency-locks/jacocoAnt.lockfile deleted file mode 100644 index a717958c0..000000000 --- a/prober/gradle/dependency-locks/jacocoAnt.lockfile +++ /dev/null @@ -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 diff --git a/prober/gradle/dependency-locks/runtime.lockfile b/prober/gradle/dependency-locks/runtime.lockfile deleted file mode 100644 index ba75ecf10..000000000 --- a/prober/gradle/dependency-locks/runtime.lockfile +++ /dev/null @@ -1,88 +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.9.3 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client:1.35.2 -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.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-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-gson: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.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 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/prober/gradle/dependency-locks/runtimeClasspath.lockfile b/prober/gradle/dependency-locks/runtimeClasspath.lockfile deleted file mode 100644 index ba75ecf10..000000000 --- a/prober/gradle/dependency-locks/runtimeClasspath.lockfile +++ /dev/null @@ -1,88 +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.9.3 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client:1.35.2 -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.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-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-gson: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.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 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/prober/gradle/dependency-locks/testAnnotationProcessor.lockfile b/prober/gradle/dependency-locks/testAnnotationProcessor.lockfile deleted file mode 100644 index 5c4bf3b81..000000000 --- a/prober/gradle/dependency-locks/testAnnotationProcessor.lockfile +++ /dev/null @@ -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 diff --git a/prober/gradle/dependency-locks/testCompile.lockfile b/prober/gradle/dependency-locks/testCompile.lockfile deleted file mode 100644 index cd864d320..000000000 --- a/prober/gradle/dependency-locks/testCompile.lockfile +++ /dev/null @@ -1,119 +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.fasterxml.jackson.core:jackson-annotations:2.10.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.2 -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.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-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-gson: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.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 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/prober/gradle/dependency-locks/testCompileClasspath.lockfile b/prober/gradle/dependency-locks/testCompileClasspath.lockfile deleted file mode 100644 index 899f683a9..000000000 --- a/prober/gradle/dependency-locks/testCompileClasspath.lockfile +++ /dev/null @@ -1,105 +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.fasterxml.jackson.core:jackson-annotations:2.10.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.2 -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.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.8.0 -com.google.auth:google-auth-library-oauth2-http:1.8.0 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -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-gson: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.oauth-client:google-oauth-client:1.34.1 -com.google.protobuf:protobuf-java-util:4.0.0-rc-2 -com.google.protobuf:protobuf-java:4.0.0-rc-2 -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 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/prober/gradle/dependency-locks/testCompileOnly.lockfile b/prober/gradle/dependency-locks/testCompileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/prober/gradle/dependency-locks/testCompileOnly.lockfile +++ /dev/null @@ -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. diff --git a/prober/gradle/dependency-locks/testRuntime.lockfile b/prober/gradle/dependency-locks/testRuntime.lockfile deleted file mode 100644 index cd864d320..000000000 --- a/prober/gradle/dependency-locks/testRuntime.lockfile +++ /dev/null @@ -1,119 +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.fasterxml.jackson.core:jackson-annotations:2.10.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.2 -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.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-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-gson: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.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 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/prober/gradle/dependency-locks/testRuntimeClasspath.lockfile b/prober/gradle/dependency-locks/testRuntimeClasspath.lockfile deleted file mode 100644 index cd864d320..000000000 --- a/prober/gradle/dependency-locks/testRuntimeClasspath.lockfile +++ /dev/null @@ -1,119 +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.fasterxml.jackson.core:jackson-annotations:2.10.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.2 -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.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-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-gson: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.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 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/processor/build.gradle b/processor/build.gradle index 462818d69..aef280774 100644 --- a/processor/build.gradle +++ b/processor/build.gradle @@ -21,11 +21,11 @@ dependencies { // Custom-built objectify jar at commit ecd5165, included in Nomulus // release. - compile files( + implementation files( "${rootDir}/third_party/objectify/v4_1/objectify-4.1.3.jar") - compile deps['com.google.code.findbugs:jsr305'] - compile deps['com.google.guava:guava'] - compile deps['com.squareup:javapoet'] - compile deps['javax.persistence:javax.persistence-api'] + implementation deps['com.google.code.findbugs:jsr305'] + implementation deps['com.google.guava:guava'] + implementation deps['com.squareup:javapoet'] + implementation deps['javax.persistence:javax.persistence-api'] } diff --git a/processor/buildscript-gradle.lockfile b/processor/buildscript-gradle.lockfile new file mode 100644 index 000000000..0d156738b --- /dev/null +++ b/processor/buildscript-gradle.lockfile @@ -0,0 +1,4 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +empty=classpath diff --git a/processor/gradle.lockfile b/processor/gradle.lockfile new file mode 100644 index 000000000..2b8b955f1 --- /dev/null +++ b/processor/gradle.lockfile @@ -0,0 +1,53 @@ +# 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.github.ben-manes.caffeine:caffeine:2.7.0=annotationProcessor,errorprone,testAnnotationProcessor +com.github.kevinstern:software-and-algorithms:1.0=annotationProcessor,errorprone,testAnnotationProcessor +com.google.auto:auto-common:0.10=annotationProcessor,errorprone,testAnnotationProcessor +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.errorprone:error_prone_annotation:2.3.4=annotationProcessor,errorprone,testAnnotationProcessor +com.google.errorprone:error_prone_annotations:2.11.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.3.4=annotationProcessor,checkstyle,errorprone,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.guava:failureaccess:1.0.1=annotationProcessor,checkstyle,compileClasspath,default,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.guava:guava:27.0.1-jre=annotationProcessor,errorprone,testAnnotationProcessor +com.google.guava:guava:29.0-jre=checkstyle +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.j2objc:j2objc-annotations:1.1=annotationProcessor,errorprone,testAnnotationProcessor +com.google.j2objc:j2objc-annotations:1.3=checkstyle,compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:3.4.0=annotationProcessor,errorprone,testAnnotationProcessor +com.googlecode.java-diff-utils:diffutils:1.3.0=annotationProcessor,errorprone,testAnnotationProcessor +com.puppycrawl.tools:checkstyle:8.37=checkstyle +com.squareup:javapoet:1.13.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +commons-beanutils:commons-beanutils:1.9.4=checkstyle +commons-collections:commons-collections:3.2.2=checkstyle +info.picocli:picocli:4.5.2=checkstyle +javax.persistence:javax.persistence-api:2.2=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +net.sf.saxon:Saxon-HE:10.3=checkstyle +org.antlr:antlr4-runtime:4.8-1=checkstyle +org.checkerframework:checker-qual:2.11.1=checkstyle +org.checkerframework:checker-qual:3.0.0=annotationProcessor,errorprone,testAnnotationProcessor +org.checkerframework:checker-qual:3.12.0=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=annotationProcessor,errorprone,testAnnotationProcessor +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.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.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 +empty=archives,errorproneJavac diff --git a/processor/gradle/dependency-locks/annotationProcessor.lockfile b/processor/gradle/dependency-locks/annotationProcessor.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/processor/gradle/dependency-locks/annotationProcessor.lockfile +++ /dev/null @@ -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 diff --git a/processor/gradle/dependency-locks/archives.lockfile b/processor/gradle/dependency-locks/archives.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/processor/gradle/dependency-locks/archives.lockfile +++ /dev/null @@ -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. diff --git a/processor/gradle/dependency-locks/buildscript-classpath.lockfile b/processor/gradle/dependency-locks/buildscript-classpath.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/processor/gradle/dependency-locks/buildscript-classpath.lockfile +++ /dev/null @@ -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. diff --git a/processor/gradle/dependency-locks/checkstyle.lockfile b/processor/gradle/dependency-locks/checkstyle.lockfile deleted file mode 100644 index c0dab047f..000000000 --- a/processor/gradle/dependency-locks/checkstyle.lockfile +++ /dev/null @@ -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 diff --git a/processor/gradle/dependency-locks/compile.lockfile b/processor/gradle/dependency-locks/compile.lockfile deleted file mode 100644 index aa9ba1369..000000000 --- a/processor/gradle/dependency-locks/compile.lockfile +++ /dev/null @@ -1,12 +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.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -com.squareup:javapoet:1.13.0 -javax.persistence:javax.persistence-api:2.2 -org.checkerframework:checker-qual:3.12.0 diff --git a/processor/gradle/dependency-locks/compileClasspath.lockfile b/processor/gradle/dependency-locks/compileClasspath.lockfile deleted file mode 100644 index aa9ba1369..000000000 --- a/processor/gradle/dependency-locks/compileClasspath.lockfile +++ /dev/null @@ -1,12 +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.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -com.squareup:javapoet:1.13.0 -javax.persistence:javax.persistence-api:2.2 -org.checkerframework:checker-qual:3.12.0 diff --git a/processor/gradle/dependency-locks/compileOnly.lockfile b/processor/gradle/dependency-locks/compileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/processor/gradle/dependency-locks/compileOnly.lockfile +++ /dev/null @@ -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. diff --git a/processor/gradle/dependency-locks/default.lockfile b/processor/gradle/dependency-locks/default.lockfile deleted file mode 100644 index aa9ba1369..000000000 --- a/processor/gradle/dependency-locks/default.lockfile +++ /dev/null @@ -1,12 +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.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -com.squareup:javapoet:1.13.0 -javax.persistence:javax.persistence-api:2.2 -org.checkerframework:checker-qual:3.12.0 diff --git a/processor/gradle/dependency-locks/deploy_jar.lockfile b/processor/gradle/dependency-locks/deploy_jar.lockfile deleted file mode 100644 index aa9ba1369..000000000 --- a/processor/gradle/dependency-locks/deploy_jar.lockfile +++ /dev/null @@ -1,12 +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.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -com.squareup:javapoet:1.13.0 -javax.persistence:javax.persistence-api:2.2 -org.checkerframework:checker-qual:3.12.0 diff --git a/processor/gradle/dependency-locks/errorprone.lockfile b/processor/gradle/dependency-locks/errorprone.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/processor/gradle/dependency-locks/errorprone.lockfile +++ /dev/null @@ -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 diff --git a/processor/gradle/dependency-locks/errorproneJavac.lockfile b/processor/gradle/dependency-locks/errorproneJavac.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/processor/gradle/dependency-locks/errorproneJavac.lockfile +++ /dev/null @@ -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. diff --git a/processor/gradle/dependency-locks/jacocoAgent.lockfile b/processor/gradle/dependency-locks/jacocoAgent.lockfile deleted file mode 100644 index 837b06fc2..000000000 --- a/processor/gradle/dependency-locks/jacocoAgent.lockfile +++ /dev/null @@ -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 diff --git a/processor/gradle/dependency-locks/jacocoAnt.lockfile b/processor/gradle/dependency-locks/jacocoAnt.lockfile deleted file mode 100644 index a717958c0..000000000 --- a/processor/gradle/dependency-locks/jacocoAnt.lockfile +++ /dev/null @@ -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 diff --git a/processor/gradle/dependency-locks/runtime.lockfile b/processor/gradle/dependency-locks/runtime.lockfile deleted file mode 100644 index aa9ba1369..000000000 --- a/processor/gradle/dependency-locks/runtime.lockfile +++ /dev/null @@ -1,12 +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.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -com.squareup:javapoet:1.13.0 -javax.persistence:javax.persistence-api:2.2 -org.checkerframework:checker-qual:3.12.0 diff --git a/processor/gradle/dependency-locks/runtimeClasspath.lockfile b/processor/gradle/dependency-locks/runtimeClasspath.lockfile deleted file mode 100644 index aa9ba1369..000000000 --- a/processor/gradle/dependency-locks/runtimeClasspath.lockfile +++ /dev/null @@ -1,12 +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.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -com.squareup:javapoet:1.13.0 -javax.persistence:javax.persistence-api:2.2 -org.checkerframework:checker-qual:3.12.0 diff --git a/processor/gradle/dependency-locks/testAnnotationProcessor.lockfile b/processor/gradle/dependency-locks/testAnnotationProcessor.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/processor/gradle/dependency-locks/testAnnotationProcessor.lockfile +++ /dev/null @@ -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 diff --git a/processor/gradle/dependency-locks/testCompile.lockfile b/processor/gradle/dependency-locks/testCompile.lockfile deleted file mode 100644 index aa9ba1369..000000000 --- a/processor/gradle/dependency-locks/testCompile.lockfile +++ /dev/null @@ -1,12 +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.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -com.squareup:javapoet:1.13.0 -javax.persistence:javax.persistence-api:2.2 -org.checkerframework:checker-qual:3.12.0 diff --git a/processor/gradle/dependency-locks/testCompileClasspath.lockfile b/processor/gradle/dependency-locks/testCompileClasspath.lockfile deleted file mode 100644 index aa9ba1369..000000000 --- a/processor/gradle/dependency-locks/testCompileClasspath.lockfile +++ /dev/null @@ -1,12 +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.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -com.squareup:javapoet:1.13.0 -javax.persistence:javax.persistence-api:2.2 -org.checkerframework:checker-qual:3.12.0 diff --git a/processor/gradle/dependency-locks/testCompileOnly.lockfile b/processor/gradle/dependency-locks/testCompileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/processor/gradle/dependency-locks/testCompileOnly.lockfile +++ /dev/null @@ -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. diff --git a/processor/gradle/dependency-locks/testRuntime.lockfile b/processor/gradle/dependency-locks/testRuntime.lockfile deleted file mode 100644 index aa9ba1369..000000000 --- a/processor/gradle/dependency-locks/testRuntime.lockfile +++ /dev/null @@ -1,12 +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.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -com.squareup:javapoet:1.13.0 -javax.persistence:javax.persistence-api:2.2 -org.checkerframework:checker-qual:3.12.0 diff --git a/processor/gradle/dependency-locks/testRuntimeClasspath.lockfile b/processor/gradle/dependency-locks/testRuntimeClasspath.lockfile deleted file mode 100644 index aa9ba1369..000000000 --- a/processor/gradle/dependency-locks/testRuntimeClasspath.lockfile +++ /dev/null @@ -1,12 +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.google.code.findbugs:jsr305:3.0.2 -com.google.errorprone:error_prone_annotations:2.11.0 -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.j2objc:j2objc-annotations:1.3 -com.squareup:javapoet:1.13.0 -javax.persistence:javax.persistence-api:2.2 -org.checkerframework:checker-qual:3.12.0 diff --git a/proxy/build.gradle b/proxy/build.gradle index 3465b8d95..da3d79636 100644 --- a/proxy/build.gradle +++ b/proxy/build.gradle @@ -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 diff --git a/proxy/buildscript-gradle.lockfile b/proxy/buildscript-gradle.lockfile new file mode 100644 index 000000000..0d156738b --- /dev/null +++ b/proxy/buildscript-gradle.lockfile @@ -0,0 +1,4 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +empty=classpath diff --git a/proxy/gradle.lockfile b/proxy/gradle.lockfile new file mode 100644 index 000000000..2d45a2140 --- /dev/null +++ b/proxy/gradle.lockfile @@ -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 diff --git a/proxy/gradle/dependency-locks/annotationProcessor.lockfile b/proxy/gradle/dependency-locks/annotationProcessor.lockfile deleted file mode 100644 index 5c4bf3b81..000000000 --- a/proxy/gradle/dependency-locks/annotationProcessor.lockfile +++ /dev/null @@ -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 diff --git a/proxy/gradle/dependency-locks/archives.lockfile b/proxy/gradle/dependency-locks/archives.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/proxy/gradle/dependency-locks/archives.lockfile +++ /dev/null @@ -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. diff --git a/proxy/gradle/dependency-locks/buildscript-classpath.lockfile b/proxy/gradle/dependency-locks/buildscript-classpath.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/proxy/gradle/dependency-locks/buildscript-classpath.lockfile +++ /dev/null @@ -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. diff --git a/proxy/gradle/dependency-locks/checkstyle.lockfile b/proxy/gradle/dependency-locks/checkstyle.lockfile deleted file mode 100644 index c0dab047f..000000000 --- a/proxy/gradle/dependency-locks/checkstyle.lockfile +++ /dev/null @@ -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 diff --git a/proxy/gradle/dependency-locks/compile.lockfile b/proxy/gradle/dependency-locks/compile.lockfile deleted file mode 100644 index e24a1ae10..000000000 --- a/proxy/gradle/dependency-locks/compile.lockfile +++ /dev/null @@ -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 diff --git a/proxy/gradle/dependency-locks/compileClasspath.lockfile b/proxy/gradle/dependency-locks/compileClasspath.lockfile deleted file mode 100644 index 893505d82..000000000 --- a/proxy/gradle/dependency-locks/compileClasspath.lockfile +++ /dev/null @@ -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 diff --git a/proxy/gradle/dependency-locks/compileOnly.lockfile b/proxy/gradle/dependency-locks/compileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/proxy/gradle/dependency-locks/compileOnly.lockfile +++ /dev/null @@ -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. diff --git a/proxy/gradle/dependency-locks/default.lockfile b/proxy/gradle/dependency-locks/default.lockfile deleted file mode 100644 index e24a1ae10..000000000 --- a/proxy/gradle/dependency-locks/default.lockfile +++ /dev/null @@ -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 diff --git a/proxy/gradle/dependency-locks/deploy_jar.lockfile b/proxy/gradle/dependency-locks/deploy_jar.lockfile deleted file mode 100644 index e24a1ae10..000000000 --- a/proxy/gradle/dependency-locks/deploy_jar.lockfile +++ /dev/null @@ -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 diff --git a/proxy/gradle/dependency-locks/errorprone.lockfile b/proxy/gradle/dependency-locks/errorprone.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/proxy/gradle/dependency-locks/errorprone.lockfile +++ /dev/null @@ -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 diff --git a/proxy/gradle/dependency-locks/errorproneJavac.lockfile b/proxy/gradle/dependency-locks/errorproneJavac.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/proxy/gradle/dependency-locks/errorproneJavac.lockfile +++ /dev/null @@ -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. diff --git a/proxy/gradle/dependency-locks/jacocoAgent.lockfile b/proxy/gradle/dependency-locks/jacocoAgent.lockfile deleted file mode 100644 index 837b06fc2..000000000 --- a/proxy/gradle/dependency-locks/jacocoAgent.lockfile +++ /dev/null @@ -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 diff --git a/proxy/gradle/dependency-locks/jacocoAnt.lockfile b/proxy/gradle/dependency-locks/jacocoAnt.lockfile deleted file mode 100644 index a717958c0..000000000 --- a/proxy/gradle/dependency-locks/jacocoAnt.lockfile +++ /dev/null @@ -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 diff --git a/proxy/gradle/dependency-locks/runtime.lockfile b/proxy/gradle/dependency-locks/runtime.lockfile deleted file mode 100644 index e24a1ae10..000000000 --- a/proxy/gradle/dependency-locks/runtime.lockfile +++ /dev/null @@ -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 diff --git a/proxy/gradle/dependency-locks/runtimeClasspath.lockfile b/proxy/gradle/dependency-locks/runtimeClasspath.lockfile deleted file mode 100644 index e24a1ae10..000000000 --- a/proxy/gradle/dependency-locks/runtimeClasspath.lockfile +++ /dev/null @@ -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 diff --git a/proxy/gradle/dependency-locks/testAnnotationProcessor.lockfile b/proxy/gradle/dependency-locks/testAnnotationProcessor.lockfile deleted file mode 100644 index 5c4bf3b81..000000000 --- a/proxy/gradle/dependency-locks/testAnnotationProcessor.lockfile +++ /dev/null @@ -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 diff --git a/proxy/gradle/dependency-locks/testCompile.lockfile b/proxy/gradle/dependency-locks/testCompile.lockfile deleted file mode 100644 index 7942d3c9b..000000000 --- a/proxy/gradle/dependency-locks/testCompile.lockfile +++ /dev/null @@ -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 diff --git a/proxy/gradle/dependency-locks/testCompileClasspath.lockfile b/proxy/gradle/dependency-locks/testCompileClasspath.lockfile deleted file mode 100644 index 4519d516b..000000000 --- a/proxy/gradle/dependency-locks/testCompileClasspath.lockfile +++ /dev/null @@ -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 diff --git a/proxy/gradle/dependency-locks/testCompileOnly.lockfile b/proxy/gradle/dependency-locks/testCompileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/proxy/gradle/dependency-locks/testCompileOnly.lockfile +++ /dev/null @@ -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. diff --git a/proxy/gradle/dependency-locks/testRuntime.lockfile b/proxy/gradle/dependency-locks/testRuntime.lockfile deleted file mode 100644 index 7942d3c9b..000000000 --- a/proxy/gradle/dependency-locks/testRuntime.lockfile +++ /dev/null @@ -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 diff --git a/proxy/gradle/dependency-locks/testRuntimeClasspath.lockfile b/proxy/gradle/dependency-locks/testRuntimeClasspath.lockfile deleted file mode 100644 index 7942d3c9b..000000000 --- a/proxy/gradle/dependency-locks/testRuntimeClasspath.lockfile +++ /dev/null @@ -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 diff --git a/services/backend/buildscript-gradle.lockfile b/services/backend/buildscript-gradle.lockfile new file mode 100644 index 000000000..0d156738b --- /dev/null +++ b/services/backend/buildscript-gradle.lockfile @@ -0,0 +1,4 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +empty=classpath diff --git a/services/backend/gradle.lockfile b/services/backend/gradle.lockfile new file mode 100644 index 000000000..0e70ffe1b --- /dev/null +++ b/services/backend/gradle.lockfile @@ -0,0 +1,317 @@ +# 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=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +aopalliance:aopalliance:1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +args4j:args4j:2.0.23=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.101tec:zkclient:0.10=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.beust:jcommander:1.60=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-core:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson:jackson-bom:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml:classmate:1.5.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.ben-manes.caffeine:caffeine:2.9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-api:3.2.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-transport-zerodep:3.2.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-transport:3.2.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jffi:1.3.9=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-a64asm:1.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-constants:0.10.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-enxio:0.32.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-ffi:2.2.11=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-posix:3.1.15=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-unixsocket:0.38.17=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-x86asm:1.0.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.android:annotations:4.1.1.4=default,runtimeClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-appengine:1.35.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-jackson2:1.32.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-java6:1.35.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-servlet:1.35.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client:1.35.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-common-protos:2.8.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.93.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.93.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-common-protos:2.9.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-iam-v1:1.4.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:api-common:2.2.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax-grpc:2.18.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax-httpjson:0.103.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax:2.18.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-admin-directory:directory_v1-rev118-1.25.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-cloudkms:v1-rev20220701-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-drive:v2-rev393-1.25.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-monitoring:v3-rev20220715-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-sqladmin:v1beta4-rev20220623-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-storage:v1-rev20220705-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine.tools:appengine-gcs-client:0.8.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine.tools:appengine-pipeline:0.2.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine:appengine-api-1.0-sdk:2.0.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine:appengine-remote-api:2.0.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine:appengine-testing:1.9.86=default,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-credentials:1.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-oauth2-http:1.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.service:auto-service-annotations:1.0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.value:auto-value-annotations:1.9=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.value:auto-value:1.9=default,runtimeClasspath,testRuntimeClasspath +com.google.cloud.bigdataoss:gcsio:2.2.6=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.bigdataoss:util:2.2.6=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.bigtable:bigtable-client-core:1.26.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.bigtable:bigtable-metrics-api:1.26.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.datastore:datastore-v1-proto-client:2.2.10=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.sql:jdbc-socket-factory-core:1.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.sql:postgres-socket-factory:1.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-bigquerystorage:2.12.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-bigtable:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core-grpc:2.6.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core-http:2.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core:2.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-firestore:3.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-monitoring:1.82.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-pubsub:1.116.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-pubsublite:1.5.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-secretmanager:2.3.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-spanner:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-storage:2.10.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-tasks:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:grpc-gcp:1.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.code.gson:gson:2.9.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.common.html.types:types:1.0.6=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.dagger:dagger:2.43=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.14.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.escapevelocity:escapevelocity:0.9.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flatbuffers:flatbuffers-java:1.12.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flogger:flogger-system-backend:0.7.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flogger:flogger:0.7.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flogger:google-extensions:0.7.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:failureaccess:1.0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:guava:31.1-jre=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.gwt:gwt-user:2.10.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-apache-v2:1.42.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-appengine:1.42.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-gson:1.42.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-jackson2:1.42.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-protobuf:1.41.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client:1.42.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.inject.extensions:guice-multibindings:4.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.inject:guice:4.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.j2objc:j2objc-annotations:1.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.jsinterop:jsinterop-annotations:2.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.monitoring-client:metrics:1.0.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.monitoring-client:stackdriver:1.0.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-appengine:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-java6:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-jetty:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-servlet:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java-util:3.21.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:3.21.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.re2j:re2j:1.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.template:soy:2021-02-01=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.truth:truth:1.1.3=default,runtimeClasspath,testRuntimeClasspath +com.googlecode.json-simple:json-simple:1.1.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.ibm.icu:icu4j:57.1=compileClasspath,testCompileClasspath +com.ibm.icu:icu4j:71.1=default,runtimeClasspath,testRuntimeClasspath +com.jcraft:jsch:0.1.55=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.lmax:disruptor:3.4.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.sun.istack:istack-commons-runtime:3.0.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.sun.xml.fastinfoset:FastInfoset:1.2.15=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.thoughtworks.paranamer:paranamer:2.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.zaxxer:HikariCP:3.4.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.15=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +commons-logging:commons-logging:1.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +dnsjava:dnsjava:3.5.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:common-config:5.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:common-utils:5.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:kafka-avro-serializer:5.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:kafka-schema-registry-client:5.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.dropwizard.metrics:metrics-core:3.1.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.github.classgraph:classgraph:4.8.104=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.github.java-diff-utils:java-diff-utils:4.12=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-alts:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-alts:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-api:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-auth:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-auth:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-census:1.45.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-context:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-core:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-core:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-googleapis:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-grpclb:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-grpclb:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-netty-shaded:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-netty-shaded:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-netty:1.45.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf-lite:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-services:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-services:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-stub:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-xds:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-xds:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.netty:netty-buffer:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-http2:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-http:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-socks:4.1.72.Final=default,runtimeClasspath,testRuntimeClasspath +io.netty:netty-codec:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-common:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-handler-proxy:4.1.72.Final=default,runtimeClasspath,testRuntimeClasspath +io.netty:netty-handler:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-resolver:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.46.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-tcnative-classes:2.0.46.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-transport:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-api:0.31.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-exemplar-util:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-grpc-metrics:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-grpc-util:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-http-util:0.31.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-resource-util:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-exporter-metrics-util:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-impl-core:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-impl:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-proto:0.2.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.perfmark:perfmark-api:0.25.0=default,runtimeClasspath,testRuntimeClasspath +javax.activation:activation:1.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.activation:javax.activation-api:1.2.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.annotation:javax.annotation-api:1.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.annotation:jsr250-api:1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.inject:javax.inject:1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.jdo:jdo2-api:2.3-20090302111651=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.mail:mail:1.5.0-b01=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.persistence:javax.persistence-api:2.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.servlet:servlet-api:2.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.validation:validation-api:1.0.0.GA=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.xml.bind:jaxb-api:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +jline:jline:1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +joda-time:joda-time:2.10.10=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy:1.12.9=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +net.java.dev.jna:jna:5.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.arrow:arrow-format:5.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.arrow:arrow-memory-core:5.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.arrow:arrow-vector:5.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.avro:avro:1.8.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-model-fn-execution:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-model-job-management:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-model-pipeline:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-core-construction-java:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-core-java:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-java-fn-execution:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-core:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-expansion-service:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-fn-execution:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-io-kafka:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-grpc-1_43_2:0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-guava-26_0-jre:0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-compress:1.21=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-csv:1.9.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-lang3:3.12.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.httpcomponents:httpclient:4.5.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.httpcomponents:httpcore:4.4.15=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcpg-jdk15on:1.67=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcpkix-jdk15on:1.67=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcprov-jdk15on:1.67=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.checkerframework:checker-compat-qual:2.5.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.checkerframework:checker-qual:3.22.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.codehaus.jackson:jackson-core-asl:1.9.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.codehaus.jackson:jackson-mapper-asl:1.9.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.21=default,runtimeClasspath,testRuntimeClasspath +org.conscrypt:conscrypt-openjdk-uber:2.5.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.flywaydb:flyway-core:9.0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.glassfish.jaxb:jaxb-runtime:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.glassfish.jaxb:txw2:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.gwtproject:gwt-user:2.10.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hamcrest:hamcrest:2.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hibernate.common:hibernate-commons-annotations:5.1.2.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hibernate:hibernate-core:5.6.10.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hibernate:hibernate-hikaricp:5.6.10.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jboss.logging:jboss-logging:3.4.3.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jboss:jandex:2.4.2.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jetbrains:annotations:17.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.joda:joda-money:1.0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.json:json:20200518=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jsoup:jsoup:1.15.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jvnet.staxex:stax-ex:1.8=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-analysis:9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-commons:9.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-tree:9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-util:9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm:9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.postgresql:postgresql:42.4.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.rnorth.duct-tape:duct-tape:1.0.8=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.slf4j:slf4j-api:2.0.0-alpha7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.slf4j:slf4j-jdk14:2.0.0-alpha7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-core:5.3.18=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-expression:5.3.18=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-jcl:5.3.18=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:database-commons:1.17.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:jdbc:1.17.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:postgresql:1.17.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:testcontainers:1.17.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.threeten:threetenbp:1.6.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.tukaani:xz:1.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.w3c.css:sac:1.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.xerial.snappy:snappy-java:1.1.8.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.yaml:snakeyaml:1.30=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-api:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-diagram:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-tools:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-utility:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +xerces:xmlParserAPIs:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +xpp3:xpp3:1.1.4c=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +empty=annotationProcessor,archives,providedCompile,providedRuntime,testAnnotationProcessor diff --git a/services/backend/gradle/dependency-locks/annotationProcessor.lockfile b/services/backend/gradle/dependency-locks/annotationProcessor.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/backend/gradle/dependency-locks/annotationProcessor.lockfile +++ /dev/null @@ -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. diff --git a/services/backend/gradle/dependency-locks/archives.lockfile b/services/backend/gradle/dependency-locks/archives.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/backend/gradle/dependency-locks/archives.lockfile +++ /dev/null @@ -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. diff --git a/services/backend/gradle/dependency-locks/buildscript-classpath.lockfile b/services/backend/gradle/dependency-locks/buildscript-classpath.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/backend/gradle/dependency-locks/buildscript-classpath.lockfile +++ /dev/null @@ -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. diff --git a/services/backend/gradle/dependency-locks/compile.lockfile b/services/backend/gradle/dependency-locks/compile.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/backend/gradle/dependency-locks/compile.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/backend/gradle/dependency-locks/compileClasspath.lockfile b/services/backend/gradle/dependency-locks/compileClasspath.lockfile deleted file mode 100644 index d3502e08b..000000000 --- a/services/backend/gradle/dependency-locks/compileClasspath.lockfile +++ /dev/null @@ -1,308 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.45.1 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.45.1 -io.grpc:grpc-census:1.45.1 -io.grpc:grpc-context:1.47.0 -io.grpc:grpc-core:1.45.1 -io.grpc:grpc-grpclb:1.45.1 -io.grpc:grpc-netty-shaded:1.45.1 -io.grpc:grpc-netty:1.45.1 -io.grpc:grpc-protobuf-lite:1.47.0 -io.grpc:grpc-protobuf:1.47.0 -io.grpc:grpc-services:1.45.1 -io.grpc:grpc-stub:1.47.0 -io.grpc:grpc-xds:1.45.1 -io.netty:netty-buffer:4.1.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -io.opencensus:opencensus-proto:0.2.0 -javax.activation:activation:1.1 -javax.activation:javax.activation-api:1.2.0 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/backend/gradle/dependency-locks/compileOnly.lockfile b/services/backend/gradle/dependency-locks/compileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/backend/gradle/dependency-locks/compileOnly.lockfile +++ /dev/null @@ -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. diff --git a/services/backend/gradle/dependency-locks/default.lockfile b/services/backend/gradle/dependency-locks/default.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/backend/gradle/dependency-locks/default.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/backend/gradle/dependency-locks/providedCompile.lockfile b/services/backend/gradle/dependency-locks/providedCompile.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/backend/gradle/dependency-locks/providedCompile.lockfile +++ /dev/null @@ -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. diff --git a/services/backend/gradle/dependency-locks/providedRuntime.lockfile b/services/backend/gradle/dependency-locks/providedRuntime.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/backend/gradle/dependency-locks/providedRuntime.lockfile +++ /dev/null @@ -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. diff --git a/services/backend/gradle/dependency-locks/runtime.lockfile b/services/backend/gradle/dependency-locks/runtime.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/backend/gradle/dependency-locks/runtime.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/backend/gradle/dependency-locks/runtimeClasspath.lockfile b/services/backend/gradle/dependency-locks/runtimeClasspath.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/backend/gradle/dependency-locks/runtimeClasspath.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/backend/gradle/dependency-locks/testAnnotationProcessor.lockfile b/services/backend/gradle/dependency-locks/testAnnotationProcessor.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/backend/gradle/dependency-locks/testAnnotationProcessor.lockfile +++ /dev/null @@ -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. diff --git a/services/backend/gradle/dependency-locks/testCompile.lockfile b/services/backend/gradle/dependency-locks/testCompile.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/backend/gradle/dependency-locks/testCompile.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/backend/gradle/dependency-locks/testCompileClasspath.lockfile b/services/backend/gradle/dependency-locks/testCompileClasspath.lockfile deleted file mode 100644 index d3502e08b..000000000 --- a/services/backend/gradle/dependency-locks/testCompileClasspath.lockfile +++ /dev/null @@ -1,308 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.45.1 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.45.1 -io.grpc:grpc-census:1.45.1 -io.grpc:grpc-context:1.47.0 -io.grpc:grpc-core:1.45.1 -io.grpc:grpc-grpclb:1.45.1 -io.grpc:grpc-netty-shaded:1.45.1 -io.grpc:grpc-netty:1.45.1 -io.grpc:grpc-protobuf-lite:1.47.0 -io.grpc:grpc-protobuf:1.47.0 -io.grpc:grpc-services:1.45.1 -io.grpc:grpc-stub:1.47.0 -io.grpc:grpc-xds:1.45.1 -io.netty:netty-buffer:4.1.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -io.opencensus:opencensus-proto:0.2.0 -javax.activation:activation:1.1 -javax.activation:javax.activation-api:1.2.0 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/backend/gradle/dependency-locks/testCompileOnly.lockfile b/services/backend/gradle/dependency-locks/testCompileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/backend/gradle/dependency-locks/testCompileOnly.lockfile +++ /dev/null @@ -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. diff --git a/services/backend/gradle/dependency-locks/testRuntime.lockfile b/services/backend/gradle/dependency-locks/testRuntime.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/backend/gradle/dependency-locks/testRuntime.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/backend/gradle/dependency-locks/testRuntimeClasspath.lockfile b/services/backend/gradle/dependency-locks/testRuntimeClasspath.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/backend/gradle/dependency-locks/testRuntimeClasspath.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/default/buildscript-gradle.lockfile b/services/default/buildscript-gradle.lockfile new file mode 100644 index 000000000..0d156738b --- /dev/null +++ b/services/default/buildscript-gradle.lockfile @@ -0,0 +1,4 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +empty=classpath diff --git a/services/default/gradle.lockfile b/services/default/gradle.lockfile new file mode 100644 index 000000000..0e70ffe1b --- /dev/null +++ b/services/default/gradle.lockfile @@ -0,0 +1,317 @@ +# 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=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +aopalliance:aopalliance:1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +args4j:args4j:2.0.23=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.101tec:zkclient:0.10=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.beust:jcommander:1.60=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-core:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson:jackson-bom:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml:classmate:1.5.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.ben-manes.caffeine:caffeine:2.9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-api:3.2.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-transport-zerodep:3.2.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-transport:3.2.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jffi:1.3.9=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-a64asm:1.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-constants:0.10.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-enxio:0.32.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-ffi:2.2.11=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-posix:3.1.15=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-unixsocket:0.38.17=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-x86asm:1.0.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.android:annotations:4.1.1.4=default,runtimeClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-appengine:1.35.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-jackson2:1.32.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-java6:1.35.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-servlet:1.35.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client:1.35.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-common-protos:2.8.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.93.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.93.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-common-protos:2.9.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-iam-v1:1.4.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:api-common:2.2.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax-grpc:2.18.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax-httpjson:0.103.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax:2.18.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-admin-directory:directory_v1-rev118-1.25.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-cloudkms:v1-rev20220701-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-drive:v2-rev393-1.25.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-monitoring:v3-rev20220715-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-sqladmin:v1beta4-rev20220623-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-storage:v1-rev20220705-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine.tools:appengine-gcs-client:0.8.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine.tools:appengine-pipeline:0.2.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine:appengine-api-1.0-sdk:2.0.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine:appengine-remote-api:2.0.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine:appengine-testing:1.9.86=default,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-credentials:1.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-oauth2-http:1.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.service:auto-service-annotations:1.0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.value:auto-value-annotations:1.9=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.value:auto-value:1.9=default,runtimeClasspath,testRuntimeClasspath +com.google.cloud.bigdataoss:gcsio:2.2.6=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.bigdataoss:util:2.2.6=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.bigtable:bigtable-client-core:1.26.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.bigtable:bigtable-metrics-api:1.26.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.datastore:datastore-v1-proto-client:2.2.10=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.sql:jdbc-socket-factory-core:1.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.sql:postgres-socket-factory:1.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-bigquerystorage:2.12.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-bigtable:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core-grpc:2.6.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core-http:2.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core:2.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-firestore:3.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-monitoring:1.82.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-pubsub:1.116.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-pubsublite:1.5.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-secretmanager:2.3.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-spanner:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-storage:2.10.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-tasks:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:grpc-gcp:1.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.code.gson:gson:2.9.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.common.html.types:types:1.0.6=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.dagger:dagger:2.43=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.14.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.escapevelocity:escapevelocity:0.9.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flatbuffers:flatbuffers-java:1.12.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flogger:flogger-system-backend:0.7.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flogger:flogger:0.7.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flogger:google-extensions:0.7.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:failureaccess:1.0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:guava:31.1-jre=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.gwt:gwt-user:2.10.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-apache-v2:1.42.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-appengine:1.42.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-gson:1.42.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-jackson2:1.42.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-protobuf:1.41.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client:1.42.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.inject.extensions:guice-multibindings:4.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.inject:guice:4.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.j2objc:j2objc-annotations:1.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.jsinterop:jsinterop-annotations:2.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.monitoring-client:metrics:1.0.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.monitoring-client:stackdriver:1.0.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-appengine:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-java6:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-jetty:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-servlet:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java-util:3.21.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:3.21.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.re2j:re2j:1.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.template:soy:2021-02-01=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.truth:truth:1.1.3=default,runtimeClasspath,testRuntimeClasspath +com.googlecode.json-simple:json-simple:1.1.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.ibm.icu:icu4j:57.1=compileClasspath,testCompileClasspath +com.ibm.icu:icu4j:71.1=default,runtimeClasspath,testRuntimeClasspath +com.jcraft:jsch:0.1.55=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.lmax:disruptor:3.4.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.sun.istack:istack-commons-runtime:3.0.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.sun.xml.fastinfoset:FastInfoset:1.2.15=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.thoughtworks.paranamer:paranamer:2.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.zaxxer:HikariCP:3.4.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.15=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +commons-logging:commons-logging:1.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +dnsjava:dnsjava:3.5.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:common-config:5.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:common-utils:5.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:kafka-avro-serializer:5.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:kafka-schema-registry-client:5.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.dropwizard.metrics:metrics-core:3.1.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.github.classgraph:classgraph:4.8.104=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.github.java-diff-utils:java-diff-utils:4.12=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-alts:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-alts:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-api:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-auth:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-auth:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-census:1.45.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-context:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-core:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-core:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-googleapis:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-grpclb:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-grpclb:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-netty-shaded:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-netty-shaded:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-netty:1.45.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf-lite:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-services:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-services:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-stub:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-xds:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-xds:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.netty:netty-buffer:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-http2:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-http:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-socks:4.1.72.Final=default,runtimeClasspath,testRuntimeClasspath +io.netty:netty-codec:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-common:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-handler-proxy:4.1.72.Final=default,runtimeClasspath,testRuntimeClasspath +io.netty:netty-handler:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-resolver:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.46.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-tcnative-classes:2.0.46.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-transport:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-api:0.31.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-exemplar-util:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-grpc-metrics:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-grpc-util:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-http-util:0.31.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-resource-util:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-exporter-metrics-util:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-impl-core:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-impl:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-proto:0.2.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.perfmark:perfmark-api:0.25.0=default,runtimeClasspath,testRuntimeClasspath +javax.activation:activation:1.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.activation:javax.activation-api:1.2.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.annotation:javax.annotation-api:1.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.annotation:jsr250-api:1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.inject:javax.inject:1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.jdo:jdo2-api:2.3-20090302111651=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.mail:mail:1.5.0-b01=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.persistence:javax.persistence-api:2.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.servlet:servlet-api:2.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.validation:validation-api:1.0.0.GA=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.xml.bind:jaxb-api:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +jline:jline:1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +joda-time:joda-time:2.10.10=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy:1.12.9=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +net.java.dev.jna:jna:5.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.arrow:arrow-format:5.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.arrow:arrow-memory-core:5.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.arrow:arrow-vector:5.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.avro:avro:1.8.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-model-fn-execution:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-model-job-management:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-model-pipeline:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-core-construction-java:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-core-java:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-java-fn-execution:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-core:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-expansion-service:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-fn-execution:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-io-kafka:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-grpc-1_43_2:0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-guava-26_0-jre:0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-compress:1.21=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-csv:1.9.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-lang3:3.12.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.httpcomponents:httpclient:4.5.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.httpcomponents:httpcore:4.4.15=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcpg-jdk15on:1.67=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcpkix-jdk15on:1.67=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcprov-jdk15on:1.67=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.checkerframework:checker-compat-qual:2.5.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.checkerframework:checker-qual:3.22.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.codehaus.jackson:jackson-core-asl:1.9.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.codehaus.jackson:jackson-mapper-asl:1.9.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.21=default,runtimeClasspath,testRuntimeClasspath +org.conscrypt:conscrypt-openjdk-uber:2.5.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.flywaydb:flyway-core:9.0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.glassfish.jaxb:jaxb-runtime:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.glassfish.jaxb:txw2:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.gwtproject:gwt-user:2.10.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hamcrest:hamcrest:2.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hibernate.common:hibernate-commons-annotations:5.1.2.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hibernate:hibernate-core:5.6.10.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hibernate:hibernate-hikaricp:5.6.10.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jboss.logging:jboss-logging:3.4.3.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jboss:jandex:2.4.2.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jetbrains:annotations:17.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.joda:joda-money:1.0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.json:json:20200518=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jsoup:jsoup:1.15.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jvnet.staxex:stax-ex:1.8=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-analysis:9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-commons:9.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-tree:9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-util:9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm:9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.postgresql:postgresql:42.4.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.rnorth.duct-tape:duct-tape:1.0.8=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.slf4j:slf4j-api:2.0.0-alpha7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.slf4j:slf4j-jdk14:2.0.0-alpha7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-core:5.3.18=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-expression:5.3.18=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-jcl:5.3.18=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:database-commons:1.17.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:jdbc:1.17.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:postgresql:1.17.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:testcontainers:1.17.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.threeten:threetenbp:1.6.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.tukaani:xz:1.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.w3c.css:sac:1.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.xerial.snappy:snappy-java:1.1.8.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.yaml:snakeyaml:1.30=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-api:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-diagram:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-tools:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-utility:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +xerces:xmlParserAPIs:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +xpp3:xpp3:1.1.4c=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +empty=annotationProcessor,archives,providedCompile,providedRuntime,testAnnotationProcessor diff --git a/services/default/gradle/dependency-locks/annotationProcessor.lockfile b/services/default/gradle/dependency-locks/annotationProcessor.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/default/gradle/dependency-locks/annotationProcessor.lockfile +++ /dev/null @@ -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. diff --git a/services/default/gradle/dependency-locks/archives.lockfile b/services/default/gradle/dependency-locks/archives.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/default/gradle/dependency-locks/archives.lockfile +++ /dev/null @@ -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. diff --git a/services/default/gradle/dependency-locks/buildscript-classpath.lockfile b/services/default/gradle/dependency-locks/buildscript-classpath.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/default/gradle/dependency-locks/buildscript-classpath.lockfile +++ /dev/null @@ -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. diff --git a/services/default/gradle/dependency-locks/compile.lockfile b/services/default/gradle/dependency-locks/compile.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/default/gradle/dependency-locks/compile.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/default/gradle/dependency-locks/compileClasspath.lockfile b/services/default/gradle/dependency-locks/compileClasspath.lockfile deleted file mode 100644 index d3502e08b..000000000 --- a/services/default/gradle/dependency-locks/compileClasspath.lockfile +++ /dev/null @@ -1,308 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.45.1 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.45.1 -io.grpc:grpc-census:1.45.1 -io.grpc:grpc-context:1.47.0 -io.grpc:grpc-core:1.45.1 -io.grpc:grpc-grpclb:1.45.1 -io.grpc:grpc-netty-shaded:1.45.1 -io.grpc:grpc-netty:1.45.1 -io.grpc:grpc-protobuf-lite:1.47.0 -io.grpc:grpc-protobuf:1.47.0 -io.grpc:grpc-services:1.45.1 -io.grpc:grpc-stub:1.47.0 -io.grpc:grpc-xds:1.45.1 -io.netty:netty-buffer:4.1.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -io.opencensus:opencensus-proto:0.2.0 -javax.activation:activation:1.1 -javax.activation:javax.activation-api:1.2.0 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/default/gradle/dependency-locks/compileOnly.lockfile b/services/default/gradle/dependency-locks/compileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/default/gradle/dependency-locks/compileOnly.lockfile +++ /dev/null @@ -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. diff --git a/services/default/gradle/dependency-locks/default.lockfile b/services/default/gradle/dependency-locks/default.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/default/gradle/dependency-locks/default.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/default/gradle/dependency-locks/providedCompile.lockfile b/services/default/gradle/dependency-locks/providedCompile.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/default/gradle/dependency-locks/providedCompile.lockfile +++ /dev/null @@ -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. diff --git a/services/default/gradle/dependency-locks/providedRuntime.lockfile b/services/default/gradle/dependency-locks/providedRuntime.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/default/gradle/dependency-locks/providedRuntime.lockfile +++ /dev/null @@ -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. diff --git a/services/default/gradle/dependency-locks/runtime.lockfile b/services/default/gradle/dependency-locks/runtime.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/default/gradle/dependency-locks/runtime.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/default/gradle/dependency-locks/runtimeClasspath.lockfile b/services/default/gradle/dependency-locks/runtimeClasspath.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/default/gradle/dependency-locks/runtimeClasspath.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/default/gradle/dependency-locks/testAnnotationProcessor.lockfile b/services/default/gradle/dependency-locks/testAnnotationProcessor.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/default/gradle/dependency-locks/testAnnotationProcessor.lockfile +++ /dev/null @@ -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. diff --git a/services/default/gradle/dependency-locks/testCompile.lockfile b/services/default/gradle/dependency-locks/testCompile.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/default/gradle/dependency-locks/testCompile.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/default/gradle/dependency-locks/testCompileClasspath.lockfile b/services/default/gradle/dependency-locks/testCompileClasspath.lockfile deleted file mode 100644 index d3502e08b..000000000 --- a/services/default/gradle/dependency-locks/testCompileClasspath.lockfile +++ /dev/null @@ -1,308 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.45.1 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.45.1 -io.grpc:grpc-census:1.45.1 -io.grpc:grpc-context:1.47.0 -io.grpc:grpc-core:1.45.1 -io.grpc:grpc-grpclb:1.45.1 -io.grpc:grpc-netty-shaded:1.45.1 -io.grpc:grpc-netty:1.45.1 -io.grpc:grpc-protobuf-lite:1.47.0 -io.grpc:grpc-protobuf:1.47.0 -io.grpc:grpc-services:1.45.1 -io.grpc:grpc-stub:1.47.0 -io.grpc:grpc-xds:1.45.1 -io.netty:netty-buffer:4.1.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -io.opencensus:opencensus-proto:0.2.0 -javax.activation:activation:1.1 -javax.activation:javax.activation-api:1.2.0 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/default/gradle/dependency-locks/testCompileOnly.lockfile b/services/default/gradle/dependency-locks/testCompileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/default/gradle/dependency-locks/testCompileOnly.lockfile +++ /dev/null @@ -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. diff --git a/services/default/gradle/dependency-locks/testRuntime.lockfile b/services/default/gradle/dependency-locks/testRuntime.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/default/gradle/dependency-locks/testRuntime.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/default/gradle/dependency-locks/testRuntimeClasspath.lockfile b/services/default/gradle/dependency-locks/testRuntimeClasspath.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/default/gradle/dependency-locks/testRuntimeClasspath.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/pubapi/buildscript-gradle.lockfile b/services/pubapi/buildscript-gradle.lockfile new file mode 100644 index 000000000..0d156738b --- /dev/null +++ b/services/pubapi/buildscript-gradle.lockfile @@ -0,0 +1,4 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +empty=classpath diff --git a/services/pubapi/gradle.lockfile b/services/pubapi/gradle.lockfile new file mode 100644 index 000000000..0e70ffe1b --- /dev/null +++ b/services/pubapi/gradle.lockfile @@ -0,0 +1,317 @@ +# 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=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +aopalliance:aopalliance:1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +args4j:args4j:2.0.23=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.101tec:zkclient:0.10=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.beust:jcommander:1.60=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-core:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson:jackson-bom:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml:classmate:1.5.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.ben-manes.caffeine:caffeine:2.9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-api:3.2.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-transport-zerodep:3.2.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-transport:3.2.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jffi:1.3.9=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-a64asm:1.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-constants:0.10.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-enxio:0.32.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-ffi:2.2.11=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-posix:3.1.15=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-unixsocket:0.38.17=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-x86asm:1.0.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.android:annotations:4.1.1.4=default,runtimeClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-appengine:1.35.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-jackson2:1.32.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-java6:1.35.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-servlet:1.35.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client:1.35.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-common-protos:2.8.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.93.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.93.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-common-protos:2.9.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-iam-v1:1.4.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:api-common:2.2.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax-grpc:2.18.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax-httpjson:0.103.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax:2.18.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-admin-directory:directory_v1-rev118-1.25.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-cloudkms:v1-rev20220701-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-drive:v2-rev393-1.25.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-monitoring:v3-rev20220715-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-sqladmin:v1beta4-rev20220623-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-storage:v1-rev20220705-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine.tools:appengine-gcs-client:0.8.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine.tools:appengine-pipeline:0.2.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine:appengine-api-1.0-sdk:2.0.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine:appengine-remote-api:2.0.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine:appengine-testing:1.9.86=default,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-credentials:1.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-oauth2-http:1.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.service:auto-service-annotations:1.0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.value:auto-value-annotations:1.9=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.value:auto-value:1.9=default,runtimeClasspath,testRuntimeClasspath +com.google.cloud.bigdataoss:gcsio:2.2.6=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.bigdataoss:util:2.2.6=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.bigtable:bigtable-client-core:1.26.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.bigtable:bigtable-metrics-api:1.26.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.datastore:datastore-v1-proto-client:2.2.10=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.sql:jdbc-socket-factory-core:1.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.sql:postgres-socket-factory:1.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-bigquerystorage:2.12.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-bigtable:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core-grpc:2.6.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core-http:2.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core:2.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-firestore:3.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-monitoring:1.82.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-pubsub:1.116.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-pubsublite:1.5.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-secretmanager:2.3.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-spanner:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-storage:2.10.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-tasks:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:grpc-gcp:1.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.code.gson:gson:2.9.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.common.html.types:types:1.0.6=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.dagger:dagger:2.43=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.14.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.escapevelocity:escapevelocity:0.9.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flatbuffers:flatbuffers-java:1.12.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flogger:flogger-system-backend:0.7.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flogger:flogger:0.7.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flogger:google-extensions:0.7.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:failureaccess:1.0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:guava:31.1-jre=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.gwt:gwt-user:2.10.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-apache-v2:1.42.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-appengine:1.42.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-gson:1.42.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-jackson2:1.42.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-protobuf:1.41.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client:1.42.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.inject.extensions:guice-multibindings:4.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.inject:guice:4.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.j2objc:j2objc-annotations:1.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.jsinterop:jsinterop-annotations:2.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.monitoring-client:metrics:1.0.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.monitoring-client:stackdriver:1.0.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-appengine:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-java6:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-jetty:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-servlet:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java-util:3.21.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:3.21.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.re2j:re2j:1.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.template:soy:2021-02-01=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.truth:truth:1.1.3=default,runtimeClasspath,testRuntimeClasspath +com.googlecode.json-simple:json-simple:1.1.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.ibm.icu:icu4j:57.1=compileClasspath,testCompileClasspath +com.ibm.icu:icu4j:71.1=default,runtimeClasspath,testRuntimeClasspath +com.jcraft:jsch:0.1.55=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.lmax:disruptor:3.4.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.sun.istack:istack-commons-runtime:3.0.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.sun.xml.fastinfoset:FastInfoset:1.2.15=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.thoughtworks.paranamer:paranamer:2.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.zaxxer:HikariCP:3.4.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.15=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +commons-logging:commons-logging:1.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +dnsjava:dnsjava:3.5.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:common-config:5.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:common-utils:5.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:kafka-avro-serializer:5.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:kafka-schema-registry-client:5.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.dropwizard.metrics:metrics-core:3.1.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.github.classgraph:classgraph:4.8.104=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.github.java-diff-utils:java-diff-utils:4.12=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-alts:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-alts:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-api:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-auth:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-auth:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-census:1.45.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-context:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-core:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-core:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-googleapis:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-grpclb:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-grpclb:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-netty-shaded:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-netty-shaded:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-netty:1.45.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf-lite:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-services:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-services:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-stub:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-xds:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-xds:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.netty:netty-buffer:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-http2:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-http:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-socks:4.1.72.Final=default,runtimeClasspath,testRuntimeClasspath +io.netty:netty-codec:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-common:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-handler-proxy:4.1.72.Final=default,runtimeClasspath,testRuntimeClasspath +io.netty:netty-handler:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-resolver:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.46.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-tcnative-classes:2.0.46.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-transport:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-api:0.31.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-exemplar-util:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-grpc-metrics:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-grpc-util:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-http-util:0.31.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-resource-util:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-exporter-metrics-util:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-impl-core:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-impl:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-proto:0.2.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.perfmark:perfmark-api:0.25.0=default,runtimeClasspath,testRuntimeClasspath +javax.activation:activation:1.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.activation:javax.activation-api:1.2.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.annotation:javax.annotation-api:1.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.annotation:jsr250-api:1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.inject:javax.inject:1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.jdo:jdo2-api:2.3-20090302111651=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.mail:mail:1.5.0-b01=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.persistence:javax.persistence-api:2.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.servlet:servlet-api:2.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.validation:validation-api:1.0.0.GA=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.xml.bind:jaxb-api:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +jline:jline:1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +joda-time:joda-time:2.10.10=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy:1.12.9=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +net.java.dev.jna:jna:5.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.arrow:arrow-format:5.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.arrow:arrow-memory-core:5.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.arrow:arrow-vector:5.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.avro:avro:1.8.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-model-fn-execution:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-model-job-management:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-model-pipeline:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-core-construction-java:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-core-java:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-java-fn-execution:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-core:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-expansion-service:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-fn-execution:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-io-kafka:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-grpc-1_43_2:0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-guava-26_0-jre:0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-compress:1.21=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-csv:1.9.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-lang3:3.12.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.httpcomponents:httpclient:4.5.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.httpcomponents:httpcore:4.4.15=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcpg-jdk15on:1.67=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcpkix-jdk15on:1.67=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcprov-jdk15on:1.67=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.checkerframework:checker-compat-qual:2.5.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.checkerframework:checker-qual:3.22.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.codehaus.jackson:jackson-core-asl:1.9.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.codehaus.jackson:jackson-mapper-asl:1.9.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.21=default,runtimeClasspath,testRuntimeClasspath +org.conscrypt:conscrypt-openjdk-uber:2.5.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.flywaydb:flyway-core:9.0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.glassfish.jaxb:jaxb-runtime:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.glassfish.jaxb:txw2:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.gwtproject:gwt-user:2.10.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hamcrest:hamcrest:2.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hibernate.common:hibernate-commons-annotations:5.1.2.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hibernate:hibernate-core:5.6.10.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hibernate:hibernate-hikaricp:5.6.10.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jboss.logging:jboss-logging:3.4.3.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jboss:jandex:2.4.2.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jetbrains:annotations:17.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.joda:joda-money:1.0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.json:json:20200518=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jsoup:jsoup:1.15.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jvnet.staxex:stax-ex:1.8=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-analysis:9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-commons:9.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-tree:9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-util:9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm:9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.postgresql:postgresql:42.4.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.rnorth.duct-tape:duct-tape:1.0.8=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.slf4j:slf4j-api:2.0.0-alpha7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.slf4j:slf4j-jdk14:2.0.0-alpha7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-core:5.3.18=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-expression:5.3.18=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-jcl:5.3.18=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:database-commons:1.17.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:jdbc:1.17.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:postgresql:1.17.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:testcontainers:1.17.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.threeten:threetenbp:1.6.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.tukaani:xz:1.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.w3c.css:sac:1.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.xerial.snappy:snappy-java:1.1.8.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.yaml:snakeyaml:1.30=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-api:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-diagram:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-tools:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-utility:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +xerces:xmlParserAPIs:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +xpp3:xpp3:1.1.4c=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +empty=annotationProcessor,archives,providedCompile,providedRuntime,testAnnotationProcessor diff --git a/services/pubapi/gradle/dependency-locks/annotationProcessor.lockfile b/services/pubapi/gradle/dependency-locks/annotationProcessor.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/pubapi/gradle/dependency-locks/annotationProcessor.lockfile +++ /dev/null @@ -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. diff --git a/services/pubapi/gradle/dependency-locks/archives.lockfile b/services/pubapi/gradle/dependency-locks/archives.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/pubapi/gradle/dependency-locks/archives.lockfile +++ /dev/null @@ -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. diff --git a/services/pubapi/gradle/dependency-locks/buildscript-classpath.lockfile b/services/pubapi/gradle/dependency-locks/buildscript-classpath.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/pubapi/gradle/dependency-locks/buildscript-classpath.lockfile +++ /dev/null @@ -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. diff --git a/services/pubapi/gradle/dependency-locks/compile.lockfile b/services/pubapi/gradle/dependency-locks/compile.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/pubapi/gradle/dependency-locks/compile.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/pubapi/gradle/dependency-locks/compileClasspath.lockfile b/services/pubapi/gradle/dependency-locks/compileClasspath.lockfile deleted file mode 100644 index d3502e08b..000000000 --- a/services/pubapi/gradle/dependency-locks/compileClasspath.lockfile +++ /dev/null @@ -1,308 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.45.1 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.45.1 -io.grpc:grpc-census:1.45.1 -io.grpc:grpc-context:1.47.0 -io.grpc:grpc-core:1.45.1 -io.grpc:grpc-grpclb:1.45.1 -io.grpc:grpc-netty-shaded:1.45.1 -io.grpc:grpc-netty:1.45.1 -io.grpc:grpc-protobuf-lite:1.47.0 -io.grpc:grpc-protobuf:1.47.0 -io.grpc:grpc-services:1.45.1 -io.grpc:grpc-stub:1.47.0 -io.grpc:grpc-xds:1.45.1 -io.netty:netty-buffer:4.1.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -io.opencensus:opencensus-proto:0.2.0 -javax.activation:activation:1.1 -javax.activation:javax.activation-api:1.2.0 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/pubapi/gradle/dependency-locks/compileOnly.lockfile b/services/pubapi/gradle/dependency-locks/compileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/pubapi/gradle/dependency-locks/compileOnly.lockfile +++ /dev/null @@ -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. diff --git a/services/pubapi/gradle/dependency-locks/default.lockfile b/services/pubapi/gradle/dependency-locks/default.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/pubapi/gradle/dependency-locks/default.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/pubapi/gradle/dependency-locks/providedCompile.lockfile b/services/pubapi/gradle/dependency-locks/providedCompile.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/pubapi/gradle/dependency-locks/providedCompile.lockfile +++ /dev/null @@ -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. diff --git a/services/pubapi/gradle/dependency-locks/providedRuntime.lockfile b/services/pubapi/gradle/dependency-locks/providedRuntime.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/pubapi/gradle/dependency-locks/providedRuntime.lockfile +++ /dev/null @@ -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. diff --git a/services/pubapi/gradle/dependency-locks/runtime.lockfile b/services/pubapi/gradle/dependency-locks/runtime.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/pubapi/gradle/dependency-locks/runtime.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/pubapi/gradle/dependency-locks/runtimeClasspath.lockfile b/services/pubapi/gradle/dependency-locks/runtimeClasspath.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/pubapi/gradle/dependency-locks/runtimeClasspath.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/pubapi/gradle/dependency-locks/testAnnotationProcessor.lockfile b/services/pubapi/gradle/dependency-locks/testAnnotationProcessor.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/pubapi/gradle/dependency-locks/testAnnotationProcessor.lockfile +++ /dev/null @@ -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. diff --git a/services/pubapi/gradle/dependency-locks/testCompile.lockfile b/services/pubapi/gradle/dependency-locks/testCompile.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/pubapi/gradle/dependency-locks/testCompile.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/pubapi/gradle/dependency-locks/testCompileClasspath.lockfile b/services/pubapi/gradle/dependency-locks/testCompileClasspath.lockfile deleted file mode 100644 index d3502e08b..000000000 --- a/services/pubapi/gradle/dependency-locks/testCompileClasspath.lockfile +++ /dev/null @@ -1,308 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.45.1 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.45.1 -io.grpc:grpc-census:1.45.1 -io.grpc:grpc-context:1.47.0 -io.grpc:grpc-core:1.45.1 -io.grpc:grpc-grpclb:1.45.1 -io.grpc:grpc-netty-shaded:1.45.1 -io.grpc:grpc-netty:1.45.1 -io.grpc:grpc-protobuf-lite:1.47.0 -io.grpc:grpc-protobuf:1.47.0 -io.grpc:grpc-services:1.45.1 -io.grpc:grpc-stub:1.47.0 -io.grpc:grpc-xds:1.45.1 -io.netty:netty-buffer:4.1.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -io.opencensus:opencensus-proto:0.2.0 -javax.activation:activation:1.1 -javax.activation:javax.activation-api:1.2.0 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/pubapi/gradle/dependency-locks/testCompileOnly.lockfile b/services/pubapi/gradle/dependency-locks/testCompileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/pubapi/gradle/dependency-locks/testCompileOnly.lockfile +++ /dev/null @@ -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. diff --git a/services/pubapi/gradle/dependency-locks/testRuntime.lockfile b/services/pubapi/gradle/dependency-locks/testRuntime.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/pubapi/gradle/dependency-locks/testRuntime.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/pubapi/gradle/dependency-locks/testRuntimeClasspath.lockfile b/services/pubapi/gradle/dependency-locks/testRuntimeClasspath.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/pubapi/gradle/dependency-locks/testRuntimeClasspath.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/tools/buildscript-gradle.lockfile b/services/tools/buildscript-gradle.lockfile new file mode 100644 index 000000000..0d156738b --- /dev/null +++ b/services/tools/buildscript-gradle.lockfile @@ -0,0 +1,4 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +empty=classpath diff --git a/services/tools/gradle.lockfile b/services/tools/gradle.lockfile new file mode 100644 index 000000000..0e70ffe1b --- /dev/null +++ b/services/tools/gradle.lockfile @@ -0,0 +1,317 @@ +# 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=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +aopalliance:aopalliance:1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +args4j:args4j:2.0.23=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.101tec:zkclient:0.10=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.beust:jcommander:1.60=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-core:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson:jackson-bom:2.13.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml:classmate:1.5.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.ben-manes.caffeine:caffeine:2.9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-api:3.2.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-transport-zerodep:3.2.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-transport:3.2.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jffi:1.3.9=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-a64asm:1.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-constants:0.10.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-enxio:0.32.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-ffi:2.2.11=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-posix:3.1.15=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-unixsocket:0.38.17=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-x86asm:1.0.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.android:annotations:4.1.1.4=default,runtimeClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-appengine:1.35.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-jackson2:1.32.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-java6:1.35.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-servlet:1.35.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client:1.35.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-common-protos:2.8.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.93.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.93.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-common-protos:2.9.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-iam-v1:1.4.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:api-common:2.2.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax-grpc:2.18.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax-httpjson:0.103.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax:2.18.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-admin-directory:directory_v1-rev118-1.25.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-cloudkms:v1-rev20220701-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-drive:v2-rev393-1.25.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-monitoring:v3-rev20220715-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-sqladmin:v1beta4-rev20220623-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-storage:v1-rev20220705-1.32.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine.tools:appengine-gcs-client:0.8.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine.tools:appengine-pipeline:0.2.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine:appengine-api-1.0-sdk:2.0.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine:appengine-remote-api:2.0.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.appengine:appengine-testing:1.9.86=default,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-credentials:1.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-oauth2-http:1.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.service:auto-service-annotations:1.0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.value:auto-value-annotations:1.9=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.value:auto-value:1.9=default,runtimeClasspath,testRuntimeClasspath +com.google.cloud.bigdataoss:gcsio:2.2.6=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.bigdataoss:util:2.2.6=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.bigtable:bigtable-client-core:1.26.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.bigtable:bigtable-metrics-api:1.26.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.datastore:datastore-v1-proto-client:2.2.10=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.sql:jdbc-socket-factory-core:1.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.sql:postgres-socket-factory:1.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-bigquerystorage:2.12.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-bigtable:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core-grpc:2.6.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core-http:2.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core:2.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-firestore:3.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-monitoring:1.82.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-pubsub:1.116.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-pubsublite:1.5.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-secretmanager:2.3.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-spanner:6.23.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-storage:2.10.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-tasks:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:grpc-gcp:1.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.code.findbugs:jsr305:3.0.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.code.gson:gson:2.9.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.common.html.types:types:1.0.6=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.dagger:dagger:2.43=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.14.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.escapevelocity:escapevelocity:0.9.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flatbuffers:flatbuffers-java:1.12.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flogger:flogger-system-backend:0.7.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flogger:flogger:0.7.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.flogger:google-extensions:0.7.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:failureaccess:1.0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:guava:31.1-jre=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.gwt:gwt-user:2.10.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-apache-v2:1.42.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-appengine:1.42.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-gson:1.42.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-jackson2:1.42.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-protobuf:1.41.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client:1.42.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.inject.extensions:guice-multibindings:4.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.inject:guice:4.1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.j2objc:j2objc-annotations:1.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.jsinterop:jsinterop-annotations:2.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.monitoring-client:metrics:1.0.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.monitoring-client:stackdriver:1.0.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-appengine:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-java6:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-jetty:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client-servlet:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.oauth-client:google-oauth-client:1.34.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java-util:3.21.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:3.21.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.re2j:re2j:1.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.template:soy:2021-02-01=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.truth:truth:1.1.3=default,runtimeClasspath,testRuntimeClasspath +com.googlecode.json-simple:json-simple:1.1.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.ibm.icu:icu4j:57.1=compileClasspath,testCompileClasspath +com.ibm.icu:icu4j:71.1=default,runtimeClasspath,testRuntimeClasspath +com.jcraft:jsch:0.1.55=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.lmax:disruptor:3.4.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.sun.istack:istack-commons-runtime:3.0.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.sun.xml.fastinfoset:FastInfoset:1.2.15=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.thoughtworks.paranamer:paranamer:2.7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.zaxxer:HikariCP:3.4.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.15=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +commons-logging:commons-logging:1.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +dnsjava:dnsjava:3.5.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:common-config:5.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:common-utils:5.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:kafka-avro-serializer:5.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.confluent:kafka-schema-registry-client:5.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.dropwizard.metrics:metrics-core:3.1.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.github.classgraph:classgraph:4.8.104=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.github.java-diff-utils:java-diff-utils:4.12=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-alts:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-alts:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-api:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-auth:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-auth:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-census:1.45.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-context:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-core:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-core:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-googleapis:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-grpclb:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-grpclb:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-netty-shaded:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-netty-shaded:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-netty:1.45.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf-lite:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-services:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-services:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-stub:1.47.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-xds:1.45.1=compileClasspath,testCompileClasspath +io.grpc:grpc-xds:1.47.0=default,runtimeClasspath,testRuntimeClasspath +io.netty:netty-buffer:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-http2:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-http:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-socks:4.1.72.Final=default,runtimeClasspath,testRuntimeClasspath +io.netty:netty-codec:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-common:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-handler-proxy:4.1.72.Final=default,runtimeClasspath,testRuntimeClasspath +io.netty:netty-handler:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-resolver:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.46.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-tcnative-classes:2.0.46.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-transport:4.1.72.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-api:0.31.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-exemplar-util:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-grpc-metrics:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-grpc-util:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-http-util:0.31.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-contrib-resource-util:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-exporter-metrics-util:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-impl-core:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-impl:0.31.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opencensus:opencensus-proto:0.2.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.perfmark:perfmark-api:0.25.0=default,runtimeClasspath,testRuntimeClasspath +javax.activation:activation:1.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.activation:javax.activation-api:1.2.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.annotation:javax.annotation-api:1.3.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.annotation:jsr250-api:1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.inject:javax.inject:1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.jdo:jdo2-api:2.3-20090302111651=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.mail:mail:1.5.0-b01=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.persistence:javax.persistence-api:2.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.servlet:servlet-api:2.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.validation:validation-api:1.0.0.GA=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.xml.bind:jaxb-api:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +jline:jline:1.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +joda-time:joda-time:2.10.10=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy:1.12.9=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +net.java.dev.jna:jna:5.8.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.arrow:arrow-format:5.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.arrow:arrow-memory-core:5.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.arrow:arrow-vector:5.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.avro:avro:1.8.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-model-fn-execution:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-model-job-management:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-model-pipeline:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-core-construction-java:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-core-java:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-java-fn-execution:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-core:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-expansion-service:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-fn-execution:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-io-kafka:2.40.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-grpc-1_43_2:0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-guava-26_0-jre:0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-compress:1.21=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-csv:1.9.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-lang3:3.12.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.httpcomponents:httpclient:4.5.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.httpcomponents:httpcore:4.4.15=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcpg-jdk15on:1.67=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcpkix-jdk15on:1.67=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcprov-jdk15on:1.67=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.checkerframework:checker-compat-qual:2.5.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.checkerframework:checker-qual:3.22.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.codehaus.jackson:jackson-core-asl:1.9.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.codehaus.jackson:jackson-mapper-asl:1.9.13=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.21=default,runtimeClasspath,testRuntimeClasspath +org.conscrypt:conscrypt-openjdk-uber:2.5.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.flywaydb:flyway-core:9.0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.glassfish.jaxb:jaxb-runtime:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.glassfish.jaxb:txw2:2.3.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.gwtproject:gwt-user:2.10.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hamcrest:hamcrest:2.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hibernate.common:hibernate-commons-annotations:5.1.2.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hibernate:hibernate-core:5.6.10.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hibernate:hibernate-hikaricp:5.6.10.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jboss.logging:jboss-logging:3.4.3.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jboss:jandex:2.4.2.Final=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jetbrains:annotations:17.0.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.joda:joda-money:1.0.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.json:json:20200518=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jsoup:jsoup:1.15.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jvnet.staxex:stax-ex:1.8=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-analysis:9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-commons:9.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-tree:9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm-util:9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm:9.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.postgresql:postgresql:42.4.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.rnorth.duct-tape:duct-tape:1.0.8=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.slf4j:slf4j-api:2.0.0-alpha7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.slf4j:slf4j-jdk14:2.0.0-alpha7=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-core:5.3.18=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-expression:5.3.18=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.springframework:spring-jcl:5.3.18=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:database-commons:1.17.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:jdbc:1.17.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:postgresql:1.17.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:testcontainers:1.17.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.threeten:threetenbp:1.6.0=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.tukaani:xz:1.5=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.w3c.css:sac:1.3=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.xerial.snappy:snappy-java:1.1.8.4=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.yaml:snakeyaml:1.30=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-api:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-diagram:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-tools:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-utility:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler:16.10.1=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +xerces:xmlParserAPIs:2.6.2=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +xpp3:xpp3:1.1.4c=compileClasspath,default,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +empty=annotationProcessor,archives,providedCompile,providedRuntime,testAnnotationProcessor diff --git a/services/tools/gradle/dependency-locks/annotationProcessor.lockfile b/services/tools/gradle/dependency-locks/annotationProcessor.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/tools/gradle/dependency-locks/annotationProcessor.lockfile +++ /dev/null @@ -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. diff --git a/services/tools/gradle/dependency-locks/archives.lockfile b/services/tools/gradle/dependency-locks/archives.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/tools/gradle/dependency-locks/archives.lockfile +++ /dev/null @@ -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. diff --git a/services/tools/gradle/dependency-locks/buildscript-classpath.lockfile b/services/tools/gradle/dependency-locks/buildscript-classpath.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/tools/gradle/dependency-locks/buildscript-classpath.lockfile +++ /dev/null @@ -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. diff --git a/services/tools/gradle/dependency-locks/compile.lockfile b/services/tools/gradle/dependency-locks/compile.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/tools/gradle/dependency-locks/compile.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/tools/gradle/dependency-locks/compileClasspath.lockfile b/services/tools/gradle/dependency-locks/compileClasspath.lockfile deleted file mode 100644 index d3502e08b..000000000 --- a/services/tools/gradle/dependency-locks/compileClasspath.lockfile +++ /dev/null @@ -1,308 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.45.1 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.45.1 -io.grpc:grpc-census:1.45.1 -io.grpc:grpc-context:1.47.0 -io.grpc:grpc-core:1.45.1 -io.grpc:grpc-grpclb:1.45.1 -io.grpc:grpc-netty-shaded:1.45.1 -io.grpc:grpc-netty:1.45.1 -io.grpc:grpc-protobuf-lite:1.47.0 -io.grpc:grpc-protobuf:1.47.0 -io.grpc:grpc-services:1.45.1 -io.grpc:grpc-stub:1.47.0 -io.grpc:grpc-xds:1.45.1 -io.netty:netty-buffer:4.1.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -io.opencensus:opencensus-proto:0.2.0 -javax.activation:activation:1.1 -javax.activation:javax.activation-api:1.2.0 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/tools/gradle/dependency-locks/compileOnly.lockfile b/services/tools/gradle/dependency-locks/compileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/tools/gradle/dependency-locks/compileOnly.lockfile +++ /dev/null @@ -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. diff --git a/services/tools/gradle/dependency-locks/default.lockfile b/services/tools/gradle/dependency-locks/default.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/tools/gradle/dependency-locks/default.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/tools/gradle/dependency-locks/providedCompile.lockfile b/services/tools/gradle/dependency-locks/providedCompile.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/tools/gradle/dependency-locks/providedCompile.lockfile +++ /dev/null @@ -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. diff --git a/services/tools/gradle/dependency-locks/providedRuntime.lockfile b/services/tools/gradle/dependency-locks/providedRuntime.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/tools/gradle/dependency-locks/providedRuntime.lockfile +++ /dev/null @@ -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. diff --git a/services/tools/gradle/dependency-locks/runtime.lockfile b/services/tools/gradle/dependency-locks/runtime.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/tools/gradle/dependency-locks/runtime.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/tools/gradle/dependency-locks/runtimeClasspath.lockfile b/services/tools/gradle/dependency-locks/runtimeClasspath.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/tools/gradle/dependency-locks/runtimeClasspath.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/tools/gradle/dependency-locks/testAnnotationProcessor.lockfile b/services/tools/gradle/dependency-locks/testAnnotationProcessor.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/tools/gradle/dependency-locks/testAnnotationProcessor.lockfile +++ /dev/null @@ -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. diff --git a/services/tools/gradle/dependency-locks/testCompile.lockfile b/services/tools/gradle/dependency-locks/testCompile.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/tools/gradle/dependency-locks/testCompile.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/tools/gradle/dependency-locks/testCompileClasspath.lockfile b/services/tools/gradle/dependency-locks/testCompileClasspath.lockfile deleted file mode 100644 index d3502e08b..000000000 --- a/services/tools/gradle/dependency-locks/testCompileClasspath.lockfile +++ /dev/null @@ -1,308 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.45.1 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.45.1 -io.grpc:grpc-census:1.45.1 -io.grpc:grpc-context:1.47.0 -io.grpc:grpc-core:1.45.1 -io.grpc:grpc-grpclb:1.45.1 -io.grpc:grpc-netty-shaded:1.45.1 -io.grpc:grpc-netty:1.45.1 -io.grpc:grpc-protobuf-lite:1.47.0 -io.grpc:grpc-protobuf:1.47.0 -io.grpc:grpc-services:1.45.1 -io.grpc:grpc-stub:1.47.0 -io.grpc:grpc-xds:1.45.1 -io.netty:netty-buffer:4.1.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -io.opencensus:opencensus-proto:0.2.0 -javax.activation:activation:1.1 -javax.activation:javax.activation-api:1.2.0 -javax.annotation:javax.annotation-api:1.3.2 -javax.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/tools/gradle/dependency-locks/testCompileOnly.lockfile b/services/tools/gradle/dependency-locks/testCompileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/services/tools/gradle/dependency-locks/testCompileOnly.lockfile +++ /dev/null @@ -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. diff --git a/services/tools/gradle/dependency-locks/testRuntime.lockfile b/services/tools/gradle/dependency-locks/testRuntime.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/tools/gradle/dependency-locks/testRuntime.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/services/tools/gradle/dependency-locks/testRuntimeClasspath.lockfile b/services/tools/gradle/dependency-locks/testRuntimeClasspath.lockfile deleted file mode 100644 index 2b453bf72..000000000 --- a/services/tools/gradle/dependency-locks/testRuntimeClasspath.lockfile +++ /dev/null @@ -1,318 +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 -aopalliance:aopalliance:1.0 -args4j:args4j:2.0.23 -com.101tec:zkclient:0.10 -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.core:jackson-databind:2.13.3 -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.3 -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3 -com.fasterxml.jackson:jackson-bom:2.13.3 -com.fasterxml:classmate:1.5.1 -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.github.jnr:jffi:1.3.9 -com.github.jnr:jnr-a64asm:1.0.0 -com.github.jnr:jnr-constants:0.10.3 -com.github.jnr:jnr-enxio:0.32.13 -com.github.jnr:jnr-ffi:2.2.11 -com.github.jnr:jnr-posix:3.1.15 -com.github.jnr:jnr-unixsocket:0.38.17 -com.github.jnr:jnr-x86asm:1.0.2 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client-appengine:1.35.2 -com.google.api-client:google-api-client-jackson2:1.32.2 -com.google.api-client:google-api-client-java6:1.35.2 -com.google.api-client:google-api-client-servlet:1.35.2 -com.google.api-client:google-api-client:1.35.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:grpc-google-cloud-bigtable-admin-v2:1.27.1 -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:grpc-google-cloud-storage-v2:2.2.2-alpha -com.google.api.grpc:grpc-google-common-protos:2.8.3 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:2.12.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.136.2 -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.136.2 -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.6.2 -com.google.api.grpc:proto-google-cloud-datastore-v1:0.93.10 -com.google.api.grpc:proto-google-cloud-firestore-v1:3.1.0 -com.google.api.grpc:proto-google-cloud-monitoring-v3:1.64.0 -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.98.4 -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.5.4 -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.3.0 -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.3.0 -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-spanner-v1:6.23.3 -com.google.api.grpc:proto-google-cloud-storage-v2:2.2.2-alpha -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-admin-directory:directory_v1-rev118-1.25.0 -com.google.apis:google-api-services-appengine:v1-rev20220612-1.32.1 -com.google.apis:google-api-services-bigquery:v2-rev20211129-1.32.1 -com.google.apis:google-api-services-clouddebugger:v2-rev20210813-1.32.1 -com.google.apis:google-api-services-cloudkms:v1-rev20220617-1.32.1 -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20211017-1.32.1 -com.google.apis:google-api-services-dataflow:v1b3-rev20210818-1.32.1 -com.google.apis:google-api-services-dns:v2beta1-rev99-1.25.0 -com.google.apis:google-api-services-drive:v2-rev393-1.25.0 -com.google.apis:google-api-services-groupssettings:v1-rev20210624-1.32.1 -com.google.apis:google-api-services-healthcare:v1-rev20211016-1.32.1 -com.google.apis:google-api-services-iamcredentials:v1-rev20210326-1.32.1 -com.google.apis:google-api-services-monitoring:v3-rev20220626-1.32.1 -com.google.apis:google-api-services-pubsub:v1-rev20211130-1.32.1 -com.google.apis:google-api-services-sheets:v4-rev20220620-1.32.1 -com.google.apis:google-api-services-sqladmin:v1beta4-rev20220513-1.32.1 -com.google.apis:google-api-services-storage:v1-rev20220608-1.32.1 -com.google.appengine.tools:appengine-gcs-client:0.8.1 -com.google.appengine.tools:appengine-pipeline:0.2.13 -com.google.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-remote-api:2.0.5 -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.service:auto-service-annotations:1.0.1 -com.google.auto.value:auto-value-annotations:1.9 -com.google.auto.value:auto-value:1.9 -com.google.cloud.bigdataoss:gcsio:2.2.6 -com.google.cloud.bigdataoss:util:2.2.6 -com.google.cloud.bigtable:bigtable-client-core:1.26.3 -com.google.cloud.bigtable:bigtable-metrics-api:1.26.3 -com.google.cloud.datastore:datastore-v1-proto-client:2.2.10 -com.google.cloud.sql:jdbc-socket-factory-core:1.6.1 -com.google.cloud.sql:postgres-socket-factory:1.6.1 -com.google.cloud:google-cloud-bigquerystorage:2.12.2 -com.google.cloud:google-cloud-bigtable:2.6.2 -com.google.cloud:google-cloud-core-grpc:2.6.0 -com.google.cloud:google-cloud-core-http:2.8.0 -com.google.cloud:google-cloud-core:2.8.0 -com.google.cloud:google-cloud-firestore:3.1.0 -com.google.cloud:google-cloud-monitoring:1.82.0 -com.google.cloud:google-cloud-pubsub:1.116.4 -com.google.cloud:google-cloud-pubsublite:1.5.4 -com.google.cloud:google-cloud-secretmanager:2.3.0 -com.google.cloud:google-cloud-spanner:6.23.3 -com.google.cloud:google-cloud-storage:2.9.2 -com.google.cloud:google-cloud-tasks:2.3.0 -com.google.cloud:grpc-gcp:1.1.0 -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.1.0 -com.google.code.findbugs:jsr305:3.0.2 -com.google.code.gson:gson:2.9.0 -com.google.common.html.types:types:1.0.6 -com.google.dagger:dagger:2.42 -com.google.errorprone:error_prone_annotations:2.14.0 -com.google.escapevelocity:escapevelocity:0.9.1 -com.google.flatbuffers:flatbuffers-java:1.12.0 -com.google.flogger:flogger-system-backend:0.7.4 -com.google.flogger:flogger:0.7.4 -com.google.flogger:google-extensions: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.gwt:gwt-user:2.10.0 -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-protobuf:1.41.7 -com.google.http-client:google-http-client:1.42.0 -com.google.inject.extensions:guice-multibindings:4.1.0 -com.google.inject:guice:4.1.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.jsinterop:jsinterop-annotations:2.0.0 -com.google.monitoring-client:metrics:1.0.7 -com.google.monitoring-client:stackdriver:1.0.7 -com.google.oauth-client:google-oauth-client-appengine:1.34.1 -com.google.oauth-client:google-oauth-client-java6:1.34.1 -com.google.oauth-client:google-oauth-client-jetty:1.34.1 -com.google.oauth-client:google-oauth-client-servlet:1.34.1 -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.template:soy:2021-02-01 -com.googlecode.json-simple:json-simple:1.1.1 -com.ibm.icu:icu4j:71.1 -com.jcraft:jsch:0.1.55 -com.lmax:disruptor:3.4.2 -com.sun.istack:istack-commons-runtime:3.0.7 -com.sun.xml.fastinfoset:FastInfoset:1.2.15 -com.thoughtworks.paranamer:paranamer:2.7 -com.zaxxer:HikariCP:3.4.5 -commons-codec:commons-codec:1.15 -commons-logging:commons-logging:1.2 -dnsjava:dnsjava:3.5.1 -guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0 -guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86_64:4.6.0 -guru.nidi.com.kitfox:svgSalamander:1.1.3 -guru.nidi:graphviz-java-all-j2v8:0.18.1 -guru.nidi:graphviz-java:0.18.1 -io.confluent:common-config:5.3.2 -io.confluent:common-utils:5.3.2 -io.confluent:kafka-avro-serializer:5.3.2 -io.confluent:kafka-schema-registry-client:5.3.2 -io.dropwizard.metrics:metrics-core:3.1.2 -io.github.classgraph:classgraph:4.8.104 -io.grpc:grpc-alts:1.47.0 -io.grpc:grpc-api:1.47.0 -io.grpc:grpc-auth:1.47.0 -io.grpc:grpc-census:1.45.1 -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-netty:1.45.1 -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.72.Final -io.netty:netty-codec-http2:4.1.72.Final -io.netty:netty-codec-http:4.1.72.Final -io.netty:netty-codec-socks:4.1.72.Final -io.netty:netty-codec:4.1.72.Final -io.netty:netty-common:4.1.72.Final -io.netty:netty-handler-proxy:4.1.72.Final -io.netty:netty-handler:4.1.72.Final -io.netty:netty-resolver:4.1.72.Final -io.netty:netty-tcnative-boringssl-static:2.0.46.Final -io.netty:netty-tcnative-classes:2.0.46.Final -io.netty:netty-transport:4.1.72.Final -io.opencensus:opencensus-api:0.31.1 -io.opencensus:opencensus-contrib-exemplar-util:0.31.0 -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0 -io.opencensus:opencensus-contrib-grpc-util:0.31.0 -io.opencensus:opencensus-contrib-http-util:0.31.1 -io.opencensus:opencensus-contrib-resource-util:0.31.0 -io.opencensus:opencensus-exporter-metrics-util:0.31.0 -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0 -io.opencensus:opencensus-impl-core:0.31.0 -io.opencensus:opencensus-impl:0.31.0 -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.annotation:jsr250-api:1.0 -javax.inject:javax.inject:1 -javax.jdo:jdo2-api:2.3-20090302111651 -javax.mail:mail:1.5.0-b01 -javax.persistence:javax.persistence-api:2.2 -javax.servlet:servlet-api:2.5 -javax.validation:validation-api:1.0.0.GA -javax.xml.bind:jaxb-api:2.3.1 -jline:jline:1.0 -joda-time:joda-time:2.10.10 -net.arnx:nashorn-promise:0.1.1 -net.bytebuddy:byte-buddy:1.12.9 -net.java.dev.jna:jna:5.8.0 -org.apache.arrow:arrow-format:5.0.0 -org.apache.arrow:arrow-memory-core:5.0.0 -org.apache.arrow:arrow-vector:5.0.0 -org.apache.avro:avro:1.8.2 -org.apache.beam:beam-model-fn-execution:2.40.0 -org.apache.beam:beam-model-job-management:2.40.0 -org.apache.beam:beam-model-pipeline:2.40.0 -org.apache.beam:beam-runners-core-construction-java:2.40.0 -org.apache.beam:beam-runners-core-java:2.40.0 -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.40.0 -org.apache.beam:beam-runners-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-core:2.40.0 -org.apache.beam:beam-sdks-java-expansion-service:2.40.0 -org.apache.beam:beam-sdks-java-extensions-arrow:2.40.0 -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.40.0 -org.apache.beam:beam-sdks-java-extensions-protobuf:2.40.0 -org.apache.beam:beam-sdks-java-fn-execution:2.40.0 -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.40.0 -org.apache.beam:beam-sdks-java-io-kafka:2.40.0 -org.apache.beam:beam-vendor-bytebuddy-1_11_0:0.1 -org.apache.beam:beam-vendor-grpc-1_43_2:0.1 -org.apache.beam:beam-vendor-guava-26_0-jre:0.1 -org.apache.commons:commons-compress:1.21 -org.apache.commons:commons-csv:1.9.0 -org.apache.commons:commons-exec:1.3 -org.apache.commons:commons-lang3:3.12.0 -org.apache.httpcomponents:httpclient:4.5.13 -org.apache.httpcomponents:httpcore:4.4.15 -org.bouncycastle:bcpg-jdk15on:1.67 -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.jackson:jackson-core-asl:1.9.13 -org.codehaus.jackson:jackson-mapper-asl:1.9.13 -org.codehaus.mojo:animal-sniffer-annotations:1.21 -org.conscrypt:conscrypt-openjdk-uber:2.5.1 -org.flywaydb:flyway-core:8.5.13 -org.glassfish.jaxb:jaxb-runtime:2.3.1 -org.glassfish.jaxb:txw2:2.3.1 -org.gwtproject:gwt-user:2.10.0 -org.hamcrest:hamcrest:2.1 -org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -org.hibernate:hibernate-core:5.6.10.Final -org.hibernate:hibernate-hikaricp:5.6.10.Final -org.jboss.logging:jboss-logging:3.4.3.Final -org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -org.jboss:jandex:2.4.2.Final -org.jetbrains:annotations:17.0.0 -org.joda:joda-money:1.0.1 -org.json:json:20200518 -org.jsoup:jsoup:1.15.2 -org.jvnet.staxex:stax-ex:1.8 -org.ow2.asm:asm-analysis:9.3 -org.ow2.asm:asm-commons:9.2 -org.ow2.asm:asm-tree:9.3 -org.ow2.asm:asm-util:9.3 -org.ow2.asm:asm:9.3 -org.postgresql:postgresql:42.4.0 -org.rnorth.duct-tape:duct-tape:1.0.8 -org.slf4j:jcl-over-slf4j:1.7.30 -org.slf4j:jul-to-slf4j:1.7.30 -org.slf4j:slf4j-api:2.0.0-alpha7 -org.slf4j:slf4j-jdk14:2.0.0-alpha7 -org.springframework:spring-core:5.3.18 -org.springframework:spring-expression:5.3.18 -org.springframework:spring-jcl:5.3.18 -org.testcontainers:database-commons:1.17.3 -org.testcontainers:jdbc:1.17.3 -org.testcontainers:postgresql:1.17.3 -org.testcontainers:testcontainers:1.17.3 -org.threeten:threetenbp:1.6.0 -org.tukaani:xz:1.5 -org.w3c.css:sac:1.3 -org.webjars.npm:viz.js-graphviz-java:2.1.3 -org.xerial.snappy:snappy-java:1.1.8.4 -org.yaml:snakeyaml:1.30 -us.fatehi:schemacrawler-api:16.10.1 -us.fatehi:schemacrawler-diagram:16.10.1 -us.fatehi:schemacrawler-tools:16.10.1 -us.fatehi:schemacrawler-utility:16.10.1 -us.fatehi:schemacrawler:16.10.1 -xerces:xmlParserAPIs:2.6.2 -xpp3:xpp3:1.1.4c diff --git a/settings.gradle b/settings.gradle index f59e8d0c7..0a2254e03 100644 --- a/settings.gradle +++ b/settings.gradle @@ -12,12 +12,16 @@ // See the License for the specific language governing permissions and // limitations under the License. +// Alias this since it collides with the closure variable name. +def allowInsecure = allowInsecureProtocol + if (!pluginsUrl.isEmpty()) { println "Plugins: Using repo $pluginsUrl..." pluginManagement { repositories { maven { url pluginsUrl + allowInsecureProtocol = allowInsecure == "true" } } } diff --git a/util/build.gradle b/util/build.gradle index 3fcbfaa2e..7c1ff3cf4 100644 --- a/util/build.gradle +++ b/util/build.gradle @@ -14,52 +14,52 @@ dependencies { def deps = rootProject.dependencyMap - compile deps['com.google.api-client:google-api-client'] - compile deps['com.google.api.grpc:proto-google-cloud-tasks-v2'] - compile deps['com.google.api:gax'] - compile deps['com.google.appengine:appengine-api-1.0-sdk'] - compile deps['com.google.appengine:appengine-testing'] - 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-tasks'] - compile deps['com.google.code.findbugs:jsr305'] - compile deps['com.google.dagger:dagger'] - compile deps['com.google.errorprone:error_prone_annotations'] - 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.protobuf:protobuf-java'] - compile deps['com.google.protobuf:protobuf-java-util'] - compile deps['com.google.re2j:re2j'] - compile deps['com.ibm.icu:icu4j'] - compile deps['commons-codec:commons-codec'] - compile deps['javax.inject:javax.inject'] - compile deps['javax.mail:mail'] - compile deps['javax.xml.bind:jaxb-api'] - compile deps['joda-time:joda-time'] - compile deps['org.bouncycastle:bcpkix-jdk15on'] - compile deps['org.bouncycastle:bcprov-jdk15on'] - compile deps['org.checkerframework:checker-compat-qual'] - compile deps['org.yaml:snakeyaml'] - compile project(':common') - runtime deps['com.google.auto.value:auto-value'] - testCompile deps['com.google.appengine:appengine-api-stubs'] - testCompile deps['com.google.guava:guava-testlib'] - 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.platform:junit-platform-runner'] - testCompile deps['org.junit.platform:junit-platform-suite-api'] - testCompile deps['org.hamcrest:hamcrest'] - testCompile deps['org.hamcrest:hamcrest-core'] - testCompile deps['org.mockito:mockito-core'] - testCompile deps['org.mockito:mockito-junit-jupiter'] - testCompile deps['org.testcontainers:junit-jupiter'] - testCompile files("${rootDir}/third_party/objectify/v4_1/objectify-4.1.3.jar") - testCompile project(path: ':common', configuration: 'testing') - testRuntime deps['com.google.flogger:flogger-system-backend'] + implementation deps['com.google.api-client:google-api-client'] + implementation deps['com.google.api.grpc:proto-google-cloud-tasks-v2'] + implementation deps['com.google.api:gax'] + implementation deps['com.google.appengine:appengine-api-1.0-sdk'] + implementation deps['com.google.appengine:appengine-testing'] + 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-tasks'] + implementation deps['com.google.code.findbugs:jsr305'] + implementation deps['com.google.dagger:dagger'] + implementation deps['com.google.errorprone:error_prone_annotations'] + 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.protobuf:protobuf-java'] + implementation deps['com.google.protobuf:protobuf-java-util'] + implementation deps['com.google.re2j:re2j'] + implementation deps['com.ibm.icu:icu4j'] + implementation deps['commons-codec:commons-codec'] + implementation deps['javax.inject:javax.inject'] + implementation deps['javax.mail:mail'] + implementation deps['javax.xml.bind:jaxb-api'] + implementation deps['joda-time:joda-time'] + implementation deps['org.bouncycastle:bcpkix-jdk15on'] + implementation deps['org.bouncycastle:bcprov-jdk15on'] + implementation deps['org.checkerframework:checker-compat-qual'] + implementation deps['org.yaml:snakeyaml'] + implementation project(':common') + runtimeOnly deps['com.google.auto.value:auto-value'] + testImplementation deps['com.google.appengine:appengine-api-stubs'] + testImplementation deps['com.google.guava:guava-testlib'] + 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.platform:junit-platform-runner'] + testImplementation deps['org.junit.platform:junit-platform-suite-api'] + testImplementation deps['org.hamcrest:hamcrest'] + testImplementation deps['org.hamcrest:hamcrest-core'] + testImplementation deps['org.mockito:mockito-core'] + testImplementation deps['org.mockito:mockito-junit-jupiter'] + testImplementation deps['org.testcontainers:junit-jupiter'] + testImplementation files("${rootDir}/third_party/objectify/v4_1/objectify-4.1.3.jar") + testImplementation project(path: ':common', configuration: 'testing') + testRuntimeOnly deps['com.google.flogger:flogger-system-backend'] annotationProcessor deps['com.google.auto.value:auto-value'] annotationProcessor deps['com.google.dagger:dagger-compiler'] testAnnotationProcessor deps['com.google.auto.value:auto-value'] diff --git a/util/buildscript-gradle.lockfile b/util/buildscript-gradle.lockfile new file mode 100644 index 000000000..0d156738b --- /dev/null +++ b/util/buildscript-gradle.lockfile @@ -0,0 +1,4 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +empty=classpath diff --git a/util/gradle.lockfile b/util/gradle.lockfile new file mode 100644 index 000000000..6a2302288 --- /dev/null +++ b/util/gradle.lockfile @@ -0,0 +1,175 @@ +# 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.fasterxml.jackson.core:jackson-annotations:2.10.3=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.2=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2:2.3.1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.93.1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.93.1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,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=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,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.appengine:appengine-api-1.0-sdk:1.9.86=compileClasspath,default,deploy_jar,runtimeClasspath +com.google.appengine:appengine-api-1.0-sdk:2.0.5=testCompileClasspath,testRuntimeClasspath +com.google.appengine:appengine-api-stubs:2.0.5=testCompileClasspath,testRuntimeClasspath +com.google.appengine:appengine-testing:1.9.86=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-credentials:1.7.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-credentials:1.8.1=compileClasspath,testCompileClasspath +com.google.auth:google-auth-library-oauth2-http:1.7.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-oauth2-http:1.8.1=compileClasspath,testCompileClasspath +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-tasks:2.3.1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,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.14.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,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=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-testlib:31.1-jre=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-gson: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.oauth-client:google-oauth-client:1.34.1=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java-util:3.21.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java-util:4.0.0-rc-2=compileClasspath,testCompileClasspath +com.google.protobuf:protobuf-java:3.21.1=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:3.4.0=annotationProcessor,errorprone,testAnnotationProcessor +com.google.protobuf:protobuf-java:4.0.0-rc-2=compileClasspath,testCompileClasspath +com.google.re2j:re2j:1.7=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,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=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,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.15=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,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=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,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=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf:1.47.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-services:1.47.0=default,deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-stub:1.47.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-xds:1.47.0=default,deploy_jar,runtimeClasspath,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=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.activation:javax.activation-api:1.2.0=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,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=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +javax.xml.bind:jaxb-api:2.4.0-b180830.0359=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,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.5=annotationProcessor,compileClasspath,default,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,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 +org.hamcrest:hamcrest-core:2.2=testCompileClasspath,testRuntimeClasspath +org.hamcrest:hamcrest:2.2=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.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.mockito:mockito-junit-jupiter: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=compileClasspath,default,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +empty=archives,errorproneJavac diff --git a/util/gradle/dependency-locks/annotationProcessor.lockfile b/util/gradle/dependency-locks/annotationProcessor.lockfile deleted file mode 100644 index 5c4bf3b81..000000000 --- a/util/gradle/dependency-locks/annotationProcessor.lockfile +++ /dev/null @@ -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 diff --git a/util/gradle/dependency-locks/archives.lockfile b/util/gradle/dependency-locks/archives.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/util/gradle/dependency-locks/archives.lockfile +++ /dev/null @@ -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. diff --git a/util/gradle/dependency-locks/buildscript-classpath.lockfile b/util/gradle/dependency-locks/buildscript-classpath.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/util/gradle/dependency-locks/buildscript-classpath.lockfile +++ /dev/null @@ -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. diff --git a/util/gradle/dependency-locks/checkstyle.lockfile b/util/gradle/dependency-locks/checkstyle.lockfile deleted file mode 100644 index c0dab047f..000000000 --- a/util/gradle/dependency-locks/checkstyle.lockfile +++ /dev/null @@ -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 diff --git a/util/gradle/dependency-locks/compile.lockfile b/util/gradle/dependency-locks/compile.lockfile deleted file mode 100644 index 7b9e8d9b6..000000000 --- a/util/gradle/dependency-locks/compile.lockfile +++ /dev/null @@ -1,74 +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.9.3 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client:1.35.2 -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.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.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: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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -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.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 diff --git a/util/gradle/dependency-locks/compileClasspath.lockfile b/util/gradle/dependency-locks/compileClasspath.lockfile deleted file mode 100644 index 85bd19c0a..000000000 --- a/util/gradle/dependency-locks/compileClasspath.lockfile +++ /dev/null @@ -1,61 +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.9.3 -com.google.api-client:google-api-client:1.35.2 -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.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.8.0 -com.google.auth:google-auth-library-oauth2-http:1.8.0 -com.google.auto.value:auto-value-annotations:1.9 -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: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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.oauth-client:google-oauth-client:1.34.1 -com.google.protobuf:protobuf-java-util:4.0.0-rc-2 -com.google.protobuf:protobuf-java:4.0.0-rc-2 -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.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 diff --git a/util/gradle/dependency-locks/compileOnly.lockfile b/util/gradle/dependency-locks/compileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/util/gradle/dependency-locks/compileOnly.lockfile +++ /dev/null @@ -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. diff --git a/util/gradle/dependency-locks/default.lockfile b/util/gradle/dependency-locks/default.lockfile deleted file mode 100644 index 6bf3dca62..000000000 --- a/util/gradle/dependency-locks/default.lockfile +++ /dev/null @@ -1,75 +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.9.3 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client:1.35.2 -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.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-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: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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -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.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 diff --git a/util/gradle/dependency-locks/deploy_jar.lockfile b/util/gradle/dependency-locks/deploy_jar.lockfile deleted file mode 100644 index 6bf3dca62..000000000 --- a/util/gradle/dependency-locks/deploy_jar.lockfile +++ /dev/null @@ -1,75 +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.9.3 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client:1.35.2 -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.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-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: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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -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.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 diff --git a/util/gradle/dependency-locks/errorprone.lockfile b/util/gradle/dependency-locks/errorprone.lockfile deleted file mode 100644 index 4dc2a88a1..000000000 --- a/util/gradle/dependency-locks/errorprone.lockfile +++ /dev/null @@ -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 diff --git a/util/gradle/dependency-locks/errorproneJavac.lockfile b/util/gradle/dependency-locks/errorproneJavac.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/util/gradle/dependency-locks/errorproneJavac.lockfile +++ /dev/null @@ -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. diff --git a/util/gradle/dependency-locks/jacocoAgent.lockfile b/util/gradle/dependency-locks/jacocoAgent.lockfile deleted file mode 100644 index 837b06fc2..000000000 --- a/util/gradle/dependency-locks/jacocoAgent.lockfile +++ /dev/null @@ -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 diff --git a/util/gradle/dependency-locks/jacocoAnt.lockfile b/util/gradle/dependency-locks/jacocoAnt.lockfile deleted file mode 100644 index a717958c0..000000000 --- a/util/gradle/dependency-locks/jacocoAnt.lockfile +++ /dev/null @@ -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 diff --git a/util/gradle/dependency-locks/runtime.lockfile b/util/gradle/dependency-locks/runtime.lockfile deleted file mode 100644 index 6bf3dca62..000000000 --- a/util/gradle/dependency-locks/runtime.lockfile +++ /dev/null @@ -1,75 +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.9.3 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client:1.35.2 -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.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-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: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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -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.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 diff --git a/util/gradle/dependency-locks/runtimeClasspath.lockfile b/util/gradle/dependency-locks/runtimeClasspath.lockfile deleted file mode 100644 index 6bf3dca62..000000000 --- a/util/gradle/dependency-locks/runtimeClasspath.lockfile +++ /dev/null @@ -1,75 +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.9.3 -com.google.android:annotations:4.1.1.4 -com.google.api-client:google-api-client:1.35.2 -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.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-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: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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -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.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 diff --git a/util/gradle/dependency-locks/testAnnotationProcessor.lockfile b/util/gradle/dependency-locks/testAnnotationProcessor.lockfile deleted file mode 100644 index 5c4bf3b81..000000000 --- a/util/gradle/dependency-locks/testAnnotationProcessor.lockfile +++ /dev/null @@ -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 diff --git a/util/gradle/dependency-locks/testCompile.lockfile b/util/gradle/dependency-locks/testCompile.lockfile deleted file mode 100644 index f8591f045..000000000 --- a/util/gradle/dependency-locks/testCompile.lockfile +++ /dev/null @@ -1,107 +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.fasterxml.jackson.core:jackson-annotations:2.10.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.2 -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.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-api-stubs:2.0.5 -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.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:0.7.4 -com.google.guava:failureaccess:1.0.1 -com.google.guava:guava-testlib:31.1-jre -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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -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.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:2.2 -org.hamcrest:hamcrest:2.2 -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.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.mockito:mockito-junit-jupiter: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 diff --git a/util/gradle/dependency-locks/testCompileClasspath.lockfile b/util/gradle/dependency-locks/testCompileClasspath.lockfile deleted file mode 100644 index 119423339..000000000 --- a/util/gradle/dependency-locks/testCompileClasspath.lockfile +++ /dev/null @@ -1,93 +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.fasterxml.jackson.core:jackson-annotations:2.10.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.2 -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.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-api-stubs:2.0.5 -com.google.appengine:appengine-testing:1.9.86 -com.google.auth:google-auth-library-credentials:1.8.0 -com.google.auth:google-auth-library-oauth2-http:1.8.0 -com.google.auto.value:auto-value-annotations:1.9 -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:0.7.4 -com.google.guava:failureaccess:1.0.1 -com.google.guava:guava-testlib:31.1-jre -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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -com.google.oauth-client:google-oauth-client:1.34.1 -com.google.protobuf:protobuf-java-util:4.0.0-rc-2 -com.google.protobuf:protobuf-java:4.0.0-rc-2 -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.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:2.2 -org.hamcrest:hamcrest:2.2 -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.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.mockito:mockito-junit-jupiter: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 diff --git a/util/gradle/dependency-locks/testCompileOnly.lockfile b/util/gradle/dependency-locks/testCompileOnly.lockfile deleted file mode 100644 index 656c5dbcc..000000000 --- a/util/gradle/dependency-locks/testCompileOnly.lockfile +++ /dev/null @@ -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. diff --git a/util/gradle/dependency-locks/testRuntime.lockfile b/util/gradle/dependency-locks/testRuntime.lockfile deleted file mode 100644 index ae518104c..000000000 --- a/util/gradle/dependency-locks/testRuntime.lockfile +++ /dev/null @@ -1,109 +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.fasterxml.jackson.core:jackson-annotations:2.10.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.2 -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.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-api-stubs:2.0.5 -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-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-testlib:31.1-jre -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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -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.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:2.2 -org.hamcrest:hamcrest:2.2 -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.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.mockito:mockito-junit-jupiter: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 diff --git a/util/gradle/dependency-locks/testRuntimeClasspath.lockfile b/util/gradle/dependency-locks/testRuntimeClasspath.lockfile deleted file mode 100644 index ae518104c..000000000 --- a/util/gradle/dependency-locks/testRuntimeClasspath.lockfile +++ /dev/null @@ -1,109 +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.fasterxml.jackson.core:jackson-annotations:2.10.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.2 -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.appengine:appengine-api-1.0-sdk:2.0.5 -com.google.appengine:appengine-api-stubs:2.0.5 -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-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-testlib:31.1-jre -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-gson:1.42.0 -com.google.http-client:google-http-client:1.42.0 -com.google.j2objc:j2objc-annotations:1.3 -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.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:2.2 -org.hamcrest:hamcrest:2.2 -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.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.mockito:mockito-junit-jupiter: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