mirror of
https://github.com/google/nomulus.git
synced 2025-05-18 10:19:41 +02:00
Upgrade to Gradle 7.0 (#1712)
* Convert to gradle 7. * More fixes, regenerated lockfiles. * Update lockfiles for dependency update. * Fix show_upgrade_diff for new lockfile format * Add property for allowInsecureProtocol Allow us to override the restriction against use of plain HTTP for communication to dependency repositories. We need this to be able to use a local proxy for dependency gathering. * Checking in missing gradle.lockfile
This commit is contained in:
parent
68f975451e
commit
06ca9266b4
349 changed files with 3999 additions and 26646 deletions
|
@ -77,7 +77,7 @@ appengine {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
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
|
// 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.deploy.dependsOn appengineDeployAll
|
||||||
rootProject.stage.dependsOn appengineStage
|
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
|
// 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.
|
// better way to do this other than to apply to each of them independently.
|
||||||
|
|
19
build.gradle
19
build.gradle
|
@ -29,7 +29,7 @@ buildscript {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.4.1'
|
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-api:1.13.1'
|
||||||
classpath 'org.sonatype.aether:aether-impl: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
|
// Java static analysis plugins. Keep versions consistent with
|
||||||
// ./buildSrc/build.gradle
|
// ./buildSrc/build.gradle
|
||||||
id 'nebula.lint' version '16.0.2'
|
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 'checkstyle'
|
||||||
id 'com.github.johnrengelman.shadow' version '5.1.0'
|
id 'com.github.johnrengelman.shadow' version '5.1.0'
|
||||||
|
|
||||||
|
@ -53,6 +53,10 @@ plugins {
|
||||||
id 'com.dorongold.task-tree' version '2.1.0'
|
id 'com.dorongold.task-tree' version '2.1.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dependencyLocking {
|
||||||
|
lockAllConfigurations()
|
||||||
|
}
|
||||||
|
|
||||||
node {
|
node {
|
||||||
download = true
|
download = true
|
||||||
version = "16.14.0"
|
version = "16.14.0"
|
||||||
|
@ -172,6 +176,9 @@ rootProject.ext.verifyDeploymentConfig = {
|
||||||
|
|
||||||
// Subproject configuration.
|
// Subproject configuration.
|
||||||
|
|
||||||
|
// Alias this since it collides with the closure variable name
|
||||||
|
def allowInsecure = allowInsecureProtocol
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
// Skip no-op project
|
// Skip no-op project
|
||||||
if (project.name == 'services') return
|
if (project.name == 'services') return
|
||||||
|
@ -181,6 +188,7 @@ allprojects {
|
||||||
maven {
|
maven {
|
||||||
println "Java dependencies: Using repo ${mavenUrl}..."
|
println "Java dependencies: Using repo ${mavenUrl}..."
|
||||||
url mavenUrl
|
url mavenUrl
|
||||||
|
allowInsecureProtocol = allowInsecure == "true"
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
println "Java dependencies: Using Maven Central..."
|
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
|
// 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 "META-INF/*.SF", "META-INF/*.DSA", "META-INF/*.RSA"
|
||||||
exclude excludes
|
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
|
// The ':integration' project runs server/schema integration tests using
|
||||||
// dynamically specified jars with no transitive dependency. Therefore
|
// dynamically specified jars with no transitive dependency. Therefore
|
||||||
// dependency-locking does not make sense. Furthermore, during
|
// 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
|
// immutable. Locking activation would trigger an invalid operation
|
||||||
// exception.
|
// exception.
|
||||||
//
|
//
|
||||||
|
|
|
@ -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}")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
128
buildSrc/build.gradle.kts
Normal file
128
buildSrc/build.gradle.kts
Normal file
|
@ -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<SourceSetContainer>()["main"].java {
|
||||||
|
srcDir("${project.buildDir}/generated/source/apt/main")
|
||||||
|
}
|
||||||
|
|
||||||
|
// checkstyle {
|
||||||
|
// configDir file("../config/checkstyle")
|
||||||
|
// }
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
val deps = project.ext["dependencyMap"] as Map<String, String>
|
||||||
|
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<JavaCompile> {
|
||||||
|
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}")
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
24
buildSrc/buildscript-gradle.lockfile
Normal file
24
buildSrc/buildscript-gradle.lockfile
Normal file
|
@ -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=
|
120
buildSrc/gradle.lockfile
Normal file
120
buildSrc/gradle.lockfile
Normal file
|
@ -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=
|
|
@ -1 +1,3 @@
|
||||||
|
pluginsUrl=https://plugins.gradle.org/m2/
|
||||||
|
allowInsecureProtocol=
|
||||||
enableDependencyLocking=true
|
enableDependencyLocking=true
|
||||||
|
|
|
@ -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
|
|
|
@ -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
|
|
|
@ -1,19 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
antlr:antlr:2.7.7
|
|
||||||
com.google.code.findbugs:jsr305:3.0.2
|
|
||||||
com.google.errorprone:error_prone_annotations:2.3.4
|
|
||||||
com.google.guava:failureaccess:1.0.1
|
|
||||||
com.google.guava:guava:29.0-jre
|
|
||||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
|
||||||
com.google.j2objc:j2objc-annotations:1.3
|
|
||||||
com.puppycrawl.tools:checkstyle:8.37
|
|
||||||
commons-beanutils:commons-beanutils:1.9.4
|
|
||||||
commons-collections:commons-collections:3.2.2
|
|
||||||
info.picocli:picocli:4.5.2
|
|
||||||
net.sf.saxon:Saxon-HE:10.3
|
|
||||||
org.antlr:antlr4-runtime:4.8-1
|
|
||||||
org.checkerframework:checker-qual:2.11.1
|
|
||||||
org.javassist:javassist:3.26.0-GA
|
|
||||||
org.reflections:reflections:0.9.12
|
|
|
@ -1,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
|
|
|
@ -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
|
|
|
@ -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
|
|
|
@ -1,4 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
org.jacoco:org.jacoco.agent:0.8.6
|
|
|
@ -1,11 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
org.jacoco:org.jacoco.agent:0.8.6
|
|
||||||
org.jacoco:org.jacoco.ant:0.8.6
|
|
||||||
org.jacoco:org.jacoco.core:0.8.6
|
|
||||||
org.jacoco:org.jacoco.report:0.8.6
|
|
||||||
org.ow2.asm:asm-analysis:8.0.1
|
|
||||||
org.ow2.asm:asm-commons:8.0.1
|
|
||||||
org.ow2.asm:asm-tree:8.0.1
|
|
||||||
org.ow2.asm:asm:8.0.1
|
|
|
@ -1,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
|
|
|
@ -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
|
|
|
@ -1,27 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
com.github.ben-manes.caffeine:caffeine:2.7.0
|
|
||||||
com.github.kevinstern:software-and-algorithms:1.0
|
|
||||||
com.google.auto:auto-common:0.10
|
|
||||||
com.google.code.findbugs:jFormatString:3.0.0
|
|
||||||
com.google.code.findbugs:jsr305:3.0.2
|
|
||||||
com.google.errorprone:error_prone_annotation:2.3.4
|
|
||||||
com.google.errorprone:error_prone_annotations:2.3.4
|
|
||||||
com.google.errorprone:error_prone_check_api:2.3.4
|
|
||||||
com.google.errorprone:error_prone_core:2.3.4
|
|
||||||
com.google.errorprone:error_prone_type_annotations:2.3.4
|
|
||||||
com.google.guava:failureaccess:1.0.1
|
|
||||||
com.google.guava:guava:27.0.1-jre
|
|
||||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
|
||||||
com.google.j2objc:j2objc-annotations:1.1
|
|
||||||
com.google.protobuf:protobuf-java:3.4.0
|
|
||||||
com.googlecode.java-diff-utils:diffutils:1.3.0
|
|
||||||
org.checkerframework:checker-qual:3.0.0
|
|
||||||
org.checkerframework:dataflow:3.0.0
|
|
||||||
org.checkerframework:javacutil:3.0.0
|
|
||||||
org.codehaus.mojo:animal-sniffer-annotations:1.17
|
|
||||||
org.pcollections:pcollections:2.1.2
|
|
||||||
org.plumelib:plume-util:1.0.6
|
|
||||||
org.plumelib:reflection-util:0.0.2
|
|
||||||
org.plumelib:require-javadoc:0.1.0
|
|
|
@ -1,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
|
|
|
@ -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
|
|
|
@ -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
|
|
|
@ -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
|
|
29
buildSrc/settings.gradle
Normal file
29
buildSrc/settings.gradle
Normal file
|
@ -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..."
|
||||||
|
}
|
79
buildscript-gradle.lockfile
Normal file
79
buildscript-gradle.lockfile
Normal file
|
@ -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=
|
|
@ -28,15 +28,17 @@ sourceSets {
|
||||||
}
|
}
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
testingCompile.extendsFrom compile
|
// For reasons I don't understand, testingCompileOnly is the configuration
|
||||||
testingRuntime.extendsFrom runtime
|
// used for compiling the classes in the "testing" jar.
|
||||||
|
testingCompileOnly.extendsFrom implementation
|
||||||
|
testingRuntimeOnly.extendsFrom runtimeOnly
|
||||||
|
|
||||||
testCompile.extendsFrom testingCompile
|
testImplementation.extendsFrom testingCompile
|
||||||
testRuntime.extendsFrom testingRuntime
|
testRuntimeOnly.extendsFrom testingRuntime
|
||||||
|
|
||||||
// All testing util classes. Other projects may declare dependency as:
|
// All testing util classes. Other projects may declare dependency as:
|
||||||
// testCompile project(path: 'common', configuration: 'testing')
|
// testImplementation project(path: 'common', configuration: 'testing')
|
||||||
testing
|
testing.extendsFrom testingCompileOnly
|
||||||
}
|
}
|
||||||
|
|
||||||
task testingJar(type: Jar) {
|
task testingJar(type: Jar) {
|
||||||
|
@ -51,17 +53,15 @@ artifacts {
|
||||||
dependencies {
|
dependencies {
|
||||||
def deps = rootProject.dependencyMap
|
def deps = rootProject.dependencyMap
|
||||||
|
|
||||||
compile deps['com.github.ben-manes.caffeine:caffeine']
|
implementation deps['com.github.ben-manes.caffeine:caffeine']
|
||||||
compile deps['com.google.code.findbugs:jsr305']
|
implementation deps['com.google.code.findbugs:jsr305']
|
||||||
compile deps['com.google.guava:guava']
|
implementation deps['com.google.guava:guava']
|
||||||
compile deps['javax.inject:javax.inject']
|
implementation deps['javax.inject:javax.inject']
|
||||||
compile deps['joda-time:joda-time']
|
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']
|
testImplementation deps['org.junit.jupiter:junit-jupiter-api']
|
||||||
testingRuntime deps['com.google.flogger:flogger-system-backend']
|
testImplementation deps['org.junit.jupiter:junit-jupiter-engine']
|
||||||
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']
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
# This is a Gradle generated file for dependency locking.
|
||||||
# Manual edits can break the build and are not advised.
|
# Manual edits can break the build and are not advised.
|
||||||
# This file is expected to be part of source control.
|
# This file is expected to be part of source control.
|
||||||
|
empty=classpath
|
69
common/gradle.lockfile
Normal file
69
common/gradle.lockfile
Normal file
|
@ -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
|
|
@ -1,27 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
com.github.ben-manes.caffeine:caffeine:2.7.0
|
|
||||||
com.github.kevinstern:software-and-algorithms:1.0
|
|
||||||
com.google.auto:auto-common:0.10
|
|
||||||
com.google.code.findbugs:jFormatString:3.0.0
|
|
||||||
com.google.code.findbugs:jsr305:3.0.2
|
|
||||||
com.google.errorprone:error_prone_annotation:2.3.4
|
|
||||||
com.google.errorprone:error_prone_annotations:2.3.4
|
|
||||||
com.google.errorprone:error_prone_check_api:2.3.4
|
|
||||||
com.google.errorprone:error_prone_core:2.3.4
|
|
||||||
com.google.errorprone:error_prone_type_annotations:2.3.4
|
|
||||||
com.google.guava:failureaccess:1.0.1
|
|
||||||
com.google.guava:guava:27.0.1-jre
|
|
||||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
|
||||||
com.google.j2objc:j2objc-annotations:1.1
|
|
||||||
com.google.protobuf:protobuf-java:3.4.0
|
|
||||||
com.googlecode.java-diff-utils:diffutils:1.3.0
|
|
||||||
org.checkerframework:checker-qual:3.0.0
|
|
||||||
org.checkerframework:dataflow:3.0.0
|
|
||||||
org.checkerframework:javacutil:3.0.0
|
|
||||||
org.codehaus.mojo:animal-sniffer-annotations:1.17
|
|
||||||
org.pcollections:pcollections:2.1.2
|
|
||||||
org.plumelib:plume-util:1.0.6
|
|
||||||
org.plumelib:reflection-util:0.0.2
|
|
||||||
org.plumelib:require-javadoc:0.1.0
|
|
|
@ -1,19 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
antlr:antlr:2.7.7
|
|
||||||
com.google.code.findbugs:jsr305:3.0.2
|
|
||||||
com.google.errorprone:error_prone_annotations:2.3.4
|
|
||||||
com.google.guava:failureaccess:1.0.1
|
|
||||||
com.google.guava:guava:29.0-jre
|
|
||||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
|
||||||
com.google.j2objc:j2objc-annotations:1.3
|
|
||||||
com.puppycrawl.tools:checkstyle:8.37
|
|
||||||
commons-beanutils:commons-beanutils:1.9.4
|
|
||||||
commons-collections:commons-collections:3.2.2
|
|
||||||
info.picocli:picocli:4.5.2
|
|
||||||
net.sf.saxon:Saxon-HE:10.3
|
|
||||||
org.antlr:antlr4-runtime:4.8-1
|
|
||||||
org.checkerframework:checker-qual:2.11.1
|
|
||||||
org.javassist:javassist:3.26.0-GA
|
|
||||||
org.reflections:reflections:0.9.12
|
|
|
@ -1,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
|
|
|
@ -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
|
|
|
@ -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
|
|
|
@ -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
|
|
|
@ -1,27 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
com.github.ben-manes.caffeine:caffeine:2.7.0
|
|
||||||
com.github.kevinstern:software-and-algorithms:1.0
|
|
||||||
com.google.auto:auto-common:0.10
|
|
||||||
com.google.code.findbugs:jFormatString:3.0.0
|
|
||||||
com.google.code.findbugs:jsr305:3.0.2
|
|
||||||
com.google.errorprone:error_prone_annotation:2.3.4
|
|
||||||
com.google.errorprone:error_prone_annotations:2.3.4
|
|
||||||
com.google.errorprone:error_prone_check_api:2.3.4
|
|
||||||
com.google.errorprone:error_prone_core:2.3.4
|
|
||||||
com.google.errorprone:error_prone_type_annotations:2.3.4
|
|
||||||
com.google.guava:failureaccess:1.0.1
|
|
||||||
com.google.guava:guava:27.0.1-jre
|
|
||||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
|
||||||
com.google.j2objc:j2objc-annotations:1.1
|
|
||||||
com.google.protobuf:protobuf-java:3.4.0
|
|
||||||
com.googlecode.java-diff-utils:diffutils:1.3.0
|
|
||||||
org.checkerframework:checker-qual:3.0.0
|
|
||||||
org.checkerframework:dataflow:3.0.0
|
|
||||||
org.checkerframework:javacutil:3.0.0
|
|
||||||
org.codehaus.mojo:animal-sniffer-annotations:1.17
|
|
||||||
org.pcollections:pcollections:2.1.2
|
|
||||||
org.plumelib:plume-util:1.0.6
|
|
||||||
org.plumelib:reflection-util:0.0.2
|
|
||||||
org.plumelib:require-javadoc:0.1.0
|
|
|
@ -1,4 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
org.jacoco:org.jacoco.agent:0.8.6
|
|
|
@ -1,11 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
org.jacoco:org.jacoco.agent:0.8.6
|
|
||||||
org.jacoco:org.jacoco.ant:0.8.6
|
|
||||||
org.jacoco:org.jacoco.core:0.8.6
|
|
||||||
org.jacoco:org.jacoco.report:0.8.6
|
|
||||||
org.ow2.asm:asm-analysis:8.0.1
|
|
||||||
org.ow2.asm:asm-commons:8.0.1
|
|
||||||
org.ow2.asm:asm-tree:8.0.1
|
|
||||||
org.ow2.asm:asm:8.0.1
|
|
|
@ -1,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
|
|
|
@ -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
|
|
|
@ -1,27 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
com.github.ben-manes.caffeine:caffeine:2.7.0
|
|
||||||
com.github.kevinstern:software-and-algorithms:1.0
|
|
||||||
com.google.auto:auto-common:0.10
|
|
||||||
com.google.code.findbugs:jFormatString:3.0.0
|
|
||||||
com.google.code.findbugs:jsr305:3.0.2
|
|
||||||
com.google.errorprone:error_prone_annotation:2.3.4
|
|
||||||
com.google.errorprone:error_prone_annotations:2.3.4
|
|
||||||
com.google.errorprone:error_prone_check_api:2.3.4
|
|
||||||
com.google.errorprone:error_prone_core:2.3.4
|
|
||||||
com.google.errorprone:error_prone_type_annotations:2.3.4
|
|
||||||
com.google.guava:failureaccess:1.0.1
|
|
||||||
com.google.guava:guava:27.0.1-jre
|
|
||||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
|
||||||
com.google.j2objc:j2objc-annotations:1.1
|
|
||||||
com.google.protobuf:protobuf-java:3.4.0
|
|
||||||
com.googlecode.java-diff-utils:diffutils:1.3.0
|
|
||||||
org.checkerframework:checker-qual:3.0.0
|
|
||||||
org.checkerframework:dataflow:3.0.0
|
|
||||||
org.checkerframework:javacutil:3.0.0
|
|
||||||
org.codehaus.mojo:animal-sniffer-annotations:1.17
|
|
||||||
org.pcollections:pcollections:2.1.2
|
|
||||||
org.plumelib:plume-util:1.0.6
|
|
||||||
org.plumelib:reflection-util:0.0.2
|
|
||||||
org.plumelib:require-javadoc:0.1.0
|
|
|
@ -1,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
|
|
|
@ -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
|
|
|
@ -1,3 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
|
@ -1,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
|
|
|
@ -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
|
|
|
@ -1,3 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
|
@ -1,27 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
com.github.ben-manes.caffeine:caffeine:2.7.0
|
|
||||||
com.github.kevinstern:software-and-algorithms:1.0
|
|
||||||
com.google.auto:auto-common:0.10
|
|
||||||
com.google.code.findbugs:jFormatString:3.0.0
|
|
||||||
com.google.code.findbugs:jsr305:3.0.2
|
|
||||||
com.google.errorprone:error_prone_annotation:2.3.4
|
|
||||||
com.google.errorprone:error_prone_annotations:2.3.4
|
|
||||||
com.google.errorprone:error_prone_check_api:2.3.4
|
|
||||||
com.google.errorprone:error_prone_core:2.3.4
|
|
||||||
com.google.errorprone:error_prone_type_annotations:2.3.4
|
|
||||||
com.google.guava:failureaccess:1.0.1
|
|
||||||
com.google.guava:guava:27.0.1-jre
|
|
||||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
|
||||||
com.google.j2objc:j2objc-annotations:1.1
|
|
||||||
com.google.protobuf:protobuf-java:3.4.0
|
|
||||||
com.googlecode.java-diff-utils:diffutils:1.3.0
|
|
||||||
org.checkerframework:checker-qual:3.0.0
|
|
||||||
org.checkerframework:dataflow:3.0.0
|
|
||||||
org.checkerframework:javacutil:3.0.0
|
|
||||||
org.codehaus.mojo:animal-sniffer-annotations:1.17
|
|
||||||
org.pcollections:pcollections:2.1.2
|
|
||||||
org.plumelib:plume-util:1.0.6
|
|
||||||
org.plumelib:reflection-util:0.0.2
|
|
||||||
org.plumelib:require-javadoc:0.1.0
|
|
|
@ -1,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
|
|
|
@ -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
|
|
|
@ -1,3 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
|
@ -1,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
|
|
|
@ -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
|
|
|
@ -84,6 +84,10 @@ PROPERTIES = [
|
||||||
Property('pluginsUrl',
|
Property('pluginsUrl',
|
||||||
'URL to use for the gradle plugins repository (defaults to maven '
|
'URL to use for the gradle plugins repository (defaults to maven '
|
||||||
'central, see also mavenUrl'),
|
'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',
|
Property('uploaderDestination',
|
||||||
'Location to upload test reports to. Normally this should be a '
|
'Location to upload test reports to. Normally this should be a '
|
||||||
'GCS url (see also uploaderCredentialsFile)'),
|
'GCS url (see also uploaderCredentialsFile)'),
|
||||||
|
|
|
@ -58,7 +58,10 @@ def parse_lockfile(filename: str) -> PackageMap:
|
||||||
if line.startswith(b'#'):
|
if line.startswith(b'#'):
|
||||||
continue
|
continue
|
||||||
line = line.rstrip()
|
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])
|
result.setdefault(package[:-1], set()).add(package[-1])
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
|
@ -125,11 +125,11 @@ configurations {
|
||||||
closureCompiler
|
closureCompiler
|
||||||
devtool
|
devtool
|
||||||
|
|
||||||
nonprodCompile.extendsFrom compile
|
nonprodImplementation.extendsFrom implementation
|
||||||
nonprodRuntime.extendsFrom runtime
|
nonprodRuntime.extendsFrom runtime
|
||||||
|
|
||||||
testCompile.extendsFrom nonprodCompile
|
testImplementation.extendsFrom nonprodImplementation
|
||||||
testRuntime.extendsFrom nonprodRuntime
|
testRuntimeOnly.extendsFrom nonprodRuntime
|
||||||
|
|
||||||
// Published jars that are used for server/schema compatibility tests.
|
// Published jars that are used for server/schema compatibility tests.
|
||||||
// See <a href="../integration/README.md">the integration project</a>
|
// See <a href="../integration/README.md">the integration project</a>
|
||||||
|
@ -165,147 +165,147 @@ dependencies {
|
||||||
|
|
||||||
// Custom-built objectify jar at commit ecd5165, included in Nomulus
|
// Custom-built objectify jar at commit ecd5165, included in Nomulus
|
||||||
// release.
|
// release.
|
||||||
compile files(
|
implementation files(
|
||||||
"${rootDir}/third_party/objectify/v4_1/objectify-4.1.3.jar")
|
"${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']
|
implementation deps['com.beust:jcommander']
|
||||||
compile deps['com.github.ben-manes.caffeine:caffeine']
|
implementation deps['com.github.ben-manes.caffeine:caffeine']
|
||||||
compile deps['com.google.api:gax']
|
implementation deps['com.google.api:gax']
|
||||||
compile deps['com.google.api.grpc:proto-google-cloud-datastore-v1']
|
implementation deps['com.google.api.grpc:proto-google-cloud-datastore-v1']
|
||||||
compile deps['com.google.api.grpc:proto-google-common-protos']
|
implementation deps['com.google.api.grpc:proto-google-common-protos']
|
||||||
compile deps['com.google.api.grpc:proto-google-cloud-secretmanager-v1']
|
implementation deps['com.google.api.grpc:proto-google-cloud-secretmanager-v1']
|
||||||
compile deps['com.google.api-client:google-api-client']
|
implementation deps['com.google.api-client:google-api-client']
|
||||||
compile deps['com.google.api-client:google-api-client-appengine']
|
implementation deps['com.google.api-client:google-api-client-appengine']
|
||||||
compile deps['com.google.api-client:google-api-client-servlet']
|
implementation deps['com.google.api-client:google-api-client-servlet']
|
||||||
compile deps['com.google.monitoring-client:metrics']
|
implementation deps['com.google.monitoring-client:metrics']
|
||||||
compile deps['com.google.monitoring-client:stackdriver']
|
implementation deps['com.google.monitoring-client:stackdriver']
|
||||||
compile deps['com.google.api-client:google-api-client-java6']
|
implementation deps['com.google.api-client:google-api-client-java6']
|
||||||
compile deps['com.google.api.grpc:proto-google-cloud-tasks-v2']
|
implementation deps['com.google.api.grpc:proto-google-cloud-tasks-v2']
|
||||||
compile deps['com.google.apis:google-api-services-admin-directory']
|
implementation deps['com.google.apis:google-api-services-admin-directory']
|
||||||
compile deps['com.google.apis:google-api-services-appengine']
|
implementation deps['com.google.apis:google-api-services-appengine']
|
||||||
compile deps['com.google.apis:google-api-services-bigquery']
|
implementation deps['com.google.apis:google-api-services-bigquery']
|
||||||
compile deps['com.google.apis:google-api-services-cloudkms']
|
implementation deps['com.google.apis:google-api-services-cloudkms']
|
||||||
compile deps['com.google.apis:google-api-services-dataflow']
|
implementation deps['com.google.apis:google-api-services-dataflow']
|
||||||
compile deps['com.google.apis:google-api-services-dns']
|
implementation deps['com.google.apis:google-api-services-dns']
|
||||||
compile deps['com.google.apis:google-api-services-drive']
|
implementation deps['com.google.apis:google-api-services-drive']
|
||||||
compile deps['com.google.apis:google-api-services-groupssettings']
|
implementation deps['com.google.apis:google-api-services-groupssettings']
|
||||||
compile deps['com.google.apis:google-api-services-monitoring']
|
implementation deps['com.google.apis:google-api-services-monitoring']
|
||||||
compile deps['com.google.apis:google-api-services-sheets']
|
implementation deps['com.google.apis:google-api-services-sheets']
|
||||||
compile deps['com.google.apis:google-api-services-storage']
|
implementation deps['com.google.apis:google-api-services-storage']
|
||||||
testCompile deps['com.google.appengine:appengine-api-stubs']
|
testImplementation deps['com.google.appengine:appengine-api-stubs']
|
||||||
compile deps['com.google.appengine.tools:appengine-gcs-client']
|
implementation deps['com.google.appengine.tools:appengine-gcs-client']
|
||||||
compile deps['com.google.appengine.tools:appengine-pipeline']
|
implementation deps['com.google.appengine.tools:appengine-pipeline']
|
||||||
compile deps['com.google.appengine:appengine-remote-api']
|
implementation deps['com.google.appengine:appengine-remote-api']
|
||||||
compile deps['com.google.auth:google-auth-library-credentials']
|
implementation deps['com.google.auth:google-auth-library-credentials']
|
||||||
compile deps['com.google.auth:google-auth-library-oauth2-http']
|
implementation deps['com.google.auth:google-auth-library-oauth2-http']
|
||||||
compile deps['com.google.cloud.bigdataoss:util']
|
implementation deps['com.google.cloud.bigdataoss:util']
|
||||||
compile deps['com.google.cloud.datastore:datastore-v1-proto-client']
|
implementation deps['com.google.cloud.datastore:datastore-v1-proto-client']
|
||||||
compile deps['com.google.cloud.sql:jdbc-socket-factory-core']
|
implementation deps['com.google.cloud.sql:jdbc-socket-factory-core']
|
||||||
runtimeOnly deps['com.google.cloud.sql:postgres-socket-factory']
|
runtimeOnly deps['com.google.cloud.sql:postgres-socket-factory']
|
||||||
compile deps['com.google.cloud:google-cloud-secretmanager']
|
implementation deps['com.google.cloud:google-cloud-secretmanager']
|
||||||
compile deps['com.google.code.gson:gson']
|
implementation deps['com.google.code.gson:gson']
|
||||||
compile deps['com.google.auto.service:auto-service-annotations']
|
implementation deps['com.google.auto.service:auto-service-annotations']
|
||||||
compile deps['com.google.auto.value:auto-value-annotations']
|
implementation deps['com.google.auto.value:auto-value-annotations']
|
||||||
compile deps['com.google.code.findbugs:jsr305']
|
implementation deps['com.google.code.findbugs:jsr305']
|
||||||
compile deps['com.google.dagger:dagger']
|
implementation deps['com.google.dagger:dagger']
|
||||||
compile deps['com.google.errorprone:error_prone_annotations']
|
implementation deps['com.google.errorprone:error_prone_annotations']
|
||||||
compile deps['com.google.flogger:flogger']
|
implementation deps['com.google.flogger:flogger']
|
||||||
runtime deps['com.google.flogger:flogger-system-backend']
|
runtime deps['com.google.flogger:flogger-system-backend']
|
||||||
compile deps['com.google.guava:guava']
|
implementation deps['com.google.guava:guava']
|
||||||
compile deps['com.google.protobuf:protobuf-java']
|
implementation deps['com.google.protobuf:protobuf-java']
|
||||||
gradleLint.ignore('unused-dependency') {
|
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']
|
implementation deps['com.google.cloud:google-cloud-core']
|
||||||
compile deps['com.google.cloud:google-cloud-storage']
|
implementation deps['com.google.cloud:google-cloud-storage']
|
||||||
compile deps['com.google.cloud:google-cloud-tasks']
|
implementation deps['com.google.cloud:google-cloud-tasks']
|
||||||
compile deps['com.google.http-client:google-http-client']
|
implementation deps['com.google.http-client:google-http-client']
|
||||||
compile deps['com.google.http-client:google-http-client-appengine']
|
implementation deps['com.google.http-client:google-http-client-appengine']
|
||||||
compile deps['com.google.http-client:google-http-client-jackson2']
|
implementation deps['com.google.http-client:google-http-client-jackson2']
|
||||||
compile deps['com.google.oauth-client:google-oauth-client']
|
implementation deps['com.google.oauth-client:google-oauth-client']
|
||||||
compile deps['com.google.oauth-client:google-oauth-client-java6']
|
implementation deps['com.google.oauth-client:google-oauth-client-java6']
|
||||||
compile deps['com.google.oauth-client:google-oauth-client-jetty']
|
implementation deps['com.google.oauth-client:google-oauth-client-jetty']
|
||||||
compile deps['com.google.oauth-client:google-oauth-client-appengine']
|
implementation deps['com.google.oauth-client:google-oauth-client-appengine']
|
||||||
compile deps['com.google.oauth-client:google-oauth-client-servlet']
|
implementation deps['com.google.oauth-client:google-oauth-client-servlet']
|
||||||
compile deps['com.google.protobuf:protobuf-java']
|
implementation deps['com.google.protobuf:protobuf-java']
|
||||||
compile deps['com.google.re2j:re2j']
|
implementation deps['com.google.re2j:re2j']
|
||||||
compile deps['com.google.template:soy']
|
implementation deps['com.google.template:soy']
|
||||||
compile deps['com.googlecode.json-simple:json-simple']
|
implementation deps['com.googlecode.json-simple:json-simple']
|
||||||
compile deps['com.jcraft:jsch']
|
implementation deps['com.jcraft:jsch']
|
||||||
testCompile deps['com.thoughtworks.qdox:qdox']
|
testImplementation deps['com.thoughtworks.qdox:qdox']
|
||||||
compile deps['com.zaxxer:HikariCP']
|
implementation deps['com.zaxxer:HikariCP']
|
||||||
compile deps['dnsjava:dnsjava']
|
implementation deps['dnsjava:dnsjava']
|
||||||
runtime deps['guru.nidi:graphviz-java-all-j2v8']
|
runtime deps['guru.nidi:graphviz-java-all-j2v8']
|
||||||
testCompile deps['io.github.classgraph:classgraph']
|
testImplementation deps['io.github.classgraph:classgraph']
|
||||||
testRuntime deps['io.github.java-diff-utils:java-diff-utils']
|
testRuntimeOnly deps['io.github.java-diff-utils:java-diff-utils']
|
||||||
testCompile deps['javax.annotation:javax.annotation-api']
|
testImplementation deps['javax.annotation:javax.annotation-api']
|
||||||
testCompile deps['javax.annotation:jsr250-api']
|
testImplementation deps['javax.annotation:jsr250-api']
|
||||||
compile deps['javax.mail:mail']
|
implementation deps['javax.mail:mail']
|
||||||
compile deps['javax.inject:javax.inject']
|
implementation deps['javax.inject:javax.inject']
|
||||||
compile deps['javax.persistence:javax.persistence-api']
|
implementation deps['javax.persistence:javax.persistence-api']
|
||||||
compile deps['javax.servlet:servlet-api']
|
implementation deps['javax.servlet:servlet-api']
|
||||||
compile deps['javax.xml.bind:jaxb-api']
|
implementation deps['javax.xml.bind:jaxb-api']
|
||||||
compile deps['jline:jline']
|
implementation deps['jline:jline']
|
||||||
compile deps['joda-time:joda-time']
|
implementation deps['joda-time:joda-time']
|
||||||
compile deps['org.apache.avro:avro']
|
implementation deps['org.apache.avro:avro']
|
||||||
testCompile deps['org.apache.beam:beam-runners-core-construction-java']
|
testImplementation deps['org.apache.beam:beam-runners-core-construction-java']
|
||||||
testCompile deps['org.apache.beam:beam-runners-direct-java']
|
testImplementation deps['org.apache.beam:beam-runners-direct-java']
|
||||||
compile deps['org.apache.beam:beam-runners-google-cloud-dataflow-java']
|
implementation deps['org.apache.beam:beam-runners-google-cloud-dataflow-java']
|
||||||
compile deps['org.apache.beam:beam-sdks-java-core']
|
implementation deps['org.apache.beam:beam-sdks-java-core']
|
||||||
compile deps['org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core']
|
implementation deps['org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core']
|
||||||
compile deps['org.apache.beam:beam-sdks-java-io-google-cloud-platform']
|
implementation deps['org.apache.beam:beam-sdks-java-io-google-cloud-platform']
|
||||||
compile deps['org.apache.commons:commons-csv']
|
implementation deps['org.apache.commons:commons-csv']
|
||||||
compile deps['org.apache.commons:commons-lang3']
|
implementation deps['org.apache.commons:commons-lang3']
|
||||||
testCompile deps['org.apache.commons:commons-text']
|
testImplementation deps['org.apache.commons:commons-text']
|
||||||
testCompile deps['org.apache.ftpserver:ftplet-api']
|
testImplementation deps['org.apache.ftpserver:ftplet-api']
|
||||||
testCompile deps['org.apache.ftpserver:ftpserver-core']
|
testImplementation deps['org.apache.ftpserver:ftpserver-core']
|
||||||
compile deps['org.apache.httpcomponents:httpclient']
|
implementation deps['org.apache.httpcomponents:httpclient']
|
||||||
compile deps['org.apache.httpcomponents:httpcore']
|
implementation deps['org.apache.httpcomponents:httpcore']
|
||||||
testCompile deps['org.apache.sshd:sshd-core']
|
testImplementation deps['org.apache.sshd:sshd-core']
|
||||||
testCompile deps['org.apache.sshd:sshd-scp']
|
testImplementation deps['org.apache.sshd:sshd-scp']
|
||||||
testCompile deps['org.apache.sshd:sshd-sftp']
|
testImplementation deps['org.apache.sshd:sshd-sftp']
|
||||||
testCompile deps['org.apache.tomcat:tomcat-annotations-api']
|
testImplementation deps['org.apache.tomcat:tomcat-annotations-api']
|
||||||
compile deps['org.bouncycastle:bcpg-jdk15on']
|
implementation deps['org.bouncycastle:bcpg-jdk15on']
|
||||||
testCompile deps['org.bouncycastle:bcpkix-jdk15on']
|
testImplementation deps['org.bouncycastle:bcpkix-jdk15on']
|
||||||
compile deps['org.bouncycastle:bcprov-jdk15on']
|
implementation deps['org.bouncycastle:bcprov-jdk15on']
|
||||||
testCompile deps['com.fasterxml.jackson.core:jackson-databind']
|
testImplementation deps['com.fasterxml.jackson.core:jackson-databind']
|
||||||
runtime deps['org.glassfish.jaxb:jaxb-runtime']
|
runtime deps['org.glassfish.jaxb:jaxb-runtime']
|
||||||
compile deps['org.hibernate:hibernate-core']
|
implementation deps['org.hibernate:hibernate-core']
|
||||||
compile deps['org.hibernate:hibernate-hikaricp']
|
implementation deps['org.hibernate:hibernate-hikaricp']
|
||||||
compile deps['org.joda:joda-money']
|
implementation deps['org.joda:joda-money']
|
||||||
compile deps['org.json:json']
|
implementation deps['org.json:json']
|
||||||
compile deps['org.jsoup:jsoup']
|
implementation deps['org.jsoup:jsoup']
|
||||||
testCompile deps['org.mortbay.jetty:jetty']
|
testImplementation deps['org.mortbay.jetty:jetty']
|
||||||
compile deps['org.postgresql:postgresql']
|
implementation deps['org.postgresql:postgresql']
|
||||||
testCompile deps['org.seleniumhq.selenium:selenium-api']
|
testImplementation deps['org.seleniumhq.selenium:selenium-api']
|
||||||
testCompile deps['org.seleniumhq.selenium:selenium-chrome-driver']
|
testImplementation deps['org.seleniumhq.selenium:selenium-chrome-driver']
|
||||||
testCompile deps['org.seleniumhq.selenium:selenium-java']
|
testImplementation deps['org.seleniumhq.selenium:selenium-java']
|
||||||
testCompile deps['org.seleniumhq.selenium:selenium-remote-driver']
|
testImplementation deps['org.seleniumhq.selenium:selenium-remote-driver']
|
||||||
runtimeOnly deps['org.slf4j:slf4j-jdk14']
|
runtimeOnly deps['org.slf4j:slf4j-jdk14']
|
||||||
testCompile deps['org.testcontainers:jdbc']
|
testImplementation deps['org.testcontainers:jdbc']
|
||||||
testCompile deps['org.testcontainers:junit-jupiter']
|
testImplementation deps['org.testcontainers:junit-jupiter']
|
||||||
compile deps['org.testcontainers:postgresql']
|
implementation deps['org.testcontainers:postgresql']
|
||||||
testCompile deps['org.testcontainers:selenium']
|
testImplementation deps['org.testcontainers:selenium']
|
||||||
testCompile deps['org.testcontainers:testcontainers']
|
testImplementation deps['org.testcontainers:testcontainers']
|
||||||
compile deps['us.fatehi:schemacrawler']
|
implementation deps['us.fatehi:schemacrawler']
|
||||||
compile deps['us.fatehi:schemacrawler-api']
|
implementation deps['us.fatehi:schemacrawler-api']
|
||||||
compile deps['us.fatehi:schemacrawler-diagram']
|
implementation deps['us.fatehi:schemacrawler-diagram']
|
||||||
compile deps['us.fatehi:schemacrawler-tools']
|
implementation deps['us.fatehi:schemacrawler-tools']
|
||||||
compile deps['xerces:xmlParserAPIs']
|
implementation deps['xerces:xmlParserAPIs']
|
||||||
compile deps['xpp3:xpp3']
|
implementation deps['xpp3:xpp3']
|
||||||
// This dependency must come after javax.mail:mail as it would otherwise
|
// This dependency must come after javax.mail:mail as it would otherwise
|
||||||
// shadow classes in package javax.mail with its own implementation.
|
// 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.
|
// Known issue: nebula-lint misses inherited dependency.
|
||||||
compile project(':common')
|
implementation project(':common')
|
||||||
testCompile project(path: ':common', configuration: 'testing')
|
testImplementation project(path: ':common', configuration: 'testing')
|
||||||
compile project(':util')
|
implementation project(':util')
|
||||||
// Import NomulusPostreSql from ':db' for compile but exclude dependencies.
|
// Import NomulusPostreSql from ':db' for implementation but exclude dependencies.
|
||||||
compile project(path: ':db', configuration: 'compileApi')
|
implementation project(path: ':db', configuration: 'implementationApi')
|
||||||
testRuntime project(':db')
|
testRuntimeOnly project(':db')
|
||||||
|
|
||||||
annotationProcessor deps['com.google.auto.service:auto-service']
|
annotationProcessor deps['com.google.auto.service:auto-service']
|
||||||
annotationProcessor deps['com.google.auto.value:auto-value']
|
annotationProcessor deps['com.google.auto.value:auto-value']
|
||||||
|
@ -315,33 +315,33 @@ dependencies {
|
||||||
annotationProcessor project(':processor')
|
annotationProcessor project(':processor')
|
||||||
testAnnotationProcessor project(':processor')
|
testAnnotationProcessor project(':processor')
|
||||||
|
|
||||||
testCompile deps['com.google.cloud:google-cloud-nio']
|
testImplementation deps['com.google.cloud:google-cloud-nio']
|
||||||
testCompile deps['com.google.appengine:appengine-testing']
|
testImplementation deps['com.google.appengine:appengine-testing']
|
||||||
testCompile deps['com.google.guava:guava-testlib']
|
testImplementation deps['com.google.guava:guava-testlib']
|
||||||
testCompile deps['com.google.monitoring-client:contrib']
|
testImplementation deps['com.google.monitoring-client:contrib']
|
||||||
testCompile deps['com.google.protobuf:protobuf-java-util']
|
testImplementation deps['com.google.protobuf:protobuf-java-util']
|
||||||
testCompile deps['com.google.truth:truth']
|
testImplementation deps['com.google.truth:truth']
|
||||||
testCompile deps['com.google.truth.extensions:truth-java8-extension']
|
testImplementation deps['com.google.truth.extensions:truth-java8-extension']
|
||||||
testCompile deps['org.checkerframework:checker-qual']
|
testImplementation deps['org.checkerframework:checker-qual']
|
||||||
testCompile deps['org.hamcrest:hamcrest']
|
testImplementation deps['org.hamcrest:hamcrest']
|
||||||
testCompile deps['org.hamcrest:hamcrest-core']
|
testImplementation deps['org.hamcrest:hamcrest-core']
|
||||||
testCompile deps['org.hamcrest:hamcrest-library']
|
testImplementation deps['org.hamcrest:hamcrest-library']
|
||||||
testCompile deps['junit:junit']
|
testImplementation deps['junit:junit']
|
||||||
testCompile deps['org.junit.jupiter:junit-jupiter-api']
|
testImplementation deps['org.junit.jupiter:junit-jupiter-api']
|
||||||
testCompile deps['org.junit.jupiter:junit-jupiter-engine']
|
testImplementation deps['org.junit.jupiter:junit-jupiter-engine']
|
||||||
testCompile deps['org.junit.jupiter:junit-jupiter-migrationsupport']
|
testImplementation deps['org.junit.jupiter:junit-jupiter-migrationsupport']
|
||||||
testCompile deps['org.junit.jupiter:junit-jupiter-params']
|
testImplementation deps['org.junit.jupiter:junit-jupiter-params']
|
||||||
testCompile deps['org.junit-pioneer:junit-pioneer']
|
testImplementation deps['org.junit-pioneer:junit-pioneer']
|
||||||
testCompile deps['org.junit.platform:junit-platform-runner']
|
testImplementation deps['org.junit.platform:junit-platform-runner']
|
||||||
testCompile deps['org.junit.platform:junit-platform-suite-api']
|
testImplementation deps['org.junit.platform:junit-platform-suite-api']
|
||||||
testCompile deps['org.mockito:mockito-core']
|
testImplementation deps['org.mockito:mockito-core']
|
||||||
testCompile deps['org.mockito:mockito-junit-jupiter']
|
testImplementation deps['org.mockito:mockito-junit-jupiter']
|
||||||
runtime deps['org.postgresql:postgresql']
|
runtime deps['org.postgresql:postgresql']
|
||||||
|
|
||||||
// Indirect dependency found by undeclared-dependency check. Such
|
// 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.
|
// 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.
|
// Dependencies needed for jaxb compilation.
|
||||||
// Use jaxb 2.2.11 because 2.3 is known to break the Ant task we use.
|
// 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']
|
css deps['args4j:args4j']
|
||||||
|
|
||||||
// Tool dependencies. used for doc generation.
|
// 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.
|
// 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']
|
closureCompiler deps['com.google.javascript:closure-compiler']
|
||||||
}
|
}
|
||||||
|
@ -604,6 +604,7 @@ task compileProdJS(type: JavaExec) {
|
||||||
closureArgs << "--js=${soySourceDir}/**.js"
|
closureArgs << "--js=${soySourceDir}/**.js"
|
||||||
args closureArgs
|
args closureArgs
|
||||||
}
|
}
|
||||||
|
compileProdJS.dependsOn soyToJava
|
||||||
|
|
||||||
compileJava.dependsOn jaxbToJava
|
compileJava.dependsOn jaxbToJava
|
||||||
compileJava.dependsOn soyToJava
|
compileJava.dependsOn soyToJava
|
||||||
|
@ -632,7 +633,7 @@ task testJar(type: Jar) {
|
||||||
}
|
}
|
||||||
|
|
||||||
artifacts {
|
artifacts {
|
||||||
testRuntime testJar
|
testRuntimeOnly testJar
|
||||||
}
|
}
|
||||||
|
|
||||||
task findGoldenImages(type: JavaExec) {
|
task findGoldenImages(type: JavaExec) {
|
||||||
|
@ -930,6 +931,7 @@ class FilteringTest extends Test {
|
||||||
*
|
*
|
||||||
* <p>Must be defined before "test", if at all.
|
* <p>Must be defined before "test", if at all.
|
||||||
*/
|
*/
|
||||||
|
@Input
|
||||||
boolean excludeTestCases = true
|
boolean excludeTestCases = true
|
||||||
|
|
||||||
void setTests(List<String> tests) {
|
void setTests(List<String> tests) {
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
# This is a Gradle generated file for dependency locking.
|
||||||
# Manual edits can break the build and are not advised.
|
# Manual edits can break the build and are not advised.
|
||||||
# This file is expected to be part of source control.
|
# This file is expected to be part of source control.
|
||||||
|
empty=classpath
|
486
core/gradle.lockfile
Normal file
486
core/gradle.lockfile
Normal file
|
@ -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
|
|
@ -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
|
|
|
@ -1,3 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
|
@ -1,3 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
|
@ -1,19 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
antlr:antlr:2.7.7
|
|
||||||
com.google.code.findbugs:jsr305:3.0.2
|
|
||||||
com.google.errorprone:error_prone_annotations:2.3.4
|
|
||||||
com.google.guava:failureaccess:1.0.1
|
|
||||||
com.google.guava:guava:29.0-jre
|
|
||||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
|
||||||
com.google.j2objc:j2objc-annotations:1.3
|
|
||||||
com.puppycrawl.tools:checkstyle:8.37
|
|
||||||
commons-beanutils:commons-beanutils:1.9.4
|
|
||||||
commons-collections:commons-collections:3.2.2
|
|
||||||
info.picocli:picocli:4.5.2
|
|
||||||
net.sf.saxon:Saxon-HE:10.3
|
|
||||||
org.antlr:antlr4-runtime:4.8-1
|
|
||||||
org.checkerframework:checker-qual:2.11.1
|
|
||||||
org.javassist:javassist:3.26.0-GA
|
|
||||||
org.reflections:reflections:0.9.12
|
|
|
@ -1,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
|
|
|
@ -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
|
|
|
@ -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
|
|
|
@ -1,3 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
|
@ -1,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
|
|
|
@ -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
|
|
|
@ -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
|
|
|
@ -1,3 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
|
@ -1,27 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
com.github.ben-manes.caffeine:caffeine:2.7.0
|
|
||||||
com.github.kevinstern:software-and-algorithms:1.0
|
|
||||||
com.google.auto:auto-common:0.10
|
|
||||||
com.google.code.findbugs:jFormatString:3.0.0
|
|
||||||
com.google.code.findbugs:jsr305:3.0.2
|
|
||||||
com.google.errorprone:error_prone_annotation:2.3.4
|
|
||||||
com.google.errorprone:error_prone_annotations:2.3.4
|
|
||||||
com.google.errorprone:error_prone_check_api:2.3.4
|
|
||||||
com.google.errorprone:error_prone_core:2.3.4
|
|
||||||
com.google.errorprone:error_prone_type_annotations:2.3.4
|
|
||||||
com.google.guava:failureaccess:1.0.1
|
|
||||||
com.google.guava:guava:27.0.1-jre
|
|
||||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
|
||||||
com.google.j2objc:j2objc-annotations:1.1
|
|
||||||
com.google.protobuf:protobuf-java:3.4.0
|
|
||||||
com.googlecode.java-diff-utils:diffutils:1.3.0
|
|
||||||
org.checkerframework:checker-qual:3.0.0
|
|
||||||
org.checkerframework:dataflow:3.0.0
|
|
||||||
org.checkerframework:javacutil:3.0.0
|
|
||||||
org.codehaus.mojo:animal-sniffer-annotations:1.17
|
|
||||||
org.pcollections:pcollections:2.1.2
|
|
||||||
org.plumelib:plume-util:1.0.6
|
|
||||||
org.plumelib:reflection-util:0.0.2
|
|
||||||
org.plumelib:require-javadoc:0.1.0
|
|
|
@ -1,3 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
|
@ -1,4 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
org.jacoco:org.jacoco.agent:0.8.6
|
|
|
@ -1,11 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
org.jacoco:org.jacoco.agent:0.8.6
|
|
||||||
org.jacoco:org.jacoco.ant:0.8.6
|
|
||||||
org.jacoco:org.jacoco.core:0.8.6
|
|
||||||
org.jacoco:org.jacoco.report:0.8.6
|
|
||||||
org.ow2.asm:asm-analysis:8.0.1
|
|
||||||
org.ow2.asm:asm-commons:8.0.1
|
|
||||||
org.ow2.asm:asm-tree:8.0.1
|
|
||||||
org.ow2.asm:asm:8.0.1
|
|
|
@ -1,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
|
|
|
@ -1,3 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
|
@ -1,27 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
com.github.ben-manes.caffeine:caffeine:2.7.0
|
|
||||||
com.github.kevinstern:software-and-algorithms:1.0
|
|
||||||
com.google.auto:auto-common:0.10
|
|
||||||
com.google.code.findbugs:jFormatString:3.0.0
|
|
||||||
com.google.code.findbugs:jsr305:3.0.2
|
|
||||||
com.google.errorprone:error_prone_annotation:2.3.4
|
|
||||||
com.google.errorprone:error_prone_annotations:2.3.4
|
|
||||||
com.google.errorprone:error_prone_check_api:2.3.4
|
|
||||||
com.google.errorprone:error_prone_core:2.3.4
|
|
||||||
com.google.errorprone:error_prone_type_annotations:2.3.4
|
|
||||||
com.google.guava:failureaccess:1.0.1
|
|
||||||
com.google.guava:guava:27.0.1-jre
|
|
||||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
|
||||||
com.google.j2objc:j2objc-annotations:1.1
|
|
||||||
com.google.protobuf:protobuf-java:3.4.0
|
|
||||||
com.googlecode.java-diff-utils:diffutils:1.3.0
|
|
||||||
org.checkerframework:checker-qual:3.0.0
|
|
||||||
org.checkerframework:dataflow:3.0.0
|
|
||||||
org.checkerframework:javacutil:3.0.0
|
|
||||||
org.codehaus.mojo:animal-sniffer-annotations:1.17
|
|
||||||
org.pcollections:pcollections:2.1.2
|
|
||||||
org.plumelib:plume-util:1.0.6
|
|
||||||
org.plumelib:reflection-util:0.0.2
|
|
||||||
org.plumelib:require-javadoc:0.1.0
|
|
|
@ -1,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
|
|
|
@ -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
|
|
|
@ -1,3 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
|
@ -1,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
|
|
|
@ -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
|
|
|
@ -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
|
|
|
@ -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
|
|
|
@ -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
|
|
|
@ -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
|
|
|
@ -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
|
|
|
@ -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
|
|
|
@ -1,3 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
|
@ -1,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
|
|
|
@ -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
|
|
|
@ -97,24 +97,24 @@ task schemaJar(type: Jar) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Expose NomulusPostgreSql class to ':core' for compile, without leaking
|
// Expose NomulusPostgreSql class to ':core' for implementation, without
|
||||||
// unnecessary dependencies to the release artifacts through ':core'.
|
// leaking unnecessary dependencies to the release artifacts through ':core'.
|
||||||
// Jar is put in the 'compileApi' configuration.
|
// Jar is put in the 'implementationApi' configuration.
|
||||||
task compileApiJar(type: Jar) {
|
task implementationApiJar(type: Jar) {
|
||||||
archiveBaseName = 'compile'
|
archiveBaseName = 'implementation'
|
||||||
from(sourceSets.main.output) {
|
from(sourceSets.main.output) {
|
||||||
include 'google/registry/persistence/NomulusPostgreSql**'
|
include 'google/registry/persistence/NomulusPostgreSql**'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
compileApi
|
implementationApi
|
||||||
schema
|
schema
|
||||||
integration
|
integration
|
||||||
}
|
}
|
||||||
|
|
||||||
artifacts {
|
artifacts {
|
||||||
compileApi compileApiJar
|
implementationApi implementationApiJar
|
||||||
schema schemaJar
|
schema schemaJar
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -159,23 +159,23 @@ flyway {
|
||||||
dependencies {
|
dependencies {
|
||||||
def deps = rootProject.dependencyMap
|
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['com.google.cloud.sql:postgres-socket-factory']
|
||||||
runtimeOnly deps['org.postgresql:postgresql']
|
runtimeOnly deps['org.postgresql:postgresql']
|
||||||
|
|
||||||
testCompile deps['com.google.flogger:flogger']
|
testImplementation deps['com.google.flogger:flogger']
|
||||||
testRuntime deps['com.google.flogger:flogger-system-backend']
|
testRuntimeOnly deps['com.google.flogger:flogger-system-backend']
|
||||||
testCompile deps['com.google.guava:guava']
|
testImplementation deps['com.google.guava:guava']
|
||||||
testCompile deps['com.google.truth:truth']
|
testImplementation deps['com.google.truth:truth']
|
||||||
testRuntime deps['io.github.java-diff-utils:java-diff-utils']
|
testRuntimeOnly deps['io.github.java-diff-utils:java-diff-utils']
|
||||||
testCompile deps['org.junit.jupiter:junit-jupiter-api']
|
testImplementation deps['org.junit.jupiter:junit-jupiter-api']
|
||||||
testCompile deps['org.junit.jupiter:junit-jupiter-engine']
|
testImplementation deps['org.junit.jupiter:junit-jupiter-engine']
|
||||||
testCompile deps['org.testcontainers:postgresql']
|
testImplementation deps['org.testcontainers:postgresql']
|
||||||
testCompile deps['org.testcontainers:testcontainers']
|
testImplementation deps['org.testcontainers:testcontainers']
|
||||||
testCompile deps['org.testcontainers:junit-jupiter']
|
testImplementation deps['org.testcontainers:junit-jupiter']
|
||||||
testCompile deps['org.testcontainers:postgresql']
|
testImplementation deps['org.testcontainers:postgresql']
|
||||||
testCompile project(path: ':common', configuration: 'testing')
|
testImplementation project(path: ':common', configuration: 'testing')
|
||||||
}
|
}
|
||||||
|
|
||||||
task generateFlywayIndex {
|
task generateFlywayIndex {
|
||||||
|
|
7
db/buildscript-gradle.lockfile
Normal file
7
db/buildscript-gradle.lockfile
Normal file
|
@ -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=
|
122
db/gradle.lockfile
Normal file
122
db/gradle.lockfile
Normal file
|
@ -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
|
|
@ -1,27 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
com.github.ben-manes.caffeine:caffeine:2.7.0
|
|
||||||
com.github.kevinstern:software-and-algorithms:1.0
|
|
||||||
com.google.auto:auto-common:0.10
|
|
||||||
com.google.code.findbugs:jFormatString:3.0.0
|
|
||||||
com.google.code.findbugs:jsr305:3.0.2
|
|
||||||
com.google.errorprone:error_prone_annotation:2.3.4
|
|
||||||
com.google.errorprone:error_prone_annotations:2.3.4
|
|
||||||
com.google.errorprone:error_prone_check_api:2.3.4
|
|
||||||
com.google.errorprone:error_prone_core:2.3.4
|
|
||||||
com.google.errorprone:error_prone_type_annotations:2.3.4
|
|
||||||
com.google.guava:failureaccess:1.0.1
|
|
||||||
com.google.guava:guava:27.0.1-jre
|
|
||||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
|
||||||
com.google.j2objc:j2objc-annotations:1.1
|
|
||||||
com.google.protobuf:protobuf-java:3.4.0
|
|
||||||
com.googlecode.java-diff-utils:diffutils:1.3.0
|
|
||||||
org.checkerframework:checker-qual:3.0.0
|
|
||||||
org.checkerframework:dataflow:3.0.0
|
|
||||||
org.checkerframework:javacutil:3.0.0
|
|
||||||
org.codehaus.mojo:animal-sniffer-annotations:1.17
|
|
||||||
org.pcollections:pcollections:2.1.2
|
|
||||||
org.plumelib:plume-util:1.0.6
|
|
||||||
org.plumelib:reflection-util:0.0.2
|
|
||||||
org.plumelib:require-javadoc:0.1.0
|
|
|
@ -1,3 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
|
@ -1,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
|
|
|
@ -1,19 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
antlr:antlr:2.7.7
|
|
||||||
com.google.code.findbugs:jsr305:3.0.2
|
|
||||||
com.google.errorprone:error_prone_annotations:2.3.4
|
|
||||||
com.google.guava:failureaccess:1.0.1
|
|
||||||
com.google.guava:guava:29.0-jre
|
|
||||||
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
|
|
||||||
com.google.j2objc:j2objc-annotations:1.3
|
|
||||||
com.puppycrawl.tools:checkstyle:8.37
|
|
||||||
commons-beanutils:commons-beanutils:1.9.4
|
|
||||||
commons-collections:commons-collections:3.2.2
|
|
||||||
info.picocli:picocli:4.5.2
|
|
||||||
net.sf.saxon:Saxon-HE:10.3
|
|
||||||
org.antlr:antlr4-runtime:4.8-1
|
|
||||||
org.checkerframework:checker-qual:2.11.1
|
|
||||||
org.javassist:javassist:3.26.0-GA
|
|
||||||
org.reflections:reflections:0.9.12
|
|
|
@ -1,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
|
|
|
@ -1,3 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
|
@ -1,4 +0,0 @@
|
||||||
# This is a Gradle generated file for dependency locking.
|
|
||||||
# Manual edits can break the build and are not advised.
|
|
||||||
# This file is expected to be part of source control.
|
|
||||||
org.flywaydb:flyway-core:8.5.13
|
|
|
@ -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.
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue