From 59b44b60dfb2553d6b67c12ccf162a349dfc78be Mon Sep 17 00:00:00 2001 From: gbrodman Date: Wed, 25 Mar 2026 16:10:50 -0400 Subject: [PATCH] Update Hibernate and various other dependencies (#2986) This ended up being wayyyy more complicated than expected due to issues with Hibernate, various dependencies having conflicts with the proto dependency version, and other breaking changes. Notes: - Hibernate 7 switches up the user type / converter system and for us, this means we must be / want to be more explicit with how we convert and store things. For example, we need to add Postgres types to @Column definitions. - Hibernate 7.3 has an issue with generic MappedSuperclasses -- we have issues with BaseDomainLabelList. I'll investigate that, but for now let's stick with 7.2.x - H7 is more strict with annotations and prevents us from storing mapped superclasses embedded within other objects. This kinda makes sense but makes the History objects a bit more difficult. We had to add "concrete" embeddable DomainBase and HostBase objects that we can store/retrieve from the DB. - We convert some of the calls to "Query" to "TypedQuery" -- in Hibernate 8 / JPA 4.0 these will be super-deprecated and we'll need to shift everything over, so this is necessary. - You aren't supposed to put callback listeners on embedded entities (because it can be not obvious what's happening). We don't like that, so we add our own annotations that are processed recursively for embedded entities, so we get things like the update / create timestamps. - Hibernate doesn't allow for multiple converters to be auto-applied to the same "type" and it counts all VKey converters as one type. Unfortunately, this means we have to explicitly mark each one. - A bunch of other dependency changes were required to keep from having the proto 3/4 conflict --- common/gradle.lockfile | 17 +- .../dependency-license/allowed_licenses.json | 5 + config/presubmits.py | 9 +- core/gradle.lockfile | 629 +++++++++--------- .../batch/CheckBulkComplianceAction.java | 17 +- .../registry/beam/common/RegistryQuery.java | 6 +- .../registry/model/CreateAutoTimestamp.java | 10 +- .../registry/model/UpdateAutoTimestamp.java | 10 +- .../model/billing/BillingCancellation.java | 3 + .../registry/model/billing/BillingEvent.java | 7 +- .../registry/model/common/FeatureFlag.java | 2 +- .../google/registry/model/console/User.java | 2 - .../registry/model/console/UserRoles.java | 1 + .../google/registry/model/domain/Domain.java | 37 +- .../registry/model/domain/DomainBase.java | 41 +- .../registry/model/domain/DomainHistory.java | 18 +- .../model/domain/EmbeddedDomainBase.java | 31 + .../model/domain/GracePeriodBase.java | 5 + .../registry/model/domain/RegistryLock.java | 1 + .../model/domain/token/AllocationToken.java | 1 + .../domain/token/BulkPricingPackage.java | 2 + .../registry/model/eppcommon/Address.java | 4 +- .../registry/model/eppcommon/StatusValue.java | 8 +- .../registry/model/host/EmbeddedHostBase.java | 28 + .../java/google/registry/model/host/Host.java | 16 - .../google/registry/model/host/HostBase.java | 23 +- .../registry/model/host/HostHistory.java | 7 +- .../registry/model/poll/PollMessage.java | 4 +- .../registry/model/registrar/Registrar.java | 2 + .../model/reporting/HistoryEntry.java | 14 +- .../google/registry/model/server/Lock.java | 4 +- .../java/google/registry/model/tld/Tld.java | 34 +- .../java/google/registry/model/tld/Tlds.java | 5 +- .../model/tld/label/ReservedList.java | 25 +- .../registry/model/tmch/ClaimsList.java | 14 +- .../model/transfer/DomainTransferData.java | 9 + .../persistence/EntityCallbacksListener.java | 129 ++-- .../persistence/NomulusPostgreSQLDialect.java | 14 +- .../persistence/NoopJpaEntityScanner.java | 45 -- .../persistence/PersistenceXmlUtility.java | 19 +- .../converter/DurationUserType.java | 2 + .../converter/InetAddressSetUserType.java | 5 +- .../persistence/converter/JodaMoneyType.java | 3 +- .../persistence/converter/MapUserType.java | 48 +- .../converter/StringCollectionUserType.java | 2 + .../transaction/DatabaseException.java | 2 +- .../JpaTransactionManagerImpl.java | 10 +- .../registry/rdap/RdapSearchResults.java | 2 +- .../tools/server/GenerateZoneFilesAction.java | 5 +- .../main/resources/META-INF/persistence.xml | 6 +- .../tools/GenerateSqlErDiagramCommand.java | 2 +- .../bsa/BsaDownloadFunctionalTest.java | 2 +- .../model/history/HostHistoryTest.java | 3 +- .../EntityCallbacksListenerTest.java | 48 +- ...tionTokenStatusTransitionUserTypeTest.java | 2 + .../AllocationTokenVkeyListUserTypeTest.java | 3 + .../BillingCostTransitionUserTypeTest.java | 2 + .../converter/CidrBlockListUserTypeTest.java | 2 + .../CurrencyToStringMapUserTypeTest.java | 2 + .../converter/DurationUserTypeTest.java | 4 + .../converter/InetAddressSetUserTypeTest.java | 2 + .../RegistrarToRoleMapUserTypeTest.java | 2 + .../StringCollectionUserTypeTest.java | 2 + .../converter/StringMapUserTypeTest.java | 2 + .../converter/StringValueEnumeratedTest.java | 3 +- .../TimedTransitionBaseUserTypeTest.java | 2 + .../TldStateTransitionUserTypeTest.java | 2 + .../HibernateLoggingSuppressionTest.java | 7 +- .../JpaTestExtensionsSqlLoggingTest.java | 6 +- .../JpaTransactionManagerExtension.java | 4 +- .../JpaTransactionManagerExtensionTest.java | 2 +- .../transaction/TransactionManagerTest.java | 2 - db/buildscript-gradle.lockfile | 12 +- db/gradle.lockfile | 109 +-- .../sql/er_diagram/brief_er_diagram.html | 162 ++--- .../sql/er_diagram/full_er_diagram.html | 176 ++--- .../sql/schema/db-schema.sql.generated | 76 +-- dependencies.gradle | 60 +- jetty/gradle.lockfile | 356 +++++----- load-testing/gradle.lockfile | 32 +- networking/gradle.lockfile | 171 +++-- prober/gradle.lockfile | 182 ++--- processor/gradle.lockfile | 6 +- .../registry/processors/VKeyProcessor.java | 7 +- proxy/gradle.lockfile | 283 ++++---- services/backend/gradle.lockfile | 402 ----------- services/bsa/gradle.lockfile | 402 ----------- services/default/gradle.lockfile | 402 ----------- services/pubapi/gradle.lockfile | 402 ----------- services/tools/gradle.lockfile | 402 ----------- util/gradle.lockfile | 160 ++--- 91 files changed, 1663 insertions(+), 3588 deletions(-) create mode 100644 core/src/main/java/google/registry/model/domain/EmbeddedDomainBase.java create mode 100644 core/src/main/java/google/registry/model/host/EmbeddedHostBase.java delete mode 100644 core/src/main/java/google/registry/persistence/NoopJpaEntityScanner.java delete mode 100644 services/backend/gradle.lockfile delete mode 100644 services/bsa/gradle.lockfile delete mode 100644 services/default/gradle.lockfile delete mode 100644 services/pubapi/gradle.lockfile delete mode 100644 services/tools/gradle.lockfile diff --git a/common/gradle.lockfile b/common/gradle.lockfile index 9d478f5e1..f5cd0dca7 100644 --- a/common/gradle.lockfile +++ b/common/gradle.lockfile @@ -3,7 +3,7 @@ # This file is expected to be part of source control. aopalliance:aopalliance:1.0=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor com.github.ben-manes.caffeine:caffeine:3.0.5=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor -com.github.ben-manes.caffeine:caffeine:3.2.2=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +com.github.ben-manes.caffeine:caffeine:3.2.3=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath com.github.kevinstern:software-and-algorithms:1.0=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor com.google.auto.service:auto-service-annotations:1.0.1=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor com.google.auto.value:auto-value-annotations:1.11.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath @@ -12,7 +12,7 @@ com.google.auto:auto-common:1.2.1=annotationProcessor,errorprone,testAnnotationP com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClasspath,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath,testing,testingAnnotationProcessor,testingCompileClasspath com.google.errorprone:error_prone_annotation:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor com.google.errorprone:error_prone_annotations:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor -com.google.errorprone:error_prone_annotations:2.40.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +com.google.errorprone:error_prone_annotations:2.43.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath com.google.errorprone:error_prone_annotations:2.7.1=checkstyle com.google.errorprone:error_prone_check_api:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor com.google.errorprone:error_prone_core:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor @@ -24,13 +24,13 @@ com.google.guava:failureaccess:1.0.2=compileClasspath,deploy_jar,runtimeClasspat com.google.guava:guava-parent:32.1.1-jre=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor com.google.guava:guava:31.0.1-jre=checkstyle com.google.guava:guava:32.1.1-jre=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor -com.google.guava:guava:33.2.1-android=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +com.google.guava:guava:33.4.3-android=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath com.google.inject:guice:5.1.0=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor com.google.j2objc:j2objc-annotations:1.3=checkstyle -com.google.j2objc:j2objc-annotations:3.0.0=compileClasspath,testCompileClasspath,testingCompileClasspath +com.google.j2objc:j2objc-annotations:3.0.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath com.google.protobuf:protobuf-java:3.19.6=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor -com.google.truth:truth:1.4.4=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +com.google.truth:truth:1.4.5=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath com.puppycrawl.tools:checkstyle:9.3=checkstyle commons-beanutils:commons-beanutils:1.9.4=checkstyle commons-collections:commons-collections:3.2.2=checkstyle @@ -40,14 +40,14 @@ io.github.java-diff-utils:java-diff-utils:4.12=annotationProcessor,errorprone,te io.github.java-diff-utils:java-diff-utils:4.16=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath javax.inject:javax.inject:1=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor -joda-time:joda-time:2.14.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +joda-time:joda-time:2.14.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath junit:junit:4.13.2=testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath net.sf.saxon:Saxon-HE:10.6=checkstyle org.antlr:antlr4-runtime:4.9.3=checkstyle org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath org.checkerframework:checker-qual:3.12.0=checkstyle org.checkerframework:checker-qual:3.33.0=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor -org.checkerframework:checker-qual:3.42.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +org.checkerframework:checker-qual:3.43.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath org.hamcrest:hamcrest-core:1.3=testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath org.jacoco:org.jacoco.agent:0.8.12=jacocoAgent,jacocoAnt org.jacoco:org.jacoco.ant:0.8.12=jacocoAnt @@ -64,7 +64,8 @@ org.junit:junit-bom:5.13.4=testCompileClasspath,testRuntimeClasspath org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath org.ow2.asm:asm-commons:9.7=jacocoAnt org.ow2.asm:asm-tree:9.7=jacocoAnt -org.ow2.asm:asm:9.7=compileClasspath,deploy_jar,jacocoAnt,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath +org.ow2.asm:asm:9.7=jacocoAnt +org.ow2.asm:asm:9.8=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath,testing,testingCompileClasspath org.pcollections:pcollections:3.1.4=annotationProcessor,errorprone,testAnnotationProcessor,testingAnnotationProcessor org.reflections:reflections:0.10.2=checkstyle empty=testingCompile,testingRuntime,testingRuntimeClasspath diff --git a/config/dependency-license/allowed_licenses.json b/config/dependency-license/allowed_licenses.json index 0bec3dea7..f586a43d1 100644 --- a/config/dependency-license/allowed_licenses.json +++ b/config/dependency-license/allowed_licenses.json @@ -302,6 +302,11 @@ "moduleLicense": null, "moduleName": "com.fasterxml.jackson:jackson-bom" }, + { + // "Apache License, Version 2.0". + "moduleLicense": null, + "moduleName": "tools.jackson:jackson-bom" + }, { // "Apache License, Version 2.0". "moduleLicense": null, diff --git a/config/presubmits.py b/config/presubmits.py index 8118c2ea5..27e1a13fa 100644 --- a/config/presubmits.py +++ b/config/presubmits.py @@ -180,6 +180,14 @@ PRESUBMITS = { {"/node_modules/"}, ): "Do not use javax.inject.* Use jakarta.inject.* instead.", + PresubmitCheck( + r".*import jakarta.persistence.(Pre|Post)(Persist|Load|Remove|Update);", + "java", + {"EntityCallbacksListener.java"}, + ): + "Hibernate lifecycle events aren't called for embedded entities, so it's " + "usually best to avoid them. Instead, use the annotations defined in " + "EntityCallbacksListener.java" } # Note that this regex only works for one kind of Flyway file. If we want to @@ -274,7 +282,6 @@ def get_files(): if __name__ == "__main__": - print('python version is %s' % sys.version) failed = False for file in get_files(): error_messages = [] diff --git a/core/gradle.lockfile b/core/gradle.lockfile index b888a8bb8..b88deaf6e 100644 --- a/core/gradle.lockfile +++ b/core/gradle.lockfile @@ -4,26 +4,26 @@ aopalliance:aopalliance:1.0=annotationProcessor,compileClasspath,deploy_jar,errorprone,nonprodAnnotationProcessor,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath args4j:args4j:2.33=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testCompileClasspath,testRuntimeClasspath com.charleskorn.kaml:kaml:0.20.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-annotations:2.20-rc1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-core:2.20.0-rc1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-databind:2.20.0-rc1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.0-rc1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.20.0-rc1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.20.0-rc1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson:jackson-bom:2.20.0-rc1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml:classmate:1.5.1=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.21=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-core:2.20.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.20.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-joda:2.20.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.20.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson:jackson-bom:2.20.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml:classmate:1.7.1=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath com.github.ben-manes.caffeine:caffeine:3.0.5=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor -com.github.ben-manes.caffeine:caffeine:3.2.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.ben-manes.caffeine:caffeine:3.2.3=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.github.docker-java:docker-java-api:3.4.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.github.docker-java:docker-java-transport-zerodep:3.4.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.github.docker-java:docker-java-transport:3.4.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jffi:1.3.13=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jffi:1.3.14=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.github.jnr:jnr-a64asm:1.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.github.jnr:jnr-constants:0.10.4=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-enxio:0.32.18=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-ffi:2.2.17=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-posix:3.1.20=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-unixsocket:0.38.23=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-enxio:0.32.19=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-ffi:2.2.18=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-posix:3.1.21=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.jnr:jnr-unixsocket:0.38.24=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.github.jnr:jnr-x86asm:1.0.2=compileClasspath,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=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath @@ -31,140 +31,149 @@ com.google.api-client:google-api-client-jackson2:2.0.1=compileClasspath,nonprodC com.google.api-client:google-api-client-jackson2:2.7.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath com.google.api-client:google-api-client-java6:2.1.4=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.api-client:google-api-client-servlet:2.7.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-servlet:2.8.1=compileClasspath,nonprodCompileClasspath,testCompileClasspath -com.google.api-client:google-api-client:2.8.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:gapic-google-cloud-storage-v2:2.44.1-beta=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:gapic-google-cloud-storage-v2:2.55.0=testCompileClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:3.15.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.187.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.187.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.122.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.15.9=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.95.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.95.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.95.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-storage-control-v2:2.44.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-storage-v2:2.44.1-beta=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-storage-v2:2.55.0=testCompileClasspath -com.google.api.grpc:grpc-google-common-protos:2.58.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:3.15.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1alpha:3.15.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.187.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.187.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta:3.15.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api-client:google-api-client-servlet:2.9.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api-client:google-api-client:2.9.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:gapic-google-cloud-storage-v2:2.51.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:3.9.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:3.9.2=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.181.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.181.2=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.181.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.181.2=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.43.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.44.1=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.114.1=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.115.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.14.1=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.14.3=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.74.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.77.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.74.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.77.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-v1:6.74.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:grpc-google-cloud-spanner-v1:6.77.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-storage-v2:2.51.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-common-protos:2.43.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:grpc-google-common-protos:2.45.1=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:3.9.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:3.9.2=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1alpha:3.9.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1alpha:3.9.2=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.181.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.181.2=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.181.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.181.2=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.43.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.44.1=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigtable-v2:2.43.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:proto-google-cloud-bigtable-v2:2.44.1=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath com.google.api.grpc:proto-google-cloud-compute-v1:1.82.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-datastore-v1:0.120.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-firestore-v1:3.31.6=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-monitoring-v3:3.65.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.122.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.15.9=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.51.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.72.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.72.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta2:2.51.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta2:2.72.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.95.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.95.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-spanner-v1:6.95.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-storage-control-v2:2.44.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-storage-v2:2.44.1-beta=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-storage-v2:2.55.0=testCompileClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2:2.51.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2:2.72.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.141.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.162.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.141.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.162.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:proto-google-cloud-datastore-v1:0.112.2=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:proto-google-cloud-datastore-v1:0.113.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-firestore-v1:3.25.1=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:proto-google-cloud-firestore-v1:3.26.5=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-monitoring-v3:3.52.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-pubsub-v1:1.114.1=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:proto-google-cloud-pubsub-v1:1.115.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.14.1=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.14.3=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.51.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-secretmanager-v1beta2:2.51.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.74.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.77.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.74.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.77.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-executor-v1:6.74.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:proto-google-cloud-spanner-v1:6.74.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:proto-google-cloud-spanner-v1:6.77.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-storage-v2:2.51.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2:2.51.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.141.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.141.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.api.grpc:proto-google-common-protos:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-iam-v1:1.53.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-iam-v1:1.55.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath -com.google.api:api-common:2.52.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api:gax-grpc:2.67.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.api:gax-grpc:2.69.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.api.grpc:proto-google-iam-v1:1.50.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:api-common:2.57.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax-grpc:2.64.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.api:gax-httpjson:2.69.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api:gax:2.69.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-admin-directory:directory_v1-rev20250804-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-bigquery:v2-rev20250511-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax:2.74.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-admin-directory:directory_v1-rev20260227-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-bigquery:v2-rev20240815-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.apis:google-api-services-cloudresourcemanager:v1-rev20240310-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-dataflow:v1b3-rev20250812-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-dns:v1-rev20250411-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-drive:v3-rev20250723-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-gmail:v1-rev20250630-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-dataflow:v1b3-rev20260213-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-dns:v1-rev20260219-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-drive:v3-rev20260305-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-gmail:v1-rev20260112-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.apis:google-api-services-groupssettings:v1-rev20220614-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.apis:google-api-services-healthcare:v1-rev20240130-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.apis:google-api-services-iam:v2-rev20250502-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.apis:google-api-services-iamcredentials:v1-rev20211203-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-monitoring:v3-rev20250731-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-monitoring:v3-rev20260129-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.apis:google-api-services-pubsub:v1-rev20220904-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-sheets:v4-rev20250616-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-sqladmin:v1beta4-rev20250613-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-storage:v1-rev20250524-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.apis:google-api-services-storage:v1-rev20250718-2.0.0=testCompileClasspath -com.google.auth:google-auth-library-credentials:1.37.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-oauth2-http:1.37.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-sheets:v4-rev20260213-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-sqladmin:v1beta4-rev20251201-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-storage:v1-rev20250312-2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath +com.google.apis:google-api-services-storage:v1-rev20251118-2.0.0=testCompileClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-credentials:1.43.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-oauth2-http:1.43.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.auto.service:auto-service-annotations:1.0.1=errorprone,nonprodAnnotationProcessor,testAnnotationProcessor com.google.auto.service:auto-service-annotations:1.1.1=annotationProcessor,compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.auto.service:auto-service:1.1.1=annotationProcessor com.google.auto.value:auto-value-annotations:1.11.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.auto.value:auto-value-annotations:1.9=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor -com.google.auto.value:auto-value:1.11.0=annotationProcessor,compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.auto.value:auto-value:1.11.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.value:auto-value:1.11.1=annotationProcessor,testAnnotationProcessor com.google.auto:auto-common:1.2.1=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor -com.google.cloud.bigdataoss:gcsio:2.2.26=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.bigdataoss:util:2.2.26=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.bigdataoss:gcsio:2.2.16=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.bigdataoss:util:2.2.16=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.cloud.bigtable:bigtable-client-core-config:1.28.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.datastore:datastore-v1-proto-client:2.29.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.opentelemetry:detector-resources-support:0.33.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.datastore:datastore-v1-proto-client:2.21.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.opentelemetry:detector-resources-support:0.31.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.cloud.opentelemetry:detector-resources-support:0.33.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath com.google.cloud.opentelemetry:exporter-metrics:0.33.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.cloud.opentelemetry:shared-resourcemapping:0.33.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.cloud.sql:jdbc-socket-factory-core:1.25.3=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.sql:postgres-socket-factory:1.25.3=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-bigquerystorage:3.15.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-bigtable:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.sql:jdbc-socket-factory-core:1.28.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.sql:postgres-socket-factory:1.28.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-bigquerystorage:3.9.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.cloud:google-cloud-bigquerystorage:3.9.2=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-bigtable:2.43.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.cloud:google-cloud-bigtable:2.44.1=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath com.google.cloud:google-cloud-compute:1.82.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core-grpc:2.57.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core-grpc:2.59.0=testCompileClasspath -com.google.cloud:google-cloud-core-http:2.47.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core-http:2.59.0=testCompileClasspath -com.google.cloud:google-cloud-core:2.57.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core:2.59.0=testCompileClasspath -com.google.cloud:google-cloud-firestore:3.31.6=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-monitoring:3.65.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-nio:0.127.24=testRuntimeClasspath -com.google.cloud:google-cloud-nio:0.128.2=testCompileClasspath -com.google.cloud:google-cloud-pubsub:1.140.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-pubsublite:1.15.9=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-secretmanager:2.51.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-secretmanager:2.72.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath -com.google.cloud:google-cloud-spanner:6.95.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-storage-control:2.44.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-storage:2.44.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-storage:2.55.0=testCompileClasspath -com.google.cloud:google-cloud-tasks:2.51.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-tasks:2.72.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.cloud:google-cloud-core-grpc:2.54.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core-http:2.54.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core:2.51.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-firestore:3.25.1=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.cloud:google-cloud-firestore:3.26.5=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-monitoring:3.52.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-nio:0.129.0-rc1=testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-pubsub:1.132.1=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.cloud:google-cloud-pubsub:1.133.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-pubsublite:1.14.1=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.cloud:google-cloud-pubsublite:1.14.3=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-secretmanager:2.51.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-spanner:6.74.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.cloud:google-cloud-spanner:6.77.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-storage:2.51.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-tasks:2.51.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.cloud:grpc-gcp:1.6.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.cloud:libraries-bom:26.48.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.31.6=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.25.1=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.26.5=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClasspath,deploy_jar,errorprone,nonprodAnnotationProcessor,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath com.google.code.gson:gson:2.10.1=soy com.google.code.gson:gson:2.12.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.common.html.types:types:1.0.8=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testCompileClasspath,testRuntimeClasspath -com.google.dagger:dagger-compiler:2.57.1=annotationProcessor,testAnnotationProcessor -com.google.dagger:dagger-spi:2.57.1=annotationProcessor,testAnnotationProcessor -com.google.dagger:dagger:2.57=deploy_jar -com.google.dagger:dagger:2.57.1=annotationProcessor,compileClasspath,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -com.google.devtools.ksp:symbol-processing-api:2.1.21-2.0.2=annotationProcessor,testAnnotationProcessor +com.google.dagger:dagger-compiler:2.59.2=annotationProcessor,testAnnotationProcessor +com.google.dagger:dagger-spi:2.59.2=annotationProcessor,testAnnotationProcessor +com.google.dagger:dagger:2.59.2=annotationProcessor,compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.devtools.ksp:symbol-processing-api:2.2.20-2.0.3=annotationProcessor,testAnnotationProcessor com.google.errorprone:error_prone_annotation:2.23.0=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor com.google.errorprone:error_prone_annotations:2.20.0=soy com.google.errorprone:error_prone_annotations:2.23.0=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor -com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.48.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.errorprone:error_prone_annotations:2.7.1=checkstyle com.google.errorprone:error_prone_check_api:2.23.0=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor com.google.errorprone:error_prone_core:2.23.0=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor com.google.errorprone:error_prone_type_annotations:2.23.0=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor -com.google.errorprone:javac-shaded:9-dev-r4023-3=annotationProcessor,testAnnotationProcessor com.google.errorprone:javac:9+181-r4173-1=errorproneJavac com.google.escapevelocity:escapevelocity:1.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testCompileClasspath,testRuntimeClasspath com.google.flatbuffers:flatbuffers-java:23.5.26=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath @@ -174,31 +183,30 @@ com.google.flogger:flogger:0.7.4=soy com.google.flogger:flogger:0.8=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.flogger:google-extensions:0.7.4=soy com.google.flogger:google-extensions:0.8=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.googlejavaformat:google-java-format:1.5=annotationProcessor,testAnnotationProcessor +com.google.googlejavaformat:google-java-format:1.33.0=annotationProcessor,testAnnotationProcessor com.google.guava:failureaccess:1.0.1=checkstyle,errorprone,nonprodAnnotationProcessor,soy com.google.guava:failureaccess:1.0.2=annotationProcessor,testAnnotationProcessor com.google.guava:failureaccess:1.0.3=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.guava:guava-parent:32.1.1-jre=errorprone,nonprodAnnotationProcessor,soy com.google.guava:guava-testlib:33.3.0-jre=testRuntimeClasspath -com.google.guava:guava-testlib:33.4.8-jre=testCompileClasspath +com.google.guava:guava-testlib:33.5.0-jre=testCompileClasspath com.google.guava:guava:31.0.1-jre=checkstyle com.google.guava:guava:32.1.1-jre=errorprone,nonprodAnnotationProcessor,soy com.google.guava:guava:33.0.0-jre=annotationProcessor,testAnnotationProcessor -com.google.guava:guava:33.4.8-jre=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:guava:33.5.0-jre=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=annotationProcessor,checkstyle,compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath com.google.gwt:gwt-user:2.10.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.http-client:google-http-client-apache-v2:2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-appengine:1.45.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-appengine:1.47.1=testCompileClasspath -com.google.http-client:google-http-client-gson:2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-jackson2:1.45.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-jackson2:1.47.1=testCompileClasspath -com.google.http-client:google-http-client-protobuf:1.47.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client:2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-appengine:1.46.3=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-gson:2.1.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-jackson2:1.46.3=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-protobuf:1.44.2=compileClasspath,nonprodCompileClasspath,testCompileClasspath +com.google.http-client:google-http-client-protobuf:1.45.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client:2.1.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.inject:guice:5.1.0=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor com.google.inject:guice:7.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testCompileClasspath,testRuntimeClasspath com.google.j2objc:j2objc-annotations:1.3=checkstyle -com.google.j2objc:j2objc-annotations:3.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.j2objc:j2objc-annotations:3.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.jsinterop:jsinterop-annotations:1.0.1=soy com.google.jsinterop:jsinterop-annotations:2.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.monitoring-client:contrib:1.0.7=testCompileClasspath,testRuntimeClasspath @@ -211,13 +219,14 @@ com.google.oauth-client:google-oauth-client-jetty:1.39.0=compileClasspath,nonpro com.google.oauth-client:google-oauth-client-servlet:1.36.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath com.google.oauth-client:google-oauth-client-servlet:1.39.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath com.google.oauth-client:google-oauth-client:1.39.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.protobuf:protobuf-java-util:4.29.4=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java-util:4.33.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath +com.google.protobuf:protobuf-java-util:4.34.1=testCompileClasspath,testRuntimeClasspath com.google.protobuf:protobuf-java:3.19.6=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor com.google.protobuf:protobuf-java:3.21.7=soy -com.google.protobuf:protobuf-java:3.25.8=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.re2j:re2j:1.8=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:4.34.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.re2j:re2j:1.7=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.template:soy:2024-02-26=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testCompileClasspath,testRuntimeClasspath -com.google.truth:truth:1.4.4=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.truth:truth:1.4.5=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.googlecode.json-simple:json-simple:1.1.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.ibm.icu:icu4j:73.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testCompileClasspath,testRuntimeClasspath com.jcraft:jsch:0.1.55=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath @@ -243,20 +252,18 @@ com.squareup:javapoet:1.13.0=annotationProcessor,compileClasspath,deploy_jar,non com.squareup:kotlinpoet-jvm:1.15.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.squareup:kotlinpoet:1.11.0=annotationProcessor,testAnnotationProcessor com.squareup:kotlinpoet:1.15.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.sun.istack:istack-commons-runtime:4.1.1=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -com.sun.istack:istack-commons-runtime:4.1.2=jaxb +com.sun.istack:istack-commons-runtime:4.1.2=deploy_jar,jaxb,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath com.sun.istack:istack-commons-tools:4.1.2=jaxb -com.sun.xml.bind.external:relaxng-datatype:4.0.5=jaxb -com.sun.xml.bind.external:rngom:4.0.5=jaxb +com.sun.xml.bind.external:relaxng-datatype:4.0.7=jaxb +com.sun.xml.bind.external:rngom:4.0.7=jaxb com.sun.xml.dtd-parser:dtd-parser:1.5.1=jaxb -com.zaxxer:HikariCP:7.0.1=deploy_jar -com.zaxxer:HikariCP:7.0.2=compileClasspath,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.zaxxer:HikariCP:7.0.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath commons-beanutils:commons-beanutils:1.9.4=checkstyle commons-codec:commons-codec:1.19.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath commons-collections:commons-collections:3.2.2=checkstyle commons-io:commons-io:2.20.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath commons-logging:commons-logging:1.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -dnsjava:dnsjava:3.6.3=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +dnsjava:dnsjava:3.6.4=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath guru.nidi.com.eclipsesource.j2v8:j2v8_linux_x86_64:4.6.0=testRuntimeClasspath guru.nidi.com.eclipsesource.j2v8:j2v8_macosx_x86_64:4.6.0=testRuntimeClasspath guru.nidi.com.eclipsesource.j2v8:j2v8_win32_x86:4.6.0=testRuntimeClasspath @@ -270,39 +277,53 @@ io.github.classgraph:classgraph:4.8.162=compileClasspath,deploy_jar,nonprodCompi io.github.eisop:dataflow-errorprone:3.34.0-eisop1=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor io.github.java-diff-utils:java-diff-utils:4.12=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor io.github.java-diff-utils:java-diff-utils:4.16=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-alts:1.71.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-api:1.71.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-auth:1.71.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-census:1.71.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-alts:1.70.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-api:1.70.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.grpc:grpc-api:1.71.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-auth:1.70.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-census:1.66.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.grpc:grpc-census:1.68.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath io.grpc:grpc-context:1.71.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-core:1.71.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-googleapis:1.71.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-grpclb:1.71.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-inprocess:1.71.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-netty-shaded:1.71.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-netty:1.71.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-opentelemetry:1.71.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf-lite:1.67.1=compileClasspath,nonprodCompileClasspath -io.grpc:grpc-protobuf-lite:1.71.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf:1.71.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-rls:1.71.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-services:1.71.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-stub:1.71.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-util:1.71.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-xds:1.71.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-buffer:4.1.110.Final=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-http2:4.1.110.Final=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-http:4.1.110.Final=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-core:1.70.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-googleapis:1.70.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-grpclb:1.70.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-inprocess:1.70.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-netty-shaded:1.70.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-netty:1.66.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.grpc:grpc-netty:1.68.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-opentelemetry:1.70.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf-lite:1.70.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf:1.70.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-rls:1.70.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-services:1.66.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.grpc:grpc-services:1.70.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-stub:1.70.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-util:1.66.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.grpc:grpc-util:1.70.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-xds:1.66.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.grpc:grpc-xds:1.70.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.netty:netty-buffer:4.1.100.Final=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.netty:netty-buffer:4.1.110.Final=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.netty:netty-codec-http2:4.1.100.Final=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.netty:netty-codec-http2:4.1.110.Final=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.netty:netty-codec-http:4.1.100.Final=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.netty:netty-codec-http:4.1.110.Final=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath io.netty:netty-codec-socks:4.1.110.Final=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -io.netty:netty-codec:4.1.110.Final=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-common:4.1.110.Final=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec:4.1.100.Final=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.netty:netty-codec:4.1.110.Final=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.netty:netty-common:4.1.100.Final=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.netty:netty-common:4.1.110.Final=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath io.netty:netty-handler-proxy:4.1.110.Final=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -io.netty:netty-handler:4.1.110.Final=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-resolver:4.1.110.Final=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-handler:4.1.100.Final=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.netty:netty-handler:4.1.110.Final=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.netty:netty-resolver:4.1.100.Final=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.netty:netty-resolver:4.1.110.Final=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath io.netty:netty-tcnative-boringssl-static:2.0.52.Final=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath io.netty:netty-tcnative-classes:2.0.52.Final=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport-native-unix-common:4.1.110.Final=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport:4.1.110.Final=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-transport-native-unix-common:4.1.100.Final=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.netty:netty-transport-native-unix-common:4.1.110.Final=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +io.netty:netty-transport:4.1.100.Final=compileClasspath,nonprodCompileClasspath,testCompileClasspath +io.netty:netty-transport:4.1.110.Final=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath io.opencensus:opencensus-api:0.31.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath io.opencensus:opencensus-contrib-exemplar-util:0.31.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath io.opencensus:opencensus-contrib-grpc-metrics:0.31.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath @@ -314,7 +335,6 @@ io.opencensus:opencensus-exporter-metrics-util:0.31.0=compileClasspath,deploy_ja io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath io.opencensus:opencensus-impl-core:0.31.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath io.opencensus:opencensus-impl:0.31.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-proto:0.2.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath io.opentelemetry.contrib:opentelemetry-gcp-resources:1.37.0-alpha=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath io.opentelemetry.instrumentation:opentelemetry-grpc-1.6:2.1.0-alpha=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-incubator:2.1.0-alpha=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath @@ -322,39 +342,39 @@ io.opentelemetry.instrumentation:opentelemetry-instrumentation-api:2.1.0=compile io.opentelemetry.semconv:opentelemetry-semconv:1.29.0-alpha=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath io.opentelemetry:opentelemetry-api-incubator:1.42.1-alpha=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath io.opentelemetry:opentelemetry-api:1.47.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath -io.opentelemetry:opentelemetry-api:1.53.0=testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-api:1.59.0=testCompileClasspath,testRuntimeClasspath io.opentelemetry:opentelemetry-bom:1.42.1=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-common:1.53.0=testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-common:1.59.0=testCompileClasspath,testRuntimeClasspath io.opentelemetry:opentelemetry-context:1.47.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath -io.opentelemetry:opentelemetry-context:1.53.0=testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-exporter-logging:1.53.0=testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-context:1.59.0=testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-exporter-logging:1.59.0=testCompileClasspath,testRuntimeClasspath io.opentelemetry:opentelemetry-extension-incubator:1.35.0-alpha=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath io.opentelemetry:opentelemetry-sdk-common:1.47.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath -io.opentelemetry:opentelemetry-sdk-common:1.53.0=testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.42.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath -io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.53.0=testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.53.0=testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-sdk-common:1.59.0=testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.47.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath +io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.59.0=testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.59.0=testCompileClasspath,testRuntimeClasspath io.opentelemetry:opentelemetry-sdk-logs:1.47.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath -io.opentelemetry:opentelemetry-sdk-logs:1.53.0=testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-sdk-logs:1.59.0=testCompileClasspath,testRuntimeClasspath io.opentelemetry:opentelemetry-sdk-metrics:1.47.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath -io.opentelemetry:opentelemetry-sdk-metrics:1.53.0=testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-sdk-metrics:1.59.0=testCompileClasspath,testRuntimeClasspath io.opentelemetry:opentelemetry-sdk-trace:1.47.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath -io.opentelemetry:opentelemetry-sdk-trace:1.53.0=testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-sdk-trace:1.59.0=testCompileClasspath,testRuntimeClasspath io.opentelemetry:opentelemetry-sdk:1.47.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath -io.opentelemetry:opentelemetry-sdk:1.53.0=testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-semconv:1.26.0-alpha=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-sdk:1.59.0=testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-semconv:1.26.0-alpha=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath io.outfoxx:swiftpoet:1.3.1=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath io.perfmark:perfmark-api:0.27.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -io.smallrye:jandex:3.1.2=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath jakarta-regexp:jakarta-regexp:1.4=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.activation:jakarta.activation-api:2.1.3=compileClasspath,deploy_jar,jaxb,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +jakarta.activation:jakarta.activation-api:2.1.4=jaxb +jakarta.activation:jakarta.activation-api:2.2.0-M1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath jakarta.inject:jakarta.inject-api:2.0.1=annotationProcessor,compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -jakarta.mail:jakarta.mail-api:2.1.3=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +jakarta.mail:jakarta.mail-api:2.2.0-M1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath jakarta.persistence:jakarta.persistence-api:3.2.0=annotationProcessor,compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -jakarta.servlet:jakarta.servlet-api:6.0.0=testCompileClasspath,testRuntimeClasspath -jakarta.servlet:jakarta.servlet-api:6.1.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath +jakarta.servlet:jakarta.servlet-api:6.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath jakarta.transaction:jakarta.transaction-api:2.0.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.xml.bind:jakarta.xml.bind-api:4.0.2=compileClasspath,deploy_jar,jaxb,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:4.0.4=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:4.0.5=compileClasspath,jaxb,nonprodCompileClasspath,testCompileClasspath javax.annotation:javax.annotation-api:1.3.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath javax.annotation:jsr250-api:1.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testCompileClasspath,testRuntimeClasspath javax.inject:javax.inject:1=annotationProcessor,compileClasspath,deploy_jar,errorprone,nonprodAnnotationProcessor,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,soy,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath @@ -363,10 +383,10 @@ javax.validation:validation-api:1.0.0.GA=compileClasspath,deploy_jar,nonprodComp joda-time:joda-time:2.12.7=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath junit:junit:4.13.2=nonprodCompileClasspath,nonprodRuntimeClasspath,testCompileClasspath,testRuntimeClasspath net.arnx:nashorn-promise:0.1.1=testRuntimeClasspath -net.bytebuddy:byte-buddy-agent:1.17.6=testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy-agent:1.17.7=testCompileClasspath,testRuntimeClasspath net.bytebuddy:byte-buddy:1.14.12=compileClasspath,nonprodCompileClasspath -net.bytebuddy:byte-buddy:1.14.15=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath -net.bytebuddy:byte-buddy:1.17.6=testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy:1.17.8=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath +net.bytebuddy:byte-buddy:1.18.5=testCompileClasspath,testRuntimeClasspath net.java.dev.jna:jna:5.13.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath net.ltgt.gradle.incap:incap:0.2=annotationProcessor,testAnnotationProcessor net.sf.saxon:Saxon-HE:10.6=checkstyle @@ -379,104 +399,102 @@ org.antlr:antlr4:4.13.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonp org.apache.arrow:arrow-format:15.0.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.arrow:arrow-memory-core:15.0.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.arrow:arrow-vector:15.0.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.avro:avro:1.11.4=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-model-fn-execution:2.67.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-model-job-management:2.67.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-model-pipeline:2.67.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.avro:avro:1.12.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-model-fn-execution:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-model-job-management:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-model-pipeline:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.beam:beam-runners-core-construction-java:2.54.0=testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-core-java:2.67.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-direct-java:2.67.0=testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.67.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-java-fn-execution:2.67.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-core:2.67.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-expansion-service:2.67.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-arrow:2.67.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-avro:2.67.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.67.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-protobuf:2.67.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-core-java:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-direct-java:2.60.0=testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-google-cloud-dataflow-java:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-java-fn-execution:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-core:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-expansion-service:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-arrow:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-avro:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-protobuf:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.beam:beam-sdks-java-fn-execution:2.54.0=testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-harness:2.67.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.67.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-transform-service-launcher:2.67.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-vendor-grpc-1_60_1:0.1=testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-vendor-grpc-1_69_0:0.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-harness:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-transform-service-launcher:2.60.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-grpc-1_60_1:0.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.beam:beam-vendor-guava-32_1_2-jre:0.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-compress:1.26.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-compress:1.28.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.commons:commons-csv:1.14.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-exec:1.5.0=testRuntimeClasspath -org.apache.commons:commons-lang3:3.14.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath -org.apache.commons:commons-lang3:3.18.0=testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-text:1.14.0=testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-exec:1.3=testRuntimeClasspath +org.apache.commons:commons-lang3:3.18.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath +org.apache.commons:commons-lang3:3.20.0=testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-text:1.15.0=testCompileClasspath,testRuntimeClasspath org.apache.ftpserver:ftplet-api:1.2.1=testCompileClasspath,testRuntimeClasspath org.apache.ftpserver:ftpserver-core:1.2.1=testCompileClasspath,testRuntimeClasspath org.apache.httpcomponents:httpclient:4.5.14=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.16=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.mina:mina-core:2.2.4=testCompileClasspath,testRuntimeClasspath -org.apache.sshd:sshd-common:2.15.0=testCompileClasspath,testRuntimeClasspath -org.apache.sshd:sshd-core:2.15.0=testCompileClasspath,testRuntimeClasspath -org.apache.sshd:sshd-scp:2.15.0=testCompileClasspath,testRuntimeClasspath -org.apache.sshd:sshd-sftp:2.15.0=testCompileClasspath,testRuntimeClasspath -org.apache.tomcat:tomcat-annotations-api:11.0.10=testCompileClasspath,testRuntimeClasspath +org.apache.sshd:sshd-common:3.0.0-M2=testCompileClasspath,testRuntimeClasspath +org.apache.sshd:sshd-core:3.0.0-M2=testCompileClasspath,testRuntimeClasspath +org.apache.sshd:sshd-scp:3.0.0-M2=testCompileClasspath,testRuntimeClasspath +org.apache.sshd:sshd-sftp:3.0.0-M2=testCompileClasspath,testRuntimeClasspath +org.apache.tomcat:tomcat-annotations-api:11.0.20=testCompileClasspath,testRuntimeClasspath org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath -org.bouncycastle:bcpg-jdk18on:1.81=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcpkix-jdk18on:1.81=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcprov-jdk18on:1.81=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcutil-jdk18on:1.81=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcpg-jdk18on:1.83=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcpkix-jdk18on:1.83=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcprov-jdk18on:1.83=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcutil-jdk18on:1.83=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.checkerframework:checker-compat-qual:2.5.3=annotationProcessor,compileClasspath,nonprodCompileClasspath,soy,testAnnotationProcessor,testCompileClasspath org.checkerframework:checker-compat-qual:2.5.6=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath org.checkerframework:checker-qual:3.12.0=checkstyle org.checkerframework:checker-qual:3.33.0=errorprone,nonprodAnnotationProcessor,soy org.checkerframework:checker-qual:3.41.0=annotationProcessor,testAnnotationProcessor org.checkerframework:checker-qual:3.49.0=compileClasspath,nonprodCompileClasspath,testCompileClasspath -org.checkerframework:checker-qual:3.49.3=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +org.checkerframework:checker-qual:3.52.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath org.codehaus.mojo:animal-sniffer-annotations:1.24=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.conscrypt:conscrypt-openjdk-uber:2.5.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.eclipse.angus:angus-activation:2.0.2=deploy_jar,jaxb,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -org.eclipse.angus:jakarta.mail:2.0.4=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +org.eclipse.angus:angus-activation:2.0.3=jaxb +org.eclipse.angus:angus-activation:2.1.0-M1=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +org.eclipse.angus:jakarta.mail:2.1.0-M1=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath org.eclipse.collections:eclipse-collections-api:11.1.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.eclipse.collections:eclipse-collections:11.1.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.eclipse.jetty.ee10:jetty-ee10-servlet:12.1.0=testCompileClasspath,testRuntimeClasspath -org.eclipse.jetty.ee10:jetty-ee10-webapp:12.1.0=testCompileClasspath,testRuntimeClasspath -org.eclipse.jetty.ee:jetty-ee-webapp:12.1.0=testCompileClasspath,testRuntimeClasspath -org.eclipse.jetty:jetty-http:12.1.0=testCompileClasspath,testRuntimeClasspath -org.eclipse.jetty:jetty-io:12.1.0=testCompileClasspath,testRuntimeClasspath -org.eclipse.jetty:jetty-security:12.1.0=testCompileClasspath,testRuntimeClasspath -org.eclipse.jetty:jetty-server:12.1.0=testCompileClasspath,testRuntimeClasspath -org.eclipse.jetty:jetty-session:12.1.0=testCompileClasspath,testRuntimeClasspath -org.eclipse.jetty:jetty-util:12.1.0=testCompileClasspath,testRuntimeClasspath -org.eclipse.jetty:jetty-xml:12.1.0=testCompileClasspath,testRuntimeClasspath -org.flywaydb:flyway-core:11.11.1=deploy_jar -org.flywaydb:flyway-core:11.11.2=compileClasspath,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.flywaydb:flyway-database-postgresql:11.11.1=deploy_jar -org.flywaydb:flyway-database-postgresql:11.11.2=compileClasspath,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.glassfish.jaxb:codemodel:4.0.5=jaxb -org.glassfish.jaxb:jaxb-core:4.0.2=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -org.glassfish.jaxb:jaxb-core:4.0.5=jaxb -org.glassfish.jaxb:jaxb-runtime:4.0.2=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -org.glassfish.jaxb:jaxb-runtime:4.0.5=jaxb -org.glassfish.jaxb:jaxb-xjc:4.0.5=jaxb -org.glassfish.jaxb:txw2:4.0.2=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -org.glassfish.jaxb:txw2:4.0.5=jaxb -org.glassfish.jaxb:xsom:4.0.5=jaxb +org.eclipse.jetty.ee10:jetty-ee10-servlet:12.1.7=testCompileClasspath,testRuntimeClasspath +org.eclipse.jetty.ee10:jetty-ee10-webapp:12.1.7=testCompileClasspath,testRuntimeClasspath +org.eclipse.jetty.ee:jetty-ee-webapp:12.1.7=testCompileClasspath,testRuntimeClasspath +org.eclipse.jetty:jetty-http:12.1.7=testCompileClasspath,testRuntimeClasspath +org.eclipse.jetty:jetty-io:12.1.7=testCompileClasspath,testRuntimeClasspath +org.eclipse.jetty:jetty-security:12.1.7=testCompileClasspath,testRuntimeClasspath +org.eclipse.jetty:jetty-server:12.1.7=testCompileClasspath,testRuntimeClasspath +org.eclipse.jetty:jetty-session:12.1.7=testCompileClasspath,testRuntimeClasspath +org.eclipse.jetty:jetty-util:12.1.7=testCompileClasspath,testRuntimeClasspath +org.eclipse.jetty:jetty-xml:12.1.7=testCompileClasspath,testRuntimeClasspath +org.flywaydb:flyway-core:12.1.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.flywaydb:flyway-database-postgresql:12.1.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.glassfish.jaxb:codemodel:4.0.7=jaxb +org.glassfish.jaxb:jaxb-core:4.0.6=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +org.glassfish.jaxb:jaxb-core:4.0.7=jaxb +org.glassfish.jaxb:jaxb-runtime:4.0.6=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +org.glassfish.jaxb:jaxb-runtime:4.0.7=jaxb +org.glassfish.jaxb:jaxb-xjc:4.0.7=jaxb +org.glassfish.jaxb:txw2:4.0.6=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +org.glassfish.jaxb:txw2:4.0.7=jaxb +org.glassfish.jaxb:xsom:4.0.7=jaxb org.gwtproject:gwt-user:2.10.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.hamcrest:hamcrest-core:1.3=nonprodCompileClasspath,nonprodRuntimeClasspath org.hamcrest:hamcrest-core:3.0=testCompileClasspath,testRuntimeClasspath org.hamcrest:hamcrest-library:3.0=testCompileClasspath,testRuntimeClasspath org.hamcrest:hamcrest:2.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath org.hamcrest:hamcrest:3.0=testCompileClasspath,testRuntimeClasspath -org.hibernate.common:hibernate-commons-annotations:6.0.6.Final=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-ant:6.5.3.Final=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-core:6.5.3.Final=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-hikaricp:6.5.3.Final=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hibernate.models:hibernate-models:1.0.1=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +org.hibernate.orm:hibernate-ant:7.2.7.Final=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hibernate.orm:hibernate-core:7.2.7.Final=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.hibernate.orm:hibernate-hikaricp:7.2.7.Final=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.jacoco:org.jacoco.agent:0.8.12=jacocoAgent,jacocoAnt org.jacoco:org.jacoco.ant:0.8.12=jacocoAnt org.jacoco:org.jacoco.core:0.8.12=jacocoAnt org.jacoco:org.jacoco.report:0.8.12=jacocoAnt org.javassist:javassist:3.28.0-GA=checkstyle -org.jboss.logging:jboss-logging:3.5.0.Final=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath +org.jboss.logging:jboss-logging:3.6.1.Final=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath org.jcommander:jcommander:2.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.jetbrains.kotlin:kotlin-bom:1.4.0=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.21=annotationProcessor,testAnnotationProcessor +org.jetbrains.kotlin:kotlin-metadata-jvm:2.2.20=annotationProcessor,testAnnotationProcessor org.jetbrains.kotlin:kotlin-reflect:1.6.10=annotationProcessor,testAnnotationProcessor org.jetbrains.kotlin:kotlin-reflect:1.9.20=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath org.jetbrains.kotlin:kotlin-stdlib-common:1.9.20=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath @@ -485,7 +503,7 @@ org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.10=compileClasspath,deploy_jar,nonpr org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0=annotationProcessor,testAnnotationProcessor org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.jetbrains.kotlin:kotlin-stdlib:1.9.20=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib:2.1.21=annotationProcessor,testAnnotationProcessor +org.jetbrains.kotlin:kotlin-stdlib:2.2.20=annotationProcessor,testAnnotationProcessor org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.2=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath org.jetbrains.kotlinx:kotlinx-datetime-jvm:0.4.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath @@ -495,25 +513,25 @@ org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.1=deploy_jar,nonprodRuntime org.jetbrains:annotations:13.0=annotationProcessor,testAnnotationProcessor org.jetbrains:annotations:17.0.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.jline:jline:3.30.5=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.joda:joda-money:2.0.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.joda:joda-money:2.0.3=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.json:json:20230618=soy -org.json:json:20250107=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jsoup:jsoup:1.21.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.json:json:20240303=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.jsoup:jsoup:1.22.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.jspecify:jspecify:1.0.0=annotationProcessor,compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath org.junit-pioneer:junit-pioneer:2.3.0=testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-api:5.13.4=testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-engine:5.13.4=testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-migrationsupport:5.13.4=testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-params:5.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-commons:1.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-engine:1.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-launcher:1.13.4=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-commons:1.14.3=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-engine:1.14.3=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-launcher:1.14.3=testCompileClasspath,testRuntimeClasspath org.junit.platform:junit-platform-runner:1.13.3=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-suite-api:1.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-suite-commons:1.13.4=testRuntimeClasspath -org.junit:junit-bom:5.13.4=testCompileClasspath,testRuntimeClasspath -org.mockito:mockito-core:5.19.0=testCompileClasspath,testRuntimeClasspath -org.mockito:mockito-junit-jupiter:5.19.0=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-suite-api:1.14.3=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-suite-commons:1.14.3=testRuntimeClasspath +org.junit:junit-bom:5.14.3=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-core:5.23.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-junit-jupiter:5.23.0=testCompileClasspath,testRuntimeClasspath org.objenesis:objenesis:3.3=testRuntimeClasspath org.ogce:xpp3:1.1.6=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath @@ -529,60 +547,55 @@ org.ow2.asm:asm-util:9.5=soy org.ow2.asm:asm-util:9.7.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.ow2.asm:asm:9.5=soy org.ow2.asm:asm:9.7=jacocoAnt -org.ow2.asm:asm:9.7.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm:9.7.1=compileClasspath,nonprodCompileClasspath +org.ow2.asm:asm:9.8=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.pcollections:pcollections:3.1.4=annotationProcessor,errorprone,nonprodAnnotationProcessor,testAnnotationProcessor -org.postgresql:postgresql:42.7.7=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.postgresql:postgresql:42.7.10=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.reflections:reflections:0.10.2=checkstyle org.rnorth.duct-tape:duct-tape:1.0.8=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.seleniumhq.selenium:selenium-api:4.35.0=testCompileClasspath,testRuntimeClasspath -org.seleniumhq.selenium:selenium-chrome-driver:4.35.0=testCompileClasspath,testRuntimeClasspath -org.seleniumhq.selenium:selenium-chromium-driver:4.35.0=testCompileClasspath,testRuntimeClasspath -org.seleniumhq.selenium:selenium-devtools-v137:4.35.0=testCompileClasspath,testRuntimeClasspath -org.seleniumhq.selenium:selenium-devtools-v138:4.35.0=testCompileClasspath,testRuntimeClasspath -org.seleniumhq.selenium:selenium-devtools-v139:4.35.0=testCompileClasspath,testRuntimeClasspath -org.seleniumhq.selenium:selenium-edge-driver:4.35.0=testCompileClasspath,testRuntimeClasspath -org.seleniumhq.selenium:selenium-firefox-driver:4.35.0=testCompileClasspath,testRuntimeClasspath -org.seleniumhq.selenium:selenium-http:4.35.0=testCompileClasspath,testRuntimeClasspath -org.seleniumhq.selenium:selenium-ie-driver:4.35.0=testCompileClasspath,testRuntimeClasspath -org.seleniumhq.selenium:selenium-java:4.35.0=testCompileClasspath,testRuntimeClasspath -org.seleniumhq.selenium:selenium-json:4.35.0=testCompileClasspath,testRuntimeClasspath -org.seleniumhq.selenium:selenium-manager:4.35.0=testCompileClasspath,testRuntimeClasspath -org.seleniumhq.selenium:selenium-os:4.35.0=testCompileClasspath,testRuntimeClasspath -org.seleniumhq.selenium:selenium-remote-driver:4.35.0=testCompileClasspath,testRuntimeClasspath -org.seleniumhq.selenium:selenium-safari-driver:4.35.0=testCompileClasspath,testRuntimeClasspath -org.seleniumhq.selenium:selenium-support:4.35.0=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-api:4.41.0=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-chrome-driver:4.41.0=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-chromium-driver:4.41.0=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-devtools-v143:4.41.0=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-devtools-v144:4.41.0=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-devtools-v145:4.41.0=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-edge-driver:4.41.0=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-firefox-driver:4.41.0=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-http:4.41.0=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-ie-driver:4.41.0=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-java:4.41.0=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-json:4.41.0=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-manager:4.41.0=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-os:4.41.0=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-remote-driver:4.41.0=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-safari-driver:4.41.0=testCompileClasspath,testRuntimeClasspath +org.seleniumhq.selenium:selenium-support:4.41.0=testCompileClasspath,testRuntimeClasspath org.slf4j:jcl-over-slf4j:1.7.36=testCompileClasspath,testRuntimeClasspath org.slf4j:jul-to-slf4j:1.7.30=testRuntimeClasspath org.slf4j:slf4j-api:2.0.17=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.slf4j:slf4j-jdk14:2.0.17=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.snakeyaml:snakeyaml-engine:2.1=deploy_jar,nonprodRuntimeClasspath,runtimeClasspath,testRuntimeClasspath -org.testcontainers:database-commons:1.21.3=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.testcontainers:jdbc:1.21.3=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.testcontainers:junit-jupiter:1.21.3=testCompileClasspath,testRuntimeClasspath -org.testcontainers:postgresql:1.21.3=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.testcontainers:selenium:1.21.3=testCompileClasspath,testRuntimeClasspath -org.testcontainers:testcontainers:1.21.3=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:database-commons:1.21.4=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:jdbc:1.21.4=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:junit-jupiter:1.21.4=testCompileClasspath,testRuntimeClasspath +org.testcontainers:postgresql:1.21.4=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:selenium:1.21.4=testCompileClasspath,testRuntimeClasspath +org.testcontainers:testcontainers:1.21.4=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.threeten:threetenbp:1.7.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.w3c.css:sac:1.3=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.webjars.npm:viz.js-graphviz-java:2.1.3=testRuntimeClasspath org.xerial.snappy:snappy-java:1.1.10.4=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.yaml:snakeyaml:2.4=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-api:16.26.3=deploy_jar -us.fatehi:schemacrawler-api:16.27.1=compileClasspath,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-diagram:16.26.3=deploy_jar -us.fatehi:schemacrawler-diagram:16.27.1=compileClasspath,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-loader:16.26.3=deploy_jar -us.fatehi:schemacrawler-loader:16.27.1=compileClasspath,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-operations:16.27.1=compileClasspath,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-postgresql:16.26.3=deploy_jar -us.fatehi:schemacrawler-postgresql:16.27.1=compileClasspath,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-text:16.26.3=deploy_jar -us.fatehi:schemacrawler-text:16.27.1=compileClasspath,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-tools:16.26.3=deploy_jar -us.fatehi:schemacrawler-tools:16.27.1=compileClasspath,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-utility:16.26.3=deploy_jar -us.fatehi:schemacrawler-utility:16.27.1=compileClasspath,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler:16.26.3=deploy_jar -us.fatehi:schemacrawler:16.27.1=compileClasspath,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +tools.jackson.core:jackson-core:3.1.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +tools.jackson.core:jackson-databind:3.1.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +tools.jackson:jackson-bom:3.1.0=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-api:17.1.7=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-diagram:17.8.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-operations:17.8.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-postgresql:17.8.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-text:17.8.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-tools:17.1.7=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-utility:17.1.7=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +us.fatehi:schemacrawler:17.8.1=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath xerces:xmlParserAPIs:2.6.2=compileClasspath,deploy_jar,nonprodCompileClasspath,nonprodRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath empty=devtool,nomulus_test diff --git a/core/src/main/java/google/registry/batch/CheckBulkComplianceAction.java b/core/src/main/java/google/registry/batch/CheckBulkComplianceAction.java index 979f6bea2..b8b60af05 100644 --- a/core/src/main/java/google/registry/batch/CheckBulkComplianceAction.java +++ b/core/src/main/java/google/registry/batch/CheckBulkComplianceAction.java @@ -104,15 +104,14 @@ public class CheckBulkComplianceAction implements Runnable { bulkPricingPackagesOverActiveDomainsLimitBuilder = new ImmutableMap.Builder<>(); for (BulkPricingPackage bulkPricingPackage : bulkPricingPackages) { Long creates = - (Long) - tm().query( - "SELECT COUNT(*) FROM DomainHistory WHERE resource.currentBulkToken =" - + " :token AND modificationTime >= :lastBilling AND type =" - + " 'DOMAIN_CREATE'") - .setParameter("token", bulkPricingPackage.getToken()) - .setParameter( - "lastBilling", bulkPricingPackage.getNextBillingDate().minusYears(1)) - .getSingleResult(); + tm().query( + "SELECT COUNT(*) FROM DomainHistory WHERE resource.currentBulkToken =" + + " :token AND modificationTime >= :lastBilling AND type =" + + " 'DOMAIN_CREATE'", + Long.class) + .setParameter("token", bulkPricingPackage.getToken()) + .setParameter("lastBilling", bulkPricingPackage.getNextBillingDate().minusYears(1)) + .getSingleResult(); if (creates > bulkPricingPackage.getMaxCreates()) { long overage = creates - bulkPricingPackage.getMaxCreates(); logger.atInfo().log( diff --git a/core/src/main/java/google/registry/beam/common/RegistryQuery.java b/core/src/main/java/google/registry/beam/common/RegistryQuery.java index 192dcc2b6..5fb8f45c5 100644 --- a/core/src/main/java/google/registry/beam/common/RegistryQuery.java +++ b/core/src/main/java/google/registry/beam/common/RegistryQuery.java @@ -19,10 +19,10 @@ import static google.registry.persistence.transaction.TransactionManagerFactory. import google.registry.persistence.transaction.JpaTransactionManager; import jakarta.persistence.EntityManager; import jakarta.persistence.Query; -import jakarta.persistence.TemporalType; import jakarta.persistence.TypedQuery; import jakarta.persistence.criteria.CriteriaQuery; import java.io.Serializable; +import java.time.Instant; import java.util.Map; import java.util.function.Supplier; import java.util.stream.Stream; @@ -61,8 +61,8 @@ public interface RegistryQuery extends Serializable { if (parameters != null) { parameters.forEach( (key, value) -> { - if (value instanceof DateTime) { - query.setParameter(key, ((DateTime) value).toDate(), TemporalType.TIMESTAMP); + if (value instanceof DateTime dt) { + query.setParameter(key, Instant.ofEpochMilli(dt.getMillis())); } else { query.setParameter(key, value); } diff --git a/core/src/main/java/google/registry/model/CreateAutoTimestamp.java b/core/src/main/java/google/registry/model/CreateAutoTimestamp.java index f4000da00..cf9be0b7d 100644 --- a/core/src/main/java/google/registry/model/CreateAutoTimestamp.java +++ b/core/src/main/java/google/registry/model/CreateAutoTimestamp.java @@ -17,10 +17,10 @@ package google.registry.model; import static google.registry.persistence.transaction.TransactionManagerFactory.tm; import com.google.gson.annotations.Expose; +import google.registry.persistence.EntityCallbacksListener.RecursivePrePersist; +import google.registry.persistence.EntityCallbacksListener.RecursivePreUpdate; import jakarta.persistence.Column; import jakarta.persistence.Embeddable; -import jakarta.persistence.PrePersist; -import jakarta.persistence.PreUpdate; import javax.annotation.Nullable; import org.joda.time.DateTime; @@ -32,9 +32,9 @@ public class CreateAutoTimestamp extends ImmutableObject implements UnsafeSerial @Expose DateTime creationTime; - @PrePersist - @PreUpdate - void setTimestamp() { + @RecursivePrePersist + @RecursivePreUpdate + public void setTimestamp() { if (creationTime == null) { creationTime = tm().getTransactionTime(); } diff --git a/core/src/main/java/google/registry/model/UpdateAutoTimestamp.java b/core/src/main/java/google/registry/model/UpdateAutoTimestamp.java index 44cd49858..6d336f819 100644 --- a/core/src/main/java/google/registry/model/UpdateAutoTimestamp.java +++ b/core/src/main/java/google/registry/model/UpdateAutoTimestamp.java @@ -17,10 +17,10 @@ package google.registry.model; import static google.registry.persistence.transaction.TransactionManagerFactory.tm; import static google.registry.util.DateTimeUtils.START_OF_TIME; +import google.registry.persistence.EntityCallbacksListener.RecursivePrePersist; +import google.registry.persistence.EntityCallbacksListener.RecursivePreUpdate; import jakarta.persistence.Column; import jakarta.persistence.Embeddable; -import jakarta.persistence.PrePersist; -import jakarta.persistence.PreUpdate; import java.util.Optional; import javax.annotation.Nullable; import org.joda.time.DateTime; @@ -35,9 +35,9 @@ public class UpdateAutoTimestamp extends ImmutableObject implements UnsafeSerial // Unfortunately, we cannot use the @UpdateTimestamp annotation on "lastUpdateTime" in this class // because Hibernate does not allow it to be used on @Embeddable classes, see // https://hibernate.atlassian.net/browse/HHH-13235. This is a workaround. - @PrePersist - @PreUpdate - void setTimestamp() { + @RecursivePrePersist + @RecursivePreUpdate + public void setTimestamp() { lastUpdateTime = tm().getTransactionTime(); } diff --git a/core/src/main/java/google/registry/model/billing/BillingCancellation.java b/core/src/main/java/google/registry/model/billing/BillingCancellation.java index f2bcd1e97..1adc3a8f1 100644 --- a/core/src/main/java/google/registry/model/billing/BillingCancellation.java +++ b/core/src/main/java/google/registry/model/billing/BillingCancellation.java @@ -27,6 +27,7 @@ import google.registry.persistence.VKey; import google.registry.persistence.WithVKey; import jakarta.persistence.AttributeOverride; import jakarta.persistence.Column; +import jakarta.persistence.Convert; import jakarta.persistence.Entity; import jakarta.persistence.Index; import jakarta.persistence.Table; @@ -58,10 +59,12 @@ public class BillingCancellation extends BillingBase { /** The one-time billing event to cancel, or null for autorenew cancellations. */ @Column(name = "billing_event_id") + @Convert(converter = VKeyConverter_BillingEvent.class) VKey billingEvent; /** The Recurrence to cancel, or null for non-autorenew cancellations. */ @Column(name = "billing_recurrence_id") + @Convert(converter = VKeyConverter_BillingRecurrence.class) VKey billingRecurrence; public DateTime getBillingTime() { diff --git a/core/src/main/java/google/registry/model/billing/BillingEvent.java b/core/src/main/java/google/registry/model/billing/BillingEvent.java index 6aa39fff2..8af50c950 100644 --- a/core/src/main/java/google/registry/model/billing/BillingEvent.java +++ b/core/src/main/java/google/registry/model/billing/BillingEvent.java @@ -20,10 +20,12 @@ import static com.google.common.base.Preconditions.checkState; import google.registry.model.domain.DomainHistory; import google.registry.model.domain.token.AllocationToken; +import google.registry.model.domain.token.VKeyConverter_AllocationToken; import google.registry.persistence.VKey; import google.registry.persistence.WithVKey; import jakarta.persistence.AttributeOverride; import jakarta.persistence.Column; +import jakarta.persistence.Convert; import jakarta.persistence.Entity; import jakarta.persistence.Index; import jakarta.persistence.Table; @@ -81,6 +83,7 @@ public class BillingEvent extends BillingBase { * properly match billing events against {@link BillingCancellation}s. */ @Column(name = "cancellation_matching_billing_recurrence_id") + @Convert(converter = VKeyConverter_BillingRecurrence.class) VKey cancellationMatchingBillingEvent; /** @@ -94,7 +97,9 @@ public class BillingEvent extends BillingBase { /** * The {@link AllocationToken} used in the creation of this event, or null if one was not used. */ - @Nullable VKey allocationToken; + @Convert(converter = VKeyConverter_AllocationToken.class) + @Nullable + VKey allocationToken; public Money getCost() { return cost; diff --git a/core/src/main/java/google/registry/model/common/FeatureFlag.java b/core/src/main/java/google/registry/model/common/FeatureFlag.java index 48b10c2dc..bbc18b8f9 100644 --- a/core/src/main/java/google/registry/model/common/FeatureFlag.java +++ b/core/src/main/java/google/registry/model/common/FeatureFlag.java @@ -103,9 +103,9 @@ public class FeatureFlag extends ImmutableObject implements Buildable { FeatureName featureName; /** A map of times for each {@link FeatureStatus} the FeatureFlag should hold. */ - @Column(nullable = false) @Type(FeatureStatusTransitionUserType.class) @JsonDeserialize(using = TimedTransitionPropertyFeatureStatusDeserializer.class) + @Column(columnDefinition = "hstore", nullable = false) TimedTransitionProperty status = TimedTransitionProperty.withInitialValue(FeatureStatus.INACTIVE); diff --git a/core/src/main/java/google/registry/model/console/User.java b/core/src/main/java/google/registry/model/console/User.java index c85b29607..7ce960ab8 100644 --- a/core/src/main/java/google/registry/model/console/User.java +++ b/core/src/main/java/google/registry/model/console/User.java @@ -40,7 +40,6 @@ import google.registry.util.PasswordUtils; import google.registry.util.PasswordUtils.HashAlgorithm; import google.registry.util.RegistryEnvironment; import jakarta.persistence.Column; -import jakarta.persistence.Embeddable; import jakarta.persistence.Entity; import jakarta.persistence.Id; import jakarta.persistence.Table; @@ -49,7 +48,6 @@ import java.util.Optional; import javax.annotation.Nullable; /** A console user, either a registry employee or a registrar partner. */ -@Embeddable @Entity @Table public class User extends UpdateAutoTimestampEntity implements Buildable { diff --git a/core/src/main/java/google/registry/model/console/UserRoles.java b/core/src/main/java/google/registry/model/console/UserRoles.java index 81684d32a..4559733ea 100644 --- a/core/src/main/java/google/registry/model/console/UserRoles.java +++ b/core/src/main/java/google/registry/model/console/UserRoles.java @@ -56,6 +56,7 @@ public class UserRoles extends ImmutableObject implements Buildable { /** Any per-registrar roles that this user may have. */ @Expose @Type(RegistrarToRoleMapUserType.class) + @Column(columnDefinition = "hstore") private Map registrarRoles = ImmutableMap.of(); /** Whether the user is a global admin, who has access to everything. */ diff --git a/core/src/main/java/google/registry/model/domain/Domain.java b/core/src/main/java/google/registry/model/domain/Domain.java index f5ca447fe..9a9715243 100644 --- a/core/src/main/java/google/registry/model/domain/Domain.java +++ b/core/src/main/java/google/registry/model/domain/Domain.java @@ -19,12 +19,15 @@ import google.registry.model.EppResource.ForeignKeyedEppResource; import google.registry.model.annotations.ExternalMessagingName; import google.registry.model.domain.secdns.DomainDsData; import google.registry.model.host.Host; +import google.registry.model.host.VKeyConverter_Host; +import google.registry.persistence.EntityCallbacksListener.RecursivePostLoad; import google.registry.persistence.VKey; import google.registry.persistence.WithVKey; import jakarta.persistence.Access; import jakarta.persistence.AccessType; import jakarta.persistence.CascadeType; import jakarta.persistence.Column; +import jakarta.persistence.Convert; import jakarta.persistence.ElementCollection; import jakarta.persistence.Entity; import jakarta.persistence.FetchType; @@ -33,7 +36,6 @@ import jakarta.persistence.Index; import jakarta.persistence.JoinColumn; import jakarta.persistence.JoinTable; import jakarta.persistence.OneToMany; -import jakarta.persistence.PostLoad; import jakarta.persistence.Table; import java.util.Set; import org.hibernate.Hibernate; @@ -87,6 +89,7 @@ public class Domain extends DomainBase implements ForeignKeyedEppResource { }) @Access(AccessType.PROPERTY) @Column(name = "host_repo_id") + @Convert(converter = VKeyConverter_Host.class) public Set> getNsHosts() { return nsHosts; } @@ -136,7 +139,7 @@ public class Domain extends DomainBase implements ForeignKeyedEppResource { } /** Post-load method to eager load the collections. */ - @PostLoad + @RecursivePostLoad protected void postLoad() { // TODO(b/188044616): Determine why Eager loading doesn't work here. Hibernate.initialize(dsData); @@ -171,35 +174,5 @@ public class Domain extends DomainBase implements ForeignKeyedEppResource { Builder(Domain instance) { super(instance); } - - public Builder copyFrom(DomainBase domainBase) { - getInstance().copyUpdateTimestamp(domainBase); - return setAuthInfo(domainBase.getAuthInfo()) - .setAutorenewPollMessage(domainBase.getAutorenewPollMessage()) - .setAutorenewBillingEvent(domainBase.getAutorenewBillingEvent()) - .setAutorenewEndTime(domainBase.getAutorenewEndTime()) - .setCreationRegistrarId(domainBase.getCreationRegistrarId()) - .setCreationTime(domainBase.getCreationTime()) - .setDomainName(domainBase.getDomainName()) - .setDeletePollMessage(domainBase.getDeletePollMessage()) - .setDsData(domainBase.getDsData()) - .setDeletionTime(domainBase.getDeletionTime()) - .setGracePeriods(domainBase.getGracePeriods()) - .setIdnTableName(domainBase.getIdnTableName()) - .setLastTransferTime(domainBase.getLastTransferTime()) - .setLaunchNotice(domainBase.getLaunchNotice()) - .setLastEppUpdateRegistrarId(domainBase.getLastEppUpdateRegistrarId()) - .setLastEppUpdateTime(domainBase.getLastEppUpdateTime()) - .setNameservers(domainBase.getNameservers()) - .setPersistedCurrentSponsorRegistrarId(domainBase.getPersistedCurrentSponsorRegistrarId()) - .setRegistrationExpirationTime(domainBase.getRegistrationExpirationTime()) - .setRepoId(domainBase.getRepoId()) - .setSmdId(domainBase.getSmdId()) - .setSubordinateHosts(domainBase.getSubordinateHosts()) - .setStatusValues(domainBase.getStatusValues()) - .setTransferData(domainBase.getTransferData()) - .setLordnPhase(domainBase.getLordnPhase()) - .setCurrentBulkToken(domainBase.getCurrentBulkToken().orElse(null)); - } } } diff --git a/core/src/main/java/google/registry/model/domain/DomainBase.java b/core/src/main/java/google/registry/model/domain/DomainBase.java index 8aa9af4fb..573f5d213 100644 --- a/core/src/main/java/google/registry/model/domain/DomainBase.java +++ b/core/src/main/java/google/registry/model/domain/DomainBase.java @@ -44,16 +44,20 @@ import com.google.gson.annotations.Expose; import google.registry.flows.ResourceFlowUtils; import google.registry.model.EppResource; import google.registry.model.billing.BillingRecurrence; +import google.registry.model.billing.VKeyConverter_BillingRecurrence; import google.registry.model.domain.launch.LaunchNotice; import google.registry.model.domain.rgp.GracePeriodStatus; import google.registry.model.domain.secdns.DomainDsData; import google.registry.model.domain.token.AllocationToken; import google.registry.model.domain.token.AllocationToken.TokenType; +import google.registry.model.domain.token.VKeyConverter_AllocationToken; import google.registry.model.eppcommon.StatusValue; import google.registry.model.host.Host; import google.registry.model.poll.PollMessage; import google.registry.model.poll.PollMessage.Autorenew; import google.registry.model.poll.PollMessage.OneTime; +import google.registry.model.poll.VKeyConverter_Autorenew; +import google.registry.model.poll.VKeyConverter_OneTime; import google.registry.model.tld.Tld; import google.registry.model.transfer.DomainTransferData; import google.registry.model.transfer.TransferStatus; @@ -68,7 +72,7 @@ import jakarta.persistence.AccessType; import jakarta.persistence.AttributeOverride; import jakarta.persistence.AttributeOverrides; import jakarta.persistence.Column; -import jakarta.persistence.Embeddable; +import jakarta.persistence.Convert; import jakarta.persistence.Embedded; import jakarta.persistence.EnumType; import jakarta.persistence.Enumerated; @@ -93,7 +97,6 @@ import org.joda.time.Interval; * @see RFC 5731 */ @MappedSuperclass -@Embeddable @Access(AccessType.FIELD) public class DomainBase extends EppResource { @@ -185,6 +188,7 @@ public class DomainBase extends EppResource { * restored, the message should be deleted. */ @Column(name = "deletion_poll_message_id") + @Convert(converter = VKeyConverter_OneTime.class) VKey deletePollMessage; /** @@ -196,6 +200,7 @@ public class DomainBase extends EppResource { * should be created, and this field should be updated to point to the new one. */ @Column(name = "billing_recurrence_id") + @Convert(converter = VKeyConverter_BillingRecurrence.class) VKey autorenewBillingEvent; /** @@ -207,6 +212,7 @@ public class DomainBase extends EppResource { * should be created, and this field should be updated to point to the new one. */ @Column(name = "autorenew_poll_message_id") + @Convert(converter = VKeyConverter_Autorenew.class) VKey autorenewPollMessage; /** The unexpired grace periods for this domain (some of which may not be active yet). */ @@ -268,6 +274,7 @@ public class DomainBase extends EppResource { */ @Nullable @Column(name = "current_package_token") + @Convert(converter = VKeyConverter_AllocationToken.class) VKey currentBulkToken; public LordnPhase getLordnPhase() { @@ -807,5 +814,35 @@ public class DomainBase extends EppResource { getInstance().currentBulkToken = currentBulkToken; return thisCastToDerived(); } + + public B copyFrom(DomainBase domainBase) { + getInstance().copyUpdateTimestamp(domainBase); + return setAuthInfo(domainBase.getAuthInfo()) + .setAutorenewPollMessage(domainBase.getAutorenewPollMessage()) + .setAutorenewBillingEvent(domainBase.getAutorenewBillingEvent()) + .setAutorenewEndTime(domainBase.getAutorenewEndTime()) + .setCreationRegistrarId(domainBase.getCreationRegistrarId()) + .setCreationTime(domainBase.getCreationTime()) + .setDomainName(domainBase.getDomainName()) + .setDeletePollMessage(domainBase.getDeletePollMessage()) + .setDsData(domainBase.getDsData()) + .setDeletionTime(domainBase.getDeletionTime()) + .setGracePeriods(domainBase.getGracePeriods()) + .setIdnTableName(domainBase.getIdnTableName()) + .setLastTransferTime(domainBase.getLastTransferTime()) + .setLaunchNotice(domainBase.getLaunchNotice()) + .setLastEppUpdateRegistrarId(domainBase.getLastEppUpdateRegistrarId()) + .setLastEppUpdateTime(domainBase.getLastEppUpdateTime()) + .setNameservers(domainBase.getNameservers()) + .setPersistedCurrentSponsorRegistrarId(domainBase.getPersistedCurrentSponsorRegistrarId()) + .setRegistrationExpirationTime(domainBase.getRegistrationExpirationTime()) + .setRepoId(domainBase.getRepoId()) + .setSmdId(domainBase.getSmdId()) + .setSubordinateHosts(domainBase.getSubordinateHosts()) + .setStatusValues(domainBase.getStatusValues()) + .setTransferData(domainBase.getTransferData()) + .setLordnPhase(domainBase.getLordnPhase()) + .setCurrentBulkToken(domainBase.getCurrentBulkToken().orElse(null)); + } } } diff --git a/core/src/main/java/google/registry/model/domain/DomainHistory.java b/core/src/main/java/google/registry/model/domain/DomainHistory.java index dd63492c0..337806bb1 100644 --- a/core/src/main/java/google/registry/model/domain/DomainHistory.java +++ b/core/src/main/java/google/registry/model/domain/DomainHistory.java @@ -23,8 +23,10 @@ import google.registry.model.domain.GracePeriod.GracePeriodHistory; import google.registry.model.domain.secdns.DomainDsData; import google.registry.model.domain.secdns.DomainDsDataHistory; import google.registry.model.host.Host; +import google.registry.model.host.VKeyConverter_Host; import google.registry.model.reporting.DomainTransactionRecord; import google.registry.model.reporting.HistoryEntry; +import google.registry.persistence.EntityCallbacksListener.RecursivePostLoad; import google.registry.persistence.VKey; import jakarta.persistence.Access; import jakarta.persistence.AccessType; @@ -32,7 +34,9 @@ import jakarta.persistence.AttributeOverride; import jakarta.persistence.AttributeOverrides; import jakarta.persistence.CascadeType; import jakarta.persistence.Column; +import jakarta.persistence.Convert; import jakarta.persistence.ElementCollection; +import jakarta.persistence.Embedded; import jakarta.persistence.Entity; import jakarta.persistence.FetchType; import jakarta.persistence.Index; @@ -40,7 +44,6 @@ import jakarta.persistence.JoinColumn; import jakarta.persistence.JoinColumns; import jakarta.persistence.JoinTable; import jakarta.persistence.OneToMany; -import jakarta.persistence.PostLoad; import jakarta.persistence.Table; import java.util.HashSet; import java.util.Optional; @@ -69,10 +72,10 @@ public class DomainHistory extends HistoryEntry { // Store DomainBase instead of Domain, so we don't pick up its @Id // @Nullable for the sake of pre-Registry-3.0 history objects - @Nullable DomainBase resource; + @Nullable @Embedded EmbeddedDomainBase resource; @Override - protected DomainBase getResource() { + protected EmbeddedDomainBase getResource() { return resource; } @@ -99,6 +102,7 @@ public class DomainHistory extends HistoryEntry { unique = true) }) @Column(name = "host_repo_id") + @Convert(converter = VKeyConverter_Host.class) Set> nsHosts; @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.EAGER, orphanRemoval = true) @@ -200,9 +204,8 @@ public class DomainHistory extends HistoryEntry { return period; } - @Override - @PostLoad - protected void postLoad() { + @RecursivePostLoad + public void domainHistoryPostLoad() { // TODO(b/188044616): Determine why Eager loading doesn't work here. Hibernate.initialize(domainTransactionRecords); Hibernate.initialize(nsHosts); @@ -218,7 +221,6 @@ public class DomainHistory extends HistoryEntry { resource.dsData = dsDataHistories.stream().map(DomainDsData::create).collect(toImmutableSet()); } - processResourcePostLoad(); } private static void fillAuxiliaryFieldsFromDomain(DomainHistory domainHistory) { @@ -255,7 +257,7 @@ public class DomainHistory extends HistoryEntry { } public Builder setDomain(DomainBase domainBase) { - getInstance().resource = domainBase; + getInstance().resource = new EmbeddedDomainBase.Builder().copyFrom(domainBase).build(); return setRepoId(domainBase); } diff --git a/core/src/main/java/google/registry/model/domain/EmbeddedDomainBase.java b/core/src/main/java/google/registry/model/domain/EmbeddedDomainBase.java new file mode 100644 index 000000000..31102be88 --- /dev/null +++ b/core/src/main/java/google/registry/model/domain/EmbeddedDomainBase.java @@ -0,0 +1,31 @@ +// Copyright 2026 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. + +package google.registry.model.domain; + +import jakarta.persistence.Embeddable; + +/** + * Embeddable {@link DomainBase} used for storage in history objects. + * + *

As of version 7.x, Hibernate no longer allows direct storage of mapped (essentially abstract) + * superclasses as embedded entities. This kind of makes sense because it doesn't make too much + * sense to store what are supposed to be abstract objects, but it makes our duplication of the base + * fields in the history class somewhat more annoying. This is a concrete class that can be directly + * embedded inside the history class to store the fields. + */ +@Embeddable +public class EmbeddedDomainBase extends DomainBase { + public static class Builder extends DomainBase.Builder {} +} diff --git a/core/src/main/java/google/registry/model/domain/GracePeriodBase.java b/core/src/main/java/google/registry/model/domain/GracePeriodBase.java index 616575483..a53abe457 100644 --- a/core/src/main/java/google/registry/model/domain/GracePeriodBase.java +++ b/core/src/main/java/google/registry/model/domain/GracePeriodBase.java @@ -18,11 +18,14 @@ import google.registry.model.ImmutableObject; import google.registry.model.UnsafeSerializable; import google.registry.model.billing.BillingEvent; import google.registry.model.billing.BillingRecurrence; +import google.registry.model.billing.VKeyConverter_BillingEvent; +import google.registry.model.billing.VKeyConverter_BillingRecurrence; import google.registry.model.domain.rgp.GracePeriodStatus; import google.registry.persistence.VKey; import jakarta.persistence.Access; import jakarta.persistence.AccessType; import jakarta.persistence.Column; +import jakarta.persistence.Convert; import jakarta.persistence.EnumType; import jakarta.persistence.Enumerated; import jakarta.persistence.MappedSuperclass; @@ -62,6 +65,7 @@ public class GracePeriodBase extends ImmutableObject implements UnsafeSerializab // NB: Would @IgnoreSave(IfNull.class), but not allowed for @Embed collections. @Access(AccessType.FIELD) @Column(name = "billing_event_id") + @Convert(converter = VKeyConverter_BillingEvent.class) VKey billingEvent = null; /** @@ -71,6 +75,7 @@ public class GracePeriodBase extends ImmutableObject implements UnsafeSerializab // NB: Would @IgnoreSave(IfNull.class), but not allowed for @Embed collections. @Access(AccessType.FIELD) @Column(name = "billing_recurrence_id") + @Convert(converter = VKeyConverter_BillingRecurrence.class) VKey billingRecurrence = null; public long getGracePeriodId() { diff --git a/core/src/main/java/google/registry/model/domain/RegistryLock.java b/core/src/main/java/google/registry/model/domain/RegistryLock.java index 67fa6d714..5b0ff23cc 100644 --- a/core/src/main/java/google/registry/model/domain/RegistryLock.java +++ b/core/src/main/java/google/registry/model/domain/RegistryLock.java @@ -154,6 +154,7 @@ public final class RegistryLock extends UpdateAutoTimestampEntity implements Bui private RegistryLock relock; /** The duration after which we will re-lock this domain after it is unlocked. */ + @Column(columnDefinition = "interval") private Duration relockDuration; public String getRepoId() { diff --git a/core/src/main/java/google/registry/model/domain/token/AllocationToken.java b/core/src/main/java/google/registry/model/domain/token/AllocationToken.java index 69bb38443..908f9a46e 100644 --- a/core/src/main/java/google/registry/model/domain/token/AllocationToken.java +++ b/core/src/main/java/google/registry/model/domain/token/AllocationToken.java @@ -275,6 +275,7 @@ public class AllocationToken extends UpdateAutoTimestampEntity implements Builda * ENDED at the end. If manually cancelled, we will add a CANCELLED status. */ @Type(AllocationTokenStatusTransitionUserType.class) + @Column(columnDefinition = "hstore") TimedTransitionProperty tokenStatusTransitions = TimedTransitionProperty.withInitialValue(NOT_STARTED); diff --git a/core/src/main/java/google/registry/model/domain/token/BulkPricingPackage.java b/core/src/main/java/google/registry/model/domain/token/BulkPricingPackage.java index 85c771eb2..ad0492b12 100644 --- a/core/src/main/java/google/registry/model/domain/token/BulkPricingPackage.java +++ b/core/src/main/java/google/registry/model/domain/token/BulkPricingPackage.java @@ -25,6 +25,7 @@ import google.registry.model.domain.token.AllocationToken.TokenType; import google.registry.persistence.VKey; import jakarta.persistence.AttributeOverride; import jakarta.persistence.Column; +import jakarta.persistence.Convert; import jakarta.persistence.Entity; import jakarta.persistence.GeneratedValue; import jakarta.persistence.GenerationType; @@ -51,6 +52,7 @@ public class BulkPricingPackage extends ImmutableObject implements Buildable { /** The allocation token string for the bulk pricing package. */ @Column(nullable = false) + @Convert(converter = VKeyConverter_AllocationToken.class) VKey token; /** The maximum number of active domains the bulk pricing package allows at any given time. */ diff --git a/core/src/main/java/google/registry/model/eppcommon/Address.java b/core/src/main/java/google/registry/model/eppcommon/Address.java index 37cd429ee..c2a51bf1b 100644 --- a/core/src/main/java/google/registry/model/eppcommon/Address.java +++ b/core/src/main/java/google/registry/model/eppcommon/Address.java @@ -26,10 +26,10 @@ import google.registry.model.ImmutableObject; import google.registry.model.JsonMapBuilder; import google.registry.model.Jsonifiable; import google.registry.model.UnsafeSerializable; +import google.registry.persistence.EntityCallbacksListener.RecursivePostLoad; import google.registry.tools.GsonUtils.GsonPostProcessable; import jakarta.persistence.Embeddable; import jakarta.persistence.MappedSuperclass; -import jakarta.persistence.PostLoad; import jakarta.persistence.Transient; import jakarta.xml.bind.Unmarshaller; import jakarta.xml.bind.annotation.XmlElement; @@ -222,7 +222,7 @@ public class Address extends ImmutableObject * our code base, whereas the individual {@code streetLine} fields are only used by Hibernate for * persistence. Also, setting/reading a list of strings is more convenient. */ - @PostLoad + @RecursivePostLoad void postLoad() { street = streetLine1 == null diff --git a/core/src/main/java/google/registry/model/eppcommon/StatusValue.java b/core/src/main/java/google/registry/model/eppcommon/StatusValue.java index ae748f761..f89602ef3 100644 --- a/core/src/main/java/google/registry/model/eppcommon/StatusValue.java +++ b/core/src/main/java/google/registry/model/eppcommon/StatusValue.java @@ -24,6 +24,8 @@ import google.registry.model.adapters.EnumToAttributeAdapter.EppEnum; import google.registry.model.adapters.StatusValueAdapter; import google.registry.model.domain.Domain; import google.registry.model.domain.DomainBase; +import google.registry.model.domain.EmbeddedDomainBase; +import google.registry.model.host.EmbeddedHostBase; import google.registry.model.host.Host; import google.registry.model.host.HostBase; import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter; @@ -130,10 +132,12 @@ public enum StatusValue implements EppEnum { ALL( Domain.class, DomainBase.class, + EmbeddedDomainBase.class, Host.class, - HostBase.class), + HostBase.class, + EmbeddedHostBase.class), NONE, - DOMAINS(DomainBase.class, Domain.class); + DOMAINS(DomainBase.class, Domain.class, EmbeddedDomainBase.class); private final ImmutableSet> classes; diff --git a/core/src/main/java/google/registry/model/host/EmbeddedHostBase.java b/core/src/main/java/google/registry/model/host/EmbeddedHostBase.java new file mode 100644 index 000000000..2df4ca31b --- /dev/null +++ b/core/src/main/java/google/registry/model/host/EmbeddedHostBase.java @@ -0,0 +1,28 @@ +// Copyright 2026 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. + +package google.registry.model.host; + +import jakarta.persistence.Embeddable; + +/** + * Embeddable {@link HostBase} used for storage in history objects. + * + *

As of version 7.x, Hibernate no longer allows direct storage of mapped (essentially abstract) + * superclasses as embedded entities. This kind of makes sense because it doesn't make too much + * sense to store what are supposed to be abstract objects, but it makes our duplication of the base + * fields in the history class somewhat more annoying. This is a concrete class that can be directly + * embedded inside the history class to store the fields. + */ +@Embeddable +public class EmbeddedHostBase extends HostBase { + public static class Builder extends HostBase.Builder {} +} diff --git a/core/src/main/java/google/registry/model/host/Host.java b/core/src/main/java/google/registry/model/host/Host.java index 7c7544912..27cfebf2d 100644 --- a/core/src/main/java/google/registry/model/host/Host.java +++ b/core/src/main/java/google/registry/model/host/Host.java @@ -80,21 +80,5 @@ public class Host extends HostBase implements ForeignKeyedEppResource { private Builder(Host instance) { super(instance); } - - public Builder copyFrom(HostBase hostBase) { - return setCreationRegistrarId(hostBase.getCreationRegistrarId()) - .setCreationTime(hostBase.getCreationTime()) - .setDeletionTime(hostBase.getDeletionTime()) - .setHostName(hostBase.getHostName()) - .setInetAddresses(hostBase.getInetAddresses()) - .setLastTransferTime(hostBase.getLastTransferTime()) - .setLastSuperordinateChange(hostBase.getLastSuperordinateChange()) - .setLastEppUpdateRegistrarId(hostBase.getLastEppUpdateRegistrarId()) - .setLastEppUpdateTime(hostBase.getLastEppUpdateTime()) - .setPersistedCurrentSponsorRegistrarId(hostBase.getPersistedCurrentSponsorRegistrarId()) - .setRepoId(hostBase.getRepoId()) - .setSuperordinateDomain(hostBase.getSuperordinateDomain()) - .setStatusValues(hostBase.getStatusValues()); - } } } diff --git a/core/src/main/java/google/registry/model/host/HostBase.java b/core/src/main/java/google/registry/model/host/HostBase.java index 11824ef96..8b70e49fc 100644 --- a/core/src/main/java/google/registry/model/host/HostBase.java +++ b/core/src/main/java/google/registry/model/host/HostBase.java @@ -24,11 +24,13 @@ import static google.registry.util.DomainNameUtils.canonicalizeHostname; import com.google.common.collect.ImmutableSet; import google.registry.model.EppResource; import google.registry.model.domain.Domain; +import google.registry.model.domain.VKeyConverter_Domain; import google.registry.persistence.VKey; import google.registry.persistence.converter.InetAddressSetUserType; import jakarta.persistence.Access; import jakarta.persistence.AccessType; -import jakarta.persistence.Embeddable; +import jakarta.persistence.Column; +import jakarta.persistence.Convert; import jakarta.persistence.MappedSuperclass; import java.net.InetAddress; import java.util.Optional; @@ -50,7 +52,6 @@ import org.joda.time.DateTime; * @see RFC 5732 */ @MappedSuperclass -@Embeddable @Access(AccessType.FIELD) public class HostBase extends EppResource { @@ -65,10 +66,12 @@ public class HostBase extends EppResource { /** IP Addresses for this host. Can be null if this is an external host. */ @Type(InetAddressSetUserType.class) + @Column(columnDefinition = "text[]") Set inetAddresses; /** The superordinate domain of this host, or null if this is an external host. */ @DoNotHydrate + @Convert(converter = VKeyConverter_Domain.class) VKey superordinateDomain; /** @@ -225,5 +228,21 @@ public class HostBase extends EppResource { getInstance().lastTransferTime = lastTransferTime; return thisCastToDerived(); } + + public B copyFrom(HostBase hostBase) { + return setCreationRegistrarId(hostBase.getCreationRegistrarId()) + .setCreationTime(hostBase.getCreationTime()) + .setDeletionTime(hostBase.getDeletionTime()) + .setHostName(hostBase.getHostName()) + .setInetAddresses(hostBase.getInetAddresses()) + .setLastTransferTime(hostBase.getLastTransferTime()) + .setLastSuperordinateChange(hostBase.getLastSuperordinateChange()) + .setLastEppUpdateRegistrarId(hostBase.getLastEppUpdateRegistrarId()) + .setLastEppUpdateTime(hostBase.getLastEppUpdateTime()) + .setPersistedCurrentSponsorRegistrarId(hostBase.getPersistedCurrentSponsorRegistrarId()) + .setRepoId(hostBase.getRepoId()) + .setSuperordinateDomain(hostBase.getSuperordinateDomain()) + .setStatusValues(hostBase.getStatusValues()); + } } } diff --git a/core/src/main/java/google/registry/model/host/HostHistory.java b/core/src/main/java/google/registry/model/host/HostHistory.java index 400e590c6..50188a9f5 100644 --- a/core/src/main/java/google/registry/model/host/HostHistory.java +++ b/core/src/main/java/google/registry/model/host/HostHistory.java @@ -18,6 +18,7 @@ import jakarta.persistence.Access; import jakarta.persistence.AccessType; import jakarta.persistence.AttributeOverride; import jakarta.persistence.Column; +import jakarta.persistence.Embedded; import jakarta.persistence.Entity; import jakarta.persistence.Index; import jakarta.persistence.Table; @@ -46,7 +47,7 @@ public class HostHistory extends HistoryEntry { // Store HostBase instead of Host, so we don't pick up its @Id // @Nullable for the sake of pre-Registry-3.0 history objects - @Nullable HostBase resource; + @Nullable @Embedded EmbeddedHostBase resource; @Override protected HostBase getResource() { @@ -79,8 +80,6 @@ public class HostHistory extends HistoryEntry { return new Builder(clone(this)); } - - public static class Builder extends HistoryEntry.Builder { public Builder() {} @@ -90,7 +89,7 @@ public class HostHistory extends HistoryEntry { } public Builder setHost(HostBase hostBase) { - getInstance().resource = hostBase; + getInstance().resource = new EmbeddedHostBase.Builder().copyFrom(hostBase).build(); return setRepoId(hostBase); } } diff --git a/core/src/main/java/google/registry/model/poll/PollMessage.java b/core/src/main/java/google/registry/model/poll/PollMessage.java index 1c1f2b6cf..2e73951e3 100644 --- a/core/src/main/java/google/registry/model/poll/PollMessage.java +++ b/core/src/main/java/google/registry/model/poll/PollMessage.java @@ -39,6 +39,7 @@ import google.registry.model.reporting.HistoryEntry.HistoryEntryId; import google.registry.model.transfer.DomainTransferData.TransferServerApproveEntity; import google.registry.model.transfer.TransferResponse; import google.registry.model.transfer.TransferResponse.DomainTransferResponse; +import google.registry.persistence.EntityCallbacksListener.RecursivePostLoad; import google.registry.persistence.VKey; import google.registry.persistence.WithVKey; import google.registry.util.NullIgnoringCollectionBuilder; @@ -53,7 +54,6 @@ import jakarta.persistence.Id; import jakarta.persistence.Index; import jakarta.persistence.Inheritance; import jakarta.persistence.InheritanceType; -import jakarta.persistence.PostLoad; import jakarta.persistence.Table; import java.util.Optional; import org.joda.time.DateTime; @@ -399,7 +399,7 @@ public abstract class PollMessage extends ImmutableObject .build(); } - @PostLoad + @RecursivePostLoad void postLoad() { if (pendingActionNotificationResponse != null) { // Promote the pending action notification response to its specialized type. diff --git a/core/src/main/java/google/registry/model/registrar/Registrar.java b/core/src/main/java/google/registry/model/registrar/Registrar.java index 59790fd35..9ce2c94b3 100644 --- a/core/src/main/java/google/registry/model/registrar/Registrar.java +++ b/core/src/main/java/google/registry/model/registrar/Registrar.java @@ -285,6 +285,7 @@ public class Registrar extends UpdateAutoTimestampEntity implements Buildable, J /** An allow list of netmasks (in CIDR notation) which the client is allowed to connect from. */ @org.hibernate.annotations.Type(CidrBlockListUserType.class) + @Column(columnDefinition = "text[]") @Expose List ipAddressAllowList; @@ -378,6 +379,7 @@ public class Registrar extends UpdateAutoTimestampEntity implements Buildable, J @Expose @Nullable @org.hibernate.annotations.Type(CurrencyToStringMapUserType.class) + @Column(columnDefinition = "hstore") Map billingAccountMap; /** URL of registrar's website. */ diff --git a/core/src/main/java/google/registry/model/reporting/HistoryEntry.java b/core/src/main/java/google/registry/model/reporting/HistoryEntry.java index b47a02716..a6000e0ee 100644 --- a/core/src/main/java/google/registry/model/reporting/HistoryEntry.java +++ b/core/src/main/java/google/registry/model/reporting/HistoryEntry.java @@ -29,6 +29,7 @@ import google.registry.model.eppcommon.Trid; import google.registry.model.host.HostBase; import google.registry.model.host.HostHistory; import google.registry.model.reporting.HistoryEntry.HistoryEntryId; +import google.registry.persistence.EntityCallbacksListener.RecursivePostLoad; import jakarta.persistence.Access; import jakarta.persistence.AccessType; import jakarta.persistence.AttributeOverride; @@ -40,7 +41,6 @@ import jakarta.persistence.Enumerated; import jakarta.persistence.Id; import jakarta.persistence.IdClass; import jakarta.persistence.MappedSuperclass; -import jakarta.persistence.PostLoad; import java.util.Optional; import javax.annotation.Nullable; import org.apache.commons.lang3.BooleanUtils; @@ -118,8 +118,8 @@ public abstract class HistoryEntry extends ImmutableObject * *

Note that the embedded EPP resource is of a base type for which the repo ID field is * {@code @Transient}, which is NOT persisted as part of the embedded entity. After a {@link - * HistoryEntry} is loaded from SQL, the {@link #postLoad()} methods re-populates the field inside - * the EPP resource. + * HistoryEntry} is loaded from SQL, the {@link #historyEntryPostLoad()} methods re-populates the + * field inside the EPP resource. */ @Id protected String repoId; @@ -225,7 +225,8 @@ public abstract class HistoryEntry extends ImmutableObject public abstract Optional getResourceAtPointInTime(); - protected void processResourcePostLoad() { + @RecursivePostLoad + public void historyEntryPostLoad() { // Post-Registry 3.0 entity should always have the resource field, whereas pre-Registry 3.0 // will return a null resource. if (getResource() != null && getResource().getRepoId() == null) { @@ -235,11 +236,6 @@ public abstract class HistoryEntry extends ImmutableObject } } - @PostLoad - protected void postLoad() { - processResourcePostLoad(); - } - @Override public abstract Builder asBuilder(); diff --git a/core/src/main/java/google/registry/model/server/Lock.java b/core/src/main/java/google/registry/model/server/Lock.java index 4c856d2ed..b6d58565d 100644 --- a/core/src/main/java/google/registry/model/server/Lock.java +++ b/core/src/main/java/google/registry/model/server/Lock.java @@ -24,13 +24,13 @@ import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Strings; import com.google.common.flogger.FluentLogger; import google.registry.model.ImmutableObject; +import google.registry.persistence.EntityCallbacksListener.RecursivePostLoad; import google.registry.persistence.VKey; import google.registry.persistence.transaction.TransactionManager.ThrowingRunnable; import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.Id; import jakarta.persistence.IdClass; -import jakarta.persistence.PostLoad; import jakarta.persistence.Table; import jakarta.persistence.Transient; import java.io.Serializable; @@ -99,7 +99,7 @@ public class Lock extends ImmutableObject implements Serializable { return expirationTime; } - @PostLoad + @RecursivePostLoad void postLoad() { lockId = makeLockId(resourceName, scope); } diff --git a/core/src/main/java/google/registry/model/tld/Tld.java b/core/src/main/java/google/registry/model/tld/Tld.java index 4f5dd65f7..ae18d2011 100644 --- a/core/src/main/java/google/registry/model/tld/Tld.java +++ b/core/src/main/java/google/registry/model/tld/Tld.java @@ -66,8 +66,10 @@ import google.registry.model.domain.fee.BaseFee.FeeType; import google.registry.model.domain.fee.Fee; import google.registry.model.domain.token.AllocationToken; import google.registry.model.domain.token.AllocationToken.TokenType; +import google.registry.model.domain.token.VKeyConverter_AllocationToken; import google.registry.model.tld.label.PremiumList; import google.registry.model.tld.label.ReservedList; +import google.registry.persistence.EntityCallbacksListener.RecursivePostPersist; import google.registry.persistence.VKey; import google.registry.persistence.converter.AllocationTokenVkeyListUserType; import google.registry.persistence.converter.BillingCostTransitionUserType; @@ -76,11 +78,11 @@ import google.registry.tldconfig.idn.IdnTableEnum; import google.registry.util.Idn; import jakarta.persistence.AttributeOverride; import jakarta.persistence.Column; +import jakarta.persistence.Convert; import jakarta.persistence.Entity; import jakarta.persistence.EnumType; import jakarta.persistence.Enumerated; import jakarta.persistence.Id; -import jakarta.persistence.PostPersist; import java.util.List; import java.util.Map; import java.util.Optional; @@ -218,7 +220,7 @@ public class Tld extends ImmutableObject implements Buildable, UnsafeSerializabl *

This is called automatically when the tld is saved. One should also call it when a tld is * deleted. */ - @PostPersist + @RecursivePostPersist public void invalidateInCache() { CACHE.invalidate(tldStr); } @@ -318,6 +320,7 @@ public class Tld extends ImmutableObject implements Buildable, UnsafeSerializabl * *

When this field is null, the "dnsDefaultATtl" value from the config file will be used. */ + @Column(columnDefinition = "interval") @JsonSerialize(using = OptionalDurationSerializer.class) Duration dnsAPlusAaaaTtl; @@ -326,6 +329,7 @@ public class Tld extends ImmutableObject implements Buildable, UnsafeSerializabl * *

When this field is null, the "dnsDefaultNsTtl" value from the config file will be used. */ + @Column(columnDefinition = "interval") @JsonSerialize(using = OptionalDurationSerializer.class) Duration dnsNsTtl; @@ -334,6 +338,7 @@ public class Tld extends ImmutableObject implements Buildable, UnsafeSerializabl * *

When this field is null, the "dnsDefaultDsTtl" value from the config file will be used. */ + @Column(columnDefinition = "interval") @JsonSerialize(using = OptionalDurationSerializer.class) Duration dnsDsTtl; @@ -368,7 +373,7 @@ public class Tld extends ImmutableObject implements Buildable, UnsafeSerializabl boolean invoicingEnabled; /** A property that transitions to different {@link TldState}s at different times. */ - @Column(nullable = false) + @Column(nullable = false, columnDefinition = "hstore") @Type(TldStateTransitionUserType.class) @JsonDeserialize(using = TimedTransitionPropertyTldStateDeserializer.class) TimedTransitionProperty tldStateTransitions = @@ -421,35 +426,35 @@ public class Tld extends ImmutableObject implements Buildable, UnsafeSerializabl *

Domain deletes are free and effective immediately so long as they take place within this * amount of time following creation. */ - @Column(nullable = false) + @Column(nullable = false, columnDefinition = "interval") Duration addGracePeriodLength = DEFAULT_ADD_GRACE_PERIOD; /** The length of the anchor tenant add grace period for this TLD. */ - @Column(nullable = false) + @Column(nullable = false, columnDefinition = "interval") Duration anchorTenantAddGracePeriodLength = DEFAULT_ANCHOR_TENANT_ADD_GRACE_PERIOD; /** The length of the autorenew grace period for this TLD. */ - @Column(nullable = false) + @Column(nullable = false, columnDefinition = "interval") Duration autoRenewGracePeriodLength = DEFAULT_AUTO_RENEW_GRACE_PERIOD; /** The length of the redemption grace period for this TLD. */ - @Column(nullable = false) + @Column(nullable = false, columnDefinition = "interval") Duration redemptionGracePeriodLength = DEFAULT_REDEMPTION_GRACE_PERIOD; /** The length of the renew grace period for this TLD. */ - @Column(nullable = false) + @Column(nullable = false, columnDefinition = "interval") Duration renewGracePeriodLength = DEFAULT_RENEW_GRACE_PERIOD; /** The length of the transfer grace period for this TLD. */ - @Column(nullable = false) + @Column(nullable = false, columnDefinition = "interval") Duration transferGracePeriodLength = DEFAULT_TRANSFER_GRACE_PERIOD; /** The length of time before a transfer is automatically approved for this TLD. */ - @Column(nullable = false) + @Column(nullable = false, columnDefinition = "interval") Duration automaticTransferLength = DEFAULT_AUTOMATIC_TRANSFER_LENGTH; /** The length of time a domain spends in the non-redeemable pending delete phase for this TLD. */ - @Column(nullable = false) + @Column(nullable = false, columnDefinition = "interval") Duration pendingDeleteLength = DEFAULT_PENDING_DELETE_LENGTH; /** The currency unit for all costs associated with this TLD. */ @@ -459,7 +464,7 @@ public class Tld extends ImmutableObject implements Buildable, UnsafeSerializabl CurrencyUnit currency = DEFAULT_CURRENCY; /** A property that transitions to different create billing costs at different times. */ - @Column(nullable = false) + @Column(nullable = false, columnDefinition = "hstore") @Type(BillingCostTransitionUserType.class) @JsonDeserialize(using = TimedTransitionPropertyMoneyDeserializer.class) TimedTransitionProperty createBillingCostTransitions = @@ -501,14 +506,14 @@ public class Tld extends ImmutableObject implements Buildable, UnsafeSerializabl * name. This cost is also used to compute costs for transfers, since each transfer includes a * renewal to ensure transfers have a cost. */ - @Column(nullable = false) + @Column(nullable = false, columnDefinition = "hstore") @Type(BillingCostTransitionUserType.class) @JsonDeserialize(using = TimedTransitionPropertyMoneyDeserializer.class) TimedTransitionProperty renewBillingCostTransitions = TimedTransitionProperty.withInitialValue(DEFAULT_RENEW_BILLING_COST); /** A property that tracks the EAP fee schedule (if any) for the TLD. */ - @Column(nullable = false) + @Column(nullable = false, columnDefinition = "hstore") @Type(BillingCostTransitionUserType.class) @JsonDeserialize(using = TimedTransitionPropertyMoneyDeserializer.class) TimedTransitionProperty eapFeeSchedule = @@ -547,6 +552,7 @@ public class Tld extends ImmutableObject implements Buildable, UnsafeSerializabl @Type(AllocationTokenVkeyListUserType.class) @JsonSerialize(using = TokenVKeyListSerializer.class) @JsonDeserialize(using = TokenVKeyListDeserializer.class) + @Convert(converter = VKeyConverter_AllocationToken.class) List> defaultPromoTokens; /** A set of allowed {@link IdnTableEnum}s for this TLD, or empty if we should use the default. */ diff --git a/core/src/main/java/google/registry/model/tld/Tlds.java b/core/src/main/java/google/registry/model/tld/Tlds.java index e34e606fb..9cd06a67a 100644 --- a/core/src/main/java/google/registry/model/tld/Tlds.java +++ b/core/src/main/java/google/registry/model/tld/Tlds.java @@ -61,12 +61,11 @@ public final class Tlds { tm().reTransact( () -> { EntityManager entityManager = tm().getEntityManager(); - Stream resultStream = + Stream resultStream = entityManager - .createQuery("SELECT tldStr, tldType FROM Tld") + .createQuery("SELECT tldStr, tldType FROM Tld", Object[].class) .getResultStream(); return resultStream - .map(e -> ((Object[]) e)) .map(e -> Maps.immutableEntry((String) e[0], ((TldType) e[1]))) .collect(entriesToImmutableMap()); })); diff --git a/core/src/main/java/google/registry/model/tld/label/ReservedList.java b/core/src/main/java/google/registry/model/tld/label/ReservedList.java index c9628fb97..70a81c64f 100644 --- a/core/src/main/java/google/registry/model/tld/label/ReservedList.java +++ b/core/src/main/java/google/registry/model/tld/label/ReservedList.java @@ -35,11 +35,11 @@ import google.registry.model.Buildable; import google.registry.model.CacheUtils; import google.registry.model.tld.Tld; import google.registry.model.tld.label.DomainLabelMetrics.MetricsReservedListMatch; +import google.registry.persistence.EntityCallbacksListener.RecursivePostPersist; +import google.registry.persistence.EntityCallbacksListener.RecursivePreRemove; import jakarta.persistence.Column; import jakarta.persistence.Id; import jakarta.persistence.Index; -import jakarta.persistence.PostPersist; -import jakarta.persistence.PreRemove; import jakarta.persistence.Table; import jakarta.persistence.Transient; import java.io.Serializable; @@ -71,7 +71,7 @@ public final class ReservedList */ @Insignificant @Transient Map reservedListMap; - @PreRemove + @RecursivePreRemove void preRemove() { tm().query("DELETE FROM ReservedEntry WHERE revisionId = :revisionId") .setParameter("revisionId", revisionId) @@ -83,10 +83,10 @@ public final class ReservedList * ReservedListEntry}'s. * *

We need to persist the list entries, but only on the initial insert (not on update) since - * the entries themselves never get changed, so we only annotate it with {@link PostPersist}, not - * PostUpdate. + * the entries themselves never get changed, so we only annotate it with {@link + * RecursivePostPersist}, not PostUpdate. */ - @PostPersist + @RecursivePostPersist void postPersist() { if (reservedListMap != null) { reservedListMap @@ -223,8 +223,7 @@ public final class ReservedList if (label.length() == 0) { return ImmutableSet.of(FULLY_BLOCKED); } - return getReservedListEntries(label, tld) - .stream() + return getReservedListEntries(label, tld).stream() .map(ReservedListEntry::getValue) .collect(toImmutableSet()); } @@ -294,8 +293,10 @@ public final class ReservedList String line = lineAndComment.get(0); String comment = lineAndComment.get(1); List parts = Splitter.on(',').trimResults().splitToList(line); - checkArgument(parts.size() == 2 || parts.size() == 3, - "Could not parse line in reserved list: %s", originalLine); + checkArgument( + parts.size() == 2 || parts.size() == 3, + "Could not parse line in reserved list: %s", + originalLine); String label = parts.get(0); ReservationType reservationType = ReservationType.valueOf(parts.get(1)); return ReservedListEntry.create(label, reservationType, comment); @@ -306,9 +307,7 @@ public final class ReservedList return new Builder(clone(this)); } - /** - * A builder for constructing {@link ReservedList} objects, since they are immutable. - */ + /** A builder for constructing {@link ReservedList} objects, since they are immutable. */ public static class Builder extends BaseDomainLabelList.Builder { public Builder() {} diff --git a/core/src/main/java/google/registry/model/tmch/ClaimsList.java b/core/src/main/java/google/registry/model/tmch/ClaimsList.java index 665963f5d..456d12f6c 100644 --- a/core/src/main/java/google/registry/model/tmch/ClaimsList.java +++ b/core/src/main/java/google/registry/model/tmch/ClaimsList.java @@ -26,6 +26,9 @@ import com.google.common.collect.ImmutableMap; import google.registry.model.CacheUtils; import google.registry.model.CreateAutoTimestamp; import google.registry.model.ImmutableObject; +import google.registry.persistence.EntityCallbacksListener.RecursivePostPersist; +import google.registry.persistence.EntityCallbacksListener.RecursivePostUpdate; +import google.registry.persistence.EntityCallbacksListener.RecursivePreRemove; import jakarta.persistence.AttributeOverride; import jakarta.persistence.AttributeOverrides; import jakarta.persistence.Column; @@ -33,9 +36,6 @@ import jakarta.persistence.Entity; import jakarta.persistence.GeneratedValue; import jakarta.persistence.GenerationType; import jakarta.persistence.Id; -import jakarta.persistence.PostPersist; -import jakarta.persistence.PostUpdate; -import jakarta.persistence.PreRemove; import jakarta.persistence.Table; import jakarta.persistence.Transient; import java.util.Map; @@ -102,7 +102,7 @@ public class ClaimsList extends ImmutableObject { final LoadingCache> claimKeyCache = CacheUtils.newCacheBuilder().build(this::getClaimKeyUncached); - @PreRemove + @RecursivePreRemove void preRemove() { tm().query("DELETE FROM ClaimsEntry WHERE revisionId = :revisionId") .setParameter("revisionId", revisionId) @@ -114,10 +114,10 @@ public class ClaimsList extends ImmutableObject { * ClaimsEntry}'s. * *

We need to persist the list entries, but only on the initial insert (not on update) since - * the entries themselves never get changed, so we only annotate it with {@link PostPersist}, not - * {@link PostUpdate}. + * the entries themselves never get changed, so we only annotate it with {@link + * RecursivePostPersist}, not {@link RecursivePostUpdate}. */ - @PostPersist + @RecursivePostPersist void postPersist() { if (labelsToKeys != null) { labelsToKeys.forEach( diff --git a/core/src/main/java/google/registry/model/transfer/DomainTransferData.java b/core/src/main/java/google/registry/model/transfer/DomainTransferData.java index 7eb4d9a71..7ecb17e26 100644 --- a/core/src/main/java/google/registry/model/transfer/DomainTransferData.java +++ b/core/src/main/java/google/registry/model/transfer/DomainTransferData.java @@ -25,15 +25,20 @@ import google.registry.model.Buildable; import google.registry.model.billing.BillingCancellation; import google.registry.model.billing.BillingEvent; import google.registry.model.billing.BillingRecurrence; +import google.registry.model.billing.VKeyConverter_BillingCancellation; +import google.registry.model.billing.VKeyConverter_BillingEvent; +import google.registry.model.billing.VKeyConverter_BillingRecurrence; import google.registry.model.domain.Period; import google.registry.model.domain.Period.Unit; import google.registry.model.eppcommon.Trid; import google.registry.model.poll.PollMessage; +import google.registry.model.poll.VKeyConverter_Autorenew; import google.registry.persistence.VKey; import google.registry.util.NullIgnoringCollectionBuilder; import jakarta.persistence.AttributeOverride; import jakarta.persistence.AttributeOverrides; import jakarta.persistence.Column; +import jakarta.persistence.Convert; import jakarta.persistence.Embeddable; import jakarta.persistence.Embedded; import java.util.Set; @@ -109,6 +114,7 @@ public class DomainTransferData extends BaseTransferObject implements Buildable DateTime transferredRegistrationExpirationTime; @Column(name = "transfer_billing_cancellation_id") + @Convert(converter = VKeyConverter_BillingCancellation.class) public VKey billingCancellationId; /** @@ -118,6 +124,7 @@ public class DomainTransferData extends BaseTransferObject implements Buildable * being transferred is not a domain. */ @Column(name = "transfer_billing_event_id") + @Convert(converter = VKeyConverter_BillingEvent.class) VKey serverApproveBillingEvent; /** @@ -127,6 +134,7 @@ public class DomainTransferData extends BaseTransferObject implements Buildable * being transferred is not a domain. */ @Column(name = "transfer_billing_recurrence_id") + @Convert(converter = VKeyConverter_BillingRecurrence.class) VKey serverApproveAutorenewEvent; /** @@ -136,6 +144,7 @@ public class DomainTransferData extends BaseTransferObject implements Buildable * being transferred is not a domain. */ @Column(name = "transfer_autorenew_poll_message_id") + @Convert(converter = VKeyConverter_Autorenew.class) VKey serverApproveAutorenewPollMessage; /** diff --git a/core/src/main/java/google/registry/persistence/EntityCallbacksListener.java b/core/src/main/java/google/registry/persistence/EntityCallbacksListener.java index e88b4ba09..e093f572f 100644 --- a/core/src/main/java/google/registry/persistence/EntityCallbacksListener.java +++ b/core/src/main/java/google/registry/persistence/EntityCallbacksListener.java @@ -26,6 +26,10 @@ import jakarta.persistence.PreRemove; import jakarta.persistence.PreUpdate; import jakarta.persistence.Transient; import java.lang.annotation.Annotation; +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; @@ -35,62 +39,88 @@ import java.util.Objects; import java.util.stream.Stream; /** - * A listener class to invoke entity callbacks in cases where Hibernate doesn't invoke the callback - * as expected. + * A listener class to invoke entity callbacks. * *

JPA defines a few annotations, e.g. {@link PostLoad}, that we can use for the application to - * react to certain events that occur inside the persistence mechanism. However, Hibernate only - * supports a few basic use cases, e.g. defining a {@link PostLoad} method directly in an {@link - * jakarta.persistence.Entity} class or in an {@link Embeddable} class. If the annotated method is - * defined in an {@link Embeddable} class that is a property of another {@link Embeddable} class, or - * it is defined in a parent class of the {@link Embeddable} class, Hibernate doesn't invoke it. + * react to certain events that occur inside the persistence mechanism. However, Hibernate will not + * (or at least, is not guaranteed to) call these methods in embedded fields. Because we still want + * to invoke these event-based methods on embedded objects, we inspect the type tree for all {@link + * Embeddable} classes or {@link Embedded} objects. * *

This listener is added in core/src/main/resources/META-INF/orm.xml as a default entity * listener whose annotated methods will be invoked by Hibernate when corresponding events happen. * For example, {@link EntityCallbacksListener#prePersist} will be invoked before the entity is - * persisted to the database, then it will recursively invoke any other {@link PrePersist} method - * that should be invoked but not handled by Hibernate due to the bug. + * persisted to the database, then it will recursively invoke any other {@link RecursivePrePersist} + * method that we want to invoke, but that Hibernate does not support. * * @see JPA * Callbacks - * @see HHH-13316 + * @see HHH-12326 */ public class EntityCallbacksListener { + @Target(ElementType.METHOD) + @Retention(RetentionPolicy.RUNTIME) + public @interface RecursivePrePersist {} + + @Target(ElementType.METHOD) + @Retention(RetentionPolicy.RUNTIME) + public @interface RecursivePreRemove {} + + @Target(ElementType.METHOD) + @Retention(RetentionPolicy.RUNTIME) + public @interface RecursivePostPersist {} + + @Target(ElementType.METHOD) + @Retention(RetentionPolicy.RUNTIME) + public @interface RecursivePostRemove {} + + @Target(ElementType.METHOD) + @Retention(RetentionPolicy.RUNTIME) + public @interface RecursivePreUpdate {} + + @Target(ElementType.METHOD) + @Retention(RetentionPolicy.RUNTIME) + public @interface RecursivePostUpdate {} + + @Target(ElementType.METHOD) + @Retention(RetentionPolicy.RUNTIME) + public @interface RecursivePostLoad {} + @PrePersist void prePersist(Object entity) { - EntityCallbackExecutor.create(PrePersist.class).execute(entity, entity.getClass()); + EntityCallbackExecutor.create(RecursivePrePersist.class).execute(entity, entity.getClass()); } @PreRemove void preRemove(Object entity) { - EntityCallbackExecutor.create(PreRemove.class).execute(entity, entity.getClass()); + EntityCallbackExecutor.create(RecursivePreRemove.class).execute(entity, entity.getClass()); } @PostPersist void postPersist(Object entity) { - EntityCallbackExecutor.create(PostPersist.class).execute(entity, entity.getClass()); + EntityCallbackExecutor.create(RecursivePostPersist.class).execute(entity, entity.getClass()); } @PostRemove void postRemove(Object entity) { - EntityCallbackExecutor.create(PostRemove.class).execute(entity, entity.getClass()); + EntityCallbackExecutor.create(RecursivePostRemove.class).execute(entity, entity.getClass()); } @PreUpdate void preUpdate(Object entity) { - EntityCallbackExecutor.create(PreUpdate.class).execute(entity, entity.getClass()); + EntityCallbackExecutor.create(RecursivePreUpdate.class).execute(entity, entity.getClass()); } @PostUpdate void postUpdate(Object entity) { - EntityCallbackExecutor.create(PostUpdate.class).execute(entity, entity.getClass()); + EntityCallbackExecutor.create(RecursivePostUpdate.class).execute(entity, entity.getClass()); } @PostLoad void postLoad(Object entity) { - EntityCallbackExecutor.create(PostLoad.class).execute(entity, entity.getClass()); + EntityCallbackExecutor.create(RecursivePostLoad.class).execute(entity, entity.getClass()); } private static class EntityCallbackExecutor { @@ -107,68 +137,29 @@ public class EntityCallbacksListener { /** * Executes eligible callbacks in {@link Embedded} properties recursively. * + *

We pass the class that we're currently inspecting because embedded properties or relevant + * methods can be defined on a possible superclass of the root entity class. + * * @param entity the Java object of the entity class - * @param entityType either the type of the entity or an ancestor type */ - private void execute(Object entity, Class entityType) { - Class parentType = entityType.getSuperclass(); - if (parentType != null && parentType.isAnnotationPresent(MappedSuperclass.class)) { - execute(entity, parentType); + private void execute(Object entity, Class currentClass) { + Class superclass = currentClass.getSuperclass(); + if (superclass != null && superclass.isAnnotationPresent(MappedSuperclass.class)) { + execute(entity, superclass); } - findEmbeddedProperties(entity, entityType) - .forEach( - normalEmbedded -> { - // For each normal embedded property, we don't execute its callback method because - // it is handled by Hibernate. However, for the embedded property defined in the - // entity's parent class, we need to treat it as a nested embedded property and - // invoke its callback function. - if (entity.getClass().equals(entityType)) { - executeCallbackForNormalEmbeddedProperty( - normalEmbedded, normalEmbedded.getClass()); - } else { - executeCallbackForNestedEmbeddedProperty( - normalEmbedded, normalEmbedded.getClass()); - } - }); - } + findEmbeddedProperties(entity, currentClass) + .forEach(embeddedProperty -> execute(embeddedProperty, embeddedProperty.getClass())); - private void executeCallbackForNestedEmbeddedProperty( - Object nestedEmbeddedObject, Class nestedEmbeddedType) { - Class parentType = nestedEmbeddedType.getSuperclass(); - if (parentType != null && parentType.isAnnotationPresent(MappedSuperclass.class)) { - executeCallbackForNestedEmbeddedProperty(nestedEmbeddedObject, parentType); - } - - findEmbeddedProperties(nestedEmbeddedObject, nestedEmbeddedType) - .forEach( - embeddedProperty -> - executeCallbackForNestedEmbeddedProperty( - embeddedProperty, embeddedProperty.getClass())); - - for (Method method : nestedEmbeddedType.getDeclaredMethods()) { + for (Method method : currentClass.getDeclaredMethods()) { if (method.isAnnotationPresent(callbackType)) { - invokeMethod(method, nestedEmbeddedObject); + invokeMethod(method, entity); } } } - private void executeCallbackForNormalEmbeddedProperty( - Object normalEmbeddedObject, Class normalEmbeddedType) { - Class parentType = normalEmbeddedType.getSuperclass(); - if (parentType != null && parentType.isAnnotationPresent(MappedSuperclass.class)) { - executeCallbackForNormalEmbeddedProperty(normalEmbeddedObject, parentType); - } - - findEmbeddedProperties(normalEmbeddedObject, normalEmbeddedType) - .forEach( - embeddedProperty -> - executeCallbackForNestedEmbeddedProperty( - embeddedProperty, embeddedProperty.getClass())); - } - - private Stream findEmbeddedProperties(Object object, Class clazz) { - return Arrays.stream(clazz.getDeclaredFields()) + private Stream findEmbeddedProperties(Object object, Class currentClass) { + return Arrays.stream(currentClass.getDeclaredFields()) .filter(field -> !field.isAnnotationPresent(Transient.class)) .filter( field -> diff --git a/core/src/main/java/google/registry/persistence/NomulusPostgreSQLDialect.java b/core/src/main/java/google/registry/persistence/NomulusPostgreSQLDialect.java index ce3f95d8e..ba2717e26 100644 --- a/core/src/main/java/google/registry/persistence/NomulusPostgreSQLDialect.java +++ b/core/src/main/java/google/registry/persistence/NomulusPostgreSQLDialect.java @@ -29,19 +29,12 @@ public class NomulusPostgreSQLDialect extends PostgreSQLDialect { // definitions. See `contributeTypes` below. // These codes may take arbitrary values as long as they do not conflict with existing codes. - /** Represents a type backed by an `hstore` column in the database. */ - public static final int NATIVE_MAP_TYPE = Integer.MAX_VALUE - 1; - /** Represents a type backed by an `text[]` column in the database. */ public static final int NATIVE_ARRAY_OF_POJO_TYPE = Integer.MAX_VALUE - 2; /** Represents a type backed by an `interval` column in the database. */ public static final int NATIVE_INTERVAL_TYPE = Integer.MAX_VALUE - 3; - public NomulusPostgreSQLDialect() { - super(); - } - @Override public String getArrayTypeName( String javaElementTypeName, String elementTypeName, Integer maxLength) { @@ -58,8 +51,7 @@ public class NomulusPostgreSQLDialect extends PostgreSQLDialect { typeContributions.contributeType(new JodaMoneyType()); // Verify that custom codes do not conflict with built-in types. - for (int customType : - new int[] {NATIVE_MAP_TYPE, NATIVE_ARRAY_OF_POJO_TYPE, NATIVE_INTERVAL_TYPE}) { + for (int customType : new int[] {NATIVE_ARRAY_OF_POJO_TYPE, NATIVE_INTERVAL_TYPE}) { try { super.columnType(customType); throw new IllegalStateException( @@ -68,11 +60,7 @@ public class NomulusPostgreSQLDialect extends PostgreSQLDialect { // OK } } - DdlTypeRegistry ddlTypes = typeContributions.getTypeConfiguration().getDdlTypeRegistry(); - ddlTypes.addDescriptor(new DdlTypeImpl(NATIVE_MAP_TYPE, "hstore", this)); - ddlTypes.addDescriptor(new DdlTypeImpl(NATIVE_ARRAY_OF_POJO_TYPE, "text[]", this)); - ddlTypes.addDescriptor(new DdlTypeImpl(NATIVE_INTERVAL_TYPE, "interval", this)); // Use text instead of varchar to match real schema from psql dump. ddlTypes.addDescriptor(new DdlTypeImpl(SqlTypes.VARCHAR, "text", this)); } diff --git a/core/src/main/java/google/registry/persistence/NoopJpaEntityScanner.java b/core/src/main/java/google/registry/persistence/NoopJpaEntityScanner.java deleted file mode 100644 index 71a3db7e6..000000000 --- a/core/src/main/java/google/registry/persistence/NoopJpaEntityScanner.java +++ /dev/null @@ -1,45 +0,0 @@ -// Copyright 2020 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. - -package google.registry.persistence; - -import com.google.common.collect.ImmutableSet; -import org.hibernate.boot.archive.internal.StandardArchiveDescriptorFactory; -import org.hibernate.boot.archive.scan.internal.ScanResultImpl; -import org.hibernate.boot.archive.scan.internal.StandardScanner; -import org.hibernate.boot.archive.scan.spi.ScanEnvironment; -import org.hibernate.boot.archive.scan.spi.ScanOptions; -import org.hibernate.boot.archive.scan.spi.ScanParameters; -import org.hibernate.boot.archive.scan.spi.ScanResult; -import org.hibernate.boot.archive.scan.spi.Scanner; - -/** - * A do-nothing {@link Scanner} for Hibernate that works around bugs in Hibernate's default - * implementation. This is required for the Nomulus tool. - * - *

Please refer to persistence.xml - * for more information. - */ -public class NoopJpaEntityScanner extends StandardScanner { - - public NoopJpaEntityScanner() { - super(StandardArchiveDescriptorFactory.INSTANCE); - } - - @Override - public ScanResult scan( - ScanEnvironment environment, ScanOptions options, ScanParameters parameters) { - return new ScanResultImpl(ImmutableSet.of(), ImmutableSet.of(), ImmutableSet.of()); - } -} diff --git a/core/src/main/java/google/registry/persistence/PersistenceXmlUtility.java b/core/src/main/java/google/registry/persistence/PersistenceXmlUtility.java index 018e80555..18e7f7431 100644 --- a/core/src/main/java/google/registry/persistence/PersistenceXmlUtility.java +++ b/core/src/main/java/google/registry/persistence/PersistenceXmlUtility.java @@ -17,20 +17,27 @@ package google.registry.persistence; import static com.google.common.collect.ImmutableList.toImmutableList; import com.google.common.collect.ImmutableList; -import java.util.Properties; +import java.net.URL; +import java.util.List; import org.hibernate.jpa.boot.internal.ParsedPersistenceXmlDescriptor; -import org.hibernate.jpa.boot.internal.PersistenceXmlParser; +import org.hibernate.jpa.boot.spi.PersistenceUnitDescriptor; +import org.hibernate.jpa.boot.spi.PersistenceXmlParser; /** Utility class that provides methods to manipulate persistence.xml file. */ public class PersistenceXmlUtility { + + private static final String PERSISTENCE_XML_FILE_PATH = "META-INF/persistence.xml"; + private PersistenceXmlUtility() {} - /** - * Returns the {@link ParsedPersistenceXmlDescriptor} instance constructed from persistence.xml. - */ + /** Returns the {@link PersistenceUnitDescriptor} instance constructed from persistence.xml. */ public static ParsedPersistenceXmlDescriptor getParsedPersistenceXmlDescriptor() { - return PersistenceXmlParser.locatePersistenceUnits(new Properties()).stream() + PersistenceXmlParser parser = PersistenceXmlParser.create(); + List persistenceXmlUrls = + parser.getClassLoaderService().locateResources(PERSISTENCE_XML_FILE_PATH); + return parser.parse(persistenceXmlUrls).values().stream() .filter(unit -> PersistenceModule.PERSISTENCE_UNIT_NAME.equals(unit.getName())) + .map(ParsedPersistenceXmlDescriptor.class::cast) .findFirst() .orElseThrow( () -> diff --git a/core/src/main/java/google/registry/persistence/converter/DurationUserType.java b/core/src/main/java/google/registry/persistence/converter/DurationUserType.java index bd333e939..bb5ba3448 100644 --- a/core/src/main/java/google/registry/persistence/converter/DurationUserType.java +++ b/core/src/main/java/google/registry/persistence/converter/DurationUserType.java @@ -58,6 +58,7 @@ public class DurationUserType implements UserType { } @Override + @SuppressWarnings("removal") public Duration nullSafeGet( ResultSet resultSet, int i, @@ -72,6 +73,7 @@ public class DurationUserType implements UserType { } @Override + @SuppressWarnings("removal") public void nullSafeSet( PreparedStatement preparedStatement, Duration duration, diff --git a/core/src/main/java/google/registry/persistence/converter/InetAddressSetUserType.java b/core/src/main/java/google/registry/persistence/converter/InetAddressSetUserType.java index 9b9719b65..fe1864c02 100644 --- a/core/src/main/java/google/registry/persistence/converter/InetAddressSetUserType.java +++ b/core/src/main/java/google/registry/persistence/converter/InetAddressSetUserType.java @@ -28,10 +28,7 @@ public class InetAddressSetUserType @Override String[] toJdbcObject(Set collection) { - return collection.stream() - .map(addr -> InetAddresses.toAddrString(addr)) - .toList() - .toArray(new String[0]); + return collection.stream().map(InetAddresses::toAddrString).toList().toArray(new String[0]); } @Nullable diff --git a/core/src/main/java/google/registry/persistence/converter/JodaMoneyType.java b/core/src/main/java/google/registry/persistence/converter/JodaMoneyType.java index 6246d6cda..aed77f5e1 100644 --- a/core/src/main/java/google/registry/persistence/converter/JodaMoneyType.java +++ b/core/src/main/java/google/registry/persistence/converter/JodaMoneyType.java @@ -19,7 +19,6 @@ import java.io.Serializable; import java.math.BigDecimal; import java.util.Objects; import org.hibernate.HibernateException; -import org.hibernate.engine.spi.SessionFactoryImplementor; import org.hibernate.metamodel.spi.ValueAccess; import org.hibernate.usertype.CompositeUserType; import org.joda.money.CurrencyUnit; @@ -105,7 +104,7 @@ public class JodaMoneyType implements CompositeUserType { } @Override - public Money instantiate(ValueAccess values, SessionFactoryImplementor sessionFactory) { + public Money instantiate(ValueAccess values) { final String currency = values.getValue(CURRENCY_ID, String.class); final BigDecimal amount = values.getValue(AMOUNT_ID, BigDecimal.class); if (amount == null && currency == null) { diff --git a/core/src/main/java/google/registry/persistence/converter/MapUserType.java b/core/src/main/java/google/registry/persistence/converter/MapUserType.java index 8898f012f..2ce68d8e7 100644 --- a/core/src/main/java/google/registry/persistence/converter/MapUserType.java +++ b/core/src/main/java/google/registry/persistence/converter/MapUserType.java @@ -14,16 +14,15 @@ package google.registry.persistence.converter; -import static google.registry.persistence.NomulusPostgreSQLDialect.NATIVE_MAP_TYPE; import java.io.Serializable; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; -import java.sql.Types; import java.util.Map; import java.util.Objects; import org.hibernate.engine.spi.SharedSessionContractImplementor; +import org.hibernate.type.descriptor.WrapperOptions; import org.hibernate.usertype.UserType; /** @@ -35,13 +34,15 @@ import org.hibernate.usertype.UserType; @SuppressWarnings({"raw", "unchecked"}) abstract class MapUserType implements UserType { + private static final int POSTGRESQL_OTHER_TYPE = 1111; + abstract Map toStringMap(M map); abstract M toEntity(Map map); @Override public int getSqlType() { - return NATIVE_MAP_TYPE; + return POSTGRESQL_OTHER_TYPE; } @Override @@ -55,31 +56,36 @@ abstract class MapUserType implements UserType { } @Override + @SuppressWarnings("removal") public M nullSafeGet( ResultSet resultSet, int i, SharedSessionContractImplementor sharedSessionContractImplementor, Object o) throws SQLException { - Object object = resultSet.getObject(i); - if (resultSet.wasNull()) { - return null; - } - return toEntity((Map) object); + return nullSafeGet(resultSet, i); } @Override + public M nullSafeGet(ResultSet resultSet, int i, WrapperOptions options) throws SQLException { + return nullSafeGet(resultSet, i); + } + + @Override + @SuppressWarnings("removal") public void nullSafeSet( PreparedStatement preparedStatement, M map, int i, SharedSessionContractImplementor sharedSessionContractImplementor) throws SQLException { - if (map == null) { - preparedStatement.setNull(i, Types.OTHER); - } else { - preparedStatement.setObject(i, toStringMap(map), Types.OTHER); - } + this.nullSafeSet(preparedStatement, map, i); + } + + @Override + public void nullSafeSet(PreparedStatement preparedStatement, M map, int i, WrapperOptions options) + throws SQLException { + this.nullSafeSet(preparedStatement, map, i); } @Override @@ -101,4 +107,20 @@ abstract class MapUserType implements UserType { public M assemble(Serializable serializable, Object o) { return (M) serializable; } + + private void nullSafeSet(PreparedStatement preparedStatement, M map, int i) throws SQLException { + if (map == null) { + preparedStatement.setNull(i, POSTGRESQL_OTHER_TYPE); + } else { + preparedStatement.setObject(i, toStringMap(map), POSTGRESQL_OTHER_TYPE); + } + } + + private M nullSafeGet(ResultSet resultSet, int i) throws SQLException { + Object object = resultSet.getObject(i); + if (resultSet.wasNull()) { + return null; + } + return toEntity((Map) object); + } } diff --git a/core/src/main/java/google/registry/persistence/converter/StringCollectionUserType.java b/core/src/main/java/google/registry/persistence/converter/StringCollectionUserType.java index 5c04ff62b..eb70dca38 100644 --- a/core/src/main/java/google/registry/persistence/converter/StringCollectionUserType.java +++ b/core/src/main/java/google/registry/persistence/converter/StringCollectionUserType.java @@ -74,6 +74,7 @@ public abstract class StringCollectionUserType> imple } @Override + @SuppressWarnings("removal") public C nullSafeGet( ResultSet resultSet, int i, @@ -89,6 +90,7 @@ public abstract class StringCollectionUserType> imple } @Override + @SuppressWarnings("removal") public void nullSafeSet( PreparedStatement preparedStatement, C collection, diff --git a/core/src/main/java/google/registry/persistence/transaction/DatabaseException.java b/core/src/main/java/google/registry/persistence/transaction/DatabaseException.java index 1609e49e6..578254d50 100644 --- a/core/src/main/java/google/registry/persistence/transaction/DatabaseException.java +++ b/core/src/main/java/google/registry/persistence/transaction/DatabaseException.java @@ -26,7 +26,7 @@ import java.util.Optional; * status code) in the {@link #getMessage message}. * *

The {@link SQLException} class has its own chain of exceptions that describe multiple error - * conditions encontered during a transaction. A typical logger relying on the {@link + * conditions encountered during a transaction. A typical logger relying on the {@link * Throwable#getCause() chain of causes} in {@code Throwable} instances cannot capture all details * of errors thrown from the database drivers. This exception captures all error details in its * message text. diff --git a/core/src/main/java/google/registry/persistence/transaction/JpaTransactionManagerImpl.java b/core/src/main/java/google/registry/persistence/transaction/JpaTransactionManagerImpl.java index 65f48c834..f1633b7c1 100644 --- a/core/src/main/java/google/registry/persistence/transaction/JpaTransactionManagerImpl.java +++ b/core/src/main/java/google/registry/persistence/transaction/JpaTransactionManagerImpl.java @@ -74,6 +74,7 @@ import java.util.concurrent.Callable; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicLong; import java.util.function.Supplier; +import java.util.function.UnaryOperator; import java.util.stream.Stream; import java.util.stream.StreamSupport; import javax.annotation.Nullable; @@ -247,9 +248,12 @@ public class JpaTransactionManagerImpl implements JpaTransactionManager { ? emf.unwrap(SessionFactory.class) .withOptions() .statementInspector( - s -> { - logger.atInfo().log(SQL_STATEMENT_LOG_SENTINEL_FORMAT, s); - return s; + new UnaryOperator() { + @Override + public String apply(String s) { + logger.atInfo().log(SQL_STATEMENT_LOG_SENTINEL_FORMAT, s); + return s; + } }) .openSession() : emf.createEntityManager(); diff --git a/core/src/main/java/google/registry/rdap/RdapSearchResults.java b/core/src/main/java/google/registry/rdap/RdapSearchResults.java index fadb27863..b87ea0783 100644 --- a/core/src/main/java/google/registry/rdap/RdapSearchResults.java +++ b/core/src/main/java/google/registry/rdap/RdapSearchResults.java @@ -141,7 +141,7 @@ abstract class RdapSearchResults { } @AutoValue - abstract static class NameserverSearchResponse extends BaseSearchResponse { + public abstract static class NameserverSearchResponse extends BaseSearchResponse { @JsonableElement public abstract ImmutableList nameserverSearchResults(); diff --git a/core/src/main/java/google/registry/tools/server/GenerateZoneFilesAction.java b/core/src/main/java/google/registry/tools/server/GenerateZoneFilesAction.java index 15573470c..3709ad4dc 100644 --- a/core/src/main/java/google/registry/tools/server/GenerateZoneFilesAction.java +++ b/core/src/main/java/google/registry/tools/server/GenerateZoneFilesAction.java @@ -50,7 +50,6 @@ import java.util.Map; import org.hibernate.CacheMode; import org.hibernate.ScrollMode; import org.hibernate.ScrollableResults; -import org.hibernate.query.Query; import org.joda.time.DateTime; import org.joda.time.Duration; @@ -160,10 +159,10 @@ public class GenerateZoneFilesAction implements Runnable, JsonActionRunner.JsonA private ImmutableList getStanzasForTld(String tld, DateTime exportTime) { ImmutableList.Builder result = new ImmutableList.Builder<>(); ScrollableResults scrollableResults = - tm().query("FROM Domain WHERE tld = :tld AND deletionTime > :exportTime") + tm().query("FROM Domain WHERE tld = :tld AND deletionTime > :exportTime", Domain.class) .setParameter("tld", tld) .setParameter("exportTime", exportTime) - .unwrap(Query.class) + .unwrap(org.hibernate.query.SelectionQuery.class) .setCacheMode(CacheMode.IGNORE) .scroll(ScrollMode.FORWARD_ONLY); for (int i = 1; scrollableResults.next(); i = (i + 1) % BATCH_SIZE) { diff --git a/core/src/main/resources/META-INF/persistence.xml b/core/src/main/resources/META-INF/persistence.xml index ac9911bf5..5ba7f2b6d 100644 --- a/core/src/main/resources/META-INF/persistence.xml +++ b/core/src/main/resources/META-INF/persistence.xml @@ -36,8 +36,6 @@ with an NOOP one for Nomulus tool. --> - META-INF/orm.xml - google.registry.bsa.persistence.BsaDomainRefresh google.registry.bsa.persistence.BsaDownload google.registry.bsa.persistence.BsaLabel @@ -59,8 +57,8 @@ google.registry.model.domain.secdns.DomainDsDataHistory google.registry.model.domain.token.AllocationToken google.registry.model.domain.token.BulkPricingPackage - google.registry.model.host.HostHistory google.registry.model.host.Host + google.registry.model.host.HostHistory google.registry.model.poll.PollMessage google.registry.model.poll.PollMessage$OneTime google.registry.model.poll.PollMessage$Autorenew @@ -105,7 +103,7 @@ + value="org.hibernate.boot.archive.scan.internal.DisabledScanner"/> diff --git a/core/src/nonprod/java/google/registry/tools/GenerateSqlErDiagramCommand.java b/core/src/nonprod/java/google/registry/tools/GenerateSqlErDiagramCommand.java index b15129bac..21f6debee 100644 --- a/core/src/nonprod/java/google/registry/tools/GenerateSqlErDiagramCommand.java +++ b/core/src/nonprod/java/google/registry/tools/GenerateSqlErDiagramCommand.java @@ -189,7 +189,7 @@ public class GenerateSqlErDiagramCommand implements Command { DatabaseConnectionSources.newDatabaseConnectionSource( container.getJdbcUrl(), new MultiUseUserCredentials(container.getUsername(), container.getPassword())); - executable.setDataSource(connection); + executable.setConnectionSource(connection); try { executable.execute(); } catch (Exception e) { diff --git a/core/src/test/java/google/registry/bsa/BsaDownloadFunctionalTest.java b/core/src/test/java/google/registry/bsa/BsaDownloadFunctionalTest.java index e64fd0caf..35d69059f 100644 --- a/core/src/test/java/google/registry/bsa/BsaDownloadFunctionalTest.java +++ b/core/src/test/java/google/registry/bsa/BsaDownloadFunctionalTest.java @@ -143,7 +143,7 @@ class BsaDownloadFunctionalTest { tm().transact( () -> tm().getEntityManager() - .createNativeQuery("SELECT label from \"BsaLabel\"") + .createNativeQuery("SELECT label from \"BsaLabel\"", String.class) .getResultList())); } diff --git a/core/src/test/java/google/registry/model/history/HostHistoryTest.java b/core/src/test/java/google/registry/model/history/HostHistoryTest.java index a511f3c4a..c429f1c8c 100644 --- a/core/src/test/java/google/registry/model/history/HostHistoryTest.java +++ b/core/src/test/java/google/registry/model/history/HostHistoryTest.java @@ -43,8 +43,7 @@ public class HostHistoryTest extends EntityTestCase { Host host = newHostWithRoid("ns1.example.com", "host1"); persistResource(host); Host hostFromDb = loadByEntity(host); - HostHistory hostHistory = createHostHistory(hostFromDb); - persistResource(hostHistory); + HostHistory hostHistory = persistResource(createHostHistory(hostFromDb)); tm().transact( () -> { HostHistory fromDatabase = tm().loadByKey(hostHistory.createVKey()); diff --git a/core/src/test/java/google/registry/persistence/EntityCallbacksListenerTest.java b/core/src/test/java/google/registry/persistence/EntityCallbacksListenerTest.java index f9f67676b..b62972220 100644 --- a/core/src/test/java/google/registry/persistence/EntityCallbacksListenerTest.java +++ b/core/src/test/java/google/registry/persistence/EntityCallbacksListenerTest.java @@ -22,6 +22,13 @@ import static google.registry.testing.DatabaseHelper.persistResource; import com.google.common.collect.ImmutableSet; import google.registry.model.ImmutableObject; +import google.registry.persistence.EntityCallbacksListener.RecursivePostLoad; +import google.registry.persistence.EntityCallbacksListener.RecursivePostPersist; +import google.registry.persistence.EntityCallbacksListener.RecursivePostRemove; +import google.registry.persistence.EntityCallbacksListener.RecursivePostUpdate; +import google.registry.persistence.EntityCallbacksListener.RecursivePrePersist; +import google.registry.persistence.EntityCallbacksListener.RecursivePreRemove; +import google.registry.persistence.EntityCallbacksListener.RecursivePreUpdate; import google.registry.persistence.transaction.JpaTestExtensions; import google.registry.persistence.transaction.JpaTestExtensions.JpaUnitTestExtension; import jakarta.persistence.Embeddable; @@ -29,13 +36,6 @@ import jakarta.persistence.Embedded; import jakarta.persistence.Entity; import jakarta.persistence.Id; import jakarta.persistence.MappedSuperclass; -import jakarta.persistence.PostLoad; -import jakarta.persistence.PostPersist; -import jakarta.persistence.PostRemove; -import jakarta.persistence.PostUpdate; -import jakarta.persistence.PrePersist; -import jakarta.persistence.PreRemove; -import jakarta.persistence.PreUpdate; import jakarta.persistence.Transient; import java.lang.reflect.Method; import org.junit.jupiter.api.Test; @@ -173,13 +173,13 @@ class EntityCallbacksListenerTest { @Embedded EntityEmbedded entityEmbedded = new EntityEmbedded(); - @PostLoad + @RecursivePostLoad void entityPostLoad() { entityPostLoad++; nonTransientField++; } - @PreUpdate + @RecursivePreUpdate void entityPreUpdate() { entityPreUpdate++; } @@ -193,8 +193,8 @@ class EntityCallbacksListenerTest { String entityEmbedded = "placeholder"; - @PostLoad - void entityEmbeddedPrePersist() { + @RecursivePostLoad + void entityEmbeddedPostLoad() { entityEmbeddedPostLoad++; } } @@ -205,7 +205,7 @@ class EntityCallbacksListenerTest { String entityEmbeddedParent = "placeholder"; - @PostLoad + @RecursivePostLoad void entityEmbeddedParentPostLoad() { entityEmbeddedParentPostLoad++; } @@ -223,37 +223,37 @@ class EntityCallbacksListenerTest { String entityEmbeddedNested = "placeholder"; - @PrePersist + @RecursivePrePersist void entityEmbeddedNestedPrePersist() { entityEmbeddedNestedPrePersist++; } - @PreRemove + @RecursivePreRemove void entityEmbeddedNestedPreRemove() { entityEmbeddedNestedPreRemove++; } - @PostPersist + @RecursivePostPersist void entityEmbeddedNestedPostPersist() { entityEmbeddedNestedPostPersist++; } - @PostRemove + @RecursivePostRemove void entityEmbeddedNestedPostRemove() { entityEmbeddedNestedPostRemove++; } - @PreUpdate + @RecursivePreUpdate void entityEmbeddedNestedPreUpdate() { entityEmbeddedNestedPreUpdate++; } - @PostUpdate + @RecursivePostUpdate void entityEmbeddedNestedPostUpdate() { entityEmbeddedNestedPostUpdate++; } - @PostLoad + @RecursivePostLoad void entityEmbeddedNestedPostLoad() { entityEmbeddedNestedPostLoad++; } @@ -267,12 +267,12 @@ class EntityCallbacksListenerTest { String parentEntity = "placeholder"; - @PostLoad + @RecursivePostLoad void parentPostLoad() { parentPostLoad++; } - @PrePersist + @RecursivePrePersist void parentPrePersist() { parentPrePersist++; } @@ -286,7 +286,7 @@ class EntityCallbacksListenerTest { @Embedded ParentEmbeddedNested parentEmbeddedNested = new ParentEmbeddedNested(); - @PostLoad + @RecursivePostLoad void parentEmbeddedPostLoad() { parentEmbeddedPostLoad++; } @@ -298,7 +298,7 @@ class EntityCallbacksListenerTest { String parentEmbeddedNested = "placeholder"; - @PostLoad + @RecursivePostLoad void parentEmbeddedNestedPostLoad() { parentEmbeddedNestedPostLoad++; } @@ -310,7 +310,7 @@ class EntityCallbacksListenerTest { String parentEmbeddedParent = "placeholder"; - @PostLoad + @RecursivePostLoad void parentEmbeddedParentPostLoad() { parentEmbeddedParentPostLoad++; } diff --git a/core/src/test/java/google/registry/persistence/converter/AllocationTokenStatusTransitionUserTypeTest.java b/core/src/test/java/google/registry/persistence/converter/AllocationTokenStatusTransitionUserTypeTest.java index e709dec58..ceaa79604 100644 --- a/core/src/test/java/google/registry/persistence/converter/AllocationTokenStatusTransitionUserTypeTest.java +++ b/core/src/test/java/google/registry/persistence/converter/AllocationTokenStatusTransitionUserTypeTest.java @@ -28,6 +28,7 @@ import google.registry.model.common.TimedTransitionProperty; import google.registry.model.domain.token.AllocationToken.TokenStatus; import google.registry.persistence.transaction.JpaTestExtensions; import google.registry.persistence.transaction.JpaTestExtensions.JpaUnitTestExtension; +import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.Id; import org.hibernate.annotations.Type; @@ -75,6 +76,7 @@ public class AllocationTokenStatusTransitionUserTypeTest { @Id String name = "id"; @Type(AllocationTokenStatusTransitionUserType.class) + @Column(columnDefinition = "hstore") TimedTransitionProperty timedTransitionProperty; private AllocationTokenStatusTransitionConverterTestEntity() {} diff --git a/core/src/test/java/google/registry/persistence/converter/AllocationTokenVkeyListUserTypeTest.java b/core/src/test/java/google/registry/persistence/converter/AllocationTokenVkeyListUserTypeTest.java index 30de7e564..3a1c54883 100644 --- a/core/src/test/java/google/registry/persistence/converter/AllocationTokenVkeyListUserTypeTest.java +++ b/core/src/test/java/google/registry/persistence/converter/AllocationTokenVkeyListUserTypeTest.java @@ -23,9 +23,11 @@ import static google.registry.testing.DatabaseHelper.persistResource; import com.google.common.collect.ImmutableList; import google.registry.model.ImmutableObject; import google.registry.model.domain.token.AllocationToken; +import google.registry.model.domain.token.VKeyConverter_AllocationToken; import google.registry.persistence.VKey; import google.registry.persistence.transaction.JpaTestExtensions; import google.registry.persistence.transaction.JpaTestExtensions.JpaUnitTestExtension; +import jakarta.persistence.Convert; import jakarta.persistence.Entity; import jakarta.persistence.Id; import java.util.List; @@ -62,6 +64,7 @@ public class AllocationTokenVkeyListUserTypeTest { @Id String id = "id"; @Type(AllocationTokenVkeyListUserType.class) + @Convert(converter = VKeyConverter_AllocationToken.class) List> tokenList; TestAllocationTokenVKeyList() {} diff --git a/core/src/test/java/google/registry/persistence/converter/BillingCostTransitionUserTypeTest.java b/core/src/test/java/google/registry/persistence/converter/BillingCostTransitionUserTypeTest.java index 92c6cf625..ed9b14011 100644 --- a/core/src/test/java/google/registry/persistence/converter/BillingCostTransitionUserTypeTest.java +++ b/core/src/test/java/google/registry/persistence/converter/BillingCostTransitionUserTypeTest.java @@ -25,6 +25,7 @@ import google.registry.model.ImmutableObject; import google.registry.model.common.TimedTransitionProperty; import google.registry.persistence.transaction.JpaTestExtensions; import google.registry.persistence.transaction.JpaTestExtensions.JpaUnitTestExtension; +import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.Id; import org.hibernate.annotations.Type; @@ -65,6 +66,7 @@ public class BillingCostTransitionUserTypeTest { @Id String name = "id"; @Type(BillingCostTransitionUserType.class) + @Column(columnDefinition = "hstore") TimedTransitionProperty timedTransitionProperty; private TestEntity() {} diff --git a/core/src/test/java/google/registry/persistence/converter/CidrBlockListUserTypeTest.java b/core/src/test/java/google/registry/persistence/converter/CidrBlockListUserTypeTest.java index 34c30785b..4cfae8533 100644 --- a/core/src/test/java/google/registry/persistence/converter/CidrBlockListUserTypeTest.java +++ b/core/src/test/java/google/registry/persistence/converter/CidrBlockListUserTypeTest.java @@ -23,6 +23,7 @@ import google.registry.model.ImmutableObject; import google.registry.persistence.transaction.JpaTestExtensions; import google.registry.persistence.transaction.JpaTestExtensions.JpaUnitTestExtension; import google.registry.util.CidrAddressBlock; +import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.Id; import java.util.List; @@ -59,6 +60,7 @@ public class CidrBlockListUserTypeTest { @Id String name = "id"; @Type(CidrBlockListUserType.class) + @Column(columnDefinition = "text[]") List addresses; private TestEntity() {} diff --git a/core/src/test/java/google/registry/persistence/converter/CurrencyToStringMapUserTypeTest.java b/core/src/test/java/google/registry/persistence/converter/CurrencyToStringMapUserTypeTest.java index 58866b11c..40f019662 100644 --- a/core/src/test/java/google/registry/persistence/converter/CurrencyToStringMapUserTypeTest.java +++ b/core/src/test/java/google/registry/persistence/converter/CurrencyToStringMapUserTypeTest.java @@ -22,6 +22,7 @@ import com.google.common.collect.ImmutableMap; import google.registry.model.ImmutableObject; import google.registry.persistence.transaction.JpaTestExtensions; import google.registry.persistence.transaction.JpaTestExtensions.JpaUnitTestExtension; +import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.Id; import java.util.Map; @@ -56,6 +57,7 @@ public class CurrencyToStringMapUserTypeTest { @Id String name = "id"; @Type(CurrencyToStringMapUserType.class) + @Column(columnDefinition = "hstore") Map currencyToBilling; private TestEntity() {} diff --git a/core/src/test/java/google/registry/persistence/converter/DurationUserTypeTest.java b/core/src/test/java/google/registry/persistence/converter/DurationUserTypeTest.java index 238a5c4bc..c5481e840 100644 --- a/core/src/test/java/google/registry/persistence/converter/DurationUserTypeTest.java +++ b/core/src/test/java/google/registry/persistence/converter/DurationUserTypeTest.java @@ -21,8 +21,10 @@ import static google.registry.testing.DatabaseHelper.persistResource; import google.registry.model.ImmutableObject; import google.registry.persistence.transaction.JpaTestExtensions; import google.registry.persistence.transaction.JpaTestExtensions.JpaUnitTestExtension; +import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.Id; +import org.hibernate.annotations.Type; import org.joda.time.Duration; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.RegisterExtension; @@ -101,6 +103,8 @@ public class DurationUserTypeTest { @Id String name = "id"; + @Column(columnDefinition = "interval") + @Type(DurationUserType.class) Duration duration; public DurationTestEntity() {} diff --git a/core/src/test/java/google/registry/persistence/converter/InetAddressSetUserTypeTest.java b/core/src/test/java/google/registry/persistence/converter/InetAddressSetUserTypeTest.java index e27126eba..e3303c432 100644 --- a/core/src/test/java/google/registry/persistence/converter/InetAddressSetUserTypeTest.java +++ b/core/src/test/java/google/registry/persistence/converter/InetAddressSetUserTypeTest.java @@ -24,6 +24,7 @@ import google.registry.model.ImmutableObject; import google.registry.persistence.VKey; import google.registry.persistence.transaction.JpaTestExtensions; import google.registry.persistence.transaction.JpaTestExtensions.JpaUnitTestExtension; +import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.Id; import java.net.InetAddress; @@ -76,6 +77,7 @@ public class InetAddressSetUserTypeTest { @Id String name = "id"; @Type(InetAddressSetUserType.class) + @Column(columnDefinition = "text[]") Set addresses; private InetAddressSetTestEntity() {} diff --git a/core/src/test/java/google/registry/persistence/converter/RegistrarToRoleMapUserTypeTest.java b/core/src/test/java/google/registry/persistence/converter/RegistrarToRoleMapUserTypeTest.java index 65aa9fde5..4df463b1d 100644 --- a/core/src/test/java/google/registry/persistence/converter/RegistrarToRoleMapUserTypeTest.java +++ b/core/src/test/java/google/registry/persistence/converter/RegistrarToRoleMapUserTypeTest.java @@ -23,6 +23,7 @@ import google.registry.model.console.RegistrarRole; import google.registry.persistence.transaction.JpaTestExtensions; import google.registry.persistence.transaction.JpaTestExtensions.JpaUnitTestExtension; import google.registry.testing.DatabaseHelper; +import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.Id; import java.util.Map; @@ -59,6 +60,7 @@ public class RegistrarToRoleMapUserTypeTest { @Id String name = "id"; @Type(RegistrarToRoleMapUserType.class) + @Column(columnDefinition = "hstore") Map map; private TestEntity() {} diff --git a/core/src/test/java/google/registry/persistence/converter/StringCollectionUserTypeTest.java b/core/src/test/java/google/registry/persistence/converter/StringCollectionUserTypeTest.java index 510badc03..5df5148c2 100644 --- a/core/src/test/java/google/registry/persistence/converter/StringCollectionUserTypeTest.java +++ b/core/src/test/java/google/registry/persistence/converter/StringCollectionUserTypeTest.java @@ -24,6 +24,7 @@ import com.google.common.collect.ImmutableList; import google.registry.model.ImmutableObject; import google.registry.persistence.transaction.JpaTestExtensions; import google.registry.persistence.transaction.JpaTestExtensions.JpaUnitTestExtension; +import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.Id; import jakarta.persistence.NoResultException; @@ -146,6 +147,7 @@ public class StringCollectionUserTypeTest { @Id String name = "id"; @Type(TestListUserType.class) + @Column(columnDefinition = "text[]") List value; private TestEntity() {} diff --git a/core/src/test/java/google/registry/persistence/converter/StringMapUserTypeTest.java b/core/src/test/java/google/registry/persistence/converter/StringMapUserTypeTest.java index ca265287e..f1dcf1cdf 100644 --- a/core/src/test/java/google/registry/persistence/converter/StringMapUserTypeTest.java +++ b/core/src/test/java/google/registry/persistence/converter/StringMapUserTypeTest.java @@ -23,6 +23,7 @@ import com.google.common.collect.ImmutableMap; import google.registry.model.ImmutableObject; import google.registry.persistence.transaction.JpaTestExtensions; import google.registry.persistence.transaction.JpaTestExtensions.JpaUnitTestExtension; +import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.Id; import jakarta.persistence.NoResultException; @@ -127,6 +128,7 @@ public class StringMapUserTypeTest { @Id String name = "id"; @Type(StringMapUserType.class) + @Column(columnDefinition = "hstore") Map map; private TestEntity() {} diff --git a/core/src/test/java/google/registry/persistence/converter/StringValueEnumeratedTest.java b/core/src/test/java/google/registry/persistence/converter/StringValueEnumeratedTest.java index 2f9d82c4d..55cbf865f 100644 --- a/core/src/test/java/google/registry/persistence/converter/StringValueEnumeratedTest.java +++ b/core/src/test/java/google/registry/persistence/converter/StringValueEnumeratedTest.java @@ -54,7 +54,8 @@ public class StringValueEnumeratedTest { tm().transact( () -> tm().getEntityManager() - .createNativeQuery("SELECT state FROM \"TestEntity\" WHERE name = 'id'") + .createNativeQuery( + "SELECT state FROM \"TestEntity\" WHERE name = 'id'", String.class) .getSingleResult())) .isEqualTo("DISABLED"); } diff --git a/core/src/test/java/google/registry/persistence/converter/TimedTransitionBaseUserTypeTest.java b/core/src/test/java/google/registry/persistence/converter/TimedTransitionBaseUserTypeTest.java index b5cc2416d..71b1557a7 100644 --- a/core/src/test/java/google/registry/persistence/converter/TimedTransitionBaseUserTypeTest.java +++ b/core/src/test/java/google/registry/persistence/converter/TimedTransitionBaseUserTypeTest.java @@ -25,6 +25,7 @@ import google.registry.model.ImmutableObject; import google.registry.model.common.TimedTransitionProperty; import google.registry.persistence.transaction.JpaTestExtensions; import google.registry.persistence.transaction.JpaTestExtensions.JpaUnitTestExtension; +import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.Id; import jakarta.persistence.NoResultException; @@ -145,6 +146,7 @@ class TimedTransitionBaseUserTypeTest { @Id String name = "id"; @Type(StringTransitionUserType.class) + @Column(columnDefinition = "hstore") TimedTransitionProperty property; private TestEntity() {} diff --git a/core/src/test/java/google/registry/persistence/converter/TldStateTransitionUserTypeTest.java b/core/src/test/java/google/registry/persistence/converter/TldStateTransitionUserTypeTest.java index 160a55541..7a93ec988 100644 --- a/core/src/test/java/google/registry/persistence/converter/TldStateTransitionUserTypeTest.java +++ b/core/src/test/java/google/registry/persistence/converter/TldStateTransitionUserTypeTest.java @@ -25,6 +25,7 @@ import google.registry.model.common.TimedTransitionProperty; import google.registry.model.tld.Tld.TldState; import google.registry.persistence.transaction.JpaTestExtensions; import google.registry.persistence.transaction.JpaTestExtensions.JpaUnitTestExtension; +import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.Id; import org.hibernate.annotations.Type; @@ -68,6 +69,7 @@ class TldStateTransitionUserTypeTest { @Id String name = "id"; @Type(TldStateTransitionUserType.class) + @Column(columnDefinition = "hstore") TimedTransitionProperty timedTransitionProperty; private TestEntity() {} diff --git a/core/src/test/java/google/registry/persistence/transaction/HibernateLoggingSuppressionTest.java b/core/src/test/java/google/registry/persistence/transaction/HibernateLoggingSuppressionTest.java index ca21d8aae..69b5be292 100644 --- a/core/src/test/java/google/registry/persistence/transaction/HibernateLoggingSuppressionTest.java +++ b/core/src/test/java/google/registry/persistence/transaction/HibernateLoggingSuppressionTest.java @@ -41,8 +41,7 @@ import org.junit.jupiter.api.extension.RegisterExtension; */ public class HibernateLoggingSuppressionTest { - private static final String LOG_SUPPRESSION_TARGET = - "org.hibernate.engine.jdbc.spi.SqlExceptionHelper"; + private static final String LOG_SUPPRESSION_TARGET = "org.hibernate.orm.jdbc.error"; // The line that should be added to the `logging.properties` file. private static final String LOGGING_PROPERTIES_LINE = LOG_SUPPRESSION_TARGET + ".level=OFF\n"; @@ -115,7 +114,7 @@ public class HibernateLoggingSuppressionTest { testLogHandler.getStoredLogRecords().stream() .anyMatch( logRecord -> - logRecord.getLevel().equals(Level.SEVERE) + logRecord.getLevel().equals(Level.WARNING) && logRecord.getMessage().contains("duplicate key"))) .isTrue(); } @@ -133,7 +132,7 @@ public class HibernateLoggingSuppressionTest { testLogHandler.getStoredLogRecords().stream() .anyMatch( logRecord -> - logRecord.getLevel().equals(Level.SEVERE) + logRecord.getLevel().equals(Level.WARNING) && logRecord.getMessage().contains("duplicate key"))) .isFalse(); revertSuppressionOfHibernateLogs(); diff --git a/core/src/test/java/google/registry/persistence/transaction/JpaTestExtensionsSqlLoggingTest.java b/core/src/test/java/google/registry/persistence/transaction/JpaTestExtensionsSqlLoggingTest.java index 544699531..99b2f593c 100644 --- a/core/src/test/java/google/registry/persistence/transaction/JpaTestExtensionsSqlLoggingTest.java +++ b/core/src/test/java/google/registry/persistence/transaction/JpaTestExtensionsSqlLoggingTest.java @@ -51,7 +51,11 @@ class JpaTestExtensionsSqlLoggingTest { @Test void sqlLog_displayed() throws UnsupportedEncodingException { - tm().transact(() -> tm().getEntityManager().createNativeQuery("select 1").getSingleResult()); + tm().transact( + () -> + tm().getEntityManager() + .createNativeQuery("select 1", long.class) + .getSingleResult()); assertThat(stdoutBuffer.toString(UTF_8.name())).contains("select 1"); } } diff --git a/core/src/test/java/google/registry/persistence/transaction/JpaTransactionManagerExtension.java b/core/src/test/java/google/registry/persistence/transaction/JpaTransactionManagerExtension.java index 94afac9a7..2d92e7962 100644 --- a/core/src/test/java/google/registry/persistence/transaction/JpaTransactionManagerExtension.java +++ b/core/src/test/java/google/registry/persistence/transaction/JpaTransactionManagerExtension.java @@ -185,7 +185,7 @@ public abstract class JpaTransactionManagerExtension *

Test that create {@code EntityManagerFactory} instances are responsible for tearing them * down. */ - public ImmutableMap getJpaProperties() { + public ImmutableMap getJpaProperties() { Map mergedProperties = Maps.newHashMap(PersistenceModule.provideDefaultDatabaseConfigs()); if (!userProperties.isEmpty()) { @@ -451,7 +451,7 @@ public abstract class JpaTransactionManagerExtension } /** Constructs the {@link EntityManagerFactory} instance. */ - private EntityManagerFactory createEntityManagerFactory(ImmutableMap properties) { + private EntityManagerFactory createEntityManagerFactory(ImmutableMap properties) { ParsedPersistenceXmlDescriptor descriptor = PersistenceXmlUtility.getParsedPersistenceXmlDescriptor(); diff --git a/core/src/test/java/google/registry/persistence/transaction/JpaTransactionManagerExtensionTest.java b/core/src/test/java/google/registry/persistence/transaction/JpaTransactionManagerExtensionTest.java index a6923fa8a..04be3a9e4 100644 --- a/core/src/test/java/google/registry/persistence/transaction/JpaTransactionManagerExtensionTest.java +++ b/core/src/test/java/google/registry/persistence/transaction/JpaTransactionManagerExtensionTest.java @@ -68,7 +68,7 @@ public class JpaTransactionManagerExtensionTest { () -> replicaTm().transact(() -> replicaTm().put(testEntity))) .getCause()) .hasMessageThat() - .isEqualTo("Error while committing the transaction"); + .startsWith("Error while committing the transaction"); } @Test diff --git a/core/src/test/java/google/registry/persistence/transaction/TransactionManagerTest.java b/core/src/test/java/google/registry/persistence/transaction/TransactionManagerTest.java index d75499df0..adafd5e81 100644 --- a/core/src/test/java/google/registry/persistence/transaction/TransactionManagerTest.java +++ b/core/src/test/java/google/registry/persistence/transaction/TransactionManagerTest.java @@ -26,7 +26,6 @@ import google.registry.model.ImmutableObject; import google.registry.persistence.VKey; import google.registry.persistence.transaction.JpaTestExtensions.JpaUnitTestExtension; import google.registry.testing.FakeClock; -import jakarta.persistence.Embeddable; import jakarta.persistence.Entity; import jakarta.persistence.Id; import jakarta.persistence.MappedSuperclass; @@ -376,7 +375,6 @@ public class TransactionManagerTest { * We put the id field into a base class to test that id fields can be discovered in a base class. */ @MappedSuperclass - @Embeddable private static class TestEntityBase extends ImmutableObject { @Id protected String name; diff --git a/db/buildscript-gradle.lockfile b/db/buildscript-gradle.lockfile index c86303000..e65af6b48 100644 --- a/db/buildscript-gradle.lockfile +++ b/db/buildscript-gradle.lockfile @@ -1,12 +1,12 @@ # This is a Gradle generated file for dependency locking. # Manual edits can break the build and are not advised. # This file is expected to be part of source control. -com.fasterxml.jackson.core:jackson-annotations:2.19.1=classpath -com.fasterxml.jackson.core:jackson-core:2.19.1=classpath -com.fasterxml.jackson.core:jackson-databind:2.19.1=classpath -com.fasterxml.jackson:jackson-bom:2.19.1=classpath +com.fasterxml.jackson.core:jackson-annotations:2.21=classpath gradle.plugin.org.flywaydb:gradle-plugin-publishing:11.0.1=classpath org.flywaydb.flyway:org.flywaydb.flyway.gradle.plugin:11.0.1=classpath -org.flywaydb:flyway-core:11.11.2=classpath -org.flywaydb:flyway-database-postgresql:11.11.2=classpath +org.flywaydb:flyway-core:12.1.1=classpath +org.flywaydb:flyway-database-postgresql:12.1.1=classpath +tools.jackson.core:jackson-core:3.1.0=classpath +tools.jackson.core:jackson-databind:3.1.0=classpath +tools.jackson:jackson-bom:3.1.0=classpath empty= diff --git a/db/gradle.lockfile b/db/gradle.lockfile index a10d7ffb4..69772b36e 100644 --- a/db/gradle.lockfile +++ b/db/gradle.lockfile @@ -2,41 +2,42 @@ # Manual edits can break the build and are not advised. # This file is expected to be part of source control. aopalliance:aopalliance:1.0=annotationProcessor,errorprone,testAnnotationProcessor -com.fasterxml.jackson.core:jackson-annotations:2.19.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-core:2.19.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-databind:2.19.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson:jackson-bom:2.19.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.21=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.github.ben-manes.caffeine:caffeine:3.0.5=annotationProcessor,errorprone,testAnnotationProcessor -com.github.ben-manes.caffeine:caffeine:3.2.2=testCompileClasspath,testRuntimeClasspath -com.github.docker-java:docker-java-api:3.4.2=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.docker-java:docker-java-transport-zerodep:3.4.2=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.docker-java:docker-java-transport:3.4.2=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jffi:1.3.13=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.ben-manes.caffeine:caffeine:3.2.3=testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-api:3.4.2=testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-api:3.7.1=compileClasspath,deploy_jar,runtimeClasspath +com.github.docker-java:docker-java-transport-zerodep:3.4.2=testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-transport-zerodep:3.7.1=compileClasspath,deploy_jar,runtimeClasspath +com.github.docker-java:docker-java-transport:3.4.2=testCompileClasspath,testRuntimeClasspath +com.github.docker-java:docker-java-transport:3.7.1=compileClasspath,deploy_jar,runtimeClasspath +com.github.jnr:jffi:1.3.14=deploy_jar,runtimeClasspath,testRuntimeClasspath com.github.jnr:jnr-a64asm:1.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.github.jnr:jnr-constants:0.10.4=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.github.jnr:jnr-enxio:0.32.18=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.github.jnr:jnr-ffi:2.2.17=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.github.jnr:jnr-posix:3.1.20=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.github.jnr:jnr-unixsocket:0.38.23=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-enxio:0.32.19=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-ffi:2.2.18=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-posix:3.1.21=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-unixsocket:0.38.24=deploy_jar,runtimeClasspath,testRuntimeClasspath com.github.jnr:jnr-x86asm:1.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath com.github.kevinstern:software-and-algorithms:1.0=annotationProcessor,errorprone,testAnnotationProcessor -com.google.api-client:google-api-client:2.8.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api:gax:2.69.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.apis:google-api-services-sqladmin:v1beta4-rev20250613-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-credentials:1.37.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-oauth2-http:1.37.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api-client:google-api-client:2.9.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:api-common:2.53.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax:2.75.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-sqladmin:v1beta4-rev20251201-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-credentials:1.43.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-oauth2-http:1.43.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.auto.service:auto-service-annotations:1.0.1=annotationProcessor,errorprone,testAnnotationProcessor com.google.auto.value:auto-value-annotations:1.11.0=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.auto.value:auto-value-annotations:1.9=annotationProcessor,errorprone,testAnnotationProcessor com.google.auto:auto-common:1.2.1=annotationProcessor,errorprone,testAnnotationProcessor -com.google.cloud.sql:jdbc-socket-factory-core:1.25.3=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud.sql:postgres-socket-factory:1.25.3=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud.sql:jdbc-socket-factory-core:1.28.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud.sql:postgres-socket-factory:1.28.2=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath com.google.code.gson:gson:2.12.1=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.errorprone:error_prone_annotation:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_annotations:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor -com.google.errorprone:error_prone_annotations:2.40.0=testCompileClasspath -com.google.errorprone:error_prone_annotations:2.41.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.43.0=testCompileClasspath +com.google.errorprone:error_prone_annotations:2.48.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.errorprone:error_prone_annotations:2.7.1=checkstyle com.google.errorprone:error_prone_check_api:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_core:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor @@ -50,24 +51,29 @@ com.google.guava:failureaccess:1.0.3=deploy_jar,runtimeClasspath,testRuntimeClas com.google.guava:guava-parent:32.1.1-jre=annotationProcessor,errorprone,testAnnotationProcessor com.google.guava:guava:31.0.1-jre=checkstyle com.google.guava:guava:32.1.1-jre=annotationProcessor,errorprone,testAnnotationProcessor -com.google.guava:guava:33.2.1-android=testCompileClasspath -com.google.guava:guava:33.4.8-jre=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.guava:guava:33.4.3-android=testCompileClasspath +com.google.guava:guava:33.5.0-jre=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-apache-v2:1.47.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-gson:1.47.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.http-client:google-http-client:1.47.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-apache-v2:2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-gson:2.1.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client:2.1.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.inject:guice:5.1.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.j2objc:j2objc-annotations:1.3=checkstyle -com.google.j2objc:j2objc-annotations:3.0.0=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.j2objc:j2objc-annotations:3.0.0=testCompileClasspath +com.google.j2objc:j2objc-annotations:3.1=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.oauth-client:google-oauth-client:1.39.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.protobuf:protobuf-java-util:3.25.8=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java-util:4.33.2=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.protobuf:protobuf-java:3.19.6=annotationProcessor,errorprone,testAnnotationProcessor -com.google.truth:truth:1.4.4=testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:4.34.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.truth:truth:1.4.5=testCompileClasspath,testRuntimeClasspath com.puppycrawl.tools:checkstyle:9.3=checkstyle commons-beanutils:commons-beanutils:1.9.4=checkstyle -commons-codec:commons-codec:1.17.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.17.1=testRuntimeClasspath +commons-codec:commons-codec:1.19.0=compileClasspath,deploy_jar,runtimeClasspath commons-collections:commons-collections:3.2.2=checkstyle +commons-io:commons-io:2.20.0=compileClasspath,deploy_jar,runtimeClasspath commons-logging:commons-logging:1.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +dnsjava:dnsjava:3.6.4=deploy_jar,runtimeClasspath,testRuntimeClasspath info.picocli:picocli:4.6.2=checkstyle io.github.eisop:dataflow-errorprone:3.34.0-eisop1=annotationProcessor,errorprone,testAnnotationProcessor io.github.java-diff-utils:java-diff-utils:4.12=annotationProcessor,errorprone,testAnnotationProcessor @@ -77,24 +83,26 @@ io.grpc:grpc-context:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath io.opencensus:opencensus-api:0.31.1=deploy_jar,runtimeClasspath,testRuntimeClasspath io.opencensus:opencensus-contrib-http-util:0.31.1=deploy_jar,runtimeClasspath,testRuntimeClasspath jakarta.inject:jakarta.inject-api:2.0.1=testCompileClasspath,testRuntimeClasspath +javax.annotation:javax.annotation-api:1.3.2=deploy_jar,runtimeClasspath,testRuntimeClasspath javax.inject:javax.inject:1=annotationProcessor,errorprone,testAnnotationProcessor -joda-time:joda-time:2.14.0=testCompileClasspath,testRuntimeClasspath +joda-time:joda-time:2.14.1=testCompileClasspath,testRuntimeClasspath junit:junit:4.13.2=testCompileClasspath,testRuntimeClasspath -net.java.dev.jna:jna:5.13.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +net.java.dev.jna:jna:5.13.0=testCompileClasspath,testRuntimeClasspath +net.java.dev.jna:jna:5.18.1=compileClasspath,deploy_jar,runtimeClasspath net.sf.saxon:Saxon-HE:10.6=checkstyle org.antlr:antlr4-runtime:4.9.3=checkstyle -org.apache.commons:commons-compress:1.24.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-compress:1.24.0=testCompileClasspath,testRuntimeClasspath +org.apache.commons:commons-compress:1.28.0=compileClasspath,deploy_jar,runtimeClasspath +org.apache.commons:commons-lang3:3.18.0=compileClasspath,deploy_jar,runtimeClasspath org.apache.httpcomponents:httpclient:4.5.14=deploy_jar,runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.16=deploy_jar,runtimeClasspath,testRuntimeClasspath org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath org.checkerframework:checker-qual:3.12.0=checkstyle org.checkerframework:checker-qual:3.33.0=annotationProcessor,errorprone,testAnnotationProcessor -org.checkerframework:checker-qual:3.42.0=testCompileClasspath -org.checkerframework:checker-qual:3.49.3=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.flywaydb:flyway-core:11.11.1=deploy_jar -org.flywaydb:flyway-core:11.11.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.flywaydb:flyway-database-postgresql:11.11.1=deploy_jar -org.flywaydb:flyway-database-postgresql:11.11.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.checkerframework:checker-qual:3.43.0=testCompileClasspath +org.checkerframework:checker-qual:3.52.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.flywaydb:flyway-core:12.1.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.flywaydb:flyway-database-postgresql:12.1.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.hamcrest:hamcrest-core:1.3=testCompileClasspath,testRuntimeClasspath org.jacoco:org.jacoco.agent:0.8.12=jacocoAgent,jacocoAnt org.jacoco:org.jacoco.ant:0.8.12=jacocoAnt @@ -116,17 +124,22 @@ org.ow2.asm:asm-commons:9.7.1=deploy_jar,runtimeClasspath,testRuntimeClasspath org.ow2.asm:asm-tree:9.7=jacocoAnt org.ow2.asm:asm-tree:9.7.1=deploy_jar,runtimeClasspath,testRuntimeClasspath org.ow2.asm:asm-util:9.7.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.ow2.asm:asm:9.7=jacocoAnt,testCompileClasspath -org.ow2.asm:asm:9.7.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.ow2.asm:asm:9.7=jacocoAnt +org.ow2.asm:asm:9.7.1=deploy_jar,runtimeClasspath +org.ow2.asm:asm:9.8=testCompileClasspath,testRuntimeClasspath org.pcollections:pcollections:3.1.4=annotationProcessor,errorprone,testAnnotationProcessor -org.postgresql:postgresql:42.7.7=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.postgresql:postgresql:42.7.10=deploy_jar,runtimeClasspath,testRuntimeClasspath org.reflections:reflections:0.10.2=checkstyle org.rnorth.duct-tape:duct-tape:1.0.8=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.slf4j:slf4j-api:1.7.36=compileClasspath,testCompileClasspath org.slf4j:slf4j-api:2.0.17=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.testcontainers:database-commons:1.21.3=testCompileClasspath,testRuntimeClasspath -org.testcontainers:jdbc:1.21.3=testCompileClasspath,testRuntimeClasspath -org.testcontainers:junit-jupiter:1.21.3=testCompileClasspath,testRuntimeClasspath -org.testcontainers:postgresql:1.21.3=testCompileClasspath,testRuntimeClasspath -org.testcontainers:testcontainers:1.21.3=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:database-commons:1.21.4=testCompileClasspath,testRuntimeClasspath +org.testcontainers:jdbc:1.21.4=testCompileClasspath,testRuntimeClasspath +org.testcontainers:junit-jupiter:1.21.4=testCompileClasspath,testRuntimeClasspath +org.testcontainers:postgresql:1.21.4=testCompileClasspath,testRuntimeClasspath +org.testcontainers:testcontainers:1.21.4=testCompileClasspath,testRuntimeClasspath +org.testcontainers:testcontainers:2.0.4=compileClasspath,deploy_jar,runtimeClasspath +tools.jackson.core:jackson-core:3.1.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +tools.jackson.core:jackson-databind:3.1.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +tools.jackson:jackson-bom:3.1.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath empty=implementationApi,schema diff --git a/db/src/main/resources/sql/er_diagram/brief_er_diagram.html b/db/src/main/resources/sql/er_diagram/brief_er_diagram.html index 528a9649a..435ae3fd2 100644 --- a/db/src/main/resources/sql/er_diagram/brief_er_diagram.html +++ b/db/src/main/resources/sql/er_diagram/brief_er_diagram.html @@ -257,11 +257,11 @@ td.section { generated by - SchemaCrawler 16.27.1 + SchemaCrawler 17.8.1 generated on - 2026-03-04 17:04:06 + 2026-03-21 03:39:17 last flyway file @@ -273,7 +273,7 @@ td.section {

 

- SchemaCrawler_Diagram generated by SchemaCrawler 16.27.1 generated on 2026-03-04 17:04:06 + SchemaCrawler_Diagram generated by SchemaCrawler 17.8.1 generated on 2026-03-21 03:39:17 allocationtoken_a08ccbef public."AllocationToken" [table] token text not null domain_name text redemption_domain_repo_id text token_type text @@ -299,7 +299,7 @@ td.section { - billingevent_a57d1815:w->registrar_6e1503e3:e fk_billing_event_registrar_id + billingevent_a57d1815:w->registrar_6e1503e3:e fk_billing_event_registrar_id @@ -331,11 +331,11 @@ td.section { - domain_6c51cffa:w->registrar_6e1503e3:e fk2jc69qyg2tv9hhnmif6oa1cx1 + domain_6c51cffa:w->registrar_6e1503e3:e fk2jc69qyg2tv9hhnmif6oa1cx1 - domain_6c51cffa:w->registrar_6e1503e3:e fk2u3srsfbei272093m3b3xwj23 + domain_6c51cffa:w->registrar_6e1503e3:e fk2u3srsfbei272093m3b3xwj23 @@ -367,7 +367,7 @@ td.section { - domainhistory_a54cc226:w->domain_6c51cffa:e fk_domain_history_domain_repo_id + domainhistory_a54cc226:w->domain_6c51cffa:e fk_domain_history_domain_repo_id @@ -383,7 +383,7 @@ td.section { - billingcancellation_6eedf614:w->registrar_6e1503e3:e fk_billing_cancellation_registrar_id + billingcancellation_6eedf614:w->registrar_6e1503e3:e fk_billing_cancellation_registrar_id @@ -395,7 +395,7 @@ td.section { - graceperiod_cd3b2e8f:w->domain_6c51cffa:e fk_grace_period_domain_repo_id + graceperiod_cd3b2e8f:w->domain_6c51cffa:e fk_grace_period_domain_repo_id @@ -403,11 +403,11 @@ td.section { - graceperiod_cd3b2e8f:w->registrar_6e1503e3:e fk_grace_period_registrar_id + graceperiod_cd3b2e8f:w->registrar_6e1503e3:e fk_grace_period_registrar_id - billingrecurrence_5fa2cb01:w->registrar_6e1503e3:e fk_billing_recurrence_registrar_id + billingrecurrence_5fa2cb01:w->registrar_6e1503e3:e fk_billing_recurrence_registrar_id @@ -427,7 +427,7 @@ td.section { - bsaunblockabledomain_b739a38:w->bsalabel_2755e1da:e fkbsaunblockabledomainlabel + bsaunblockabledomain_b739a38:w->bsalabel_2755e1da:e fkbsaunblockabledomainlabel @@ -439,7 +439,7 @@ td.section { - claimsentry_105da9f1:w->claimslist_3d49bc2b:e fk6sc6at5hedffc0nhdcab6ivuq + claimsentry_105da9f1:w->claimslist_3d49bc2b:e fk6sc6at5hedffc0nhdcab6ivuq @@ -455,7 +455,7 @@ td.section { - consoleupdatehistory_5237b2aa:w->user_f2216f01:e fk_console_update_history_acting_user + consoleupdatehistory_5237b2aa:w->user_f2216f01:e fk_console_update_history_acting_user @@ -467,7 +467,7 @@ td.section { - delegationsignerdata_e542a872:w->domain_6c51cffa:e fktr24j9v14ph2mfuw2gsmt12kq + delegationsignerdata_e542a872:w->domain_6c51cffa:e fktr24j9v14ph2mfuw2gsmt12kq @@ -479,7 +479,7 @@ td.section { - domainhost_1ea127c2:w->domain_6c51cffa:e fkfmi7bdink53swivs390m2btxg + domainhost_1ea127c2:w->domain_6c51cffa:e fkfmi7bdink53swivs390m2btxg @@ -531,7 +531,7 @@ td.section { - pollmessage_614a523e:w->registrar_6e1503e3:e fk_poll_message_registrar_id + pollmessage_614a523e:w->registrar_6e1503e3:e fk_poll_message_registrar_id @@ -551,11 +551,11 @@ td.section { - domainhistoryhost_9f3f23ee:w->domainhistory_a54cc226:e fka9woh3hu8gx5x0vly6bai327n + domainhistoryhost_9f3f23ee:w->domainhistory_a54cc226:e fka9woh3hu8gx5x0vly6bai327n - domainhistoryhost_9f3f23ee:w->domainhistory_a54cc226:e fka9woh3hu8gx5x0vly6bai327n + domainhistoryhost_9f3f23ee:w->domainhistory_a54cc226:e fka9woh3hu8gx5x0vly6bai327n @@ -563,7 +563,7 @@ td.section { - domaintransactionrecord_6e77ff61:w->tld_f1fa57e2:e fk_domain_transaction_record_tld + domaintransactionrecord_6e77ff61:w->tld_f1fa57e2:e fk_domain_transaction_record_tld @@ -575,11 +575,11 @@ td.section { - hosthistory_56210c2:w->host_f21b78de:e fk_hosthistory_host + hosthistory_56210c2:w->host_f21b78de:e fk_hosthistory_host - hosthistory_56210c2:w->registrar_6e1503e3:e fk_history_registrar_id + hosthistory_56210c2:w->registrar_6e1503e3:e fk_history_registrar_id @@ -603,7 +603,7 @@ td.section { - premiumentry_b0060b91:w->premiumlist_7c3ea68b:e fko0gw90lpo1tuee56l0nb6y6g5 + premiumentry_b0060b91:w->premiumlist_7c3ea68b:e fko0gw90lpo1tuee56l0nb6y6g5 @@ -615,7 +615,7 @@ td.section { - registrarpoc_ab47054d:w->registrar_6e1503e3:e fk_registrar_poc_registrar_id + registrarpoc_ab47054d:w->registrar_6e1503e3:e fk_registrar_poc_registrar_id @@ -623,7 +623,7 @@ td.section { - registrarupdatehistory_8a38bed4:w->registrar_6e1503e3:e fkregistrarupdatehistoryregistrarid + registrarupdatehistory_8a38bed4:w->registrar_6e1503e3:e fkregistrarupdatehistoryregistrarid @@ -631,11 +631,11 @@ td.section { - registrarpocupdatehistory_31e5d9aa:w->registrarpoc_ab47054d:e fkregistrarpocupdatehistoryemailaddress + registrarpocupdatehistory_31e5d9aa:w->registrarpoc_ab47054d:e fkregistrarpocupdatehistoryemailaddress - registrarpocupdatehistory_31e5d9aa:w->registrarpoc_ab47054d:e fkregistrarpocupdatehistoryemailaddress + registrarpocupdatehistory_31e5d9aa:w->registrarpoc_ab47054d:e fkregistrarpocupdatehistoryemailaddress @@ -655,7 +655,7 @@ td.section { - reservedentry_1a7b8520:w->reservedlist_b97c3f1c:e fkgq03rk0bt1hb915dnyvd3vnfc + reservedentry_1a7b8520:w->reservedlist_b97c3f1c:e fkgq03rk0bt1hb915dnyvd3vnfc @@ -671,7 +671,7 @@ td.section { - signedmarkrevocationentry_99c39721:w->signedmarkrevocationlist_c5d968fb:e fk5ivlhvs3121yx2li5tqh54u4 + signedmarkrevocationentry_99c39721:w->signedmarkrevocationlist_c5d968fb:e fk5ivlhvs3121yx2li5tqh54u4 @@ -878,7 +878,7 @@ td.section {
- registrar_id (0..many)→ public."Registrar".registrar_id + registrar_id (1..many)→ public."Registrar".registrar_id
@@ -1020,7 +1020,7 @@ td.section {
- registrar_id (0..many)→ public."Registrar".registrar_id + registrar_id (1..many)→ public."Registrar".registrar_id
@@ -1157,7 +1157,7 @@ td.section {
- registrar_id (0..many)→ public."Registrar".registrar_id + registrar_id (1..many)→ public."Registrar".registrar_id
@@ -1329,7 +1329,7 @@ td.section {
- label ←(0..many) public."BsaUnblockableDomain".label + label ←(1..many) public."BsaUnblockableDomain".label
@@ -1388,7 +1388,7 @@ td.section {
- label (0..many)→ public."BsaLabel".label + label (1..many)→ public."BsaLabel".label
@@ -1447,7 +1447,7 @@ td.section {
- revision_id (0..many)→ public."ClaimsList".revision_id + revision_id (1..many)→ public."ClaimsList".revision_id
@@ -1506,7 +1506,7 @@ td.section {
- revision_id ←(0..many) public."ClaimsEntry".revision_id + revision_id ←(1..many) public."ClaimsEntry".revision_id
@@ -1616,7 +1616,7 @@ td.section {
- acting_user (0..many)→ public."User".email_address + acting_user (1..many)→ public."User".email_address
@@ -1746,7 +1746,7 @@ td.section {
- domain_repo_id (0..many)→ public."Domain".repo_id + domain_repo_id (1..many)→ public."Domain".repo_id
@@ -1951,7 +1951,7 @@ td.section {
- repo_id ←(0..many) public."DelegationSignerData".domain_repo_id + repo_id ←(1..many) public."DelegationSignerData".domain_repo_id
@@ -1975,7 +1975,7 @@ td.section {
- creation_registrar_id (0..many)→ public."Registrar".registrar_id + creation_registrar_id (1..many)→ public."Registrar".registrar_id
@@ -1999,7 +1999,7 @@ td.section {
- current_sponsor_registrar_id (0..many)→ public."Registrar".registrar_id + current_sponsor_registrar_id (1..many)→ public."Registrar".registrar_id
@@ -2095,7 +2095,7 @@ td.section {
- repo_id ←(0..many) public."DomainHistory".domain_repo_id + repo_id ←(1..many) public."DomainHistory".domain_repo_id
@@ -2107,7 +2107,7 @@ td.section {
- repo_id ←(0..many) public."DomainHost".domain_repo_id + repo_id ←(1..many) public."DomainHost".domain_repo_id
@@ -2119,7 +2119,7 @@ td.section {
- repo_id ←(0..many) public."GracePeriod".domain_repo_id + repo_id ←(1..many) public."GracePeriod".domain_repo_id
@@ -2280,7 +2280,7 @@ td.section {
- domain_repo_id (0..many)→ public."Domain".repo_id + domain_repo_id (1..many)→ public."Domain".repo_id
@@ -2304,12 +2304,12 @@ td.section {
- domain_repo_id ←(0..many) public."DomainHistoryHost".domain_history_domain_repo_id + domain_repo_id ←(1..many) public."DomainHistoryHost".domain_history_domain_repo_id
- history_revision_id ←(0..many) public."DomainHistoryHost".domain_history_history_revision_id + history_revision_id ←(1..many) public."DomainHistoryHost".domain_history_history_revision_id
@@ -2350,12 +2350,12 @@ td.section {
- domain_history_domain_repo_id (0..many)→ public."DomainHistory".domain_repo_id + domain_history_domain_repo_id (1..many)→ public."DomainHistory".domain_repo_id
- domain_history_history_revision_id (0..many)→ public."DomainHistory".history_revision_id + domain_history_history_revision_id (1..many)→ public."DomainHistory".history_revision_id
@@ -2391,7 +2391,7 @@ td.section {
- domain_repo_id (0..many)→ public."Domain".repo_id + domain_repo_id (1..many)→ public."Domain".repo_id
@@ -2477,7 +2477,7 @@ td.section {
- tld (0..many)→ public."Tld".tld_name + tld (1..many)→ public."Tld".tld_name
@@ -2601,7 +2601,7 @@ td.section {
- domain_repo_id (0..many)→ public."Domain".repo_id + domain_repo_id (1..many)→ public."Domain".repo_id
@@ -2613,7 +2613,7 @@ td.section {
- registrar_id (0..many)→ public."Registrar".registrar_id + registrar_id (1..many)→ public."Registrar".registrar_id
@@ -2803,7 +2803,7 @@ td.section {
- repo_id ←(0..many) public."HostHistory".host_repo_id + repo_id ←(1..many) public."HostHistory".host_repo_id
@@ -2899,7 +2899,7 @@ td.section {
- history_registrar_id (0..many)→ public."Registrar".registrar_id + history_registrar_id (1..many)→ public."Registrar".registrar_id
@@ -2911,7 +2911,7 @@ td.section {
- host_repo_id (0..many)→ public."Host".repo_id + host_repo_id (1..many)→ public."Host".repo_id
@@ -3159,7 +3159,7 @@ td.section {
- registrar_id (0..many)→ public."Registrar".registrar_id + registrar_id (1..many)→ public."Registrar".registrar_id
@@ -3259,7 +3259,7 @@ td.section {
- revision_id (0..many)→ public."PremiumList".revision_id + revision_id (1..many)→ public."PremiumList".revision_id
@@ -3323,7 +3323,7 @@ td.section {
- revision_id ←(0..many) public."PremiumEntry".revision_id + revision_id ←(1..many) public."PremiumEntry".revision_id
@@ -3433,7 +3433,7 @@ td.section {
- registrar_id ←(0..many) public."BillingCancellation".registrar_id + registrar_id ←(1..many) public."BillingCancellation".registrar_id
@@ -3445,7 +3445,7 @@ td.section {
- registrar_id ←(0..many) public."BillingEvent".registrar_id + registrar_id ←(1..many) public."BillingEvent".registrar_id
@@ -3457,7 +3457,7 @@ td.section {
- registrar_id ←(0..many) public."BillingRecurrence".registrar_id + registrar_id ←(1..many) public."BillingRecurrence".registrar_id
@@ -3469,7 +3469,7 @@ td.section {
- registrar_id ←(0..many) public."Domain".creation_registrar_id + registrar_id ←(1..many) public."Domain".creation_registrar_id
@@ -3481,7 +3481,7 @@ td.section {
- registrar_id ←(0..many) public."Domain".current_sponsor_registrar_id + registrar_id ←(1..many) public."Domain".current_sponsor_registrar_id
@@ -3541,7 +3541,7 @@ td.section {
- registrar_id ←(0..many) public."GracePeriod".registrar_id + registrar_id ←(1..many) public."GracePeriod".registrar_id
@@ -3589,7 +3589,7 @@ td.section {
- registrar_id ←(0..many) public."HostHistory".history_registrar_id + registrar_id ←(1..many) public."HostHistory".history_registrar_id
@@ -3601,7 +3601,7 @@ td.section {
- registrar_id ←(0..many) public."PollMessage".registrar_id + registrar_id ←(1..many) public."PollMessage".registrar_id
@@ -3637,7 +3637,7 @@ td.section {
- registrar_id ←(0..many) public."RegistrarPoc".registrar_id + registrar_id ←(1..many) public."RegistrarPoc".registrar_id
@@ -3649,7 +3649,7 @@ td.section {
- registrar_id ←(0..many) public."RegistrarUpdateHistory".registrar_id + registrar_id ←(1..many) public."RegistrarUpdateHistory".registrar_id
@@ -3708,7 +3708,7 @@ td.section {
- registrar_id (0..many)→ public."Registrar".registrar_id + registrar_id (1..many)→ public."Registrar".registrar_id
@@ -3720,12 +3720,12 @@ td.section {
- email_address ←(0..many) public."RegistrarPocUpdateHistory".email_address + email_address ←(1..many) public."RegistrarPocUpdateHistory".email_address
- registrar_id ←(0..many) public."RegistrarPocUpdateHistory".registrar_id + registrar_id ←(1..many) public."RegistrarPocUpdateHistory".registrar_id
@@ -3789,12 +3789,12 @@ td.section {
- email_address (0..many)→ public."RegistrarPoc".email_address + email_address (1..many)→ public."RegistrarPoc".email_address
- registrar_id (0..many)→ public."RegistrarPoc".registrar_id + registrar_id (1..many)→ public."RegistrarPoc".registrar_id
@@ -3853,7 +3853,7 @@ td.section {
- registrar_id (0..many)→ public."Registrar".registrar_id + registrar_id (1..many)→ public."Registrar".registrar_id
@@ -3991,7 +3991,7 @@ td.section {
- revision_id (0..many)→ public."ReservedList".revision_id + revision_id (1..many)→ public."ReservedList".revision_id
@@ -4055,7 +4055,7 @@ td.section {
- revision_id ←(0..many) public."ReservedEntry".revision_id + revision_id ←(1..many) public."ReservedEntry".revision_id
@@ -4150,7 +4150,7 @@ td.section {
- revision_id (0..many)→ public."SignedMarkRevocationList".revision_id + revision_id (1..many)→ public."SignedMarkRevocationList".revision_id
@@ -4209,7 +4209,7 @@ td.section {
- revision_id ←(0..many) public."SignedMarkRevocationEntry".revision_id + revision_id ←(1..many) public."SignedMarkRevocationEntry".revision_id
@@ -4326,7 +4326,7 @@ td.section {
- tld_name ←(0..many) public."DomainTransactionRecord".tld + tld_name ←(1..many) public."DomainTransactionRecord".tld
@@ -4411,7 +4411,7 @@ td.section {
- email_address ←(0..many) public."ConsoleUpdateHistory".acting_user + email_address ←(1..many) public."ConsoleUpdateHistory".acting_user
diff --git a/db/src/main/resources/sql/er_diagram/full_er_diagram.html b/db/src/main/resources/sql/er_diagram/full_er_diagram.html index e3e037192..e2fc1e821 100644 --- a/db/src/main/resources/sql/er_diagram/full_er_diagram.html +++ b/db/src/main/resources/sql/er_diagram/full_er_diagram.html @@ -257,11 +257,11 @@ td.section {
generated by - SchemaCrawler 16.27.1 + SchemaCrawler 17.8.1
generated on - 2026-03-04 17:04:03 + 2026-03-21 03:39:14
last flyway file @@ -273,7 +273,7 @@ td.section {

 

- SchemaCrawler_Diagram generated by SchemaCrawler 16.27.1 generated on 2026-03-04 17:04:03 + SchemaCrawler_Diagram generated by SchemaCrawler 17.8.1 generated on 2026-03-21 03:39:14 allocationtoken_a08ccbef public."AllocationToken" [table] token text not null update_timestamp timestamptz allowed_registrar_ids _text allowed_tlds _text creation_time timestamptz not null discount_fraction float8(17, 17) not null discount_premiums bool not null discount_years int4 not null domain_name text redemption_domain_repo_id text token_status_transitions hstore token_type text redemption_domain_history_id int8 renewal_price_behavior text not null registration_behavior text not null allowed_epp_actions _text renewal_price_amount numeric(19, 2) renewal_price_currency text discount_price_amount numeric(19, 2) discount_price_currency text @@ -299,7 +299,7 @@ td.section { - billingevent_a57d1815:w->registrar_6e1503e3:e fk_billing_event_registrar_id + billingevent_a57d1815:w->registrar_6e1503e3:e fk_billing_event_registrar_id @@ -331,11 +331,11 @@ td.section { - domain_6c51cffa:w->registrar_6e1503e3:e fk2jc69qyg2tv9hhnmif6oa1cx1 + domain_6c51cffa:w->registrar_6e1503e3:e fk2jc69qyg2tv9hhnmif6oa1cx1 - domain_6c51cffa:w->registrar_6e1503e3:e fk2u3srsfbei272093m3b3xwj23 + domain_6c51cffa:w->registrar_6e1503e3:e fk2u3srsfbei272093m3b3xwj23 @@ -367,7 +367,7 @@ td.section { - domainhistory_a54cc226:w->domain_6c51cffa:e fk_domain_history_domain_repo_id + domainhistory_a54cc226:w->domain_6c51cffa:e fk_domain_history_domain_repo_id @@ -383,7 +383,7 @@ td.section { - billingcancellation_6eedf614:w->registrar_6e1503e3:e fk_billing_cancellation_registrar_id + billingcancellation_6eedf614:w->registrar_6e1503e3:e fk_billing_cancellation_registrar_id @@ -395,7 +395,7 @@ td.section { - graceperiod_cd3b2e8f:w->domain_6c51cffa:e fk_grace_period_domain_repo_id + graceperiod_cd3b2e8f:w->domain_6c51cffa:e fk_grace_period_domain_repo_id @@ -403,11 +403,11 @@ td.section { - graceperiod_cd3b2e8f:w->registrar_6e1503e3:e fk_grace_period_registrar_id + graceperiod_cd3b2e8f:w->registrar_6e1503e3:e fk_grace_period_registrar_id - billingrecurrence_5fa2cb01:w->registrar_6e1503e3:e fk_billing_recurrence_registrar_id + billingrecurrence_5fa2cb01:w->registrar_6e1503e3:e fk_billing_recurrence_registrar_id @@ -427,7 +427,7 @@ td.section { - bsaunblockabledomain_b739a38:w->bsalabel_2755e1da:e fkbsaunblockabledomainlabel + bsaunblockabledomain_b739a38:w->bsalabel_2755e1da:e fkbsaunblockabledomainlabel @@ -439,7 +439,7 @@ td.section { - claimsentry_105da9f1:w->claimslist_3d49bc2b:e fk6sc6at5hedffc0nhdcab6ivuq + claimsentry_105da9f1:w->claimslist_3d49bc2b:e fk6sc6at5hedffc0nhdcab6ivuq @@ -455,7 +455,7 @@ td.section { - consoleupdatehistory_5237b2aa:w->user_f2216f01:e fk_console_update_history_acting_user + consoleupdatehistory_5237b2aa:w->user_f2216f01:e fk_console_update_history_acting_user @@ -467,7 +467,7 @@ td.section { - delegationsignerdata_e542a872:w->domain_6c51cffa:e fktr24j9v14ph2mfuw2gsmt12kq + delegationsignerdata_e542a872:w->domain_6c51cffa:e fktr24j9v14ph2mfuw2gsmt12kq @@ -479,7 +479,7 @@ td.section { - domainhost_1ea127c2:w->domain_6c51cffa:e fkfmi7bdink53swivs390m2btxg + domainhost_1ea127c2:w->domain_6c51cffa:e fkfmi7bdink53swivs390m2btxg @@ -531,7 +531,7 @@ td.section { - pollmessage_614a523e:w->registrar_6e1503e3:e fk_poll_message_registrar_id + pollmessage_614a523e:w->registrar_6e1503e3:e fk_poll_message_registrar_id @@ -551,11 +551,11 @@ td.section { - domainhistoryhost_9f3f23ee:w->domainhistory_a54cc226:e fka9woh3hu8gx5x0vly6bai327n + domainhistoryhost_9f3f23ee:w->domainhistory_a54cc226:e fka9woh3hu8gx5x0vly6bai327n - domainhistoryhost_9f3f23ee:w->domainhistory_a54cc226:e fka9woh3hu8gx5x0vly6bai327n + domainhistoryhost_9f3f23ee:w->domainhistory_a54cc226:e fka9woh3hu8gx5x0vly6bai327n @@ -563,7 +563,7 @@ td.section { - domaintransactionrecord_6e77ff61:w->tld_f1fa57e2:e fk_domain_transaction_record_tld + domaintransactionrecord_6e77ff61:w->tld_f1fa57e2:e fk_domain_transaction_record_tld @@ -575,11 +575,11 @@ td.section { - hosthistory_56210c2:w->host_f21b78de:e fk_hosthistory_host + hosthistory_56210c2:w->host_f21b78de:e fk_hosthistory_host - hosthistory_56210c2:w->registrar_6e1503e3:e fk_history_registrar_id + hosthistory_56210c2:w->registrar_6e1503e3:e fk_history_registrar_id @@ -603,7 +603,7 @@ td.section { - premiumentry_b0060b91:w->premiumlist_7c3ea68b:e fko0gw90lpo1tuee56l0nb6y6g5 + premiumentry_b0060b91:w->premiumlist_7c3ea68b:e fko0gw90lpo1tuee56l0nb6y6g5 @@ -615,7 +615,7 @@ td.section { - registrarpoc_ab47054d:w->registrar_6e1503e3:e fk_registrar_poc_registrar_id + registrarpoc_ab47054d:w->registrar_6e1503e3:e fk_registrar_poc_registrar_id @@ -623,7 +623,7 @@ td.section { - registrarupdatehistory_8a38bed4:w->registrar_6e1503e3:e fkregistrarupdatehistoryregistrarid + registrarupdatehistory_8a38bed4:w->registrar_6e1503e3:e fkregistrarupdatehistoryregistrarid @@ -631,11 +631,11 @@ td.section { - registrarpocupdatehistory_31e5d9aa:w->registrarpoc_ab47054d:e fkregistrarpocupdatehistoryemailaddress + registrarpocupdatehistory_31e5d9aa:w->registrarpoc_ab47054d:e fkregistrarpocupdatehistoryemailaddress - registrarpocupdatehistory_31e5d9aa:w->registrarpoc_ab47054d:e fkregistrarpocupdatehistoryemailaddress + registrarpocupdatehistory_31e5d9aa:w->registrarpoc_ab47054d:e fkregistrarpocupdatehistoryemailaddress @@ -655,7 +655,7 @@ td.section { - reservedentry_1a7b8520:w->reservedlist_b97c3f1c:e fkgq03rk0bt1hb915dnyvd3vnfc + reservedentry_1a7b8520:w->reservedlist_b97c3f1c:e fkgq03rk0bt1hb915dnyvd3vnfc @@ -671,7 +671,7 @@ td.section { - signedmarkrevocationentry_99c39721:w->signedmarkrevocationlist_c5d968fb:e fk5ivlhvs3121yx2li5tqh54u4 + signedmarkrevocationentry_99c39721:w->signedmarkrevocationlist_c5d968fb:e fk5ivlhvs3121yx2li5tqh54u4 @@ -1049,7 +1049,7 @@ td.section {
- registrar_id (0..many)→ public."Registrar".registrar_id + registrar_id (1..many)→ public."Registrar".registrar_id
@@ -1340,7 +1340,7 @@ td.section {
- registrar_id (0..many)→ public."Registrar".registrar_id + registrar_id (1..many)→ public."Registrar".registrar_id
@@ -1660,7 +1660,7 @@ td.section {
- registrar_id (0..many)→ public."Registrar".registrar_id + registrar_id (1..many)→ public."Registrar".registrar_id
@@ -2034,7 +2034,7 @@ td.section {
- label ←(0..many) public."BsaUnblockableDomain".label + label ←(1..many) public."BsaUnblockableDomain".label
@@ -2121,7 +2121,7 @@ td.section {
- label (0..many)→ public."BsaLabel".label + label (1..many)→ public."BsaLabel".label
@@ -2208,7 +2208,7 @@ td.section {
- revision_id (0..many)→ public."ClaimsList".revision_id + revision_id (1..many)→ public."ClaimsList".revision_id
@@ -2300,7 +2300,7 @@ td.section {
- revision_id ←(0..many) public."ClaimsEntry".revision_id + revision_id ←(1..many) public."ClaimsEntry".revision_id
@@ -2527,7 +2527,7 @@ td.section {
- acting_user (0..many)→ public."User".email_address + acting_user (1..many)→ public."User".email_address
@@ -2744,7 +2744,7 @@ td.section {
- domain_repo_id (0..many)→ public."Domain".repo_id + domain_repo_id (1..many)→ public."Domain".repo_id
@@ -3228,7 +3228,7 @@ td.section {
- repo_id ←(0..many) public."DelegationSignerData".domain_repo_id + repo_id ←(1..many) public."DelegationSignerData".domain_repo_id
@@ -3252,7 +3252,7 @@ td.section {
- creation_registrar_id (0..many)→ public."Registrar".registrar_id + creation_registrar_id (1..many)→ public."Registrar".registrar_id
@@ -3276,7 +3276,7 @@ td.section {
- current_sponsor_registrar_id (0..many)→ public."Registrar".registrar_id + current_sponsor_registrar_id (1..many)→ public."Registrar".registrar_id
@@ -3372,7 +3372,7 @@ td.section {
- repo_id ←(0..many) public."DomainHistory".domain_repo_id + repo_id ←(1..many) public."DomainHistory".domain_repo_id
@@ -3384,7 +3384,7 @@ td.section {
- repo_id ←(0..many) public."DomainHost".domain_repo_id + repo_id ←(1..many) public."DomainHost".domain_repo_id
@@ -3396,7 +3396,7 @@ td.section {
- repo_id ←(0..many) public."GracePeriod".domain_repo_id + repo_id ←(1..many) public."GracePeriod".domain_repo_id
@@ -3537,6 +3537,13 @@ td.section { domain_name ascending
+
+ + [filter condition] +
+
+ (deletion_time = '294247-01-09 23:00:54.775-05'::timestamp with time zone) +
@@ -3573,6 +3580,13 @@ td.section { lordn_phase ascending +
+ + [filter condition] +
+
+ (lordn_phase <> 'NONE'::text) +
@@ -4192,7 +4206,7 @@ td.section {
- domain_repo_id (0..many)→ public."Domain".repo_id + domain_repo_id (1..many)→ public."Domain".repo_id
@@ -4216,12 +4230,12 @@ td.section {
- domain_repo_id ←(0..many) public."DomainHistoryHost".domain_history_domain_repo_id + domain_repo_id ←(1..many) public."DomainHistoryHost".domain_history_domain_repo_id
- history_revision_id ←(0..many) public."DomainHistoryHost".domain_history_history_revision_id + history_revision_id ←(1..many) public."DomainHistoryHost".domain_history_history_revision_id
@@ -4369,12 +4383,12 @@ td.section {
- domain_history_domain_repo_id (0..many)→ public."DomainHistory".domain_repo_id + domain_history_domain_repo_id (1..many)→ public."DomainHistory".domain_repo_id
- domain_history_history_revision_id (0..many)→ public."DomainHistory".history_revision_id + domain_history_history_revision_id (1..many)→ public."DomainHistory".history_revision_id
@@ -4462,7 +4476,7 @@ td.section {
- domain_repo_id (0..many)→ public."Domain".repo_id + domain_repo_id (1..many)→ public."Domain".repo_id
@@ -4610,7 +4624,7 @@ td.section {
- tld (0..many)→ public."Tld".tld_name + tld (1..many)→ public."Tld".tld_name
@@ -4843,7 +4857,7 @@ td.section {
- domain_repo_id (0..many)→ public."Domain".repo_id + domain_repo_id (1..many)→ public."Domain".repo_id
@@ -4855,7 +4869,7 @@ td.section {
- registrar_id (0..many)→ public."Registrar".registrar_id + registrar_id (1..many)→ public."Registrar".registrar_id
@@ -5259,7 +5273,7 @@ td.section {
- repo_id ←(0..many) public."HostHistory".host_repo_id + repo_id ←(1..many) public."HostHistory".host_repo_id
@@ -5564,7 +5578,7 @@ td.section {
- history_registrar_id (0..many)→ public."Registrar".registrar_id + history_registrar_id (1..many)→ public."Registrar".registrar_id
@@ -5576,7 +5590,7 @@ td.section {
- host_repo_id (0..many)→ public."Host".repo_id + host_repo_id (1..many)→ public."Host".repo_id
@@ -6138,7 +6152,7 @@ td.section {
- registrar_id (0..many)→ public."Registrar".registrar_id + registrar_id (1..many)→ public."Registrar".registrar_id
@@ -6326,7 +6340,7 @@ td.section {
- revision_id (0..many)→ public."PremiumList".revision_id + revision_id (1..many)→ public."PremiumList".revision_id
@@ -6428,7 +6442,7 @@ td.section {
- revision_id ←(0..many) public."PremiumEntry".revision_id + revision_id ←(1..many) public."PremiumEntry".revision_id
@@ -6826,7 +6840,7 @@ td.section {
- registrar_id ←(0..many) public."BillingCancellation".registrar_id + registrar_id ←(1..many) public."BillingCancellation".registrar_id
@@ -6838,7 +6852,7 @@ td.section {
- registrar_id ←(0..many) public."BillingEvent".registrar_id + registrar_id ←(1..many) public."BillingEvent".registrar_id
@@ -6850,7 +6864,7 @@ td.section {
- registrar_id ←(0..many) public."BillingRecurrence".registrar_id + registrar_id ←(1..many) public."BillingRecurrence".registrar_id
@@ -6862,7 +6876,7 @@ td.section {
- registrar_id ←(0..many) public."Domain".creation_registrar_id + registrar_id ←(1..many) public."Domain".creation_registrar_id
@@ -6874,7 +6888,7 @@ td.section {
- registrar_id ←(0..many) public."Domain".current_sponsor_registrar_id + registrar_id ←(1..many) public."Domain".current_sponsor_registrar_id
@@ -6934,7 +6948,7 @@ td.section {
- registrar_id ←(0..many) public."GracePeriod".registrar_id + registrar_id ←(1..many) public."GracePeriod".registrar_id
@@ -6982,7 +6996,7 @@ td.section {
- registrar_id ←(0..many) public."HostHistory".history_registrar_id + registrar_id ←(1..many) public."HostHistory".history_registrar_id
@@ -6994,7 +7008,7 @@ td.section {
- registrar_id ←(0..many) public."PollMessage".registrar_id + registrar_id ←(1..many) public."PollMessage".registrar_id
@@ -7030,7 +7044,7 @@ td.section {
- registrar_id ←(0..many) public."RegistrarPoc".registrar_id + registrar_id ←(1..many) public."RegistrarPoc".registrar_id
@@ -7042,7 +7056,7 @@ td.section {
- registrar_id ←(0..many) public."RegistrarUpdateHistory".registrar_id + registrar_id ←(1..many) public."RegistrarUpdateHistory".registrar_id
@@ -7213,7 +7227,7 @@ td.section {
- registrar_id (0..many)→ public."Registrar".registrar_id + registrar_id (1..many)→ public."Registrar".registrar_id
@@ -7225,12 +7239,12 @@ td.section {
- email_address ←(0..many) public."RegistrarPocUpdateHistory".email_address + email_address ←(1..many) public."RegistrarPocUpdateHistory".email_address
- registrar_id ←(0..many) public."RegistrarPocUpdateHistory".registrar_id + registrar_id ←(1..many) public."RegistrarPocUpdateHistory".registrar_id
@@ -7402,12 +7416,12 @@ td.section {
- email_address (0..many)→ public."RegistrarPoc".email_address + email_address (1..many)→ public."RegistrarPoc".email_address
- registrar_id (0..many)→ public."RegistrarPoc".registrar_id + registrar_id (1..many)→ public."RegistrarPoc".registrar_id
@@ -7770,7 +7784,7 @@ td.section {
- registrar_id (0..many)→ public."Registrar".registrar_id + registrar_id (1..many)→ public."Registrar".registrar_id
@@ -8064,7 +8078,7 @@ td.section {
- revision_id (0..many)→ public."ReservedList".revision_id + revision_id (1..many)→ public."ReservedList".revision_id
@@ -8156,7 +8170,7 @@ td.section {
- revision_id ←(0..many) public."ReservedEntry".revision_id + revision_id ←(1..many) public."ReservedEntry".revision_id
@@ -8309,7 +8323,7 @@ td.section {
- revision_id (0..many)→ public."SignedMarkRevocationList".revision_id + revision_id (1..many)→ public."SignedMarkRevocationList".revision_id
@@ -8396,7 +8410,7 @@ td.section {
- revision_id ←(0..many) public."SignedMarkRevocationEntry".revision_id + revision_id ←(1..many) public."SignedMarkRevocationEntry".revision_id
@@ -8825,7 +8839,7 @@ td.section {
- tld_name ←(0..many) public."DomainTransactionRecord".tld + tld_name ←(1..many) public."DomainTransactionRecord".tld
@@ -8996,7 +9010,7 @@ td.section {
- email_address ←(0..many) public."ConsoleUpdateHistory".acting_user + email_address ←(1..many) public."ConsoleUpdateHistory".acting_user
diff --git a/db/src/main/resources/sql/schema/db-schema.sql.generated b/db/src/main/resources/sql/schema/db-schema.sql.generated index 80e69f50d..72019c5c2 100644 --- a/db/src/main/resources/sql/schema/db-schema.sql.generated +++ b/db/src/main/resources/sql/schema/db-schema.sql.generated @@ -27,12 +27,12 @@ domain_name text, redemption_domain_repo_id text, redemption_domain_history_id bigint, - registration_behavior text not null check (registration_behavior in ('DEFAULT','BYPASS_TLD_STATE','ANCHOR_TENANT','NONPREMIUM_CREATE')), + registration_behavior text not null check ((registration_behavior in ('DEFAULT','BYPASS_TLD_STATE','ANCHOR_TENANT','NONPREMIUM_CREATE'))), renewal_price_amount numeric(19,2), renewal_price_currency text, - renewal_price_behavior text not null check (renewal_price_behavior in ('DEFAULT','NONPREMIUM','SPECIFIED')), + renewal_price_behavior text not null check ((renewal_price_behavior in ('DEFAULT','NONPREMIUM','SPECIFIED'))), token_status_transitions hstore, - token_type text check (token_type in ('BULK_PRICING','DEFAULT_PROMO','PACKAGE','SINGLE_USE','UNLIMITED_USE','REGISTER_BSA')), + token_type text check ((token_type in ('BULK_PRICING','DEFAULT_PROMO','PACKAGE','SINGLE_USE','UNLIMITED_USE','REGISTER_BSA'))), constraint allocation_token_token_idx primary key (token) ); @@ -43,7 +43,7 @@ domain_repo_id text not null, event_time timestamp(6) with time zone not null, flags text[], - reason text not null check (reason in ('CREATE','ERROR','FEE_EARLY_ACCESS','RENEW','RESTORE','SERVER_STATUS','TRANSFER')), + reason text not null check ((reason in ('CREATE','ERROR','FEE_EARLY_ACCESS','RENEW','RESTORE','SERVER_STATUS','TRANSFER'))), domain_name text not null, billing_event_id bigint, billing_recurrence_id bigint, @@ -58,7 +58,7 @@ domain_repo_id text not null, event_time timestamp(6) with time zone not null, flags text[], - reason text not null check (reason in ('CREATE','ERROR','FEE_EARLY_ACCESS','RENEW','RESTORE','SERVER_STATUS','TRANSFER')), + reason text not null check ((reason in ('CREATE','ERROR','FEE_EARLY_ACCESS','RENEW','RESTORE','SERVER_STATUS','TRANSFER'))), domain_name text not null, allocation_token text, billing_time timestamp(6) with time zone, @@ -78,21 +78,21 @@ domain_repo_id text not null, event_time timestamp(6) with time zone not null, flags text[], - reason text not null check (reason in ('CREATE','ERROR','FEE_EARLY_ACCESS','RENEW','RESTORE','SERVER_STATUS','TRANSFER')), + reason text not null check ((reason in ('CREATE','ERROR','FEE_EARLY_ACCESS','RENEW','RESTORE','SERVER_STATUS','TRANSFER'))), domain_name text not null, recurrence_end_time timestamp(6) with time zone, recurrence_last_expansion timestamp(6) with time zone not null, recurrence_time_of_year text, renewal_price_amount numeric(19,2), renewal_price_currency text, - renewal_price_behavior text not null check (renewal_price_behavior in ('DEFAULT','NONPREMIUM','SPECIFIED')), + renewal_price_behavior text not null check ((renewal_price_behavior in ('DEFAULT','NONPREMIUM','SPECIFIED'))), primary key (billing_recurrence_id) ); create table "BsaDomainRefresh" ( job_id bigint generated by default as identity, creation_time timestamp(6) with time zone not null, - stage text not null check (stage in ('CHECK_FOR_CHANGES','APPLY_CHANGES','UPLOAD_REMOVALS','UPLOAD_ADDITIONS','DONE')), + stage text not null check ((stage in ('CHECK_FOR_CHANGES','APPLY_CHANGES','UPLOAD_REMOVALS','UPLOAD_ADDITIONS','DONE'))), update_timestamp timestamp(6) with time zone, primary key (job_id) ); @@ -101,7 +101,7 @@ job_id bigint generated by default as identity, block_list_checksums text not null, creation_time timestamp(6) with time zone not null, - stage text not null check (stage in ('DOWNLOAD_BLOCK_LISTS','MAKE_ORDER_AND_LABEL_DIFF','APPLY_ORDER_AND_LABEL_DIFF','REPORT_START_OF_ORDER_PROCESSING','UPLOAD_UNBLOCKABLE_DOMAINS_FOR_NEW_ORDERS','REPORT_END_OF_ORDER_PROCESSING','DONE','NOP','CHECKSUMS_DO_NOT_MATCH')), + stage text not null check ((stage in ('DOWNLOAD_BLOCK_LISTS','MAKE_ORDER_AND_LABEL_DIFF','APPLY_ORDER_AND_LABEL_DIFF','REPORT_START_OF_ORDER_PROCESSING','UPLOAD_UNBLOCKABLE_DOMAINS_FOR_NEW_ORDERS','REPORT_END_OF_ORDER_PROCESSING','DONE','NOP','CHECKSUMS_DO_NOT_MATCH'))), update_timestamp timestamp(6) with time zone, primary key (job_id) ); @@ -116,13 +116,13 @@ label text not null, tld text not null, creation_time timestamp(6) with time zone not null, - reason text not null check (reason in ('REGISTERED','RESERVED')), + reason text not null check ((reason in ('REGISTERED','RESERVED'))), primary key (label, tld) ); create table "ClaimsEntry" ( - revision_id bigint not null, domain_label text not null, + revision_id bigint not null, claim_key text not null, primary key (domain_label, revision_id) ); @@ -139,7 +139,7 @@ description text, method text not null, modification_time timestamp(6) with time zone not null, - type text not null check (type in ('DUM_DOWNLOAD','DOMAIN_DELETE','DOMAIN_SUSPEND','DOMAIN_UNSUSPEND','EPP_PASSWORD_UPDATE','REGISTRAR_CREATE','REGISTRAR_CONTACTS_UPDATE','REGISTRAR_SECURITY_UPDATE','REGISTRAR_UPDATE','REGISTRY_LOCK','REGISTRY_UNLOCK','USER_CREATE','USER_DELETE','USER_UPDATE')), + type text not null check ((type in ('DUM_DOWNLOAD','DOMAIN_DELETE','DOMAIN_SUSPEND','DOMAIN_UNSUSPEND','EPP_PASSWORD_UPDATE','REGISTRAR_CREATE','REGISTRAR_CONTACTS_UPDATE','REGISTRAR_SECURITY_UPDATE','REGISTRAR_UPDATE','REGISTRY_LOCK','REGISTRY_UNLOCK','USER_CREATE','USER_DELETE','USER_UPDATE'))), url text not null, acting_user text not null, primary key (revision_id) @@ -147,7 +147,7 @@ create table "Cursor" ( scope text not null, - type text not null check (type in ('BRDA','RDE_REPORT','RDE_STAGING','RDE_UPLOAD','RDE_UPLOAD_SFTP','RECURRING_BILLING','SYNC_REGISTRAR_SHEET','ICANN_UPLOAD_TX','ICANN_UPLOAD_ACTIVITY')), + type text not null check ((type in ('BRDA','RDE_REPORT','RDE_STAGING','RDE_UPLOAD','RDE_UPLOAD_SFTP','RECURRING_BILLING','SYNC_REGISTRAR_SHEET','ICANN_UPLOAD_TX','ICANN_UPLOAD_ACTIVITY'))), last_update_time timestamp(6) with time zone not null, cursor_time timestamp(6) with time zone not null, primary key (scope, type) @@ -168,7 +168,7 @@ name text not null, request_time timestamp(6) with time zone not null, tld text not null, - type text not null check (type in ('DOMAIN','HOST')), + type text not null check ((type in ('DOMAIN','HOST'))), primary key (id) ); @@ -198,7 +198,7 @@ launch_notice_expiration_time timestamp(6) with time zone, launch_notice_tcn_id text, launch_notice_validator_id text, - lordn_phase text check (lordn_phase in ('SUNRISE','CLAIMS','NONE')), + lordn_phase text check ((lordn_phase in ('SUNRISE','CLAIMS','NONE'))), registrant_contact text, registration_expiration_time timestamp(6) with time zone, smd_id text, @@ -215,7 +215,7 @@ transfer_autorenew_poll_message_id bigint, transfer_autorenew_poll_message_history_id bigint, transfer_billing_event_id bigint, - transfer_renew_period_unit text check (transfer_renew_period_unit in ('YEARS','MONTHS')), + transfer_renew_period_unit text check ((transfer_renew_period_unit in ('YEARS','MONTHS'))), transfer_renew_period_value integer, transfer_client_txn_id text, transfer_server_txn_id text, @@ -224,7 +224,7 @@ transfer_losing_registrar_id text, transfer_pending_expiration_time timestamp(6) with time zone, transfer_request_time timestamp(6) with time zone, - transfer_status text check (transfer_status in ('CLIENT_APPROVED','CLIENT_CANCELLED','CLIENT_REJECTED','PENDING','SERVER_APPROVED','SERVER_CANCELLED')), + transfer_status text check ((transfer_status in ('CLIENT_APPROVED','CLIENT_CANCELLED','CLIENT_REJECTED','PENDING','SERVER_APPROVED','SERVER_CANCELLED'))), primary key (repo_id) ); @@ -249,10 +249,10 @@ history_requested_by_registrar boolean, history_client_transaction_id text, history_server_transaction_id text, - history_type text not null check (history_type in ('CONTACT_CREATE','CONTACT_DELETE','CONTACT_DELETE_FAILURE','CONTACT_PENDING_DELETE','CONTACT_TRANSFER_APPROVE','CONTACT_TRANSFER_CANCEL','CONTACT_TRANSFER_REJECT','CONTACT_TRANSFER_REQUEST','CONTACT_UPDATE','DOMAIN_ALLOCATE','DOMAIN_AUTORENEW','DOMAIN_CREATE','DOMAIN_DELETE','DOMAIN_RENEW','DOMAIN_RESTORE','DOMAIN_TRANSFER_APPROVE','DOMAIN_TRANSFER_CANCEL','DOMAIN_TRANSFER_REJECT','DOMAIN_TRANSFER_REQUEST','DOMAIN_UPDATE','HOST_CREATE','HOST_DELETE','HOST_DELETE_FAILURE','HOST_PENDING_DELETE','HOST_UPDATE','RDE_IMPORT','SYNTHETIC')), + history_type text not null check ((history_type in ('CONTACT_CREATE','CONTACT_DELETE','CONTACT_DELETE_FAILURE','CONTACT_PENDING_DELETE','CONTACT_TRANSFER_APPROVE','CONTACT_TRANSFER_CANCEL','CONTACT_TRANSFER_REJECT','CONTACT_TRANSFER_REQUEST','CONTACT_UPDATE','DOMAIN_ALLOCATE','DOMAIN_AUTORENEW','DOMAIN_CREATE','DOMAIN_DELETE','DOMAIN_RENEW','DOMAIN_RESTORE','DOMAIN_TRANSFER_APPROVE','DOMAIN_TRANSFER_CANCEL','DOMAIN_TRANSFER_REJECT','DOMAIN_TRANSFER_REQUEST','DOMAIN_UPDATE','HOST_CREATE','HOST_DELETE','HOST_DELETE_FAILURE','HOST_PENDING_DELETE','HOST_UPDATE','RDE_IMPORT','SYNTHETIC'))), history_xml_bytes bytea, history_other_registrar_id text, - history_period_unit text check (history_period_unit in ('YEARS','MONTHS')), + history_period_unit text check ((history_period_unit in ('YEARS','MONTHS'))), history_period_value integer, admin_contact text, auth_info_repo_id text, @@ -270,7 +270,7 @@ launch_notice_expiration_time timestamp(6) with time zone, launch_notice_tcn_id text, launch_notice_validator_id text, - lordn_phase text check (lordn_phase in ('SUNRISE','CLAIMS','NONE')), + lordn_phase text check ((lordn_phase in ('SUNRISE','CLAIMS','NONE'))), registrant_contact text, registration_expiration_time timestamp(6) with time zone, smd_id text, @@ -287,7 +287,7 @@ transfer_autorenew_poll_message_id bigint, transfer_autorenew_poll_message_history_id bigint, transfer_billing_event_id bigint, - transfer_renew_period_unit text check (transfer_renew_period_unit in ('YEARS','MONTHS')), + transfer_renew_period_unit text check ((transfer_renew_period_unit in ('YEARS','MONTHS'))), transfer_renew_period_value integer, transfer_client_txn_id text, transfer_server_txn_id text, @@ -296,7 +296,7 @@ transfer_losing_registrar_id text, transfer_pending_expiration_time timestamp(6) with time zone, transfer_request_time timestamp(6) with time zone, - transfer_status text check (transfer_status in ('CLIENT_APPROVED','CLIENT_CANCELLED','CLIENT_REJECTED','PENDING','SERVER_APPROVED','SERVER_CANCELLED')), + transfer_status text check ((transfer_status in ('CLIENT_APPROVED','CLIENT_CANCELLED','CLIENT_REJECTED','PENDING','SERVER_APPROVED','SERVER_CANCELLED'))), creation_registrar_id text, creation_time timestamp(6) with time zone, current_sponsor_registrar_id text, @@ -326,14 +326,14 @@ domain_repo_id text, history_revision_id bigint, report_amount integer not null, - report_field text not null check (report_field in ('NET_ADDS_1_YR','NET_ADDS_2_YR','NET_ADDS_3_YR','NET_ADDS_4_YR','NET_ADDS_5_YR','NET_ADDS_6_YR','NET_ADDS_7_YR','NET_ADDS_8_YR','NET_ADDS_9_YR','NET_ADDS_10_YR','NET_RENEWS_1_YR','NET_RENEWS_2_YR','NET_RENEWS_3_YR','NET_RENEWS_4_YR','NET_RENEWS_5_YR','NET_RENEWS_6_YR','NET_RENEWS_7_YR','NET_RENEWS_8_YR','NET_RENEWS_9_YR','NET_RENEWS_10_YR','TRANSFER_SUCCESSFUL','TRANSFER_NACKED','DELETED_DOMAINS_GRACE','DELETED_DOMAINS_NOGRACE','RESTORED_DOMAINS')), + report_field text not null check ((report_field in ('NET_ADDS_1_YR','NET_ADDS_2_YR','NET_ADDS_3_YR','NET_ADDS_4_YR','NET_ADDS_5_YR','NET_ADDS_6_YR','NET_ADDS_7_YR','NET_ADDS_8_YR','NET_ADDS_9_YR','NET_ADDS_10_YR','NET_RENEWS_1_YR','NET_RENEWS_2_YR','NET_RENEWS_3_YR','NET_RENEWS_4_YR','NET_RENEWS_5_YR','NET_RENEWS_6_YR','NET_RENEWS_7_YR','NET_RENEWS_8_YR','NET_RENEWS_9_YR','NET_RENEWS_10_YR','TRANSFER_SUCCESSFUL','TRANSFER_NACKED','DELETED_DOMAINS_GRACE','DELETED_DOMAINS_NOGRACE','RESTORED_DOMAINS'))), reporting_time timestamp(6) with time zone not null, tld text not null, primary key (id) ); create table "FeatureFlag" ( - feature_name text not null check (feature_name in ('TEST_FEATURE','FEE_EXTENSION_1_DOT_0_IN_PROD','MINIMUM_DATASET_CONTACTS_OPTIONAL','MINIMUM_DATASET_CONTACTS_PROHIBITED','INCLUDE_PENDING_DELETE_DATE_FOR_DOMAINS','PROHIBIT_CONTACT_OBJECTS_ON_LOGIN')), + feature_name text not null check ((feature_name in ('TEST_FEATURE','FEE_EXTENSION_1_DOT_0_IN_PROD','MINIMUM_DATASET_CONTACTS_OPTIONAL','MINIMUM_DATASET_CONTACTS_PROHIBITED','INCLUDE_PENDING_DELETE_DATE_FOR_DOMAINS','PROHIBIT_CONTACT_OBJECTS_ON_LOGIN'))), status hstore not null, primary key (feature_name) ); @@ -345,7 +345,7 @@ registrar_id text not null, domain_repo_id text not null, expiration_time timestamp(6) with time zone not null, - type text not null check (type in ('ADD','AUTO_RENEW','REDEMPTION','RENEW','PENDING_DELETE','PENDING_RESTORE','TRANSFER')), + type text not null check ((type in ('ADD','AUTO_RENEW','REDEMPTION','RENEW','PENDING_DELETE','PENDING_RESTORE','TRANSFER'))), primary key (grace_period_id) ); @@ -356,7 +356,7 @@ registrar_id text not null, domain_repo_id text not null, expiration_time timestamp(6) with time zone not null, - type text not null check (type in ('ADD','AUTO_RENEW','REDEMPTION','RENEW','PENDING_DELETE','PENDING_RESTORE','TRANSFER')), + type text not null check ((type in ('ADD','AUTO_RENEW','REDEMPTION','RENEW','PENDING_DELETE','PENDING_RESTORE','TRANSFER'))), domain_history_revision_id bigint, grace_period_id bigint not null, primary key (grace_period_history_revision_id) @@ -390,7 +390,7 @@ history_requested_by_registrar boolean, history_client_transaction_id text, history_server_transaction_id text, - history_type text not null check (history_type in ('CONTACT_CREATE','CONTACT_DELETE','CONTACT_DELETE_FAILURE','CONTACT_PENDING_DELETE','CONTACT_TRANSFER_APPROVE','CONTACT_TRANSFER_CANCEL','CONTACT_TRANSFER_REJECT','CONTACT_TRANSFER_REQUEST','CONTACT_UPDATE','DOMAIN_ALLOCATE','DOMAIN_AUTORENEW','DOMAIN_CREATE','DOMAIN_DELETE','DOMAIN_RENEW','DOMAIN_RESTORE','DOMAIN_TRANSFER_APPROVE','DOMAIN_TRANSFER_CANCEL','DOMAIN_TRANSFER_REJECT','DOMAIN_TRANSFER_REQUEST','DOMAIN_UPDATE','HOST_CREATE','HOST_DELETE','HOST_DELETE_FAILURE','HOST_PENDING_DELETE','HOST_UPDATE','RDE_IMPORT','SYNTHETIC')), + history_type text not null check ((history_type in ('CONTACT_CREATE','CONTACT_DELETE','CONTACT_DELETE_FAILURE','CONTACT_PENDING_DELETE','CONTACT_TRANSFER_APPROVE','CONTACT_TRANSFER_CANCEL','CONTACT_TRANSFER_REJECT','CONTACT_TRANSFER_REQUEST','CONTACT_UPDATE','DOMAIN_ALLOCATE','DOMAIN_AUTORENEW','DOMAIN_CREATE','DOMAIN_DELETE','DOMAIN_RENEW','DOMAIN_RESTORE','DOMAIN_TRANSFER_APPROVE','DOMAIN_TRANSFER_CANCEL','DOMAIN_TRANSFER_REJECT','DOMAIN_TRANSFER_REQUEST','DOMAIN_UPDATE','HOST_CREATE','HOST_DELETE','HOST_DELETE_FAILURE','HOST_PENDING_DELETE','HOST_UPDATE','RDE_IMPORT','SYNTHETIC'))), history_xml_bytes bytea, host_name text, inet_addresses text[], @@ -435,12 +435,12 @@ registrar_id text not null, request_time timestamp(6) with time zone not null, requester text not null, - type text not null check (type in ('EPP','REGISTRY_LOCK')), + type text not null check ((type in ('EPP','REGISTRY_LOCK'))), primary key (verification_code) ); create table "PollMessage" ( - type text not null, + type text not null check ((type in ('ONE_TIME','AUTORENEW'))), poll_message_id bigint not null, registrar_id text not null, contact_history_revision_id bigint, @@ -464,15 +464,15 @@ transfer_response_losing_registrar_id text, transfer_response_pending_transfer_expiration_time timestamp(6) with time zone, transfer_response_transfer_request_time timestamp(6) with time zone, - transfer_response_transfer_status text check (transfer_response_transfer_status in ('CLIENT_APPROVED','CLIENT_CANCELLED','CLIENT_REJECTED','PENDING','SERVER_APPROVED','SERVER_CANCELLED')), + transfer_response_transfer_status text check ((transfer_response_transfer_status in ('CLIENT_APPROVED','CLIENT_CANCELLED','CLIENT_REJECTED','PENDING','SERVER_APPROVED','SERVER_CANCELLED'))), autorenew_end_time timestamp(6) with time zone, autorenew_domain_name text, primary key (poll_message_id) ); create table "PremiumEntry" ( - revision_id bigint not null, domain_label text not null, + revision_id bigint not null, price numeric(19,2) not null, primary key (domain_label, revision_id) ); @@ -488,7 +488,7 @@ create table "RdeRevision" ( date date not null, - mode text not null check (mode in ('FULL','THIN')), + mode text not null check ((mode in ('FULL','THIN'))), tld text not null, update_timestamp timestamp(6) with time zone, revision integer not null, @@ -539,8 +539,8 @@ registrar_name text not null, registry_lock_allowed boolean not null, password_salt text, - state text check (state in ('PENDING','ACTIVE','SUSPENDED','DISABLED')), - type text not null check (type in ('REAL','OTE','PDT','EXTERNAL_MONITORING','INTERNAL','MONITORING','TEST')), + state text check ((state in ('PENDING','ACTIVE','SUSPENDED','DISABLED'))), + type text not null check ((type in ('REAL','OTE','PDT','EXTERNAL_MONITORING','INTERNAL','MONITORING','TEST'))), url text, whois_server text, primary key (registrar_id) @@ -580,10 +580,10 @@ ); create table "ReservedEntry" ( - revision_id bigint not null, domain_label text not null, + revision_id bigint not null, comment text, - reservation_type integer not null check (reservation_type between 0 and 4), + reservation_type integer not null check ((reservation_type between 0 and 4)), primary key (domain_label, revision_id) ); @@ -665,7 +665,7 @@ server_status_change_billing_cost_amount numeric(19,2), server_status_change_billing_cost_currency text, tld_state_transitions hstore not null, - tld_type text not null check (tld_type in ('REAL','TEST')), + tld_type text not null check ((tld_type in ('REAL','TEST'))), tld_unicode text not null, transfer_grace_period_length interval not null, primary key (tld_name) @@ -685,7 +685,7 @@ registry_lock_email_address text, registry_lock_password_hash text, registry_lock_password_salt text, - global_role text not null check (global_role in ('NONE','SUPPORT_AGENT','SUPPORT_LEAD','FTE')), + global_role text not null check ((global_role in ('NONE','SUPPORT_AGENT','SUPPORT_LEAD','FTE'))), is_admin boolean not null, registrar_roles hstore, primary key (email_address) diff --git a/dependencies.gradle b/dependencies.gradle index 1a60feefe..736c45162 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -35,11 +35,10 @@ ext { // CAPPED VERSIONS START HERE. - // 6.6 is alpha. - 'org.hibernate.orm:hibernate-core:[6.0,6.6)!!', - 'org.hibernate.orm:hibernate-hikaricp:[6.0,6.6)!!', + 'org.hibernate.orm:hibernate-core:7.2.7.Final', + 'org.hibernate.orm:hibernate-hikaricp:7.2.7.Final', // For SchemaExport - 'org.hibernate.orm:hibernate-ant:[6.0,6.6)!!', + 'org.hibernate.orm:hibernate-ant:7.2.7.Final', // Netty 4.2 is in alpha and causes runtime error. Also note that v5.0 // seems abandoned (last updated on Maven in 2015). @@ -62,22 +61,23 @@ ext { // google-api-client major version 1. 'com.google.apis:google-api-services-dns:[v1-rev20240419-2.0.0, v2beta)', - // Soy requires a version below 4.0.0, as its (now unmaintained) dependency - // com.google.common.html.types:types does not work with higher versions of protobuf. - 'com.google.protobuf:protobuf-java:[3.25.5, 4.0.0)!!', + // Protobuf changes can be very breaking, so stay with 4.x + 'com.google.protobuf:protobuf-java:[3.25.5, 5.0.0)!!', + 'com.google.protobuf:protobuf-java-util:[3.17.3, 5.0.0)!!', + 'com.google.cloud:google-cloud-tasks:[1.33.2,2.52.0)!!', + 'com.google.api.grpc:proto-google-cloud-tasks-v2:[1.33.2,2.52.0)!!', // DYNAMIC VERSIONS START HERE. - 'com.fasterxml.jackson.core:jackson-databind:[2.11.2,)', - 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:[2.17.2,)', + 'com.fasterxml.jackson.core:jackson-databind:[2.11.2,2.21.0)', + 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:[2.17.2,2.21.0)', 'com.github.ben-manes.caffeine:caffeine:[3.0.0,)', 'com.google.api-client:google-api-client-java6:[1.31.3,)', 'com.google.api-client:google-api-client-servlet:[1.31.3,)', 'com.google.api-client:google-api-client:[1.31.3,)', - 'com.google.api.grpc:proto-google-cloud-secretmanager-v1:[1.4.0,)', - 'com.google.api.grpc:proto-google-cloud-tasks-v2:[1.33.2,)', - 'com.google.api.grpc:proto-google-common-protos:[2.1.0,)', - 'com.google.api:gax:[1.66.0,)', + 'com.google.api.grpc:proto-google-cloud-secretmanager-v1:[1.4.0,2.52.0)!!', + 'com.google.api.grpc:proto-google-common-protos:[2.1.0,2.61.0)!!', + 'com.google.api:gax:[1.66.0,2.75.0)!!', 'com.google.apis:google-api-services-admin-directory:[directory_v1-rev20240102-2.0.0,)', 'com.google.apis:google-api-services-bigquery:[v2-rev20240423-2.0.0,)', 'com.google.apis:google-api-services-cloudkms:[v1-rev20240513-2.0.0,)', @@ -97,13 +97,12 @@ ext { 'com.google.cloud.bigdataoss:util:[2.2.6,)', 'com.google.cloud.sql:jdbc-socket-factory-core:[1.2.1,)', 'com.google.cloud.sql:postgres-socket-factory:[1.2.1,)', - 'com.google.cloud:google-cloud-compute:[1.64.0,)', - 'com.google.cloud:google-cloud-core-http:[1.94.3,)', - 'com.google.cloud:google-cloud-core:[1.94.3,)', - 'com.google.cloud:google-cloud-nio:[0.123.4,)', - 'com.google.cloud:google-cloud-secretmanager:[1.4.0,)', - 'com.google.cloud:google-cloud-storage:[2.26.0,)', - 'com.google.cloud:google-cloud-tasks:[1.33.2,)', + 'com.google.cloud:google-cloud-compute:[1.64.0,1.83.0)!!', + 'com.google.cloud:google-cloud-core-http:[1.94.3,2.52.0)!!', + 'com.google.cloud:google-cloud-core:[1.94.3,2.52.0)!!', + 'com.google.cloud:google-cloud-nio:[0.123.4,2.52.0)!!', + 'com.google.cloud:google-cloud-secretmanager:[1.4.0,2.52.0)!!', + 'com.google.cloud:google-cloud-storage:[2.26.0,2.52.0)!!', 'com.google.code.findbugs:jsr305:[3.0.2,)', 'com.google.code.gson:gson:[2.8.6,)', 'com.google.dagger:dagger-compiler:[2.55,)', @@ -123,7 +122,6 @@ ext { 'com.google.oauth-client:google-oauth-client-jetty:[1.31.4,)', 'com.google.oauth-client:google-oauth-client-servlet:[1.31.4,)', 'com.google.oauth-client:google-oauth-client:[1.31.4,)', - 'com.google.protobuf:protobuf-java-util:[3.17.3,)', 'com.google.re2j:re2j:[1.6,)', 'com.google.template:soy:[2024-02-26,)', 'com.google.truth:truth:[1.1.2,)', @@ -140,8 +138,8 @@ ext { 'io.netty:netty-tcnative-boringssl-static:[2.0.36.Final,)', 'jakarta.inject:jakarta.inject-api:[2.0.0,)', 'jakarta.mail:jakarta.mail-api:[2.1.3,)', - 'jakarta.persistence:jakarta.persistence-api:[3.2.0,)', - 'jakarta.servlet:jakarta.servlet-api:[6.0,)', + 'jakarta.persistence:jakarta.persistence-api:[3.2.0,4.+)', + 'jakarta.servlet:jakarta.servlet-api:[6.0,6.1)', 'jakarta.xml.bind:jakarta.xml.bind-api:[4.0.2,)', 'joda-time:joda-time:[2.9.2,)', // Antlr is not a direct dependency, but we need to ensure that the @@ -149,12 +147,12 @@ ext { 'org.antlr:antlr4-runtime:[4.13.2,)', 'org.antlr:antlr4:[4.13.2,)', 'org.apache.avro:avro:[1.11.4,)', - 'org.apache.beam:beam-runners-core-construction-java:[2.37.0,)', - 'org.apache.beam:beam-runners-direct-java:[2.37.0,)', - 'org.apache.beam:beam-runners-google-cloud-dataflow-java:[2.37.0,)', - 'org.apache.beam:beam-sdks-java-core:[2.37.0,)', - 'org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:[2.37.0,)', - 'org.apache.beam:beam-sdks-java-io-google-cloud-platform:[2.37.0,)', + 'org.apache.beam:beam-runners-core-construction-java:[2.37.0,2.61.0)!!', + 'org.apache.beam:beam-runners-direct-java:[2.37.0,2.61.0)!!', + 'org.apache.beam:beam-runners-google-cloud-dataflow-java:[2.37.0,2.61.0)!!', + 'org.apache.beam:beam-sdks-java-core:[2.37.0,2.61.0)!!', + 'org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:[2.37.0,2.61.0)!!', + 'org.apache.beam:beam-sdks-java-io-google-cloud-platform:[2.37.0,2.61.0)!!', 'org.apache.commons:commons-csv:[1.9.0,)', 'org.apache.commons:commons-lang3:[3.8.1,)', 'org.apache.commons:commons-text:[1.6,)', @@ -182,8 +180,8 @@ ext { 'org.hamcrest:hamcrest-core:[2.2,)', 'org.hamcrest:hamcrest-library:[2.2,)', 'org.hamcrest:hamcrest:[2.2,)', - 'org.jcommander:jcommander:[2.0,)', - 'org.jline:jline:[3.0,)', + 'org.jcommander:jcommander:[2.0,3.0)', + 'org.jline:jline:[3.0,3.30.6)', 'org.joda:joda-money:[1.0.1,)', 'org.json:json:[20160810,)', 'org.jsoup:jsoup:[1.13.1,)', diff --git a/jetty/gradle.lockfile b/jetty/gradle.lockfile index 105282f56..d81721ba3 100644 --- a/jetty/gradle.lockfile +++ b/jetty/gradle.lockfile @@ -4,134 +4,129 @@ aopalliance:aopalliance:1.0=annotationProcessor,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testRuntimeClasspath args4j:args4j:2.33=deploy_jar,runtimeClasspath,testRuntimeClasspath com.charleskorn.kaml:kaml:0.20.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-annotations:2.20-rc1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-core:2.20.0-rc1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-databind:2.20.0-rc1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.0-rc1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.20.0-rc1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.20.0-rc1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson:jackson-bom:2.20.0-rc1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.fasterxml:classmate:1.5.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-annotations:2.21=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-core:2.20.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-databind:2.20.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-joda:2.20.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.20.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.fasterxml.jackson:jackson-bom:2.20.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.fasterxml:classmate:1.7.1=deploy_jar,runtimeClasspath,testRuntimeClasspath com.github.ben-manes.caffeine:caffeine:3.0.5=annotationProcessor,errorprone,testAnnotationProcessor -com.github.ben-manes.caffeine:caffeine:3.2.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.ben-manes.caffeine:caffeine:3.2.3=deploy_jar,runtimeClasspath,testRuntimeClasspath com.github.docker-java:docker-java-api:3.4.2=deploy_jar,runtimeClasspath,testRuntimeClasspath com.github.docker-java:docker-java-transport-zerodep:3.4.2=deploy_jar,runtimeClasspath,testRuntimeClasspath com.github.docker-java:docker-java-transport:3.4.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.github.jnr:jffi:1.3.13=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jffi:1.3.14=deploy_jar,runtimeClasspath,testRuntimeClasspath com.github.jnr:jnr-a64asm:1.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.github.jnr:jnr-constants:0.10.4=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.github.jnr:jnr-enxio:0.32.18=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.github.jnr:jnr-ffi:2.2.17=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.github.jnr:jnr-posix:3.1.20=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.github.jnr:jnr-unixsocket:0.38.23=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-enxio:0.32.19=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-ffi:2.2.18=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-posix:3.1.21=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.github.jnr:jnr-unixsocket:0.38.24=deploy_jar,runtimeClasspath,testRuntimeClasspath com.github.jnr:jnr-x86asm:1.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath com.github.kevinstern:software-and-algorithms:1.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.android:annotations:4.1.1.4=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.api-client:google-api-client-jackson2:2.7.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.api-client:google-api-client-java6:2.1.4=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.api-client:google-api-client-servlet:2.7.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api-client:google-api-client:2.8.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:gapic-google-cloud-storage-v2:2.44.1-beta=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:3.15.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.187.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.187.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.122.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.15.9=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.95.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.95.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.95.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-storage-control-v2:2.44.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-storage-v2:2.44.1-beta=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-common-protos:2.58.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:3.15.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1alpha:3.15.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.187.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.187.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta:3.15.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api-client:google-api-client:2.9.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:gapic-google-cloud-storage-v2:2.51.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:3.9.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.181.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.181.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.44.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.115.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.14.3=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.77.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.77.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-spanner-v1:6.77.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-storage-v2:2.51.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-common-protos:2.45.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:3.9.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1alpha:3.9.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.181.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.181.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.44.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-bigtable-v2:2.44.1=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.api.grpc:proto-google-cloud-compute-v1:1.82.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-datastore-v1:0.120.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-firestore-v1:3.31.6=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-monitoring-v3:3.65.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.122.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.15.9=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-datastore-v1:0.113.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-firestore-v1:3.26.5=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-monitoring-v3:3.52.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-pubsub-v1:1.115.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.14.3=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.51.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.api.grpc:proto-google-cloud-secretmanager-v1beta2:2.51.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.95.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.95.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-spanner-v1:6.95.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-storage-control-v2:2.44.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-storage-v2:2.44.1-beta=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.77.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.77.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-spanner-v1:6.77.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-storage-v2:2.51.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.api.grpc:proto-google-cloud-tasks-v2:2.51.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.141.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.141.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.api.grpc:proto-google-common-protos:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-iam-v1:1.53.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api:api-common:2.52.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api:gax-grpc:2.67.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-iam-v1:1.50.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:api-common:2.57.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax-grpc:2.64.1=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.api:gax-httpjson:2.69.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api:gax:2.69.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.apis:google-api-services-admin-directory:directory_v1-rev20250804-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.apis:google-api-services-bigquery:v2-rev20250511-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax:2.74.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-admin-directory:directory_v1-rev20260227-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-bigquery:v2-rev20240815-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.apis:google-api-services-cloudresourcemanager:v1-rev20240310-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.apis:google-api-services-dataflow:v1b3-rev20250812-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.apis:google-api-services-dns:v1-rev20250411-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.apis:google-api-services-drive:v3-rev20250723-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.apis:google-api-services-gmail:v1-rev20250630-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-dataflow:v1b3-rev20260213-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-dns:v1-rev20260219-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-drive:v3-rev20260305-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-gmail:v1-rev20260112-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.apis:google-api-services-groupssettings:v1-rev20220614-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.apis:google-api-services-healthcare:v1-rev20240130-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.apis:google-api-services-iam:v2-rev20250502-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.apis:google-api-services-iamcredentials:v1-rev20211203-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.apis:google-api-services-monitoring:v3-rev20250731-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-monitoring:v3-rev20260129-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.apis:google-api-services-pubsub:v1-rev20220904-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.apis:google-api-services-sheets:v4-rev20250616-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.apis:google-api-services-sqladmin:v1beta4-rev20250613-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.apis:google-api-services-storage:v1-rev20250524-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-credentials:1.37.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-oauth2-http:1.37.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-sheets:v4-rev20260213-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-sqladmin:v1beta4-rev20251201-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-storage:v1-rev20250312-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-credentials:1.43.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-oauth2-http:1.43.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.auto.service:auto-service-annotations:1.0.1=annotationProcessor,errorprone,testAnnotationProcessor com.google.auto.service:auto-service-annotations:1.1.1=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.auto.value:auto-value-annotations:1.11.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.auto.value:auto-value-annotations:1.9=annotationProcessor,errorprone,testAnnotationProcessor com.google.auto.value:auto-value:1.11.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.auto:auto-common:1.2.1=annotationProcessor,errorprone,testAnnotationProcessor -com.google.cloud.bigdataoss:gcsio:2.2.26=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud.bigdataoss:util:2.2.26=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud.bigdataoss:gcsio:2.2.16=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud.bigdataoss:util:2.2.16=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.cloud.bigtable:bigtable-client-core-config:1.28.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud.datastore:datastore-v1-proto-client:2.29.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud.datastore:datastore-v1-proto-client:2.21.2=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.cloud.opentelemetry:detector-resources-support:0.33.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.cloud.opentelemetry:exporter-metrics:0.33.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.cloud.opentelemetry:shared-resourcemapping:0.33.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud.sql:jdbc-socket-factory-core:1.25.3=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud.sql:postgres-socket-factory:1.25.3=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-bigquerystorage:3.15.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-bigtable:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud.sql:jdbc-socket-factory-core:1.28.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud.sql:postgres-socket-factory:1.28.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-bigquerystorage:3.9.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-bigtable:2.44.1=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.cloud:google-cloud-compute:1.82.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core-grpc:2.57.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core-http:2.47.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core:2.57.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-firestore:3.31.6=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-monitoring:3.65.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-pubsub:1.140.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-pubsublite:1.15.9=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core-grpc:2.54.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core-http:2.54.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core:2.51.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-firestore:3.26.5=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-monitoring:3.52.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-pubsub:1.133.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-pubsublite:1.14.3=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.cloud:google-cloud-secretmanager:2.51.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-spanner:6.95.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-storage-control:2.44.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-storage:2.44.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-spanner:6.77.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-storage:2.51.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.cloud:google-cloud-tasks:2.51.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.cloud:grpc-gcp:1.6.1=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.cloud:libraries-bom:26.48.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.31.6=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.26.5=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testRuntimeClasspath com.google.code.gson:gson:2.12.1=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.common.html.types:types:1.0.8=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.dagger:dagger:2.57=deploy_jar -com.google.dagger:dagger:2.57.1=runtimeClasspath,testRuntimeClasspath +com.google.dagger:dagger:2.59.2=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.errorprone:error_prone_annotation:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_annotations:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor -com.google.errorprone:error_prone_annotations:2.41.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.48.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.errorprone:error_prone_annotations:2.7.1=checkstyle com.google.errorprone:error_prone_check_api:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_core:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor @@ -147,19 +142,19 @@ com.google.guava:failureaccess:1.0.3=deploy_jar,runtimeClasspath,testRuntimeClas com.google.guava:guava-parent:32.1.1-jre=annotationProcessor,errorprone,testAnnotationProcessor com.google.guava:guava:31.0.1-jre=checkstyle com.google.guava:guava:32.1.1-jre=annotationProcessor,errorprone,testAnnotationProcessor -com.google.guava:guava:33.4.8-jre=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.guava:guava:33.5.0-jre=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.gwt:gwt-user:2.10.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.http-client:google-http-client-apache-v2:2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-appengine:1.45.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-gson:2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-jackson2:1.45.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-protobuf:1.47.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.http-client:google-http-client:2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-appengine:1.46.3=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-gson:2.1.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-jackson2:1.46.3=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-protobuf:1.45.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client:2.1.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.inject:guice:5.1.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.inject:guice:7.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.j2objc:j2objc-annotations:1.3=checkstyle -com.google.j2objc:j2objc-annotations:3.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.j2objc:j2objc-annotations:3.1=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.jsinterop:jsinterop-annotations:2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.monitoring-client:metrics:1.0.7=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.monitoring-client:stackdriver:1.0.7=deploy_jar,runtimeClasspath,testRuntimeClasspath @@ -167,12 +162,12 @@ com.google.oauth-client:google-oauth-client-java6:1.36.0=deploy_jar,runtimeClass com.google.oauth-client:google-oauth-client-jetty:1.36.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.oauth-client:google-oauth-client-servlet:1.36.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.oauth-client:google-oauth-client:1.39.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.protobuf:protobuf-java-util:4.29.4=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java-util:4.33.2=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.protobuf:protobuf-java:3.19.6=annotationProcessor,errorprone,testAnnotationProcessor -com.google.protobuf:protobuf-java:3.25.8=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.re2j:re2j:1.8=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:4.34.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.re2j:re2j:1.7=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.template:soy:2024-02-26=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.truth:truth:1.4.4=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.truth:truth:1.4.5=deploy_jar,runtimeClasspath,testRuntimeClasspath com.googlecode.json-simple:json-simple:1.1.1=deploy_jar,runtimeClasspath,testRuntimeClasspath com.ibm.icu:icu4j:73.2=deploy_jar,runtimeClasspath,testRuntimeClasspath com.jcraft:jsch:0.1.55=deploy_jar,runtimeClasspath,testRuntimeClasspath @@ -197,40 +192,39 @@ com.squareup.wire:wire-swift-generator:4.5.0=deploy_jar,runtimeClasspath,testRun com.squareup:javapoet:1.13.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.squareup:kotlinpoet-jvm:1.15.1=deploy_jar,runtimeClasspath,testRuntimeClasspath com.squareup:kotlinpoet:1.15.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.sun.istack:istack-commons-runtime:4.1.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.zaxxer:HikariCP:7.0.1=deploy_jar -com.zaxxer:HikariCP:7.0.2=runtimeClasspath,testRuntimeClasspath +com.sun.istack:istack-commons-runtime:4.1.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.zaxxer:HikariCP:7.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath commons-beanutils:commons-beanutils:1.9.4=checkstyle commons-codec:commons-codec:1.19.0=deploy_jar,runtimeClasspath,testRuntimeClasspath commons-collections:commons-collections:3.2.2=checkstyle commons-io:commons-io:2.20.0=deploy_jar,runtimeClasspath,testRuntimeClasspath commons-logging:commons-logging:1.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -dnsjava:dnsjava:3.6.3=deploy_jar,runtimeClasspath,testRuntimeClasspath +dnsjava:dnsjava:3.6.4=deploy_jar,runtimeClasspath,testRuntimeClasspath info.picocli:picocli:4.6.2=checkstyle io.apicurio:apicurio-registry-protobuf-schema-utilities:3.0.0.M2=deploy_jar,runtimeClasspath,testRuntimeClasspath io.github.classgraph:classgraph:4.8.162=deploy_jar,runtimeClasspath,testRuntimeClasspath io.github.eisop:dataflow-errorprone:3.34.0-eisop1=annotationProcessor,errorprone,testAnnotationProcessor io.github.java-diff-utils:java-diff-utils:4.12=annotationProcessor,errorprone,testAnnotationProcessor io.github.java-diff-utils:java-diff-utils:4.16=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-alts:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-alts:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath io.grpc:grpc-api:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-auth:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-census:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-auth:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-census:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath io.grpc:grpc-context:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-core:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-googleapis:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-grpclb:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-inprocess:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-netty-shaded:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-netty:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-opentelemetry:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf-lite:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-rls:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-services:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-stub:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-util:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-xds:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-core:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-googleapis:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-grpclb:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-inprocess:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-netty-shaded:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-netty:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-opentelemetry:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf-lite:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-rls:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-services:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-stub:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-util:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-xds:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath io.netty:netty-buffer:4.1.110.Final=deploy_jar,runtimeClasspath,testRuntimeClasspath io.netty:netty-codec-http2:4.1.110.Final=deploy_jar,runtimeClasspath,testRuntimeClasspath io.netty:netty-codec-http:4.1.110.Final=deploy_jar,runtimeClasspath,testRuntimeClasspath @@ -254,7 +248,6 @@ io.opencensus:opencensus-exporter-metrics-util:0.31.0=deploy_jar,runtimeClasspat io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0=deploy_jar,runtimeClasspath,testRuntimeClasspath io.opencensus:opencensus-impl-core:0.31.0=deploy_jar,runtimeClasspath,testRuntimeClasspath io.opencensus:opencensus-impl:0.31.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.opencensus:opencensus-proto:0.2.0=deploy_jar,runtimeClasspath,testRuntimeClasspath io.opentelemetry.contrib:opentelemetry-gcp-resources:1.37.0-alpha=deploy_jar,runtimeClasspath,testRuntimeClasspath io.opentelemetry.instrumentation:opentelemetry-grpc-1.6:2.1.0-alpha=deploy_jar,runtimeClasspath,testRuntimeClasspath io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-incubator:2.1.0-alpha=deploy_jar,runtimeClasspath,testRuntimeClasspath @@ -266,7 +259,7 @@ io.opentelemetry:opentelemetry-bom:1.42.1=deploy_jar,runtimeClasspath,testRuntim io.opentelemetry:opentelemetry-context:1.47.0=deploy_jar,runtimeClasspath,testRuntimeClasspath io.opentelemetry:opentelemetry-extension-incubator:1.35.0-alpha=deploy_jar,runtimeClasspath,testRuntimeClasspath io.opentelemetry:opentelemetry-sdk-common:1.47.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.42.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.47.0=deploy_jar,runtimeClasspath,testRuntimeClasspath io.opentelemetry:opentelemetry-sdk-logs:1.47.0=deploy_jar,runtimeClasspath,testRuntimeClasspath io.opentelemetry:opentelemetry-sdk-metrics:1.47.0=deploy_jar,runtimeClasspath,testRuntimeClasspath io.opentelemetry:opentelemetry-sdk-trace:1.47.0=deploy_jar,runtimeClasspath,testRuntimeClasspath @@ -274,15 +267,14 @@ io.opentelemetry:opentelemetry-sdk:1.47.0=deploy_jar,runtimeClasspath,testRuntim io.opentelemetry:opentelemetry-semconv:1.26.0-alpha=deploy_jar,runtimeClasspath,testRuntimeClasspath io.outfoxx:swiftpoet:1.3.1=deploy_jar,runtimeClasspath,testRuntimeClasspath io.perfmark:perfmark-api:0.27.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.smallrye:jandex:3.1.2=deploy_jar,runtimeClasspath,testRuntimeClasspath jakarta-regexp:jakarta-regexp:1.4=deploy_jar,runtimeClasspath,testRuntimeClasspath -jakarta.activation:jakarta.activation-api:2.1.3=deploy_jar,runtimeClasspath,testRuntimeClasspath +jakarta.activation:jakarta.activation-api:2.2.0-M1=deploy_jar,runtimeClasspath,testRuntimeClasspath jakarta.inject:jakarta.inject-api:2.0.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -jakarta.mail:jakarta.mail-api:2.1.3=deploy_jar,runtimeClasspath,testRuntimeClasspath +jakarta.mail:jakarta.mail-api:2.2.0-M1=deploy_jar,runtimeClasspath,testRuntimeClasspath jakarta.persistence:jakarta.persistence-api:3.2.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -jakarta.servlet:jakarta.servlet-api:6.1.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +jakarta.servlet:jakarta.servlet-api:6.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath jakarta.transaction:jakarta.transaction-api:2.0.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -jakarta.xml.bind:jakarta.xml.bind-api:4.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:4.0.4=deploy_jar,runtimeClasspath,testRuntimeClasspath javax.annotation:javax.annotation-api:1.3.2=deploy_jar,runtimeClasspath,testRuntimeClasspath javax.annotation:jsr250-api:1.0=deploy_jar,runtimeClasspath,testRuntimeClasspath javax.inject:javax.inject:1=annotationProcessor,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testRuntimeClasspath @@ -290,7 +282,7 @@ javax.jdo:jdo2-api:2.3-20090302111651=deploy_jar,runtimeClasspath,testRuntimeCla javax.validation:validation-api:1.0.0.GA=deploy_jar,runtimeClasspath,testRuntimeClasspath joda-time:joda-time:2.12.7=deploy_jar,runtimeClasspath,testRuntimeClasspath junit:junit:4.13.2=testRuntimeClasspath -net.bytebuddy:byte-buddy:1.14.15=deploy_jar,runtimeClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy:1.17.8=deploy_jar,runtimeClasspath,testRuntimeClasspath net.java.dev.jna:jna:5.13.0=deploy_jar,runtimeClasspath,testRuntimeClasspath net.sf.saxon:Saxon-HE:10.6=checkstyle org.abego.treelayout:org.abego.treelayout.core:1.0.3=deploy_jar,runtimeClasspath,testRuntimeClasspath @@ -302,63 +294,61 @@ org.antlr:antlr4:4.13.2=deploy_jar,runtimeClasspath,testRuntimeClasspath org.apache.arrow:arrow-format:15.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath org.apache.arrow:arrow-memory-core:15.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath org.apache.arrow:arrow-vector:15.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.avro:avro:1.11.4=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.beam:beam-model-fn-execution:2.67.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.beam:beam-model-job-management:2.67.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.beam:beam-model-pipeline:2.67.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-core-java:2.67.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.67.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-java-fn-execution:2.67.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-core:2.67.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-expansion-service:2.67.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-arrow:2.67.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-avro:2.67.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.67.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-protobuf:2.67.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-harness:2.67.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.67.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-transform-service-launcher:2.67.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.beam:beam-vendor-grpc-1_69_0:0.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.avro:avro:1.12.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-model-fn-execution:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-model-job-management:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-model-pipeline:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-core-java:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-google-cloud-dataflow-java:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-runners-java-fn-execution:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-core:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-expansion-service:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-arrow:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-avro:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-extensions-protobuf:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-harness:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-sdks-java-transform-service-launcher:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.beam:beam-vendor-grpc-1_60_1:0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath org.apache.beam:beam-vendor-guava-32_1_2-jre:0.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.commons:commons-compress:1.26.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.commons:commons-compress:1.28.0=deploy_jar,runtimeClasspath,testRuntimeClasspath org.apache.commons:commons-csv:1.14.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.apache.commons:commons-lang3:3.14.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.apache.commons:commons-lang3:3.18.0=deploy_jar,runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpclient:4.5.14=deploy_jar,runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.16=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.bouncycastle:bcpg-jdk18on:1.81=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.bouncycastle:bcpkix-jdk18on:1.81=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.bouncycastle:bcprov-jdk18on:1.81=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.bouncycastle:bcutil-jdk18on:1.81=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.bouncycastle:bcpg-jdk18on:1.83=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.bouncycastle:bcpkix-jdk18on:1.83=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.bouncycastle:bcprov-jdk18on:1.83=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.bouncycastle:bcutil-jdk18on:1.83=deploy_jar,runtimeClasspath,testRuntimeClasspath org.checkerframework:checker-compat-qual:2.5.6=deploy_jar,runtimeClasspath,testRuntimeClasspath org.checkerframework:checker-qual:3.12.0=checkstyle org.checkerframework:checker-qual:3.33.0=annotationProcessor,errorprone,testAnnotationProcessor -org.checkerframework:checker-qual:3.49.3=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.checkerframework:checker-qual:3.52.0=deploy_jar,runtimeClasspath,testRuntimeClasspath org.codehaus.mojo:animal-sniffer-annotations:1.24=deploy_jar,runtimeClasspath,testRuntimeClasspath org.conscrypt:conscrypt-openjdk-uber:2.5.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.eclipse.angus:angus-activation:2.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.eclipse.angus:jakarta.mail:2.0.4=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.eclipse.angus:angus-activation:2.1.0-M1=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.eclipse.angus:jakarta.mail:2.1.0-M1=deploy_jar,runtimeClasspath,testRuntimeClasspath org.eclipse.collections:eclipse-collections-api:11.1.0=deploy_jar,runtimeClasspath,testRuntimeClasspath org.eclipse.collections:eclipse-collections:11.1.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.flywaydb:flyway-core:11.11.1=deploy_jar -org.flywaydb:flyway-core:11.11.2=runtimeClasspath,testRuntimeClasspath -org.flywaydb:flyway-database-postgresql:11.11.1=deploy_jar -org.flywaydb:flyway-database-postgresql:11.11.2=runtimeClasspath,testRuntimeClasspath -org.glassfish.jaxb:jaxb-core:4.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.glassfish.jaxb:jaxb-runtime:4.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.glassfish.jaxb:txw2:4.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.flywaydb:flyway-core:12.1.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.flywaydb:flyway-database-postgresql:12.1.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.glassfish.jaxb:jaxb-core:4.0.6=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.glassfish.jaxb:jaxb-runtime:4.0.6=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.glassfish.jaxb:txw2:4.0.6=deploy_jar,runtimeClasspath,testRuntimeClasspath org.gwtproject:gwt-user:2.10.0=deploy_jar,runtimeClasspath,testRuntimeClasspath org.hamcrest:hamcrest-core:1.3=testRuntimeClasspath org.hamcrest:hamcrest:2.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.hibernate.common:hibernate-commons-annotations:6.0.6.Final=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-ant:6.5.3.Final=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-core:6.5.3.Final=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-hikaricp:6.5.3.Final=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.hibernate.models:hibernate-models:1.0.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.hibernate.orm:hibernate-ant:7.2.7.Final=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.hibernate.orm:hibernate-core:7.2.7.Final=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.hibernate.orm:hibernate-hikaricp:7.2.7.Final=deploy_jar,runtimeClasspath,testRuntimeClasspath org.jacoco:org.jacoco.agent:0.8.12=jacocoAgent,jacocoAnt org.jacoco:org.jacoco.ant:0.8.12=jacocoAnt org.jacoco:org.jacoco.core:0.8.12=jacocoAnt org.jacoco:org.jacoco.report:0.8.12=jacocoAnt org.javassist:javassist:3.28.0-GA=checkstyle -org.jboss.logging:jboss-logging:3.5.0.Final=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.jboss.logging:jboss-logging:3.6.1.Final=deploy_jar,runtimeClasspath,testRuntimeClasspath org.jcommander:jcommander:2.0=deploy_jar,runtimeClasspath,testRuntimeClasspath org.jetbrains.kotlin:kotlin-bom:1.4.0=deploy_jar,runtimeClasspath,testRuntimeClasspath org.jetbrains.kotlin:kotlin-reflect:1.9.20=deploy_jar,runtimeClasspath,testRuntimeClasspath @@ -374,9 +364,9 @@ org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.0.1=deploy_jar,runtimeCla org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.1=deploy_jar,runtimeClasspath,testRuntimeClasspath org.jetbrains:annotations:17.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath org.jline:jline:3.30.5=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.joda:joda-money:2.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.json:json:20250107=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.jsoup:jsoup:1.21.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.joda:joda-money:2.0.3=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.json:json:20240303=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.jsoup:jsoup:1.22.1=deploy_jar,runtimeClasspath,testRuntimeClasspath org.jspecify:jspecify:1.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath org.ogce:xpp3:1.1.6=deploy_jar,runtimeClasspath,testRuntimeClasspath org.ow2.asm:asm-analysis:9.7.1=deploy_jar,runtimeClasspath,testRuntimeClasspath @@ -386,38 +376,32 @@ org.ow2.asm:asm-tree:9.7=jacocoAnt org.ow2.asm:asm-tree:9.7.1=deploy_jar,runtimeClasspath,testRuntimeClasspath org.ow2.asm:asm-util:9.7.1=deploy_jar,runtimeClasspath,testRuntimeClasspath org.ow2.asm:asm:9.7=jacocoAnt -org.ow2.asm:asm:9.7.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.ow2.asm:asm:9.8=deploy_jar,runtimeClasspath,testRuntimeClasspath org.pcollections:pcollections:3.1.4=annotationProcessor,errorprone,testAnnotationProcessor -org.postgresql:postgresql:42.7.7=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.postgresql:postgresql:42.7.10=deploy_jar,runtimeClasspath,testRuntimeClasspath org.reflections:reflections:0.10.2=checkstyle org.rnorth.duct-tape:duct-tape:1.0.8=deploy_jar,runtimeClasspath,testRuntimeClasspath org.slf4j:slf4j-api:2.0.17=deploy_jar,runtimeClasspath,testRuntimeClasspath org.slf4j:slf4j-jdk14:2.0.17=deploy_jar,runtimeClasspath,testRuntimeClasspath org.snakeyaml:snakeyaml-engine:2.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.testcontainers:database-commons:1.21.3=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.testcontainers:jdbc:1.21.3=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.testcontainers:postgresql:1.21.3=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.testcontainers:testcontainers:1.21.3=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.testcontainers:database-commons:1.21.4=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.testcontainers:jdbc:1.21.4=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.testcontainers:postgresql:1.21.4=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.testcontainers:testcontainers:1.21.4=deploy_jar,runtimeClasspath,testRuntimeClasspath org.threeten:threetenbp:1.7.0=deploy_jar,runtimeClasspath,testRuntimeClasspath org.w3c.css:sac:1.3=deploy_jar,runtimeClasspath,testRuntimeClasspath org.xerial.snappy:snappy-java:1.1.10.4=deploy_jar,runtimeClasspath,testRuntimeClasspath org.yaml:snakeyaml:2.4=deploy_jar,runtimeClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-api:16.26.3=deploy_jar -us.fatehi:schemacrawler-api:16.27.1=runtimeClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-diagram:16.26.3=deploy_jar -us.fatehi:schemacrawler-diagram:16.27.1=runtimeClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-loader:16.26.3=deploy_jar -us.fatehi:schemacrawler-loader:16.27.1=runtimeClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-operations:16.27.1=runtimeClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-postgresql:16.26.3=deploy_jar -us.fatehi:schemacrawler-postgresql:16.27.1=runtimeClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-text:16.26.3=deploy_jar -us.fatehi:schemacrawler-text:16.27.1=runtimeClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-tools:16.26.3=deploy_jar -us.fatehi:schemacrawler-tools:16.27.1=runtimeClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-utility:16.26.3=deploy_jar -us.fatehi:schemacrawler-utility:16.27.1=runtimeClasspath,testRuntimeClasspath -us.fatehi:schemacrawler:16.26.3=deploy_jar -us.fatehi:schemacrawler:16.27.1=runtimeClasspath,testRuntimeClasspath +tools.jackson.core:jackson-core:3.1.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +tools.jackson.core:jackson-databind:3.1.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +tools.jackson:jackson-bom:3.1.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-api:17.1.7=deploy_jar,runtimeClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-diagram:17.8.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-operations:17.8.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-postgresql:17.8.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-text:17.8.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-tools:17.1.7=deploy_jar,runtimeClasspath,testRuntimeClasspath +us.fatehi:schemacrawler-utility:17.1.7=deploy_jar,runtimeClasspath,testRuntimeClasspath +us.fatehi:schemacrawler:17.8.1=deploy_jar,runtimeClasspath,testRuntimeClasspath xerces:xmlParserAPIs:2.6.2=deploy_jar,runtimeClasspath,testRuntimeClasspath empty=compileClasspath,providedCompile,providedRuntime,testCompileClasspath diff --git a/load-testing/gradle.lockfile b/load-testing/gradle.lockfile index f81e9cd76..94fda9210 100644 --- a/load-testing/gradle.lockfile +++ b/load-testing/gradle.lockfile @@ -10,7 +10,7 @@ com.google.auto:auto-common:1.2.1=annotationProcessor,errorprone,testAnnotationP com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_annotation:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_annotations:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor -com.google.errorprone:error_prone_annotations:2.36.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.errorprone:error_prone_annotations:2.7.1=checkstyle com.google.errorprone:error_prone_check_api:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_core:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor @@ -23,11 +23,11 @@ com.google.guava:failureaccess:1.0.3=compileClasspath,deploy_jar,runtimeClasspat com.google.guava:guava-parent:32.1.1-jre=annotationProcessor,errorprone,testAnnotationProcessor com.google.guava:guava:31.0.1-jre=checkstyle com.google.guava:guava:32.1.1-jre=annotationProcessor,errorprone,testAnnotationProcessor -com.google.guava:guava:33.4.8-jre=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:guava:33.5.0-jre=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.inject:guice:5.1.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.j2objc:j2objc-annotations:1.3=checkstyle -com.google.j2objc:j2objc-annotations:3.0.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.j2objc:j2objc-annotations:3.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.protobuf:protobuf-java:3.19.6=annotationProcessor,errorprone,testAnnotationProcessor com.puppycrawl.tools:checkstyle:9.3=checkstyle commons-beanutils:commons-beanutils:1.9.4=checkstyle @@ -35,22 +35,22 @@ commons-collections:commons-collections:3.2.2=checkstyle info.picocli:picocli:4.6.2=checkstyle io.github.eisop:dataflow-errorprone:3.34.0-eisop1=annotationProcessor,errorprone,testAnnotationProcessor io.github.java-diff-utils:java-diff-utils:4.12=annotationProcessor,errorprone,testAnnotationProcessor -io.netty:netty-buffer:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-http:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-common:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-handler:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-resolver:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport-native-unix-common:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-buffer:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-http:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-common:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-handler:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-resolver:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-transport-native-unix-common:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-transport:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath javax.inject:javax.inject:1=annotationProcessor,errorprone,testAnnotationProcessor -joda-time:joda-time:2.14.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +joda-time:joda-time:2.14.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath net.sf.saxon:Saxon-HE:10.6=checkstyle org.antlr:antlr4-runtime:4.9.3=checkstyle -org.bouncycastle:bcpg-jdk18on:1.81=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcpkix-jdk18on:1.81=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcprov-jdk18on:1.81=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcutil-jdk18on:1.81=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcpg-jdk18on:1.83=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcpkix-jdk18on:1.83=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcprov-jdk18on:1.83=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcutil-jdk18on:1.83=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.checkerframework:checker-qual:3.12.0=checkstyle org.checkerframework:checker-qual:3.33.0=annotationProcessor,errorprone,testAnnotationProcessor org.jacoco:org.jacoco.agent:0.8.12=jacocoAgent,jacocoAnt diff --git a/networking/gradle.lockfile b/networking/gradle.lockfile index 2f9f2d2c2..833502607 100644 --- a/networking/gradle.lockfile +++ b/networking/gradle.lockfile @@ -4,121 +4,119 @@ aopalliance:aopalliance:1.0=annotationProcessor,errorprone,testAnnotationProcessor com.fasterxml.jackson.core:jackson-annotations:2.10.3=testCompileClasspath,testRuntimeClasspath com.github.ben-manes.caffeine:caffeine:3.0.5=annotationProcessor,errorprone,testAnnotationProcessor -com.github.ben-manes.caffeine:caffeine:3.2.2=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.ben-manes.caffeine:caffeine:3.2.3=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.github.docker-java:docker-java-api:3.4.2=testCompileClasspath,testRuntimeClasspath com.github.docker-java:docker-java-transport-zerodep:3.4.2=testCompileClasspath,testRuntimeClasspath com.github.docker-java:docker-java-transport:3.4.2=testCompileClasspath,testRuntimeClasspath com.github.kevinstern:software-and-algorithms:1.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.android:annotations:4.1.1.4=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.api-client:google-api-client:2.7.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2:2.72.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.162.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.162.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-common-protos:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-iam-v1:1.55.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api:api-common:2.52.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api:gax-grpc:2.69.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api:gax-httpjson:2.69.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api:gax:2.69.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.apis:google-api-services-monitoring:v3-rev20250731-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-credentials:1.37.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-oauth2-http:1.37.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2:2.51.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.141.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.141.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-common-protos:2.65.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-iam-v1:1.40.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:api-common:2.57.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax-grpc:2.54.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax-httpjson:2.54.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax:2.74.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-monitoring:v3-rev20260129-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-credentials:1.42.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-oauth2-http:1.42.1=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.auto.service:auto-service-annotations:1.0.1=annotationProcessor,errorprone,testAnnotationProcessor com.google.auto.value:auto-value-annotations:1.11.0=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.auto.value:auto-value-annotations:1.9=annotationProcessor,errorprone,testAnnotationProcessor -com.google.auto.value:auto-value:1.11.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auto.value:auto-value:1.11.1=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.auto:auto-common:1.2.1=annotationProcessor,errorprone,testAnnotationProcessor -com.google.cloud:google-cloud-tasks:2.72.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-tasks:2.51.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath com.google.code.gson:gson:2.12.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.dagger:dagger-compiler:2.57.1=annotationProcessor,testAnnotationProcessor -com.google.dagger:dagger-spi:2.57.1=annotationProcessor,testAnnotationProcessor -com.google.dagger:dagger:2.57=deploy_jar -com.google.dagger:dagger:2.57.1=annotationProcessor,compileClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -com.google.devtools.ksp:symbol-processing-api:2.1.21-2.0.2=annotationProcessor,testAnnotationProcessor +com.google.dagger:dagger-compiler:2.59.2=annotationProcessor,testAnnotationProcessor +com.google.dagger:dagger-spi:2.59.2=annotationProcessor,testAnnotationProcessor +com.google.dagger:dagger:2.59.2=annotationProcessor,compileClasspath,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.devtools.ksp:symbol-processing-api:2.2.20-2.0.3=annotationProcessor,testAnnotationProcessor com.google.errorprone:error_prone_annotation:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_annotations:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor -com.google.errorprone:error_prone_annotations:2.36.0=compileClasspath -com.google.errorprone:error_prone_annotations:2.40.0=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath +com.google.errorprone:error_prone_annotations:2.43.0=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.errorprone:error_prone_annotations:2.7.1=checkstyle com.google.errorprone:error_prone_check_api:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_core:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_type_annotations:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor -com.google.errorprone:javac-shaded:9-dev-r4023-3=annotationProcessor,testAnnotationProcessor com.google.errorprone:javac:9+181-r4173-1=errorproneJavac com.google.flogger:flogger-system-backend:0.9=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.flogger:flogger:0.9=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.googlejavaformat:google-java-format:1.5=annotationProcessor,testAnnotationProcessor +com.google.googlejavaformat:google-java-format:1.33.0=annotationProcessor,testAnnotationProcessor com.google.guava:failureaccess:1.0.1=checkstyle,errorprone -com.google.guava:failureaccess:1.0.2=annotationProcessor,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -com.google.guava:failureaccess:1.0.3=compileClasspath +com.google.guava:failureaccess:1.0.2=annotationProcessor,testAnnotationProcessor,testCompileClasspath +com.google.guava:failureaccess:1.0.3=compileClasspath,deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.guava:guava-parent:32.1.1-jre=errorprone com.google.guava:guava:31.0.1-jre=checkstyle com.google.guava:guava:32.1.1-jre=errorprone com.google.guava:guava:33.0.0-jre=annotationProcessor,testAnnotationProcessor -com.google.guava:guava:33.2.1-android=testCompileClasspath -com.google.guava:guava:33.4.0-jre=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.guava:guava:33.4.8-jre=compileClasspath +com.google.guava:guava:33.4.3-android=testCompileClasspath +com.google.guava:guava:33.5.0-jre=compileClasspath,deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=annotationProcessor,checkstyle,compileClasspath,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath com.google.http-client:google-http-client-apache-v2:1.45.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-gson:1.47.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.http-client:google-http-client:1.47.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-gson:2.1.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client:2.1.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.inject:guice:5.1.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.j2objc:j2objc-annotations:1.3=checkstyle -com.google.j2objc:j2objc-annotations:3.0.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.j2objc:j2objc-annotations:3.0.0=testCompileClasspath +com.google.j2objc:j2objc-annotations:3.1=compileClasspath,deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.oauth-client:google-oauth-client:1.36.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.protobuf:protobuf-java-util:3.25.8=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java-util:4.34.1=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.protobuf:protobuf-java:3.19.6=annotationProcessor,errorprone,testAnnotationProcessor -com.google.protobuf:protobuf-java:3.25.8=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.re2j:re2j:1.8=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.truth:truth:1.4.4=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.ibm.icu:icu4j:77.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:4.34.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.re2j:re2j:1.7=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.truth:truth:1.4.5=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.ibm.icu:icu4j:78.3=deploy_jar,runtimeClasspath,testRuntimeClasspath com.puppycrawl.tools:checkstyle:9.3=checkstyle com.squareup:javapoet:1.13.0=annotationProcessor,testAnnotationProcessor com.squareup:kotlinpoet:1.11.0=annotationProcessor,testAnnotationProcessor commons-beanutils:commons-beanutils:1.9.4=checkstyle -commons-codec:commons-codec:1.18.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.17.1=deploy_jar,runtimeClasspath,testRuntimeClasspath commons-collections:commons-collections:3.2.2=checkstyle commons-logging:commons-logging:1.2=deploy_jar,runtimeClasspath,testRuntimeClasspath info.picocli:picocli:4.6.2=checkstyle io.github.eisop:dataflow-errorprone:3.34.0-eisop1=annotationProcessor,errorprone,testAnnotationProcessor io.github.java-diff-utils:java-diff-utils:4.12=annotationProcessor,errorprone,testAnnotationProcessor io.github.java-diff-utils:java-diff-utils:4.16=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-alts:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-api:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-auth:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-context:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-core:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-googleapis:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-grpclb:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-inprocess:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-netty-shaded:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf-lite:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-services:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-stub:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-util:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-xds:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.netty:netty-buffer:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-http:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-common:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-handler:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-resolver:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-tcnative-boringssl-static:2.0.72.Final=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.netty:netty-tcnative-classes:2.0.72.Final=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.netty:netty-transport-native-unix-common:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-alts:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-api:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-auth:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-context:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-core:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-googleapis:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-grpclb:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-inprocess:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-netty-shaded:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf-lite:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-services:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-stub:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-util:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-xds:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.netty:netty-buffer:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-http:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-common:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-handler:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-resolver:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.75.Final=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.netty:netty-tcnative-classes:2.0.75.Final=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.netty:netty-transport-native-unix-common:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-transport:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath io.opencensus:opencensus-api:0.31.1=deploy_jar,runtimeClasspath,testRuntimeClasspath io.opencensus:opencensus-contrib-http-util:0.31.1=deploy_jar,runtimeClasspath,testRuntimeClasspath io.perfmark:perfmark-api:0.27.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -jakarta.activation:jakarta.activation-api:2.1.3=deploy_jar,runtimeClasspath,testRuntimeClasspath +jakarta.activation:jakarta.activation-api:2.2.0-M1=deploy_jar,runtimeClasspath,testRuntimeClasspath jakarta.inject:jakarta.inject-api:2.0.1=annotationProcessor,compileClasspath,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -jakarta.mail:jakarta.mail-api:2.1.3=deploy_jar,runtimeClasspath,testRuntimeClasspath -jakarta.xml.bind:jakarta.xml.bind-api:4.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +jakarta.mail:jakarta.mail-api:2.2.0-M1=deploy_jar,runtimeClasspath,testRuntimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:4.0.5=deploy_jar,runtimeClasspath,testRuntimeClasspath javax.annotation:javax.annotation-api:1.3.2=deploy_jar,runtimeClasspath,testRuntimeClasspath javax.inject:javax.inject:1=annotationProcessor,compileClasspath,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -joda-time:joda-time:2.14.0=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +joda-time:joda-time:2.14.1=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath junit:junit:4.13.2=testCompileClasspath,testRuntimeClasspath net.java.dev.jna:jna:5.13.0=testCompileClasspath,testRuntimeClasspath net.ltgt.gradle.incap:incap:0.2=annotationProcessor,testAnnotationProcessor @@ -128,54 +126,55 @@ org.apache.commons:commons-compress:1.24.0=testCompileClasspath,testRuntimeClass org.apache.httpcomponents:httpclient:4.5.14=deploy_jar,runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.16=deploy_jar,runtimeClasspath,testRuntimeClasspath org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath -org.bouncycastle:bcpkix-jdk18on:1.81=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcprov-jdk18on:1.81=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcutil-jdk18on:1.81=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcpkix-jdk18on:1.83=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcprov-jdk18on:1.83=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcutil-jdk18on:1.83=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.checkerframework:checker-compat-qual:2.5.3=annotationProcessor,testAnnotationProcessor org.checkerframework:checker-compat-qual:2.5.6=deploy_jar,runtimeClasspath,testRuntimeClasspath org.checkerframework:checker-qual:3.12.0=checkstyle org.checkerframework:checker-qual:3.33.0=errorprone org.checkerframework:checker-qual:3.41.0=annotationProcessor,testAnnotationProcessor -org.checkerframework:checker-qual:3.42.0=testCompileClasspath -org.checkerframework:checker-qual:3.49.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.checkerframework:checker-qual:3.43.0=testCompileClasspath +org.checkerframework:checker-qual:3.47.0=deploy_jar,runtimeClasspath,testRuntimeClasspath org.codehaus.mojo:animal-sniffer-annotations:1.24=deploy_jar,runtimeClasspath,testRuntimeClasspath org.conscrypt:conscrypt-openjdk-uber:2.5.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.eclipse.angus:angus-activation:2.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.eclipse.angus:jakarta.mail:2.0.4=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.eclipse.angus:angus-activation:2.1.0-M1=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.eclipse.angus:jakarta.mail:2.1.0-M1=deploy_jar,runtimeClasspath,testRuntimeClasspath org.hamcrest:hamcrest-core:1.3=testCompileClasspath,testRuntimeClasspath org.jacoco:org.jacoco.agent:0.8.12=jacocoAgent,jacocoAnt org.jacoco:org.jacoco.ant:0.8.12=jacocoAnt org.jacoco:org.jacoco.core:0.8.12=jacocoAnt org.jacoco:org.jacoco.report:0.8.12=jacocoAnt org.javassist:javassist:3.28.0-GA=checkstyle -org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.21=annotationProcessor,testAnnotationProcessor +org.jetbrains.kotlin:kotlin-metadata-jvm:2.2.20=annotationProcessor,testAnnotationProcessor org.jetbrains.kotlin:kotlin-reflect:1.6.10=annotationProcessor,testAnnotationProcessor org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0=annotationProcessor,testAnnotationProcessor org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0=annotationProcessor,testAnnotationProcessor -org.jetbrains.kotlin:kotlin-stdlib:2.1.21=annotationProcessor,testAnnotationProcessor +org.jetbrains.kotlin:kotlin-stdlib:2.2.20=annotationProcessor,testAnnotationProcessor org.jetbrains:annotations:13.0=annotationProcessor,testAnnotationProcessor org.jetbrains:annotations:17.0.0=testCompileClasspath,testRuntimeClasspath org.jspecify:jspecify:1.0.0=annotationProcessor,compileClasspath,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-api:5.13.4=testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-engine:5.13.4=testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-params:5.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-commons:1.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-engine:1.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-launcher:1.13.4=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-commons:1.14.3=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-engine:1.14.3=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-launcher:1.14.3=testCompileClasspath,testRuntimeClasspath org.junit.platform:junit-platform-runner:1.13.3=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-suite-api:1.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-suite-commons:1.13.4=testRuntimeClasspath -org.junit:junit-bom:5.13.4=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-suite-api:1.14.3=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-suite-commons:1.14.3=testRuntimeClasspath +org.junit:junit-bom:5.14.3=testCompileClasspath,testRuntimeClasspath org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath org.ow2.asm:asm-commons:9.7=jacocoAnt org.ow2.asm:asm-tree:9.7=jacocoAnt -org.ow2.asm:asm:9.7=deploy_jar,jacocoAnt,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm:9.7=jacocoAnt +org.ow2.asm:asm:9.8=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.pcollections:pcollections:3.1.4=annotationProcessor,errorprone,testAnnotationProcessor org.reflections:reflections:0.10.2=checkstyle org.rnorth.duct-tape:duct-tape:1.0.8=testCompileClasspath,testRuntimeClasspath org.slf4j:slf4j-api:1.7.36=testCompileClasspath,testRuntimeClasspath -org.testcontainers:junit-jupiter:1.21.3=testCompileClasspath,testRuntimeClasspath -org.testcontainers:testcontainers:1.21.3=testCompileClasspath,testRuntimeClasspath +org.testcontainers:junit-jupiter:1.21.4=testCompileClasspath,testRuntimeClasspath +org.testcontainers:testcontainers:1.21.4=testCompileClasspath,testRuntimeClasspath org.threeten:threetenbp:1.7.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.yaml:snakeyaml:2.4=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.yaml:snakeyaml:2.6=deploy_jar,runtimeClasspath,testRuntimeClasspath empty= diff --git a/prober/gradle.lockfile b/prober/gradle.lockfile index a4b585cad..2800f2fbf 100644 --- a/prober/gradle.lockfile +++ b/prober/gradle.lockfile @@ -4,128 +4,127 @@ aopalliance:aopalliance:1.0=annotationProcessor,errorprone,testAnnotationProcessor com.fasterxml.jackson.core:jackson-annotations:2.10.3=testCompileClasspath,testRuntimeClasspath com.github.ben-manes.caffeine:caffeine:3.0.5=annotationProcessor,errorprone,testAnnotationProcessor -com.github.ben-manes.caffeine:caffeine:3.2.2=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.ben-manes.caffeine:caffeine:3.2.3=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.github.docker-java:docker-java-api:3.4.2=testCompileClasspath,testRuntimeClasspath com.github.docker-java:docker-java-transport-zerodep:3.4.2=testCompileClasspath,testRuntimeClasspath com.github.docker-java:docker-java-transport:3.4.2=testCompileClasspath,testRuntimeClasspath com.github.kevinstern:software-and-algorithms:1.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.android:annotations:4.1.1.4=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.api-client:google-api-client:2.7.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2:2.72.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.162.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.162.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-common-protos:2.60.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-iam-v1:1.55.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api:api-common:2.52.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api:gax-grpc:2.69.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api:gax-httpjson:2.69.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api:gax:2.69.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.apis:google-api-services-monitoring:v3-rev20250731-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-credentials:1.37.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-oauth2-http:1.37.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2:2.51.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.141.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.141.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-common-protos:2.65.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-iam-v1:1.40.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:api-common:2.57.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax-grpc:2.54.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax-httpjson:2.54.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api:gax:2.74.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.apis:google-api-services-monitoring:v3-rev20260129-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-credentials:1.42.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-oauth2-http:1.42.1=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.auto.service:auto-service-annotations:1.0.1=annotationProcessor,errorprone,testAnnotationProcessor -com.google.auto.value:auto-value-annotations:1.11.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.value:auto-value-annotations:1.11.0=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auto.value:auto-value-annotations:1.11.1=compileClasspath com.google.auto.value:auto-value-annotations:1.9=annotationProcessor,errorprone,testAnnotationProcessor -com.google.auto.value:auto-value:1.11.0=annotationProcessor,deploy_jar,runtimeClasspath,testAnnotationProcessor,testRuntimeClasspath +com.google.auto.value:auto-value:1.11.1=annotationProcessor,deploy_jar,runtimeClasspath,testAnnotationProcessor,testRuntimeClasspath com.google.auto:auto-common:1.2.1=annotationProcessor,errorprone,testAnnotationProcessor -com.google.cloud:google-cloud-tasks:2.72.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-tasks:2.51.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClasspath,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath com.google.code.gson:gson:2.12.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.code.gson:gson:2.13.1=compileClasspath,testCompileClasspath -com.google.dagger:dagger-compiler:2.57.1=annotationProcessor,testAnnotationProcessor -com.google.dagger:dagger-spi:2.57.1=annotationProcessor,testAnnotationProcessor -com.google.dagger:dagger:2.57=deploy_jar -com.google.dagger:dagger:2.57.1=annotationProcessor,compileClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -com.google.devtools.ksp:symbol-processing-api:2.1.21-2.0.2=annotationProcessor,testAnnotationProcessor +com.google.code.gson:gson:2.13.2=compileClasspath,testCompileClasspath +com.google.dagger:dagger-compiler:2.59.2=annotationProcessor,testAnnotationProcessor +com.google.dagger:dagger-spi:2.59.2=annotationProcessor,testAnnotationProcessor +com.google.dagger:dagger:2.59.2=annotationProcessor,compileClasspath,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.devtools.ksp:symbol-processing-api:2.2.20-2.0.3=annotationProcessor,testAnnotationProcessor com.google.errorprone:error_prone_annotation:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_annotations:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor -com.google.errorprone:error_prone_annotations:2.38.0=compileClasspath -com.google.errorprone:error_prone_annotations:2.40.0=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath +com.google.errorprone:error_prone_annotations:2.43.0=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.errorprone:error_prone_annotations:2.7.1=checkstyle com.google.errorprone:error_prone_check_api:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_core:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_type_annotations:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor -com.google.errorprone:javac-shaded:9-dev-r4023-3=annotationProcessor,testAnnotationProcessor com.google.errorprone:javac:9+181-r4173-1=errorproneJavac com.google.flogger:flogger-system-backend:0.9=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.flogger:flogger:0.9=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.googlejavaformat:google-java-format:1.5=annotationProcessor,testAnnotationProcessor +com.google.googlejavaformat:google-java-format:1.33.0=annotationProcessor,testAnnotationProcessor com.google.guava:failureaccess:1.0.1=checkstyle,errorprone -com.google.guava:failureaccess:1.0.2=annotationProcessor,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -com.google.guava:failureaccess:1.0.3=compileClasspath +com.google.guava:failureaccess:1.0.2=annotationProcessor,testAnnotationProcessor,testCompileClasspath +com.google.guava:failureaccess:1.0.3=compileClasspath,deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.guava:guava-parent:32.1.1-jre=errorprone com.google.guava:guava:31.0.1-jre=checkstyle com.google.guava:guava:32.1.1-jre=errorprone com.google.guava:guava:33.0.0-jre=annotationProcessor,testAnnotationProcessor -com.google.guava:guava:33.2.1-android=testCompileClasspath -com.google.guava:guava:33.4.0-jre=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.guava:guava:33.4.8-jre=compileClasspath +com.google.guava:guava:33.4.3-android=testCompileClasspath +com.google.guava:guava:33.5.0-jre=compileClasspath,deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=annotationProcessor,checkstyle,compileClasspath,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath com.google.http-client:google-http-client-apache-v2:1.45.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-gson:1.47.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.http-client:google-http-client:1.47.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-gson:2.1.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.http-client:google-http-client:2.1.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.inject:guice:5.1.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.j2objc:j2objc-annotations:1.3=checkstyle -com.google.j2objc:j2objc-annotations:3.0.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.j2objc:j2objc-annotations:3.0.0=testCompileClasspath +com.google.j2objc:j2objc-annotations:3.1=compileClasspath,deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.monitoring-client:contrib:1.0.7=testCompileClasspath,testRuntimeClasspath com.google.monitoring-client:metrics:1.0.7=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.oauth-client:google-oauth-client:1.36.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.protobuf:protobuf-java-util:3.25.8=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java-util:4.34.1=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.protobuf:protobuf-java:3.19.6=annotationProcessor,errorprone,testAnnotationProcessor -com.google.protobuf:protobuf-java:3.25.8=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:4.34.1=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.re2j:re2j:1.1=compileClasspath,testCompileClasspath -com.google.re2j:re2j:1.8=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.truth:truth:1.4.4=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.ibm.icu:icu4j:77.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.re2j:re2j:1.7=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.truth:truth:1.4.5=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.ibm.icu:icu4j:78.3=deploy_jar,runtimeClasspath,testRuntimeClasspath com.puppycrawl.tools:checkstyle:9.3=checkstyle com.squareup:javapoet:1.13.0=annotationProcessor,testAnnotationProcessor com.squareup:kotlinpoet:1.11.0=annotationProcessor,testAnnotationProcessor commons-beanutils:commons-beanutils:1.9.4=checkstyle -commons-codec:commons-codec:1.18.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.17.1=deploy_jar,runtimeClasspath,testRuntimeClasspath commons-collections:commons-collections:3.2.2=checkstyle commons-logging:commons-logging:1.2=deploy_jar,runtimeClasspath,testRuntimeClasspath info.picocli:picocli:4.6.2=checkstyle io.github.eisop:dataflow-errorprone:3.34.0-eisop1=annotationProcessor,errorprone,testAnnotationProcessor io.github.java-diff-utils:java-diff-utils:4.12=annotationProcessor,errorprone,testAnnotationProcessor io.github.java-diff-utils:java-diff-utils:4.16=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-alts:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-api:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-auth:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-context:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-core:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-googleapis:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-grpclb:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-inprocess:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-netty-shaded:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf-lite:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-services:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-stub:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-util:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-xds:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.netty:netty-buffer:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-http:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-common:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-handler:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-resolver:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-tcnative-boringssl-static:2.0.72.Final=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-tcnative-classes:2.0.72.Final=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport-native-unix-common:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-alts:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-api:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-auth:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-context:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-core:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-googleapis:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-grpclb:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-inprocess:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-netty-shaded:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf-lite:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-services:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-stub:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-util:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-xds:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.netty:netty-buffer:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-http:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-common:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-handler:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-resolver:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.75.Final=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-tcnative-classes:2.0.75.Final=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-transport-native-unix-common:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-transport:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath io.opencensus:opencensus-api:0.31.1=deploy_jar,runtimeClasspath,testRuntimeClasspath io.opencensus:opencensus-contrib-http-util:0.31.1=deploy_jar,runtimeClasspath,testRuntimeClasspath io.perfmark:perfmark-api:0.27.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -jakarta.activation:jakarta.activation-api:2.1.3=deploy_jar,runtimeClasspath,testRuntimeClasspath +jakarta.activation:jakarta.activation-api:2.2.0-M1=deploy_jar,runtimeClasspath,testRuntimeClasspath jakarta.inject:jakarta.inject-api:2.0.1=annotationProcessor,compileClasspath,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -jakarta.mail:jakarta.mail-api:2.1.3=deploy_jar,runtimeClasspath,testRuntimeClasspath -jakarta.xml.bind:jakarta.xml.bind-api:4.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +jakarta.mail:jakarta.mail-api:2.2.0-M1=deploy_jar,runtimeClasspath,testRuntimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:4.0.5=deploy_jar,runtimeClasspath,testRuntimeClasspath javax.annotation:javax.annotation-api:1.3.2=deploy_jar,runtimeClasspath,testRuntimeClasspath javax.inject:javax.inject:1=annotationProcessor,compileClasspath,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -joda-time:joda-time:2.14.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +joda-time:joda-time:2.14.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath junit:junit:4.13.2=testCompileClasspath,testRuntimeClasspath -net.bytebuddy:byte-buddy-agent:1.17.6=testCompileClasspath,testRuntimeClasspath -net.bytebuddy:byte-buddy:1.17.6=testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy-agent:1.17.7=testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy:1.17.7=testCompileClasspath,testRuntimeClasspath net.java.dev.jna:jna:5.13.0=testCompileClasspath,testRuntimeClasspath net.ltgt.gradle.incap:incap:0.2=annotationProcessor,testAnnotationProcessor net.sf.saxon:Saxon-HE:10.6=checkstyle @@ -134,57 +133,58 @@ org.apache.commons:commons-compress:1.24.0=testCompileClasspath,testRuntimeClass org.apache.httpcomponents:httpclient:4.5.14=deploy_jar,runtimeClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.16=deploy_jar,runtimeClasspath,testRuntimeClasspath org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath -org.bouncycastle:bcpkix-jdk18on:1.81=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcprov-jdk18on:1.81=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcutil-jdk18on:1.81=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcpkix-jdk18on:1.83=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcprov-jdk18on:1.83=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcutil-jdk18on:1.83=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.checkerframework:checker-compat-qual:2.5.3=annotationProcessor,testAnnotationProcessor org.checkerframework:checker-compat-qual:2.5.6=deploy_jar,runtimeClasspath,testRuntimeClasspath org.checkerframework:checker-qual:3.12.0=checkstyle org.checkerframework:checker-qual:3.33.0=errorprone org.checkerframework:checker-qual:3.41.0=annotationProcessor,testAnnotationProcessor -org.checkerframework:checker-qual:3.42.0=testCompileClasspath -org.checkerframework:checker-qual:3.49.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.checkerframework:checker-qual:3.43.0=testCompileClasspath +org.checkerframework:checker-qual:3.47.0=deploy_jar,runtimeClasspath,testRuntimeClasspath org.codehaus.mojo:animal-sniffer-annotations:1.24=deploy_jar,runtimeClasspath,testRuntimeClasspath org.conscrypt:conscrypt-openjdk-uber:2.5.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.eclipse.angus:angus-activation:2.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.eclipse.angus:jakarta.mail:2.0.4=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.eclipse.angus:angus-activation:2.1.0-M1=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.eclipse.angus:jakarta.mail:2.1.0-M1=deploy_jar,runtimeClasspath,testRuntimeClasspath org.hamcrest:hamcrest-core:1.3=testCompileClasspath,testRuntimeClasspath org.jacoco:org.jacoco.agent:0.8.12=jacocoAgent,jacocoAnt org.jacoco:org.jacoco.ant:0.8.12=jacocoAnt org.jacoco:org.jacoco.core:0.8.12=jacocoAnt org.jacoco:org.jacoco.report:0.8.12=jacocoAnt org.javassist:javassist:3.28.0-GA=checkstyle -org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.21=annotationProcessor,testAnnotationProcessor +org.jetbrains.kotlin:kotlin-metadata-jvm:2.2.20=annotationProcessor,testAnnotationProcessor org.jetbrains.kotlin:kotlin-reflect:1.6.10=annotationProcessor,testAnnotationProcessor org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0=annotationProcessor,testAnnotationProcessor org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0=annotationProcessor,testAnnotationProcessor -org.jetbrains.kotlin:kotlin-stdlib:2.1.21=annotationProcessor,testAnnotationProcessor +org.jetbrains.kotlin:kotlin-stdlib:2.2.20=annotationProcessor,testAnnotationProcessor org.jetbrains:annotations:13.0=annotationProcessor,testAnnotationProcessor org.jetbrains:annotations:17.0.0=testCompileClasspath,testRuntimeClasspath org.jspecify:jspecify:1.0.0=annotationProcessor,compileClasspath,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-api:5.13.4=testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-engine:5.13.4=testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-params:5.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-commons:1.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-engine:1.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-launcher:1.13.4=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-commons:1.14.3=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-engine:1.14.3=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-launcher:1.14.3=testCompileClasspath,testRuntimeClasspath org.junit.platform:junit-platform-runner:1.13.3=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-suite-api:1.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-suite-commons:1.13.4=testRuntimeClasspath -org.junit:junit-bom:5.13.4=testCompileClasspath,testRuntimeClasspath -org.mockito:mockito-core:5.19.0=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-suite-api:1.14.3=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-suite-commons:1.14.3=testRuntimeClasspath +org.junit:junit-bom:5.14.3=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-core:5.23.0=testCompileClasspath,testRuntimeClasspath org.objenesis:objenesis:3.3=testRuntimeClasspath org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath org.ow2.asm:asm-commons:9.7=jacocoAnt org.ow2.asm:asm-tree:9.7=jacocoAnt -org.ow2.asm:asm:9.7=deploy_jar,jacocoAnt,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm:9.7=jacocoAnt +org.ow2.asm:asm:9.8=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.pcollections:pcollections:3.1.4=annotationProcessor,errorprone,testAnnotationProcessor org.reflections:reflections:0.10.2=checkstyle org.rnorth.duct-tape:duct-tape:1.0.8=testCompileClasspath,testRuntimeClasspath org.slf4j:slf4j-api:1.7.36=testCompileClasspath,testRuntimeClasspath -org.testcontainers:junit-jupiter:1.21.3=testCompileClasspath,testRuntimeClasspath -org.testcontainers:testcontainers:1.21.3=testCompileClasspath,testRuntimeClasspath +org.testcontainers:junit-jupiter:1.21.4=testCompileClasspath,testRuntimeClasspath +org.testcontainers:testcontainers:1.21.4=testCompileClasspath,testRuntimeClasspath org.threeten:threetenbp:1.7.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.yaml:snakeyaml:2.4=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.yaml:snakeyaml:2.6=deploy_jar,runtimeClasspath,testRuntimeClasspath xerces:xmlParserAPIs:2.6.2=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath empty= diff --git a/processor/gradle.lockfile b/processor/gradle.lockfile index 0afb5f901..99404f6b9 100644 --- a/processor/gradle.lockfile +++ b/processor/gradle.lockfile @@ -10,7 +10,7 @@ com.google.auto:auto-common:1.2.1=annotationProcessor,errorprone,testAnnotationP com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClasspath,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath com.google.errorprone:error_prone_annotation:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_annotations:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor -com.google.errorprone:error_prone_annotations:2.36.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.errorprone:error_prone_annotations:2.7.1=checkstyle com.google.errorprone:error_prone_check_api:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_core:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor @@ -21,11 +21,11 @@ com.google.guava:failureaccess:1.0.3=compileClasspath,deploy_jar,runtimeClasspat com.google.guava:guava-parent:32.1.1-jre=annotationProcessor,errorprone,testAnnotationProcessor com.google.guava:guava:31.0.1-jre=checkstyle com.google.guava:guava:32.1.1-jre=annotationProcessor,errorprone,testAnnotationProcessor -com.google.guava:guava:33.4.8-jre=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.guava:guava:33.5.0-jre=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.inject:guice:5.1.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.j2objc:j2objc-annotations:1.3=checkstyle -com.google.j2objc:j2objc-annotations:3.0.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.j2objc:j2objc-annotations:3.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.protobuf:protobuf-java:3.19.6=annotationProcessor,errorprone,testAnnotationProcessor com.puppycrawl.tools:checkstyle:9.3=checkstyle com.squareup:javapoet:1.13.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath diff --git a/processor/src/main/java/google/registry/processors/VKeyProcessor.java b/processor/src/main/java/google/registry/processors/VKeyProcessor.java index a8b70fcf0..c3eee5e54 100644 --- a/processor/src/main/java/google/registry/processors/VKeyProcessor.java +++ b/processor/src/main/java/google/registry/processors/VKeyProcessor.java @@ -137,11 +137,8 @@ public class VKeyProcessor extends AbstractProcessor { TypeSpec.Builder classBuilder = TypeSpec.classBuilder(converterClassName) - .addAnnotation( - AnnotationSpec.builder(ClassName.get(Converter.class)) - .addMember("autoApply", "true") - .build()) - .addModifiers(Modifier.FINAL) + .addAnnotation(AnnotationSpec.builder(ClassName.get(Converter.class)).build()) + .addModifiers(Modifier.FINAL, Modifier.PUBLIC) .superclass(attributeConverter) .addMethod(getEntityClass) .addMethod(getKeyClass); diff --git a/proxy/gradle.lockfile b/proxy/gradle.lockfile index fa94f28b6..97e82a1bd 100644 --- a/proxy/gradle.lockfile +++ b/proxy/gradle.lockfile @@ -2,197 +2,158 @@ # Manual edits can break the build and are not advised. # This file is expected to be part of source control. aopalliance:aopalliance:1.0=annotationProcessor,errorprone,testAnnotationProcessor -com.fasterxml.jackson.core:jackson-annotations:2.15.3=testRuntimeClasspath -com.fasterxml.jackson.core:jackson-annotations:2.18.2=testCompileClasspath -com.fasterxml.jackson.core:jackson-core:2.15.3=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-core:2.18.2=compileClasspath,testCompileClasspath -com.fasterxml.jackson:jackson-bom:2.15.3=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson:jackson-bom:2.18.2=compileClasspath,testCompileClasspath +com.fasterxml.jackson.core:jackson-annotations:2.18.2=testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson.core:jackson-core:2.18.2=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.fasterxml.jackson:jackson-bom:2.18.2=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.github.ben-manes.caffeine:caffeine:3.0.5=annotationProcessor,errorprone,testAnnotationProcessor -com.github.ben-manes.caffeine:caffeine:3.2.2=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.ben-manes.caffeine:caffeine:3.2.3=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.github.docker-java:docker-java-api:3.4.2=testCompileClasspath,testRuntimeClasspath com.github.docker-java:docker-java-transport-zerodep:3.4.2=testCompileClasspath,testRuntimeClasspath com.github.docker-java:docker-java-transport:3.4.2=testCompileClasspath,testRuntimeClasspath com.github.kevinstern:software-and-algorithms:1.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.android:annotations:4.1.1.4=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.api-client:google-api-client:2.7.2=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:gapic-google-cloud-storage-v2:2.29.0-alpha=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:gapic-google-cloud-storage-v2:2.55.0=compileClasspath,testCompileClasspath -com.google.api.grpc:grpc-google-cloud-storage-v2:2.29.0-alpha=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-storage-v2:2.55.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-monitoring-v3:3.52.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-storage-v2:2.29.0-alpha=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-storage-v2:2.55.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2:2.29.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.119.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.119.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-common-protos:2.45.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-common-protos:2.60.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-iam-v1:1.40.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-iam-v1:1.55.0=compileClasspath,testCompileClasspath -com.google.api:api-common:2.37.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api:api-common:2.52.0=compileClasspath,testCompileClasspath -com.google.api:gax-grpc:2.36.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api:gax-grpc:2.69.0=compileClasspath,testCompileClasspath -com.google.api:gax-httpjson:2.54.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api:gax-httpjson:2.69.0=compileClasspath,testCompileClasspath -com.google.api:gax:2.54.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.api:gax:2.69.0=compileClasspath,testCompileClasspath -com.google.apis:google-api-services-cloudkms:v1-rev20250731-2.0.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-monitoring:v3-rev20250731-2.0.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-storage:v1-rev20231012-2.0.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.apis:google-api-services-storage:v1-rev20250718-2.0.0=compileClasspath,testCompileClasspath -com.google.auth:google-auth-library-credentials:1.30.0=deploy_jar -com.google.auth:google-auth-library-credentials:1.37.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-oauth2-http:1.30.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-oauth2-http:1.37.1=compileClasspath,testCompileClasspath +com.google.api.grpc:gapic-google-cloud-storage-v2:2.51.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:grpc-google-cloud-storage-v2:2.51.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-monitoring-v3:3.52.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-storage-v2:2.51.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2:2.51.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.141.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.141.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-common-protos:2.55.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-iam-v1:1.50.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:api-common:2.47.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax-grpc:2.64.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax-httpjson:2.64.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax:2.64.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-cloudkms:v1-rev20260312-2.0.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-monitoring:v3-rev20260129-2.0.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-storage:v1-rev20250312-2.0.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-credentials:1.33.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-oauth2-http:1.33.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.auto.service:auto-service-annotations:1.0.1=annotationProcessor,errorprone,testAnnotationProcessor com.google.auto.value:auto-value-annotations:1.11.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.auto.value:auto-value-annotations:1.9=annotationProcessor,errorprone,testAnnotationProcessor -com.google.auto.value:auto-value:1.11.0=annotationProcessor,deploy_jar,runtimeClasspath,testAnnotationProcessor,testRuntimeClasspath +com.google.auto.value:auto-value:1.11.1=annotationProcessor,deploy_jar,runtimeClasspath,testAnnotationProcessor,testRuntimeClasspath com.google.auto:auto-common:1.2.1=annotationProcessor,errorprone,testAnnotationProcessor -com.google.cloud.opentelemetry:exporter-metrics:0.33.0=compileClasspath,testCompileClasspath -com.google.cloud:google-cloud-core-grpc:2.26.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core-grpc:2.59.0=compileClasspath,testCompileClasspath -com.google.cloud:google-cloud-core-http:2.26.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core-http:2.59.0=compileClasspath,testCompileClasspath -com.google.cloud:google-cloud-core:2.44.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core:2.59.0=compileClasspath,testCompileClasspath -com.google.cloud:google-cloud-monitoring:3.52.0=compileClasspath,testCompileClasspath -com.google.cloud:google-cloud-storage:2.29.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-storage:2.55.0=compileClasspath,testCompileClasspath -com.google.cloud:google-cloud-tasks:2.29.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud.opentelemetry:detector-resources-support:0.33.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud.opentelemetry:exporter-metrics:0.33.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud.opentelemetry:shared-resourcemapping:0.33.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core-grpc:2.54.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core-http:2.51.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-core:2.51.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-monitoring:3.52.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-storage:2.51.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-tasks:2.51.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.cloud:libraries-bom:26.48.0=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClasspath,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -com.google.code.gson:gson:2.11.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.code.gson:gson:2.12.1=compileClasspath,testCompileClasspath -com.google.dagger:dagger-compiler:2.57.1=annotationProcessor,testAnnotationProcessor -com.google.dagger:dagger-spi:2.57.1=annotationProcessor,testAnnotationProcessor -com.google.dagger:dagger:2.57=deploy_jar -com.google.dagger:dagger:2.57.1=annotationProcessor,compileClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -com.google.devtools.ksp:symbol-processing-api:2.1.21-2.0.2=annotationProcessor,testAnnotationProcessor +com.google.code.gson:gson:2.12.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.dagger:dagger-compiler:2.59.2=annotationProcessor,testAnnotationProcessor +com.google.dagger:dagger-spi:2.59.2=annotationProcessor,testAnnotationProcessor +com.google.dagger:dagger:2.59.2=annotationProcessor,compileClasspath,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.devtools.ksp:symbol-processing-api:2.2.20-2.0.3=annotationProcessor,testAnnotationProcessor com.google.errorprone:error_prone_annotation:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_annotations:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor -com.google.errorprone:error_prone_annotations:2.38.0=compileClasspath -com.google.errorprone:error_prone_annotations:2.40.0=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.36.0=compileClasspath +com.google.errorprone:error_prone_annotations:2.43.0=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.errorprone:error_prone_annotations:2.7.1=checkstyle com.google.errorprone:error_prone_check_api:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_core:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_type_annotations:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor -com.google.errorprone:javac-shaded:9-dev-r4023-3=annotationProcessor,testAnnotationProcessor com.google.errorprone:javac:9+181-r4173-1=errorproneJavac com.google.flogger:flogger-system-backend:0.9=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.flogger:flogger:0.9=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.googlejavaformat:google-java-format:1.5=annotationProcessor,testAnnotationProcessor +com.google.googlejavaformat:google-java-format:1.33.0=annotationProcessor,testAnnotationProcessor com.google.guava:failureaccess:1.0.1=checkstyle,errorprone com.google.guava:failureaccess:1.0.2=annotationProcessor,compileClasspath,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath com.google.guava:guava-parent:32.1.1-jre=errorprone com.google.guava:guava:31.0.1-jre=checkstyle com.google.guava:guava:32.1.1-jre=errorprone com.google.guava:guava:33.0.0-jre=annotationProcessor,testAnnotationProcessor -com.google.guava:guava:33.3.1-android=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.guava:guava:33.4.0-jre=compileClasspath,testCompileClasspath +com.google.guava:guava:33.4.0-jre=compileClasspath +com.google.guava:guava:33.4.3-android=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=annotationProcessor,checkstyle,compileClasspath,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-apache-v2:1.45.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-apache-v2:1.47.1=compileClasspath,testCompileClasspath -com.google.http-client:google-http-client-appengine:1.43.3=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-appengine:1.47.1=compileClasspath,testCompileClasspath -com.google.http-client:google-http-client-gson:1.45.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-gson:1.47.1=compileClasspath,testCompileClasspath -com.google.http-client:google-http-client-jackson2:1.43.3=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-jackson2:1.47.1=compileClasspath,testCompileClasspath -com.google.http-client:google-http-client:1.45.2=deploy_jar -com.google.http-client:google-http-client:1.47.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-apache-v2:1.46.3=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-appengine:1.46.3=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-gson:1.46.3=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-jackson2:1.46.3=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client:1.46.3=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.inject:guice:5.1.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.j2objc:j2objc-annotations:1.3=checkstyle com.google.j2objc:j2objc-annotations:3.0.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.monitoring-client:contrib:1.0.7=testCompileClasspath,testRuntimeClasspath com.google.monitoring-client:metrics:1.0.7=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.monitoring-client:stackdriver:1.0.7=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client:1.36.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client:1.39.0=compileClasspath,testCompileClasspath -com.google.protobuf:protobuf-java-util:3.25.5=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.protobuf:protobuf-java-util:3.25.8=compileClasspath,testCompileClasspath +com.google.oauth-client:google-oauth-client:1.37.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java-util:3.25.5=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.protobuf:protobuf-java:3.19.6=annotationProcessor,errorprone,testAnnotationProcessor -com.google.protobuf:protobuf-java:3.25.5=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.protobuf:protobuf-java:3.25.8=compileClasspath,testCompileClasspath +com.google.protobuf:protobuf-java:3.25.5=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.re2j:re2j:1.1=compileClasspath,testCompileClasspath com.google.re2j:re2j:1.7=deploy_jar,runtimeClasspath,testRuntimeClasspath -com.google.truth:truth:1.4.4=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.ibm.icu:icu4j:77.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.truth:truth:1.4.5=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.ibm.icu:icu4j:78.3=deploy_jar,runtimeClasspath,testRuntimeClasspath com.puppycrawl.tools:checkstyle:9.3=checkstyle com.squareup:javapoet:1.13.0=annotationProcessor,testAnnotationProcessor com.squareup:kotlinpoet:1.11.0=annotationProcessor,testAnnotationProcessor commons-beanutils:commons-beanutils:1.9.4=checkstyle -commons-codec:commons-codec:1.17.1=deploy_jar,runtimeClasspath,testRuntimeClasspath -commons-codec:commons-codec:1.18.0=compileClasspath,testCompileClasspath +commons-codec:commons-codec:1.18.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath commons-collections:commons-collections:3.2.2=checkstyle commons-logging:commons-logging:1.2=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath info.picocli:picocli:4.6.2=checkstyle io.github.eisop:dataflow-errorprone:3.34.0-eisop1=annotationProcessor,errorprone,testAnnotationProcessor io.github.java-diff-utils:java-diff-utils:4.12=annotationProcessor,errorprone,testAnnotationProcessor io.github.java-diff-utils:java-diff-utils:4.16=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-alts:1.58.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-alts:1.71.0=compileClasspath,testCompileClasspath -io.grpc:grpc-api:1.68.2=deploy_jar -io.grpc:grpc-api:1.70.0=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-api:1.71.0=compileClasspath,testCompileClasspath -io.grpc:grpc-auth:1.58.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-auth:1.71.0=compileClasspath,testCompileClasspath -io.grpc:grpc-context:1.68.2=deploy_jar -io.grpc:grpc-context:1.70.0=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-context:1.71.0=compileClasspath,testCompileClasspath -io.grpc:grpc-core:1.58.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-core:1.71.0=compileClasspath,testCompileClasspath -io.grpc:grpc-googleapis:1.58.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-grpclb:1.58.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-grpclb:1.71.0=compileClasspath,testCompileClasspath -io.grpc:grpc-inprocess:1.58.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-inprocess:1.71.0=compileClasspath,testCompileClasspath -io.grpc:grpc-netty-shaded:1.58.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-opentelemetry:1.71.0=compileClasspath,testCompileClasspath -io.grpc:grpc-protobuf-lite:1.58.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf:1.58.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf:1.71.0=compileClasspath,testCompileClasspath -io.grpc:grpc-rls:1.58.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-services:1.58.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-stub:1.58.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-stub:1.71.0=compileClasspath,testCompileClasspath -io.grpc:grpc-util:1.58.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-xds:1.58.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.netty:netty-buffer:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-http:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-common:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-handler:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-resolver:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-tcnative-boringssl-static:2.0.72.Final=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-tcnative-classes:2.0.72.Final=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport-native-unix-common:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport:4.1.124.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-alts:1.70.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-api:1.70.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-auth:1.70.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-context:1.70.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-core:1.70.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-googleapis:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-grpclb:1.70.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-inprocess:1.70.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-netty-shaded:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-opentelemetry:1.70.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf-lite:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf:1.70.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-rls:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-services:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-stub:1.70.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-util:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-xds:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.netty:netty-buffer:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec-http:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-codec:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-common:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-handler:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-resolver:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-tcnative-boringssl-static:2.0.75.Final=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-tcnative-classes:2.0.75.Final=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-transport-native-unix-common:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.netty:netty-transport:4.1.132.Final=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath io.opencensus:opencensus-api:0.31.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath io.opencensus:opencensus-contrib-http-util:0.31.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-proto:0.2.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.opentelemetry.contrib:opentelemetry-gcp-resources:1.37.0-alpha=compileClasspath,testCompileClasspath -io.opentelemetry.semconv:opentelemetry-semconv:1.29.0-alpha=compileClasspath,testCompileClasspath -io.opentelemetry:opentelemetry-api:1.47.0=compileClasspath,testCompileClasspath -io.opentelemetry:opentelemetry-context:1.47.0=compileClasspath,testCompileClasspath -io.opentelemetry:opentelemetry-sdk-common:1.47.0=compileClasspath,testCompileClasspath -io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.47.0=compileClasspath,testCompileClasspath -io.opentelemetry:opentelemetry-sdk-logs:1.47.0=compileClasspath,testCompileClasspath -io.opentelemetry:opentelemetry-sdk-metrics:1.47.0=compileClasspath,testCompileClasspath -io.opentelemetry:opentelemetry-sdk-trace:1.47.0=compileClasspath,testCompileClasspath -io.opentelemetry:opentelemetry-sdk:1.47.0=compileClasspath,testCompileClasspath -io.perfmark:perfmark-api:0.26.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -jakarta.activation:jakarta.activation-api:2.1.3=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.opentelemetry.contrib:opentelemetry-gcp-resources:1.37.0-alpha=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opentelemetry.semconv:opentelemetry-semconv:1.29.0-alpha=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-api:1.47.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-bom:1.42.1=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-context:1.47.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-sdk-common:1.47.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.47.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-sdk-logs:1.47.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-sdk-metrics:1.47.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-sdk-trace:1.47.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.opentelemetry:opentelemetry-sdk:1.47.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.perfmark:perfmark-api:0.27.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +jakarta.activation:jakarta.activation-api:2.2.0-M1=deploy_jar,runtimeClasspath,testRuntimeClasspath jakarta.inject:jakarta.inject-api:2.0.1=annotationProcessor,compileClasspath,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -jakarta.mail:jakarta.mail-api:2.1.3=deploy_jar,runtimeClasspath,testRuntimeClasspath -jakarta.xml.bind:jakarta.xml.bind-api:4.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath +jakarta.mail:jakarta.mail-api:2.2.0-M1=deploy_jar,runtimeClasspath,testRuntimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:4.0.5=deploy_jar,runtimeClasspath,testRuntimeClasspath javax.annotation:javax.annotation-api:1.3.2=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath javax.inject:javax.inject:1=annotationProcessor,compileClasspath,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -joda-time:joda-time:2.14.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +joda-time:joda-time:2.14.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath junit:junit:4.13.2=testCompileClasspath,testRuntimeClasspath -net.bytebuddy:byte-buddy-agent:1.17.6=testCompileClasspath,testRuntimeClasspath -net.bytebuddy:byte-buddy:1.17.6=testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy-agent:1.17.7=testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy:1.17.7=testCompileClasspath,testRuntimeClasspath net.java.dev.jna:jna:5.13.0=testCompileClasspath,testRuntimeClasspath net.ltgt.gradle.incap:incap:0.2=annotationProcessor,testAnnotationProcessor net.sf.saxon:Saxon-HE:10.6=checkstyle @@ -201,21 +162,19 @@ org.apache.commons:commons-compress:1.24.0=testCompileClasspath,testRuntimeClass org.apache.httpcomponents:httpclient:4.5.14=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.16=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath -org.bouncycastle:bcpkix-jdk18on:1.81=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcprov-jdk18on:1.81=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcutil-jdk18on:1.81=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcpkix-jdk18on:1.83=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcprov-jdk18on:1.83=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcutil-jdk18on:1.83=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.checkerframework:checker-compat-qual:2.5.3=annotationProcessor,testAnnotationProcessor org.checkerframework:checker-compat-qual:2.5.6=deploy_jar,runtimeClasspath,testRuntimeClasspath org.checkerframework:checker-qual:3.12.0=checkstyle org.checkerframework:checker-qual:3.33.0=errorprone org.checkerframework:checker-qual:3.41.0=annotationProcessor,testAnnotationProcessor -org.checkerframework:checker-qual:3.43.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.checkerframework:checker-qual:3.49.0=compileClasspath,testCompileClasspath -org.codehaus.mojo:animal-sniffer-annotations:1.23=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.codehaus.mojo:animal-sniffer-annotations:1.24=compileClasspath,testCompileClasspath +org.checkerframework:checker-qual:3.49.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.24=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.conscrypt:conscrypt-openjdk-uber:2.5.2=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.eclipse.angus:angus-activation:2.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.eclipse.angus:jakarta.mail:2.0.4=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.eclipse.angus:angus-activation:2.1.0-M1=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.eclipse.angus:jakarta.mail:2.1.0-M1=deploy_jar,runtimeClasspath,testRuntimeClasspath org.hamcrest:hamcrest-core:1.3=testCompileClasspath,testRuntimeClasspath org.jacoco:org.jacoco.agent:0.8.12=jacocoAgent,jacocoAnt org.jacoco:org.jacoco.ant:0.8.12=jacocoAnt @@ -223,37 +182,37 @@ org.jacoco:org.jacoco.core:0.8.12=jacocoAnt org.jacoco:org.jacoco.report:0.8.12=jacocoAnt org.javassist:javassist:3.28.0-GA=checkstyle org.jcommander:jcommander:2.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.21=annotationProcessor,testAnnotationProcessor +org.jetbrains.kotlin:kotlin-metadata-jvm:2.2.20=annotationProcessor,testAnnotationProcessor org.jetbrains.kotlin:kotlin-reflect:1.6.10=annotationProcessor,testAnnotationProcessor org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0=annotationProcessor,testAnnotationProcessor org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0=annotationProcessor,testAnnotationProcessor -org.jetbrains.kotlin:kotlin-stdlib:2.1.21=annotationProcessor,testAnnotationProcessor +org.jetbrains.kotlin:kotlin-stdlib:2.2.20=annotationProcessor,testAnnotationProcessor org.jetbrains:annotations:13.0=annotationProcessor,testAnnotationProcessor org.jetbrains:annotations:17.0.0=testCompileClasspath,testRuntimeClasspath org.jspecify:jspecify:1.0.0=annotationProcessor,compileClasspath,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-api:5.13.4=testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-engine:5.13.4=testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-params:5.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-commons:1.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-engine:1.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-launcher:1.13.4=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-commons:1.14.3=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-engine:1.14.3=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-launcher:1.14.3=testCompileClasspath,testRuntimeClasspath org.junit.platform:junit-platform-runner:1.13.3=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-suite-api:1.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-suite-commons:1.13.4=testRuntimeClasspath -org.junit:junit-bom:5.13.4=testCompileClasspath,testRuntimeClasspath -org.mockito:mockito-core:5.19.0=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-suite-api:1.14.3=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-suite-commons:1.14.3=testRuntimeClasspath +org.junit:junit-bom:5.14.3=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-core:5.23.0=testCompileClasspath,testRuntimeClasspath org.objenesis:objenesis:3.3=testRuntimeClasspath org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath org.ow2.asm:asm-commons:9.7=jacocoAnt org.ow2.asm:asm-tree:9.7=jacocoAnt -org.ow2.asm:asm:9.7=deploy_jar,jacocoAnt,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm:9.7=jacocoAnt +org.ow2.asm:asm:9.8=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.pcollections:pcollections:3.1.4=annotationProcessor,errorprone,testAnnotationProcessor org.reflections:reflections:0.10.2=checkstyle org.rnorth.duct-tape:duct-tape:1.0.8=testCompileClasspath,testRuntimeClasspath -org.slf4j:slf4j-api:2.0.16=compileClasspath,testCompileClasspath -org.slf4j:slf4j-api:2.0.9=testRuntimeClasspath -org.testcontainers:junit-jupiter:1.21.3=testCompileClasspath,testRuntimeClasspath -org.testcontainers:testcontainers:1.21.3=testCompileClasspath,testRuntimeClasspath +org.slf4j:slf4j-api:2.0.16=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.testcontainers:junit-jupiter:1.21.4=testCompileClasspath,testRuntimeClasspath +org.testcontainers:testcontainers:1.21.4=testCompileClasspath,testRuntimeClasspath org.threeten:threetenbp:1.7.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.yaml:snakeyaml:2.4=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.yaml:snakeyaml:2.6=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath empty= diff --git a/services/backend/gradle.lockfile b/services/backend/gradle.lockfile deleted file mode 100644 index d476e65a4..000000000 --- a/services/backend/gradle.lockfile +++ /dev/null @@ -1,402 +0,0 @@ -# This is a Gradle generated 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=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -args4j:args4j:2.33=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.charleskorn.kaml:kaml:0.20.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-annotations:2.20-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-core:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-databind:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson:jackson-bom:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml:classmate:1.5.1=runtimeClasspath,testRuntimeClasspath -com.github.ben-manes.caffeine:caffeine:3.2.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.docker-java:docker-java-api:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.docker-java:docker-java-transport-zerodep:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.docker-java:docker-java-transport:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jffi:1.3.13=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-a64asm:1.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-constants:0.10.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-enxio:0.32.18=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-ffi:2.2.17=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-posix:3.1.20=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-unixsocket:0.38.23=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-x86asm:1.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.android:annotations:4.1.1.4=runtimeClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-jackson2:2.0.1=compileClasspath,testCompileClasspath -com.google.api-client:google-api-client-jackson2:2.7.0=runtimeClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-java6:2.1.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-servlet:2.7.0=runtimeClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-servlet:2.8.1=compileClasspath,testCompileClasspath -com.google.api-client:google-api-client:2.8.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:gapic-google-cloud-storage-v2:2.44.1-beta=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.122.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.15.9=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-storage-control-v2:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-storage-v2:2.44.1-beta=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-common-protos:2.58.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1alpha:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-compute-v1:1.82.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-datastore-v1:0.120.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-firestore-v1:3.31.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-monitoring-v3:3.65.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.122.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.15.9=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta2:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta2:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-spanner-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-storage-control-v2:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-storage-v2:2.44.1-beta=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.141.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.162.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.141.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.162.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-common-protos:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-iam-v1:1.53.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-iam-v1:1.55.0=compileClasspath,testCompileClasspath -com.google.api:api-common:2.52.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api:gax-grpc:2.67.0=runtimeClasspath,testRuntimeClasspath -com.google.api:gax-grpc:2.69.0=compileClasspath,testCompileClasspath -com.google.api:gax-httpjson:2.69.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api:gax:2.69.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-admin-directory:directory_v1-rev20250804-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-bigquery:v2-rev20250511-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20240310-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-dataflow:v1b3-rev20250812-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-dns:v1-rev20250411-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-drive:v3-rev20250723-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-gmail:v1-rev20250630-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-groupssettings:v1-rev20220614-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-healthcare:v1-rev20240130-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-iam:v2-rev20250502-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-iamcredentials:v1-rev20211203-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-monitoring:v3-rev20250731-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-pubsub:v1-rev20220904-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-sheets:v4-rev20250616-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-sqladmin:v1beta4-rev20250613-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-storage:v1-rev20250524-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-credentials:1.37.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-oauth2-http:1.37.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auto.service:auto-service-annotations:1.1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auto.value:auto-value-annotations:1.11.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auto.value:auto-value:1.11.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.bigdataoss:gcsio:2.2.26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.bigdataoss:util:2.2.26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.bigtable:bigtable-client-core-config:1.28.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.datastore:datastore-v1-proto-client:2.29.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.opentelemetry:detector-resources-support:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.opentelemetry:exporter-metrics:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.opentelemetry:shared-resourcemapping:0.33.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud.sql:jdbc-socket-factory-core:1.25.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.sql:postgres-socket-factory:1.25.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-bigquerystorage:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-bigtable:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-compute:1.82.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core-grpc:2.57.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core-http:2.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core:2.57.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-firestore:3.31.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-monitoring:3.65.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-pubsub:1.140.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-pubsublite:1.15.9=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-secretmanager:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-secretmanager:2.72.0=compileClasspath,testCompileClasspath -com.google.cloud:google-cloud-spanner:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-storage-control:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-storage:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-tasks:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-tasks:2.72.0=compileClasspath,testCompileClasspath -com.google.cloud:grpc-gcp:1.6.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:libraries-bom:26.48.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.31.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.code.gson:gson:2.12.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.common.html.types:types:1.0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.dagger:dagger:2.57=compileClasspath,testCompileClasspath,testRuntimeClasspath -com.google.dagger:dagger:2.57.1=runtimeClasspath -com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.escapevelocity:escapevelocity:1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flatbuffers:flatbuffers-java:23.5.26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flogger:flogger-system-backend:0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flogger:flogger:0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flogger:google-extensions:0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.guava:failureaccess:1.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.guava:guava:33.4.8-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.gwt:gwt-user:2.10.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-apache-v2:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-appengine:1.45.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-gson:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-jackson2:1.45.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-protobuf:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.inject:guice:7.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.j2objc:j2objc-annotations:3.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.jsinterop:jsinterop-annotations:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.monitoring-client:metrics:1.0.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.monitoring-client:stackdriver:1.0.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-java6:1.36.0=runtimeClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-java6:1.39.0=compileClasspath,testCompileClasspath -com.google.oauth-client:google-oauth-client-jetty:1.36.0=runtimeClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-jetty:1.39.0=compileClasspath,testCompileClasspath -com.google.oauth-client:google-oauth-client-servlet:1.36.0=runtimeClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-servlet:1.39.0=compileClasspath,testCompileClasspath -com.google.oauth-client:google-oauth-client:1.39.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.protobuf:protobuf-java-util:4.29.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.protobuf:protobuf-java:3.25.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.re2j:re2j:1.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.template:soy:2024-02-26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.truth:truth:1.4.4=runtimeClasspath,testRuntimeClasspath -com.googlecode.json-simple:json-simple:1.1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.ibm.icu:icu4j:73.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.jcraft:jsch:0.1.55=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.lmax:disruptor:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okhttp3:okhttp:4.12.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio-bom:3.0.0=runtimeClasspath,testRuntimeClasspath -com.squareup.okio:okio-fakefilesystem-jvm:3.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio-fakefilesystem:3.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio-jvm:3.6.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio:3.6.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-compiler:4.5.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-grpc-server-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-grpc-server:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-java-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-kotlin-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-runtime-jvm:4.9.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-runtime:4.9.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-schema-jvm:4.9.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-schema:4.8.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-swift-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup:javapoet:1.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup:kotlinpoet-jvm:1.15.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup:kotlinpoet:1.15.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.sun.istack:istack-commons-runtime:4.1.1=runtimeClasspath,testRuntimeClasspath -com.zaxxer:HikariCP:7.0.1=compileClasspath,testCompileClasspath,testRuntimeClasspath -com.zaxxer:HikariCP:7.0.2=runtimeClasspath -commons-codec:commons-codec:1.19.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -commons-io:commons-io:2.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -commons-logging:commons-logging:1.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -dnsjava:dnsjava:3.6.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.apicurio:apicurio-registry-protobuf-schema-utilities:3.0.0.M2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.github.classgraph:classgraph:4.8.162=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.github.java-diff-utils:java-diff-utils:4.16=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-alts:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-api:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-auth:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-census:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-context:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-core:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-googleapis:1.71.0=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-grpclb:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-inprocess:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-netty-shaded:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-netty:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-opentelemetry:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf-lite:1.67.1=compileClasspath,testCompileClasspath -io.grpc:grpc-protobuf-lite:1.71.0=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-rls:1.71.0=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-services:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-stub:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-util:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-xds:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-buffer:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-http2:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-http:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-socks:4.1.110.Final=runtimeClasspath,testRuntimeClasspath -io.netty:netty-codec:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-common:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-handler-proxy:4.1.110.Final=runtimeClasspath,testRuntimeClasspath -io.netty:netty-handler:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-resolver:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-tcnative-boringssl-static:2.0.52.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-tcnative-classes:2.0.52.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport-native-unix-common:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-api:0.31.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-exemplar-util:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0=compileClasspath,testCompileClasspath -io.opencensus:opencensus-contrib-grpc-metrics:0.31.1=runtimeClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-grpc-util:0.31.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-http-util:0.31.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-resource-util:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-exporter-metrics-util:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-impl-core:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-impl:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-proto:0.2.0=runtimeClasspath,testRuntimeClasspath -io.opentelemetry.contrib:opentelemetry-gcp-resources:1.37.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.instrumentation:opentelemetry-grpc-1.6:2.1.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-incubator:2.1.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-api:2.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.semconv:opentelemetry-semconv:1.29.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-api-incubator:1.42.1-alpha=runtimeClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-api:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-bom:1.42.1=runtimeClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-context:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-extension-incubator:1.35.0-alpha=runtimeClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-common:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.42.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-logs:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-metrics:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-trace:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-semconv:1.26.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.outfoxx:swiftpoet:1.3.1=runtimeClasspath,testRuntimeClasspath -io.perfmark:perfmark-api:0.27.0=runtimeClasspath,testRuntimeClasspath -io.smallrye:jandex:3.1.2=runtimeClasspath,testRuntimeClasspath -jakarta-regexp:jakarta-regexp:1.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.activation:jakarta.activation-api:2.1.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.mail:jakarta.mail-api:2.1.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.persistence:jakarta.persistence-api:3.2.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.servlet:jakarta.servlet-api:6.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.transaction:jakarta.transaction-api:2.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.xml.bind:jakarta.xml.bind-api:4.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.annotation:javax.annotation-api:1.3.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.annotation:jsr250-api:1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.inject:javax.inject:1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.jdo:jdo2-api:2.3-20090302111651=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.validation:validation-api:1.0.0.GA=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -joda-time:joda-time:2.12.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -net.bytebuddy:byte-buddy:1.14.12=compileClasspath,testCompileClasspath -net.bytebuddy:byte-buddy:1.14.15=runtimeClasspath,testRuntimeClasspath -net.java.dev.jna:jna:5.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.abego.treelayout:org.abego.treelayout.core:1.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:ST4:4.3.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:antlr-runtime:3.5.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:antlr4-runtime:4.13.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:antlr4:4.13.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.arrow:arrow-format:15.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.arrow:arrow-memory-core:15.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.arrow:arrow-vector:15.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.avro:avro:1.11.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-model-fn-execution:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-model-job-management:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-model-pipeline:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-core-java:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-java-fn-execution:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-core:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-expansion-service:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-arrow:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-avro:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-protobuf:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-harness:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-transform-service-launcher:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-vendor-grpc-1_69_0:0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-vendor-guava-32_1_2-jre:0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-compress:1.26.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-csv:1.14.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-lang3:3.14.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.httpcomponents:httpclient:4.5.14=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.httpcomponents:httpcore:4.4.16=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcpg-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcpkix-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcprov-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcutil-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.checkerframework:checker-compat-qual:2.5.3=compileClasspath,testCompileClasspath -org.checkerframework:checker-compat-qual:2.5.6=runtimeClasspath,testRuntimeClasspath -org.checkerframework:checker-qual:3.49.0=compileClasspath,testCompileClasspath -org.checkerframework:checker-qual:3.49.3=runtimeClasspath,testRuntimeClasspath -org.codehaus.mojo:animal-sniffer-annotations:1.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.conscrypt:conscrypt-openjdk-uber:2.5.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.eclipse.angus:angus-activation:2.0.2=runtimeClasspath,testRuntimeClasspath -org.eclipse.angus:jakarta.mail:2.0.4=runtimeClasspath,testRuntimeClasspath -org.eclipse.collections:eclipse-collections-api:11.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.eclipse.collections:eclipse-collections:11.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.flywaydb:flyway-core:11.11.1=compileClasspath,testCompileClasspath,testRuntimeClasspath -org.flywaydb:flyway-core:11.11.2=runtimeClasspath -org.flywaydb:flyway-database-postgresql:11.11.1=compileClasspath,testCompileClasspath,testRuntimeClasspath -org.flywaydb:flyway-database-postgresql:11.11.2=runtimeClasspath -org.glassfish.jaxb:jaxb-core:4.0.2=runtimeClasspath,testRuntimeClasspath -org.glassfish.jaxb:jaxb-runtime:4.0.2=runtimeClasspath,testRuntimeClasspath -org.glassfish.jaxb:txw2:4.0.2=runtimeClasspath,testRuntimeClasspath -org.gwtproject:gwt-user:2.10.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hamcrest:hamcrest:2.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hibernate.common:hibernate-commons-annotations:6.0.6.Final=runtimeClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-ant:6.5.3.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-core:6.5.3.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-hikaricp:6.5.3.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jboss.logging:jboss-logging:3.5.0.Final=runtimeClasspath,testRuntimeClasspath -org.jcommander:jcommander:2.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-bom:1.4.0=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-reflect:1.9.20=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib-common:1.9.20=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib:1.9.20=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.2=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-datetime-jvm:0.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-datetime:0.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.0.1=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.1=runtimeClasspath,testRuntimeClasspath -org.jetbrains:annotations:17.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jline:jline:3.30.5=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.joda:joda-money:2.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.json:json:20250107=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jsoup:jsoup:1.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jspecify:jspecify:1.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ogce:xpp3:1.1.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-analysis:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-commons:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-tree:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-util:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.postgresql:postgresql:42.7.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.rnorth.duct-tape:duct-tape:1.0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.slf4j:slf4j-api:2.0.17=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.slf4j:slf4j-jdk14:2.0.17=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.snakeyaml:snakeyaml-engine:2.1=runtimeClasspath,testRuntimeClasspath -org.testcontainers:database-commons:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.testcontainers:jdbc:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.testcontainers:postgresql:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.testcontainers:testcontainers:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.threeten:threetenbp:1.7.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.w3c.css:sac:1.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.xerial.snappy:snappy-java:1.1.10.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-api:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-api:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-diagram:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-diagram:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-loader:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-loader:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-operations:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-postgresql:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-postgresql:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-text:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-text:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-tools:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-tools:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-utility:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-utility:16.27.1=runtimeClasspath -us.fatehi:schemacrawler:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler:16.27.1=runtimeClasspath -xerces:xmlParserAPIs:2.6.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -empty=annotationProcessor,providedCompile,providedRuntime,testAnnotationProcessor diff --git a/services/bsa/gradle.lockfile b/services/bsa/gradle.lockfile deleted file mode 100644 index d476e65a4..000000000 --- a/services/bsa/gradle.lockfile +++ /dev/null @@ -1,402 +0,0 @@ -# This is a Gradle generated 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=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -args4j:args4j:2.33=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.charleskorn.kaml:kaml:0.20.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-annotations:2.20-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-core:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-databind:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson:jackson-bom:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml:classmate:1.5.1=runtimeClasspath,testRuntimeClasspath -com.github.ben-manes.caffeine:caffeine:3.2.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.docker-java:docker-java-api:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.docker-java:docker-java-transport-zerodep:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.docker-java:docker-java-transport:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jffi:1.3.13=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-a64asm:1.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-constants:0.10.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-enxio:0.32.18=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-ffi:2.2.17=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-posix:3.1.20=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-unixsocket:0.38.23=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-x86asm:1.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.android:annotations:4.1.1.4=runtimeClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-jackson2:2.0.1=compileClasspath,testCompileClasspath -com.google.api-client:google-api-client-jackson2:2.7.0=runtimeClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-java6:2.1.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-servlet:2.7.0=runtimeClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-servlet:2.8.1=compileClasspath,testCompileClasspath -com.google.api-client:google-api-client:2.8.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:gapic-google-cloud-storage-v2:2.44.1-beta=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.122.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.15.9=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-storage-control-v2:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-storage-v2:2.44.1-beta=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-common-protos:2.58.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1alpha:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-compute-v1:1.82.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-datastore-v1:0.120.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-firestore-v1:3.31.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-monitoring-v3:3.65.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.122.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.15.9=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta2:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta2:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-spanner-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-storage-control-v2:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-storage-v2:2.44.1-beta=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.141.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.162.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.141.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.162.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-common-protos:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-iam-v1:1.53.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-iam-v1:1.55.0=compileClasspath,testCompileClasspath -com.google.api:api-common:2.52.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api:gax-grpc:2.67.0=runtimeClasspath,testRuntimeClasspath -com.google.api:gax-grpc:2.69.0=compileClasspath,testCompileClasspath -com.google.api:gax-httpjson:2.69.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api:gax:2.69.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-admin-directory:directory_v1-rev20250804-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-bigquery:v2-rev20250511-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20240310-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-dataflow:v1b3-rev20250812-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-dns:v1-rev20250411-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-drive:v3-rev20250723-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-gmail:v1-rev20250630-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-groupssettings:v1-rev20220614-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-healthcare:v1-rev20240130-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-iam:v2-rev20250502-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-iamcredentials:v1-rev20211203-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-monitoring:v3-rev20250731-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-pubsub:v1-rev20220904-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-sheets:v4-rev20250616-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-sqladmin:v1beta4-rev20250613-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-storage:v1-rev20250524-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-credentials:1.37.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-oauth2-http:1.37.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auto.service:auto-service-annotations:1.1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auto.value:auto-value-annotations:1.11.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auto.value:auto-value:1.11.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.bigdataoss:gcsio:2.2.26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.bigdataoss:util:2.2.26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.bigtable:bigtable-client-core-config:1.28.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.datastore:datastore-v1-proto-client:2.29.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.opentelemetry:detector-resources-support:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.opentelemetry:exporter-metrics:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.opentelemetry:shared-resourcemapping:0.33.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud.sql:jdbc-socket-factory-core:1.25.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.sql:postgres-socket-factory:1.25.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-bigquerystorage:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-bigtable:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-compute:1.82.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core-grpc:2.57.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core-http:2.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core:2.57.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-firestore:3.31.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-monitoring:3.65.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-pubsub:1.140.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-pubsublite:1.15.9=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-secretmanager:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-secretmanager:2.72.0=compileClasspath,testCompileClasspath -com.google.cloud:google-cloud-spanner:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-storage-control:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-storage:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-tasks:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-tasks:2.72.0=compileClasspath,testCompileClasspath -com.google.cloud:grpc-gcp:1.6.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:libraries-bom:26.48.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.31.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.code.gson:gson:2.12.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.common.html.types:types:1.0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.dagger:dagger:2.57=compileClasspath,testCompileClasspath,testRuntimeClasspath -com.google.dagger:dagger:2.57.1=runtimeClasspath -com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.escapevelocity:escapevelocity:1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flatbuffers:flatbuffers-java:23.5.26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flogger:flogger-system-backend:0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flogger:flogger:0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flogger:google-extensions:0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.guava:failureaccess:1.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.guava:guava:33.4.8-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.gwt:gwt-user:2.10.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-apache-v2:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-appengine:1.45.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-gson:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-jackson2:1.45.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-protobuf:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.inject:guice:7.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.j2objc:j2objc-annotations:3.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.jsinterop:jsinterop-annotations:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.monitoring-client:metrics:1.0.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.monitoring-client:stackdriver:1.0.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-java6:1.36.0=runtimeClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-java6:1.39.0=compileClasspath,testCompileClasspath -com.google.oauth-client:google-oauth-client-jetty:1.36.0=runtimeClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-jetty:1.39.0=compileClasspath,testCompileClasspath -com.google.oauth-client:google-oauth-client-servlet:1.36.0=runtimeClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-servlet:1.39.0=compileClasspath,testCompileClasspath -com.google.oauth-client:google-oauth-client:1.39.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.protobuf:protobuf-java-util:4.29.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.protobuf:protobuf-java:3.25.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.re2j:re2j:1.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.template:soy:2024-02-26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.truth:truth:1.4.4=runtimeClasspath,testRuntimeClasspath -com.googlecode.json-simple:json-simple:1.1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.ibm.icu:icu4j:73.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.jcraft:jsch:0.1.55=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.lmax:disruptor:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okhttp3:okhttp:4.12.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio-bom:3.0.0=runtimeClasspath,testRuntimeClasspath -com.squareup.okio:okio-fakefilesystem-jvm:3.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio-fakefilesystem:3.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio-jvm:3.6.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio:3.6.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-compiler:4.5.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-grpc-server-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-grpc-server:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-java-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-kotlin-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-runtime-jvm:4.9.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-runtime:4.9.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-schema-jvm:4.9.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-schema:4.8.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-swift-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup:javapoet:1.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup:kotlinpoet-jvm:1.15.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup:kotlinpoet:1.15.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.sun.istack:istack-commons-runtime:4.1.1=runtimeClasspath,testRuntimeClasspath -com.zaxxer:HikariCP:7.0.1=compileClasspath,testCompileClasspath,testRuntimeClasspath -com.zaxxer:HikariCP:7.0.2=runtimeClasspath -commons-codec:commons-codec:1.19.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -commons-io:commons-io:2.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -commons-logging:commons-logging:1.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -dnsjava:dnsjava:3.6.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.apicurio:apicurio-registry-protobuf-schema-utilities:3.0.0.M2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.github.classgraph:classgraph:4.8.162=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.github.java-diff-utils:java-diff-utils:4.16=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-alts:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-api:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-auth:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-census:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-context:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-core:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-googleapis:1.71.0=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-grpclb:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-inprocess:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-netty-shaded:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-netty:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-opentelemetry:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf-lite:1.67.1=compileClasspath,testCompileClasspath -io.grpc:grpc-protobuf-lite:1.71.0=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-rls:1.71.0=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-services:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-stub:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-util:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-xds:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-buffer:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-http2:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-http:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-socks:4.1.110.Final=runtimeClasspath,testRuntimeClasspath -io.netty:netty-codec:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-common:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-handler-proxy:4.1.110.Final=runtimeClasspath,testRuntimeClasspath -io.netty:netty-handler:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-resolver:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-tcnative-boringssl-static:2.0.52.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-tcnative-classes:2.0.52.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport-native-unix-common:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-api:0.31.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-exemplar-util:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0=compileClasspath,testCompileClasspath -io.opencensus:opencensus-contrib-grpc-metrics:0.31.1=runtimeClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-grpc-util:0.31.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-http-util:0.31.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-resource-util:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-exporter-metrics-util:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-impl-core:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-impl:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-proto:0.2.0=runtimeClasspath,testRuntimeClasspath -io.opentelemetry.contrib:opentelemetry-gcp-resources:1.37.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.instrumentation:opentelemetry-grpc-1.6:2.1.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-incubator:2.1.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-api:2.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.semconv:opentelemetry-semconv:1.29.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-api-incubator:1.42.1-alpha=runtimeClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-api:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-bom:1.42.1=runtimeClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-context:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-extension-incubator:1.35.0-alpha=runtimeClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-common:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.42.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-logs:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-metrics:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-trace:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-semconv:1.26.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.outfoxx:swiftpoet:1.3.1=runtimeClasspath,testRuntimeClasspath -io.perfmark:perfmark-api:0.27.0=runtimeClasspath,testRuntimeClasspath -io.smallrye:jandex:3.1.2=runtimeClasspath,testRuntimeClasspath -jakarta-regexp:jakarta-regexp:1.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.activation:jakarta.activation-api:2.1.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.mail:jakarta.mail-api:2.1.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.persistence:jakarta.persistence-api:3.2.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.servlet:jakarta.servlet-api:6.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.transaction:jakarta.transaction-api:2.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.xml.bind:jakarta.xml.bind-api:4.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.annotation:javax.annotation-api:1.3.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.annotation:jsr250-api:1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.inject:javax.inject:1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.jdo:jdo2-api:2.3-20090302111651=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.validation:validation-api:1.0.0.GA=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -joda-time:joda-time:2.12.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -net.bytebuddy:byte-buddy:1.14.12=compileClasspath,testCompileClasspath -net.bytebuddy:byte-buddy:1.14.15=runtimeClasspath,testRuntimeClasspath -net.java.dev.jna:jna:5.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.abego.treelayout:org.abego.treelayout.core:1.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:ST4:4.3.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:antlr-runtime:3.5.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:antlr4-runtime:4.13.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:antlr4:4.13.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.arrow:arrow-format:15.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.arrow:arrow-memory-core:15.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.arrow:arrow-vector:15.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.avro:avro:1.11.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-model-fn-execution:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-model-job-management:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-model-pipeline:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-core-java:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-java-fn-execution:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-core:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-expansion-service:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-arrow:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-avro:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-protobuf:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-harness:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-transform-service-launcher:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-vendor-grpc-1_69_0:0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-vendor-guava-32_1_2-jre:0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-compress:1.26.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-csv:1.14.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-lang3:3.14.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.httpcomponents:httpclient:4.5.14=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.httpcomponents:httpcore:4.4.16=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcpg-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcpkix-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcprov-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcutil-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.checkerframework:checker-compat-qual:2.5.3=compileClasspath,testCompileClasspath -org.checkerframework:checker-compat-qual:2.5.6=runtimeClasspath,testRuntimeClasspath -org.checkerframework:checker-qual:3.49.0=compileClasspath,testCompileClasspath -org.checkerframework:checker-qual:3.49.3=runtimeClasspath,testRuntimeClasspath -org.codehaus.mojo:animal-sniffer-annotations:1.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.conscrypt:conscrypt-openjdk-uber:2.5.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.eclipse.angus:angus-activation:2.0.2=runtimeClasspath,testRuntimeClasspath -org.eclipse.angus:jakarta.mail:2.0.4=runtimeClasspath,testRuntimeClasspath -org.eclipse.collections:eclipse-collections-api:11.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.eclipse.collections:eclipse-collections:11.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.flywaydb:flyway-core:11.11.1=compileClasspath,testCompileClasspath,testRuntimeClasspath -org.flywaydb:flyway-core:11.11.2=runtimeClasspath -org.flywaydb:flyway-database-postgresql:11.11.1=compileClasspath,testCompileClasspath,testRuntimeClasspath -org.flywaydb:flyway-database-postgresql:11.11.2=runtimeClasspath -org.glassfish.jaxb:jaxb-core:4.0.2=runtimeClasspath,testRuntimeClasspath -org.glassfish.jaxb:jaxb-runtime:4.0.2=runtimeClasspath,testRuntimeClasspath -org.glassfish.jaxb:txw2:4.0.2=runtimeClasspath,testRuntimeClasspath -org.gwtproject:gwt-user:2.10.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hamcrest:hamcrest:2.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hibernate.common:hibernate-commons-annotations:6.0.6.Final=runtimeClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-ant:6.5.3.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-core:6.5.3.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-hikaricp:6.5.3.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jboss.logging:jboss-logging:3.5.0.Final=runtimeClasspath,testRuntimeClasspath -org.jcommander:jcommander:2.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-bom:1.4.0=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-reflect:1.9.20=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib-common:1.9.20=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib:1.9.20=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.2=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-datetime-jvm:0.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-datetime:0.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.0.1=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.1=runtimeClasspath,testRuntimeClasspath -org.jetbrains:annotations:17.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jline:jline:3.30.5=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.joda:joda-money:2.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.json:json:20250107=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jsoup:jsoup:1.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jspecify:jspecify:1.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ogce:xpp3:1.1.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-analysis:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-commons:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-tree:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-util:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.postgresql:postgresql:42.7.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.rnorth.duct-tape:duct-tape:1.0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.slf4j:slf4j-api:2.0.17=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.slf4j:slf4j-jdk14:2.0.17=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.snakeyaml:snakeyaml-engine:2.1=runtimeClasspath,testRuntimeClasspath -org.testcontainers:database-commons:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.testcontainers:jdbc:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.testcontainers:postgresql:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.testcontainers:testcontainers:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.threeten:threetenbp:1.7.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.w3c.css:sac:1.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.xerial.snappy:snappy-java:1.1.10.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-api:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-api:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-diagram:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-diagram:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-loader:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-loader:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-operations:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-postgresql:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-postgresql:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-text:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-text:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-tools:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-tools:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-utility:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-utility:16.27.1=runtimeClasspath -us.fatehi:schemacrawler:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler:16.27.1=runtimeClasspath -xerces:xmlParserAPIs:2.6.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -empty=annotationProcessor,providedCompile,providedRuntime,testAnnotationProcessor diff --git a/services/default/gradle.lockfile b/services/default/gradle.lockfile deleted file mode 100644 index d476e65a4..000000000 --- a/services/default/gradle.lockfile +++ /dev/null @@ -1,402 +0,0 @@ -# This is a Gradle generated 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=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -args4j:args4j:2.33=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.charleskorn.kaml:kaml:0.20.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-annotations:2.20-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-core:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-databind:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson:jackson-bom:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml:classmate:1.5.1=runtimeClasspath,testRuntimeClasspath -com.github.ben-manes.caffeine:caffeine:3.2.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.docker-java:docker-java-api:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.docker-java:docker-java-transport-zerodep:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.docker-java:docker-java-transport:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jffi:1.3.13=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-a64asm:1.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-constants:0.10.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-enxio:0.32.18=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-ffi:2.2.17=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-posix:3.1.20=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-unixsocket:0.38.23=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-x86asm:1.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.android:annotations:4.1.1.4=runtimeClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-jackson2:2.0.1=compileClasspath,testCompileClasspath -com.google.api-client:google-api-client-jackson2:2.7.0=runtimeClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-java6:2.1.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-servlet:2.7.0=runtimeClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-servlet:2.8.1=compileClasspath,testCompileClasspath -com.google.api-client:google-api-client:2.8.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:gapic-google-cloud-storage-v2:2.44.1-beta=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.122.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.15.9=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-storage-control-v2:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-storage-v2:2.44.1-beta=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-common-protos:2.58.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1alpha:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-compute-v1:1.82.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-datastore-v1:0.120.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-firestore-v1:3.31.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-monitoring-v3:3.65.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.122.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.15.9=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta2:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta2:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-spanner-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-storage-control-v2:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-storage-v2:2.44.1-beta=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.141.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.162.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.141.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.162.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-common-protos:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-iam-v1:1.53.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-iam-v1:1.55.0=compileClasspath,testCompileClasspath -com.google.api:api-common:2.52.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api:gax-grpc:2.67.0=runtimeClasspath,testRuntimeClasspath -com.google.api:gax-grpc:2.69.0=compileClasspath,testCompileClasspath -com.google.api:gax-httpjson:2.69.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api:gax:2.69.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-admin-directory:directory_v1-rev20250804-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-bigquery:v2-rev20250511-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20240310-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-dataflow:v1b3-rev20250812-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-dns:v1-rev20250411-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-drive:v3-rev20250723-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-gmail:v1-rev20250630-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-groupssettings:v1-rev20220614-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-healthcare:v1-rev20240130-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-iam:v2-rev20250502-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-iamcredentials:v1-rev20211203-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-monitoring:v3-rev20250731-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-pubsub:v1-rev20220904-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-sheets:v4-rev20250616-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-sqladmin:v1beta4-rev20250613-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-storage:v1-rev20250524-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-credentials:1.37.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-oauth2-http:1.37.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auto.service:auto-service-annotations:1.1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auto.value:auto-value-annotations:1.11.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auto.value:auto-value:1.11.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.bigdataoss:gcsio:2.2.26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.bigdataoss:util:2.2.26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.bigtable:bigtable-client-core-config:1.28.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.datastore:datastore-v1-proto-client:2.29.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.opentelemetry:detector-resources-support:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.opentelemetry:exporter-metrics:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.opentelemetry:shared-resourcemapping:0.33.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud.sql:jdbc-socket-factory-core:1.25.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.sql:postgres-socket-factory:1.25.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-bigquerystorage:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-bigtable:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-compute:1.82.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core-grpc:2.57.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core-http:2.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core:2.57.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-firestore:3.31.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-monitoring:3.65.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-pubsub:1.140.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-pubsublite:1.15.9=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-secretmanager:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-secretmanager:2.72.0=compileClasspath,testCompileClasspath -com.google.cloud:google-cloud-spanner:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-storage-control:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-storage:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-tasks:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-tasks:2.72.0=compileClasspath,testCompileClasspath -com.google.cloud:grpc-gcp:1.6.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:libraries-bom:26.48.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.31.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.code.gson:gson:2.12.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.common.html.types:types:1.0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.dagger:dagger:2.57=compileClasspath,testCompileClasspath,testRuntimeClasspath -com.google.dagger:dagger:2.57.1=runtimeClasspath -com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.escapevelocity:escapevelocity:1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flatbuffers:flatbuffers-java:23.5.26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flogger:flogger-system-backend:0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flogger:flogger:0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flogger:google-extensions:0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.guava:failureaccess:1.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.guava:guava:33.4.8-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.gwt:gwt-user:2.10.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-apache-v2:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-appengine:1.45.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-gson:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-jackson2:1.45.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-protobuf:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.inject:guice:7.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.j2objc:j2objc-annotations:3.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.jsinterop:jsinterop-annotations:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.monitoring-client:metrics:1.0.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.monitoring-client:stackdriver:1.0.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-java6:1.36.0=runtimeClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-java6:1.39.0=compileClasspath,testCompileClasspath -com.google.oauth-client:google-oauth-client-jetty:1.36.0=runtimeClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-jetty:1.39.0=compileClasspath,testCompileClasspath -com.google.oauth-client:google-oauth-client-servlet:1.36.0=runtimeClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-servlet:1.39.0=compileClasspath,testCompileClasspath -com.google.oauth-client:google-oauth-client:1.39.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.protobuf:protobuf-java-util:4.29.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.protobuf:protobuf-java:3.25.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.re2j:re2j:1.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.template:soy:2024-02-26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.truth:truth:1.4.4=runtimeClasspath,testRuntimeClasspath -com.googlecode.json-simple:json-simple:1.1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.ibm.icu:icu4j:73.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.jcraft:jsch:0.1.55=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.lmax:disruptor:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okhttp3:okhttp:4.12.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio-bom:3.0.0=runtimeClasspath,testRuntimeClasspath -com.squareup.okio:okio-fakefilesystem-jvm:3.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio-fakefilesystem:3.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio-jvm:3.6.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio:3.6.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-compiler:4.5.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-grpc-server-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-grpc-server:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-java-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-kotlin-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-runtime-jvm:4.9.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-runtime:4.9.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-schema-jvm:4.9.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-schema:4.8.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-swift-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup:javapoet:1.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup:kotlinpoet-jvm:1.15.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup:kotlinpoet:1.15.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.sun.istack:istack-commons-runtime:4.1.1=runtimeClasspath,testRuntimeClasspath -com.zaxxer:HikariCP:7.0.1=compileClasspath,testCompileClasspath,testRuntimeClasspath -com.zaxxer:HikariCP:7.0.2=runtimeClasspath -commons-codec:commons-codec:1.19.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -commons-io:commons-io:2.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -commons-logging:commons-logging:1.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -dnsjava:dnsjava:3.6.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.apicurio:apicurio-registry-protobuf-schema-utilities:3.0.0.M2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.github.classgraph:classgraph:4.8.162=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.github.java-diff-utils:java-diff-utils:4.16=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-alts:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-api:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-auth:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-census:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-context:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-core:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-googleapis:1.71.0=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-grpclb:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-inprocess:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-netty-shaded:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-netty:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-opentelemetry:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf-lite:1.67.1=compileClasspath,testCompileClasspath -io.grpc:grpc-protobuf-lite:1.71.0=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-rls:1.71.0=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-services:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-stub:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-util:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-xds:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-buffer:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-http2:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-http:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-socks:4.1.110.Final=runtimeClasspath,testRuntimeClasspath -io.netty:netty-codec:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-common:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-handler-proxy:4.1.110.Final=runtimeClasspath,testRuntimeClasspath -io.netty:netty-handler:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-resolver:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-tcnative-boringssl-static:2.0.52.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-tcnative-classes:2.0.52.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport-native-unix-common:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-api:0.31.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-exemplar-util:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0=compileClasspath,testCompileClasspath -io.opencensus:opencensus-contrib-grpc-metrics:0.31.1=runtimeClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-grpc-util:0.31.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-http-util:0.31.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-resource-util:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-exporter-metrics-util:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-impl-core:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-impl:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-proto:0.2.0=runtimeClasspath,testRuntimeClasspath -io.opentelemetry.contrib:opentelemetry-gcp-resources:1.37.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.instrumentation:opentelemetry-grpc-1.6:2.1.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-incubator:2.1.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-api:2.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.semconv:opentelemetry-semconv:1.29.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-api-incubator:1.42.1-alpha=runtimeClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-api:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-bom:1.42.1=runtimeClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-context:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-extension-incubator:1.35.0-alpha=runtimeClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-common:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.42.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-logs:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-metrics:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-trace:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-semconv:1.26.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.outfoxx:swiftpoet:1.3.1=runtimeClasspath,testRuntimeClasspath -io.perfmark:perfmark-api:0.27.0=runtimeClasspath,testRuntimeClasspath -io.smallrye:jandex:3.1.2=runtimeClasspath,testRuntimeClasspath -jakarta-regexp:jakarta-regexp:1.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.activation:jakarta.activation-api:2.1.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.mail:jakarta.mail-api:2.1.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.persistence:jakarta.persistence-api:3.2.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.servlet:jakarta.servlet-api:6.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.transaction:jakarta.transaction-api:2.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.xml.bind:jakarta.xml.bind-api:4.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.annotation:javax.annotation-api:1.3.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.annotation:jsr250-api:1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.inject:javax.inject:1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.jdo:jdo2-api:2.3-20090302111651=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.validation:validation-api:1.0.0.GA=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -joda-time:joda-time:2.12.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -net.bytebuddy:byte-buddy:1.14.12=compileClasspath,testCompileClasspath -net.bytebuddy:byte-buddy:1.14.15=runtimeClasspath,testRuntimeClasspath -net.java.dev.jna:jna:5.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.abego.treelayout:org.abego.treelayout.core:1.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:ST4:4.3.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:antlr-runtime:3.5.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:antlr4-runtime:4.13.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:antlr4:4.13.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.arrow:arrow-format:15.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.arrow:arrow-memory-core:15.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.arrow:arrow-vector:15.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.avro:avro:1.11.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-model-fn-execution:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-model-job-management:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-model-pipeline:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-core-java:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-java-fn-execution:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-core:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-expansion-service:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-arrow:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-avro:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-protobuf:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-harness:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-transform-service-launcher:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-vendor-grpc-1_69_0:0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-vendor-guava-32_1_2-jre:0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-compress:1.26.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-csv:1.14.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-lang3:3.14.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.httpcomponents:httpclient:4.5.14=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.httpcomponents:httpcore:4.4.16=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcpg-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcpkix-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcprov-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcutil-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.checkerframework:checker-compat-qual:2.5.3=compileClasspath,testCompileClasspath -org.checkerframework:checker-compat-qual:2.5.6=runtimeClasspath,testRuntimeClasspath -org.checkerframework:checker-qual:3.49.0=compileClasspath,testCompileClasspath -org.checkerframework:checker-qual:3.49.3=runtimeClasspath,testRuntimeClasspath -org.codehaus.mojo:animal-sniffer-annotations:1.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.conscrypt:conscrypt-openjdk-uber:2.5.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.eclipse.angus:angus-activation:2.0.2=runtimeClasspath,testRuntimeClasspath -org.eclipse.angus:jakarta.mail:2.0.4=runtimeClasspath,testRuntimeClasspath -org.eclipse.collections:eclipse-collections-api:11.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.eclipse.collections:eclipse-collections:11.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.flywaydb:flyway-core:11.11.1=compileClasspath,testCompileClasspath,testRuntimeClasspath -org.flywaydb:flyway-core:11.11.2=runtimeClasspath -org.flywaydb:flyway-database-postgresql:11.11.1=compileClasspath,testCompileClasspath,testRuntimeClasspath -org.flywaydb:flyway-database-postgresql:11.11.2=runtimeClasspath -org.glassfish.jaxb:jaxb-core:4.0.2=runtimeClasspath,testRuntimeClasspath -org.glassfish.jaxb:jaxb-runtime:4.0.2=runtimeClasspath,testRuntimeClasspath -org.glassfish.jaxb:txw2:4.0.2=runtimeClasspath,testRuntimeClasspath -org.gwtproject:gwt-user:2.10.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hamcrest:hamcrest:2.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hibernate.common:hibernate-commons-annotations:6.0.6.Final=runtimeClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-ant:6.5.3.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-core:6.5.3.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-hikaricp:6.5.3.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jboss.logging:jboss-logging:3.5.0.Final=runtimeClasspath,testRuntimeClasspath -org.jcommander:jcommander:2.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-bom:1.4.0=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-reflect:1.9.20=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib-common:1.9.20=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib:1.9.20=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.2=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-datetime-jvm:0.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-datetime:0.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.0.1=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.1=runtimeClasspath,testRuntimeClasspath -org.jetbrains:annotations:17.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jline:jline:3.30.5=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.joda:joda-money:2.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.json:json:20250107=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jsoup:jsoup:1.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jspecify:jspecify:1.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ogce:xpp3:1.1.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-analysis:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-commons:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-tree:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-util:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.postgresql:postgresql:42.7.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.rnorth.duct-tape:duct-tape:1.0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.slf4j:slf4j-api:2.0.17=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.slf4j:slf4j-jdk14:2.0.17=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.snakeyaml:snakeyaml-engine:2.1=runtimeClasspath,testRuntimeClasspath -org.testcontainers:database-commons:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.testcontainers:jdbc:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.testcontainers:postgresql:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.testcontainers:testcontainers:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.threeten:threetenbp:1.7.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.w3c.css:sac:1.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.xerial.snappy:snappy-java:1.1.10.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-api:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-api:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-diagram:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-diagram:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-loader:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-loader:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-operations:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-postgresql:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-postgresql:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-text:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-text:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-tools:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-tools:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-utility:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-utility:16.27.1=runtimeClasspath -us.fatehi:schemacrawler:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler:16.27.1=runtimeClasspath -xerces:xmlParserAPIs:2.6.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -empty=annotationProcessor,providedCompile,providedRuntime,testAnnotationProcessor diff --git a/services/pubapi/gradle.lockfile b/services/pubapi/gradle.lockfile deleted file mode 100644 index d476e65a4..000000000 --- a/services/pubapi/gradle.lockfile +++ /dev/null @@ -1,402 +0,0 @@ -# This is a Gradle generated 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=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -args4j:args4j:2.33=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.charleskorn.kaml:kaml:0.20.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-annotations:2.20-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-core:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-databind:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson:jackson-bom:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml:classmate:1.5.1=runtimeClasspath,testRuntimeClasspath -com.github.ben-manes.caffeine:caffeine:3.2.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.docker-java:docker-java-api:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.docker-java:docker-java-transport-zerodep:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.docker-java:docker-java-transport:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jffi:1.3.13=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-a64asm:1.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-constants:0.10.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-enxio:0.32.18=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-ffi:2.2.17=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-posix:3.1.20=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-unixsocket:0.38.23=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-x86asm:1.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.android:annotations:4.1.1.4=runtimeClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-jackson2:2.0.1=compileClasspath,testCompileClasspath -com.google.api-client:google-api-client-jackson2:2.7.0=runtimeClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-java6:2.1.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-servlet:2.7.0=runtimeClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-servlet:2.8.1=compileClasspath,testCompileClasspath -com.google.api-client:google-api-client:2.8.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:gapic-google-cloud-storage-v2:2.44.1-beta=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.122.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.15.9=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-storage-control-v2:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-storage-v2:2.44.1-beta=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-common-protos:2.58.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1alpha:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-compute-v1:1.82.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-datastore-v1:0.120.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-firestore-v1:3.31.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-monitoring-v3:3.65.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.122.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.15.9=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta2:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta2:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-spanner-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-storage-control-v2:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-storage-v2:2.44.1-beta=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.141.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.162.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.141.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.162.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-common-protos:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-iam-v1:1.53.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-iam-v1:1.55.0=compileClasspath,testCompileClasspath -com.google.api:api-common:2.52.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api:gax-grpc:2.67.0=runtimeClasspath,testRuntimeClasspath -com.google.api:gax-grpc:2.69.0=compileClasspath,testCompileClasspath -com.google.api:gax-httpjson:2.69.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api:gax:2.69.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-admin-directory:directory_v1-rev20250804-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-bigquery:v2-rev20250511-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20240310-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-dataflow:v1b3-rev20250812-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-dns:v1-rev20250411-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-drive:v3-rev20250723-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-gmail:v1-rev20250630-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-groupssettings:v1-rev20220614-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-healthcare:v1-rev20240130-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-iam:v2-rev20250502-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-iamcredentials:v1-rev20211203-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-monitoring:v3-rev20250731-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-pubsub:v1-rev20220904-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-sheets:v4-rev20250616-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-sqladmin:v1beta4-rev20250613-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-storage:v1-rev20250524-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-credentials:1.37.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-oauth2-http:1.37.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auto.service:auto-service-annotations:1.1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auto.value:auto-value-annotations:1.11.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auto.value:auto-value:1.11.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.bigdataoss:gcsio:2.2.26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.bigdataoss:util:2.2.26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.bigtable:bigtable-client-core-config:1.28.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.datastore:datastore-v1-proto-client:2.29.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.opentelemetry:detector-resources-support:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.opentelemetry:exporter-metrics:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.opentelemetry:shared-resourcemapping:0.33.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud.sql:jdbc-socket-factory-core:1.25.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.sql:postgres-socket-factory:1.25.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-bigquerystorage:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-bigtable:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-compute:1.82.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core-grpc:2.57.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core-http:2.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core:2.57.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-firestore:3.31.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-monitoring:3.65.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-pubsub:1.140.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-pubsublite:1.15.9=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-secretmanager:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-secretmanager:2.72.0=compileClasspath,testCompileClasspath -com.google.cloud:google-cloud-spanner:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-storage-control:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-storage:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-tasks:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-tasks:2.72.0=compileClasspath,testCompileClasspath -com.google.cloud:grpc-gcp:1.6.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:libraries-bom:26.48.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.31.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.code.gson:gson:2.12.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.common.html.types:types:1.0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.dagger:dagger:2.57=compileClasspath,testCompileClasspath,testRuntimeClasspath -com.google.dagger:dagger:2.57.1=runtimeClasspath -com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.escapevelocity:escapevelocity:1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flatbuffers:flatbuffers-java:23.5.26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flogger:flogger-system-backend:0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flogger:flogger:0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flogger:google-extensions:0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.guava:failureaccess:1.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.guava:guava:33.4.8-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.gwt:gwt-user:2.10.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-apache-v2:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-appengine:1.45.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-gson:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-jackson2:1.45.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-protobuf:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.inject:guice:7.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.j2objc:j2objc-annotations:3.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.jsinterop:jsinterop-annotations:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.monitoring-client:metrics:1.0.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.monitoring-client:stackdriver:1.0.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-java6:1.36.0=runtimeClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-java6:1.39.0=compileClasspath,testCompileClasspath -com.google.oauth-client:google-oauth-client-jetty:1.36.0=runtimeClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-jetty:1.39.0=compileClasspath,testCompileClasspath -com.google.oauth-client:google-oauth-client-servlet:1.36.0=runtimeClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-servlet:1.39.0=compileClasspath,testCompileClasspath -com.google.oauth-client:google-oauth-client:1.39.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.protobuf:protobuf-java-util:4.29.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.protobuf:protobuf-java:3.25.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.re2j:re2j:1.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.template:soy:2024-02-26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.truth:truth:1.4.4=runtimeClasspath,testRuntimeClasspath -com.googlecode.json-simple:json-simple:1.1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.ibm.icu:icu4j:73.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.jcraft:jsch:0.1.55=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.lmax:disruptor:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okhttp3:okhttp:4.12.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio-bom:3.0.0=runtimeClasspath,testRuntimeClasspath -com.squareup.okio:okio-fakefilesystem-jvm:3.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio-fakefilesystem:3.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio-jvm:3.6.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio:3.6.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-compiler:4.5.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-grpc-server-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-grpc-server:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-java-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-kotlin-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-runtime-jvm:4.9.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-runtime:4.9.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-schema-jvm:4.9.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-schema:4.8.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-swift-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup:javapoet:1.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup:kotlinpoet-jvm:1.15.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup:kotlinpoet:1.15.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.sun.istack:istack-commons-runtime:4.1.1=runtimeClasspath,testRuntimeClasspath -com.zaxxer:HikariCP:7.0.1=compileClasspath,testCompileClasspath,testRuntimeClasspath -com.zaxxer:HikariCP:7.0.2=runtimeClasspath -commons-codec:commons-codec:1.19.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -commons-io:commons-io:2.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -commons-logging:commons-logging:1.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -dnsjava:dnsjava:3.6.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.apicurio:apicurio-registry-protobuf-schema-utilities:3.0.0.M2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.github.classgraph:classgraph:4.8.162=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.github.java-diff-utils:java-diff-utils:4.16=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-alts:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-api:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-auth:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-census:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-context:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-core:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-googleapis:1.71.0=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-grpclb:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-inprocess:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-netty-shaded:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-netty:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-opentelemetry:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf-lite:1.67.1=compileClasspath,testCompileClasspath -io.grpc:grpc-protobuf-lite:1.71.0=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-rls:1.71.0=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-services:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-stub:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-util:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-xds:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-buffer:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-http2:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-http:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-socks:4.1.110.Final=runtimeClasspath,testRuntimeClasspath -io.netty:netty-codec:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-common:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-handler-proxy:4.1.110.Final=runtimeClasspath,testRuntimeClasspath -io.netty:netty-handler:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-resolver:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-tcnative-boringssl-static:2.0.52.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-tcnative-classes:2.0.52.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport-native-unix-common:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-api:0.31.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-exemplar-util:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0=compileClasspath,testCompileClasspath -io.opencensus:opencensus-contrib-grpc-metrics:0.31.1=runtimeClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-grpc-util:0.31.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-http-util:0.31.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-resource-util:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-exporter-metrics-util:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-impl-core:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-impl:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-proto:0.2.0=runtimeClasspath,testRuntimeClasspath -io.opentelemetry.contrib:opentelemetry-gcp-resources:1.37.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.instrumentation:opentelemetry-grpc-1.6:2.1.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-incubator:2.1.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-api:2.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.semconv:opentelemetry-semconv:1.29.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-api-incubator:1.42.1-alpha=runtimeClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-api:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-bom:1.42.1=runtimeClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-context:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-extension-incubator:1.35.0-alpha=runtimeClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-common:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.42.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-logs:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-metrics:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-trace:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-semconv:1.26.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.outfoxx:swiftpoet:1.3.1=runtimeClasspath,testRuntimeClasspath -io.perfmark:perfmark-api:0.27.0=runtimeClasspath,testRuntimeClasspath -io.smallrye:jandex:3.1.2=runtimeClasspath,testRuntimeClasspath -jakarta-regexp:jakarta-regexp:1.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.activation:jakarta.activation-api:2.1.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.mail:jakarta.mail-api:2.1.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.persistence:jakarta.persistence-api:3.2.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.servlet:jakarta.servlet-api:6.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.transaction:jakarta.transaction-api:2.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.xml.bind:jakarta.xml.bind-api:4.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.annotation:javax.annotation-api:1.3.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.annotation:jsr250-api:1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.inject:javax.inject:1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.jdo:jdo2-api:2.3-20090302111651=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.validation:validation-api:1.0.0.GA=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -joda-time:joda-time:2.12.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -net.bytebuddy:byte-buddy:1.14.12=compileClasspath,testCompileClasspath -net.bytebuddy:byte-buddy:1.14.15=runtimeClasspath,testRuntimeClasspath -net.java.dev.jna:jna:5.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.abego.treelayout:org.abego.treelayout.core:1.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:ST4:4.3.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:antlr-runtime:3.5.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:antlr4-runtime:4.13.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:antlr4:4.13.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.arrow:arrow-format:15.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.arrow:arrow-memory-core:15.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.arrow:arrow-vector:15.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.avro:avro:1.11.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-model-fn-execution:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-model-job-management:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-model-pipeline:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-core-java:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-java-fn-execution:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-core:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-expansion-service:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-arrow:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-avro:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-protobuf:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-harness:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-transform-service-launcher:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-vendor-grpc-1_69_0:0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-vendor-guava-32_1_2-jre:0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-compress:1.26.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-csv:1.14.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-lang3:3.14.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.httpcomponents:httpclient:4.5.14=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.httpcomponents:httpcore:4.4.16=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcpg-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcpkix-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcprov-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcutil-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.checkerframework:checker-compat-qual:2.5.3=compileClasspath,testCompileClasspath -org.checkerframework:checker-compat-qual:2.5.6=runtimeClasspath,testRuntimeClasspath -org.checkerframework:checker-qual:3.49.0=compileClasspath,testCompileClasspath -org.checkerframework:checker-qual:3.49.3=runtimeClasspath,testRuntimeClasspath -org.codehaus.mojo:animal-sniffer-annotations:1.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.conscrypt:conscrypt-openjdk-uber:2.5.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.eclipse.angus:angus-activation:2.0.2=runtimeClasspath,testRuntimeClasspath -org.eclipse.angus:jakarta.mail:2.0.4=runtimeClasspath,testRuntimeClasspath -org.eclipse.collections:eclipse-collections-api:11.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.eclipse.collections:eclipse-collections:11.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.flywaydb:flyway-core:11.11.1=compileClasspath,testCompileClasspath,testRuntimeClasspath -org.flywaydb:flyway-core:11.11.2=runtimeClasspath -org.flywaydb:flyway-database-postgresql:11.11.1=compileClasspath,testCompileClasspath,testRuntimeClasspath -org.flywaydb:flyway-database-postgresql:11.11.2=runtimeClasspath -org.glassfish.jaxb:jaxb-core:4.0.2=runtimeClasspath,testRuntimeClasspath -org.glassfish.jaxb:jaxb-runtime:4.0.2=runtimeClasspath,testRuntimeClasspath -org.glassfish.jaxb:txw2:4.0.2=runtimeClasspath,testRuntimeClasspath -org.gwtproject:gwt-user:2.10.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hamcrest:hamcrest:2.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hibernate.common:hibernate-commons-annotations:6.0.6.Final=runtimeClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-ant:6.5.3.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-core:6.5.3.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-hikaricp:6.5.3.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jboss.logging:jboss-logging:3.5.0.Final=runtimeClasspath,testRuntimeClasspath -org.jcommander:jcommander:2.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-bom:1.4.0=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-reflect:1.9.20=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib-common:1.9.20=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib:1.9.20=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.2=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-datetime-jvm:0.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-datetime:0.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.0.1=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.1=runtimeClasspath,testRuntimeClasspath -org.jetbrains:annotations:17.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jline:jline:3.30.5=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.joda:joda-money:2.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.json:json:20250107=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jsoup:jsoup:1.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jspecify:jspecify:1.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ogce:xpp3:1.1.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-analysis:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-commons:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-tree:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-util:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.postgresql:postgresql:42.7.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.rnorth.duct-tape:duct-tape:1.0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.slf4j:slf4j-api:2.0.17=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.slf4j:slf4j-jdk14:2.0.17=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.snakeyaml:snakeyaml-engine:2.1=runtimeClasspath,testRuntimeClasspath -org.testcontainers:database-commons:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.testcontainers:jdbc:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.testcontainers:postgresql:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.testcontainers:testcontainers:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.threeten:threetenbp:1.7.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.w3c.css:sac:1.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.xerial.snappy:snappy-java:1.1.10.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-api:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-api:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-diagram:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-diagram:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-loader:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-loader:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-operations:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-postgresql:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-postgresql:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-text:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-text:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-tools:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-tools:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-utility:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-utility:16.27.1=runtimeClasspath -us.fatehi:schemacrawler:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler:16.27.1=runtimeClasspath -xerces:xmlParserAPIs:2.6.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -empty=annotationProcessor,providedCompile,providedRuntime,testAnnotationProcessor diff --git a/services/tools/gradle.lockfile b/services/tools/gradle.lockfile deleted file mode 100644 index d476e65a4..000000000 --- a/services/tools/gradle.lockfile +++ /dev/null @@ -1,402 +0,0 @@ -# This is a Gradle generated 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=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -args4j:args4j:2.33=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.charleskorn.kaml:kaml:0.20.0=runtimeClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-annotations:2.20-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-core:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.core:jackson-databind:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-joda:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml.jackson:jackson-bom:2.20.0-rc1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.fasterxml:classmate:1.5.1=runtimeClasspath,testRuntimeClasspath -com.github.ben-manes.caffeine:caffeine:3.2.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.docker-java:docker-java-api:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.docker-java:docker-java-transport-zerodep:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.docker-java:docker-java-transport:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jffi:1.3.13=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-a64asm:1.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-constants:0.10.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-enxio:0.32.18=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-ffi:2.2.17=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-posix:3.1.20=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-unixsocket:0.38.23=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.github.jnr:jnr-x86asm:1.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.android:annotations:4.1.1.4=runtimeClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-jackson2:2.0.1=compileClasspath,testCompileClasspath -com.google.api-client:google-api-client-jackson2:2.7.0=runtimeClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-java6:2.1.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-servlet:2.7.0=runtimeClasspath,testRuntimeClasspath -com.google.api-client:google-api-client-servlet:2.8.1=compileClasspath,testCompileClasspath -com.google.api-client:google-api-client:2.8.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:gapic-google-cloud-storage-v2:2.44.1-beta=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta1:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigquerystorage-v1beta2:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-bigtable-v2:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-pubsub-v1:1.122.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-pubsublite-v1:1.15.9=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-admin-database-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-admin-instance-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-spanner-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-storage-control-v2:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-cloud-storage-v2:2.44.1-beta=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:grpc-google-common-protos:2.58.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1alpha:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta1:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta2:0.187.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigquerystorage-v1beta:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigtable-admin-v2:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-bigtable-v2:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-compute-v1:1.82.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-datastore-v1:0.120.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-firestore-v1:3.31.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-monitoring-v3:3.65.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-pubsub-v1:1.122.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-pubsublite-v1:1.15.9=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta1:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta2:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-secretmanager-v1beta2:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-spanner-admin-database-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-spanner-admin-instance-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-spanner-v1:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-storage-control-v2:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-storage-v2:2.44.1-beta=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2:2.72.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.141.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.162.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.141.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.162.0=compileClasspath,testCompileClasspath -com.google.api.grpc:proto-google-common-protos:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-iam-v1:1.53.0=runtimeClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-iam-v1:1.55.0=compileClasspath,testCompileClasspath -com.google.api:api-common:2.52.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api:gax-grpc:2.67.0=runtimeClasspath,testRuntimeClasspath -com.google.api:gax-grpc:2.69.0=compileClasspath,testCompileClasspath -com.google.api:gax-httpjson:2.69.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api:gax:2.69.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-admin-directory:directory_v1-rev20250804-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-bigquery:v2-rev20250511-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-cloudresourcemanager:v1-rev20240310-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-dataflow:v1b3-rev20250812-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-dns:v1-rev20250411-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-drive:v3-rev20250723-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-gmail:v1-rev20250630-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-groupssettings:v1-rev20220614-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-healthcare:v1-rev20240130-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-iam:v2-rev20250502-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-iamcredentials:v1-rev20211203-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-monitoring:v3-rev20250731-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-pubsub:v1-rev20220904-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-sheets:v4-rev20250616-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-sqladmin:v1beta4-rev20250613-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-storage:v1-rev20250524-2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-credentials:1.37.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-oauth2-http:1.37.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auto.service:auto-service-annotations:1.1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auto.value:auto-value-annotations:1.11.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auto.value:auto-value:1.11.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.bigdataoss:gcsio:2.2.26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.bigdataoss:util:2.2.26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.bigtable:bigtable-client-core-config:1.28.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.datastore:datastore-v1-proto-client:2.29.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.opentelemetry:detector-resources-support:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.opentelemetry:exporter-metrics:0.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.opentelemetry:shared-resourcemapping:0.33.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud.sql:jdbc-socket-factory-core:1.25.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud.sql:postgres-socket-factory:1.25.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-bigquerystorage:3.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-bigtable:2.60.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-compute:1.82.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core-grpc:2.57.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core-http:2.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-core:2.57.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-firestore:3.31.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-monitoring:3.65.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-pubsub:1.140.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-pubsublite:1.15.9=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-secretmanager:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-secretmanager:2.72.0=compileClasspath,testCompileClasspath -com.google.cloud:google-cloud-spanner:6.95.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-storage-control:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-storage:2.44.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-tasks:2.51.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud:google-cloud-tasks:2.72.0=compileClasspath,testCompileClasspath -com.google.cloud:grpc-gcp:1.6.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.cloud:libraries-bom:26.48.0=runtimeClasspath,testRuntimeClasspath -com.google.cloud:proto-google-cloud-firestore-bundle-v1:3.31.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.code.gson:gson:2.12.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.common.html.types:types:1.0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.dagger:dagger:2.57=compileClasspath,testCompileClasspath,testRuntimeClasspath -com.google.dagger:dagger:2.57.1=runtimeClasspath -com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.escapevelocity:escapevelocity:1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flatbuffers:flatbuffers-java:23.5.26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flogger:flogger-system-backend:0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flogger:flogger:0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.flogger:google-extensions:0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.guava:failureaccess:1.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.guava:guava:33.4.8-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.gwt:gwt-user:2.10.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-apache-v2:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-appengine:1.45.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-gson:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-jackson2:1.45.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-protobuf:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.inject:guice:7.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.j2objc:j2objc-annotations:3.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.jsinterop:jsinterop-annotations:2.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.monitoring-client:metrics:1.0.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.monitoring-client:stackdriver:1.0.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-java6:1.36.0=runtimeClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-java6:1.39.0=compileClasspath,testCompileClasspath -com.google.oauth-client:google-oauth-client-jetty:1.36.0=runtimeClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-jetty:1.39.0=compileClasspath,testCompileClasspath -com.google.oauth-client:google-oauth-client-servlet:1.36.0=runtimeClasspath,testRuntimeClasspath -com.google.oauth-client:google-oauth-client-servlet:1.39.0=compileClasspath,testCompileClasspath -com.google.oauth-client:google-oauth-client:1.39.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.protobuf:protobuf-java-util:4.29.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.protobuf:protobuf-java:3.25.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.re2j:re2j:1.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.template:soy:2024-02-26=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.truth:truth:1.4.4=runtimeClasspath,testRuntimeClasspath -com.googlecode.json-simple:json-simple:1.1.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.ibm.icu:icu4j:73.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.jcraft:jsch:0.1.55=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.lmax:disruptor:3.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okhttp3:okhttp:4.12.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio-bom:3.0.0=runtimeClasspath,testRuntimeClasspath -com.squareup.okio:okio-fakefilesystem-jvm:3.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio-fakefilesystem:3.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio-jvm:3.6.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.okio:okio:3.6.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-compiler:4.5.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-grpc-server-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-grpc-server:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-java-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-kotlin-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup.wire:wire-runtime-jvm:4.9.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-runtime:4.9.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-schema-jvm:4.9.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-schema:4.8.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup.wire:wire-swift-generator:4.5.0=runtimeClasspath,testRuntimeClasspath -com.squareup:javapoet:1.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup:kotlinpoet-jvm:1.15.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.squareup:kotlinpoet:1.15.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.sun.istack:istack-commons-runtime:4.1.1=runtimeClasspath,testRuntimeClasspath -com.zaxxer:HikariCP:7.0.1=compileClasspath,testCompileClasspath,testRuntimeClasspath -com.zaxxer:HikariCP:7.0.2=runtimeClasspath -commons-codec:commons-codec:1.19.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -commons-io:commons-io:2.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -commons-logging:commons-logging:1.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -dnsjava:dnsjava:3.6.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.apicurio:apicurio-registry-protobuf-schema-utilities:3.0.0.M2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.github.classgraph:classgraph:4.8.162=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.github.java-diff-utils:java-diff-utils:4.16=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-alts:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-api:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-auth:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-census:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-context:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-core:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-googleapis:1.71.0=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-grpclb:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-inprocess:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-netty-shaded:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-netty:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-opentelemetry:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf-lite:1.67.1=compileClasspath,testCompileClasspath -io.grpc:grpc-protobuf-lite:1.71.0=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-rls:1.71.0=runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-services:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-stub:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-util:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-xds:1.71.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-buffer:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-http2:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-http:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-codec-socks:4.1.110.Final=runtimeClasspath,testRuntimeClasspath -io.netty:netty-codec:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-common:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-handler-proxy:4.1.110.Final=runtimeClasspath,testRuntimeClasspath -io.netty:netty-handler:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-resolver:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-tcnative-boringssl-static:2.0.52.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-tcnative-classes:2.0.52.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport-native-unix-common:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.netty:netty-transport:4.1.110.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-api:0.31.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-exemplar-util:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-grpc-metrics:0.31.0=compileClasspath,testCompileClasspath -io.opencensus:opencensus-contrib-grpc-metrics:0.31.1=runtimeClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-grpc-util:0.31.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-http-util:0.31.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-contrib-resource-util:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-exporter-metrics-util:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-exporter-stats-stackdriver:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-impl-core:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-impl:0.31.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opencensus:opencensus-proto:0.2.0=runtimeClasspath,testRuntimeClasspath -io.opentelemetry.contrib:opentelemetry-gcp-resources:1.37.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.instrumentation:opentelemetry-grpc-1.6:2.1.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-incubator:2.1.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.instrumentation:opentelemetry-instrumentation-api:2.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry.semconv:opentelemetry-semconv:1.29.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-api-incubator:1.42.1-alpha=runtimeClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-api:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-bom:1.42.1=runtimeClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-context:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-extension-incubator:1.35.0-alpha=runtimeClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-common:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.42.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-logs:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-metrics:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk-trace:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-sdk:1.47.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.opentelemetry:opentelemetry-semconv:1.26.0-alpha=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.outfoxx:swiftpoet:1.3.1=runtimeClasspath,testRuntimeClasspath -io.perfmark:perfmark-api:0.27.0=runtimeClasspath,testRuntimeClasspath -io.smallrye:jandex:3.1.2=runtimeClasspath,testRuntimeClasspath -jakarta-regexp:jakarta-regexp:1.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.activation:jakarta.activation-api:2.1.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.inject:jakarta.inject-api:2.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.mail:jakarta.mail-api:2.1.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.persistence:jakarta.persistence-api:3.2.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.servlet:jakarta.servlet-api:6.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.transaction:jakarta.transaction-api:2.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.xml.bind:jakarta.xml.bind-api:4.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.annotation:javax.annotation-api:1.3.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.annotation:jsr250-api:1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.inject:javax.inject:1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.jdo:jdo2-api:2.3-20090302111651=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -javax.validation:validation-api:1.0.0.GA=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -joda-time:joda-time:2.12.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -net.bytebuddy:byte-buddy:1.14.12=compileClasspath,testCompileClasspath -net.bytebuddy:byte-buddy:1.14.15=runtimeClasspath,testRuntimeClasspath -net.java.dev.jna:jna:5.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.abego.treelayout:org.abego.treelayout.core:1.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:ST4:4.3.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:antlr-runtime:3.5.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:antlr4-runtime:4.13.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.antlr:antlr4:4.13.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.arrow:arrow-format:15.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.arrow:arrow-memory-core:15.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.arrow:arrow-vector:15.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.avro:avro:1.11.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-model-fn-execution:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-model-job-management:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-model-pipeline:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-core-java:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-google-cloud-dataflow-java:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-runners-java-fn-execution:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-core:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-expansion-service:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-arrow:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-avro:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-google-cloud-platform-core:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-extensions-protobuf:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-harness:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-io-google-cloud-platform:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-sdks-java-transform-service-launcher:2.67.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-vendor-grpc-1_69_0:0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.beam:beam-vendor-guava-32_1_2-jre:0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-compress:1.26.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-csv:1.14.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.commons:commons-lang3:3.14.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.httpcomponents:httpclient:4.5.14=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.apache.httpcomponents:httpcore:4.4.16=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcpg-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcpkix-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcprov-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcutil-jdk18on:1.81=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.checkerframework:checker-compat-qual:2.5.3=compileClasspath,testCompileClasspath -org.checkerframework:checker-compat-qual:2.5.6=runtimeClasspath,testRuntimeClasspath -org.checkerframework:checker-qual:3.49.0=compileClasspath,testCompileClasspath -org.checkerframework:checker-qual:3.49.3=runtimeClasspath,testRuntimeClasspath -org.codehaus.mojo:animal-sniffer-annotations:1.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.conscrypt:conscrypt-openjdk-uber:2.5.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.eclipse.angus:angus-activation:2.0.2=runtimeClasspath,testRuntimeClasspath -org.eclipse.angus:jakarta.mail:2.0.4=runtimeClasspath,testRuntimeClasspath -org.eclipse.collections:eclipse-collections-api:11.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.eclipse.collections:eclipse-collections:11.1.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.flywaydb:flyway-core:11.11.1=compileClasspath,testCompileClasspath,testRuntimeClasspath -org.flywaydb:flyway-core:11.11.2=runtimeClasspath -org.flywaydb:flyway-database-postgresql:11.11.1=compileClasspath,testCompileClasspath,testRuntimeClasspath -org.flywaydb:flyway-database-postgresql:11.11.2=runtimeClasspath -org.glassfish.jaxb:jaxb-core:4.0.2=runtimeClasspath,testRuntimeClasspath -org.glassfish.jaxb:jaxb-runtime:4.0.2=runtimeClasspath,testRuntimeClasspath -org.glassfish.jaxb:txw2:4.0.2=runtimeClasspath,testRuntimeClasspath -org.gwtproject:gwt-user:2.10.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hamcrest:hamcrest:2.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hibernate.common:hibernate-commons-annotations:6.0.6.Final=runtimeClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-ant:6.5.3.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-core:6.5.3.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.hibernate.orm:hibernate-hikaricp:6.5.3.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jboss.logging:jboss-logging:3.5.0.Final=runtimeClasspath,testRuntimeClasspath -org.jcommander:jcommander:2.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-bom:1.4.0=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-reflect:1.9.20=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib-common:1.9.20=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlin:kotlin-stdlib:1.9.20=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.2=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-datetime-jvm:0.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-datetime:0.4.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.0.1=runtimeClasspath,testRuntimeClasspath -org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.1=runtimeClasspath,testRuntimeClasspath -org.jetbrains:annotations:17.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jline:jline:3.30.5=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.joda:joda-money:2.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.json:json:20250107=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jsoup:jsoup:1.21.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.jspecify:jspecify:1.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ogce:xpp3:1.1.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-analysis:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-commons:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-tree:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm-util:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.ow2.asm:asm:9.7.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.postgresql:postgresql:42.7.7=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.rnorth.duct-tape:duct-tape:1.0.8=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.slf4j:slf4j-api:2.0.17=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.slf4j:slf4j-jdk14:2.0.17=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.snakeyaml:snakeyaml-engine:2.1=runtimeClasspath,testRuntimeClasspath -org.testcontainers:database-commons:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.testcontainers:jdbc:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.testcontainers:postgresql:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.testcontainers:testcontainers:1.21.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.threeten:threetenbp:1.7.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.w3c.css:sac:1.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.xerial.snappy:snappy-java:1.1.10.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-api:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-api:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-diagram:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-diagram:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-loader:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-loader:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-operations:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-postgresql:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-postgresql:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-text:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-text:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-tools:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-tools:16.27.1=runtimeClasspath -us.fatehi:schemacrawler-utility:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler-utility:16.27.1=runtimeClasspath -us.fatehi:schemacrawler:16.26.3=compileClasspath,testCompileClasspath,testRuntimeClasspath -us.fatehi:schemacrawler:16.27.1=runtimeClasspath -xerces:xmlParserAPIs:2.6.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -empty=annotationProcessor,providedCompile,providedRuntime,testAnnotationProcessor diff --git a/util/gradle.lockfile b/util/gradle.lockfile index db27fa3f2..cfb012571 100644 --- a/util/gradle.lockfile +++ b/util/gradle.lockfile @@ -4,114 +4,113 @@ aopalliance:aopalliance:1.0=annotationProcessor,errorprone,testAnnotationProcessor com.fasterxml.jackson.core:jackson-annotations:2.10.3=testCompileClasspath,testRuntimeClasspath com.github.ben-manes.caffeine:caffeine:3.0.5=annotationProcessor,errorprone,testAnnotationProcessor -com.github.ben-manes.caffeine:caffeine:3.2.2=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.github.ben-manes.caffeine:caffeine:3.2.3=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.github.docker-java:docker-java-api:3.4.2=testCompileClasspath,testRuntimeClasspath com.github.docker-java:docker-java-transport-zerodep:3.4.2=testCompileClasspath,testRuntimeClasspath com.github.docker-java:docker-java-transport:3.4.2=testCompileClasspath,testRuntimeClasspath com.github.kevinstern:software-and-algorithms:1.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.android:annotations:4.1.1.4=deploy_jar,runtimeClasspath,testRuntimeClasspath com.google.api-client:google-api-client:2.7.2=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2:2.72.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.162.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.162.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-common-protos:2.60.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api.grpc:proto-google-iam-v1:1.55.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api:api-common:2.52.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api:gax-grpc:2.69.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api:gax-httpjson:2.69.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.api:gax:2.69.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.apis:google-api-services-monitoring:v3-rev20250731-2.0.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-credentials:1.37.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.auth:google-auth-library-oauth2-http:1.37.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2:2.51.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta2:0.141.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-cloud-tasks-v2beta3:0.141.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-common-protos:2.65.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api.grpc:proto-google-iam-v1:1.40.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:api-common:2.57.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax-grpc:2.54.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax-httpjson:2.54.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.api:gax:2.74.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.apis:google-api-services-monitoring:v3-rev20260129-2.0.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-credentials:1.42.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.auth:google-auth-library-oauth2-http:1.42.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.auto.service:auto-service-annotations:1.0.1=annotationProcessor,errorprone,testAnnotationProcessor com.google.auto.value:auto-value-annotations:1.11.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.auto.value:auto-value-annotations:1.9=annotationProcessor,errorprone,testAnnotationProcessor -com.google.auto.value:auto-value:1.11.0=annotationProcessor,deploy_jar,runtimeClasspath,testAnnotationProcessor,testRuntimeClasspath +com.google.auto.value:auto-value:1.11.1=annotationProcessor,deploy_jar,runtimeClasspath,testAnnotationProcessor,testRuntimeClasspath com.google.auto:auto-common:1.2.1=annotationProcessor,errorprone,testAnnotationProcessor -com.google.cloud:google-cloud-tasks:2.72.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.cloud:google-cloud-tasks:2.51.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.code.findbugs:jsr305:3.0.2=annotationProcessor,checkstyle,compileClasspath,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath com.google.code.gson:gson:2.12.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.dagger:dagger-compiler:2.57.1=annotationProcessor,testAnnotationProcessor -com.google.dagger:dagger-spi:2.57.1=annotationProcessor,testAnnotationProcessor -com.google.dagger:dagger:2.57=deploy_jar -com.google.dagger:dagger:2.57.1=annotationProcessor,compileClasspath,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -com.google.devtools.ksp:symbol-processing-api:2.1.21-2.0.2=annotationProcessor,testAnnotationProcessor +com.google.dagger:dagger-compiler:2.59.2=annotationProcessor,testAnnotationProcessor +com.google.dagger:dagger-spi:2.59.2=annotationProcessor,testAnnotationProcessor +com.google.dagger:dagger:2.59.2=annotationProcessor,compileClasspath,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath +com.google.devtools.ksp:symbol-processing-api:2.2.20-2.0.3=annotationProcessor,testAnnotationProcessor com.google.errorprone:error_prone_annotation:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_annotations:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor -com.google.errorprone:error_prone_annotations:2.38.0=compileClasspath -com.google.errorprone:error_prone_annotations:2.40.0=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.errorprone:error_prone_annotations:2.42.0=compileClasspath +com.google.errorprone:error_prone_annotations:2.43.0=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.errorprone:error_prone_annotations:2.7.1=checkstyle com.google.errorprone:error_prone_check_api:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_core:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.errorprone:error_prone_type_annotations:2.23.0=annotationProcessor,errorprone,testAnnotationProcessor -com.google.errorprone:javac-shaded:9-dev-r4023-3=annotationProcessor,testAnnotationProcessor com.google.errorprone:javac:9+181-r4173-1=errorproneJavac com.google.flogger:flogger-system-backend:0.9=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.flogger:flogger:0.9=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.googlejavaformat:google-java-format:1.5=annotationProcessor,testAnnotationProcessor +com.google.googlejavaformat:google-java-format:1.33.0=annotationProcessor,testAnnotationProcessor com.google.guava:failureaccess:1.0.1=checkstyle,errorprone -com.google.guava:failureaccess:1.0.2=annotationProcessor,compileClasspath,deploy_jar,runtimeClasspath,testAnnotationProcessor -com.google.guava:failureaccess:1.0.3=testCompileClasspath,testRuntimeClasspath +com.google.guava:failureaccess:1.0.2=annotationProcessor,testAnnotationProcessor +com.google.guava:failureaccess:1.0.3=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.guava:guava-parent:32.1.1-jre=errorprone -com.google.guava:guava-testlib:33.4.8-jre=testCompileClasspath,testRuntimeClasspath +com.google.guava:guava-testlib:33.5.0-jre=testCompileClasspath,testRuntimeClasspath com.google.guava:guava:31.0.1-jre=checkstyle com.google.guava:guava:32.1.1-jre=errorprone com.google.guava:guava:33.0.0-jre=annotationProcessor,testAnnotationProcessor -com.google.guava:guava:33.4.0-jre=compileClasspath,deploy_jar,runtimeClasspath -com.google.guava:guava:33.4.8-jre=testCompileClasspath,testRuntimeClasspath +com.google.guava:guava:33.5.0-jre=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=annotationProcessor,checkstyle,compileClasspath,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath com.google.http-client:google-http-client-apache-v2:1.45.2=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client-gson:1.47.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.http-client:google-http-client:1.47.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client-gson:2.1.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.http-client:google-http-client:2.1.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.inject:guice:5.1.0=annotationProcessor,errorprone,testAnnotationProcessor com.google.j2objc:j2objc-annotations:1.3=checkstyle -com.google.j2objc:j2objc-annotations:3.0.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.j2objc:j2objc-annotations:3.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.oauth-client:google-oauth-client:1.36.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.protobuf:protobuf-java-util:3.25.8=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java-util:4.34.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.google.protobuf:protobuf-java:3.19.6=annotationProcessor,errorprone,testAnnotationProcessor -com.google.protobuf:protobuf-java:3.25.8=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.re2j:re2j:1.8=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.google.truth:truth:1.4.4=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -com.ibm.icu:icu4j:77.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.protobuf:protobuf-java:4.34.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.google.re2j:re2j:1.7=deploy_jar,runtimeClasspath,testRuntimeClasspath +com.google.re2j:re2j:1.8=compileClasspath,testCompileClasspath +com.google.truth:truth:1.4.5=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +com.ibm.icu:icu4j:78.3=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath com.puppycrawl.tools:checkstyle:9.3=checkstyle com.squareup:javapoet:1.13.0=annotationProcessor,testAnnotationProcessor com.squareup:kotlinpoet:1.11.0=annotationProcessor,testAnnotationProcessor commons-beanutils:commons-beanutils:1.9.4=checkstyle -commons-codec:commons-codec:1.18.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +commons-codec:commons-codec:1.17.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath commons-collections:commons-collections:3.2.2=checkstyle commons-logging:commons-logging:1.2=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath info.picocli:picocli:4.6.2=checkstyle io.github.eisop:dataflow-errorprone:3.34.0-eisop1=annotationProcessor,errorprone,testAnnotationProcessor io.github.java-diff-utils:java-diff-utils:4.12=annotationProcessor,errorprone,testAnnotationProcessor io.github.java-diff-utils:java-diff-utils:4.16=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-alts:1.71.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-api:1.71.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-auth:1.71.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-context:1.71.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-core:1.71.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-googleapis:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-grpclb:1.71.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-inprocess:1.71.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-netty-shaded:1.71.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf-lite:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-protobuf:1.71.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-services:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-stub:1.71.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -io.grpc:grpc-util:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -io.grpc:grpc-xds:1.71.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-alts:1.68.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-api:1.68.0=compileClasspath,testCompileClasspath +io.grpc:grpc-api:1.70.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-auth:1.68.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-context:1.70.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-core:1.68.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-googleapis:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-grpclb:1.68.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-inprocess:1.68.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-netty-shaded:1.68.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf-lite:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-protobuf:1.68.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-services:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-stub:1.68.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +io.grpc:grpc-util:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath +io.grpc:grpc-xds:1.68.0=deploy_jar,runtimeClasspath,testRuntimeClasspath io.opencensus:opencensus-api:0.31.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath io.opencensus:opencensus-contrib-http-util:0.31.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath io.perfmark:perfmark-api:0.27.0=deploy_jar,runtimeClasspath,testRuntimeClasspath -jakarta.activation:jakarta.activation-api:2.1.3=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +jakarta.activation:jakarta.activation-api:2.2.0-M1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath jakarta.inject:jakarta.inject-api:2.0.1=annotationProcessor,compileClasspath,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -jakarta.mail:jakarta.mail-api:2.1.3=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -jakarta.xml.bind:jakarta.xml.bind-api:4.0.2=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +jakarta.mail:jakarta.mail-api:2.2.0-M1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +jakarta.xml.bind:jakarta.xml.bind-api:4.0.5=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath javax.annotation:javax.annotation-api:1.3.2=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath javax.inject:javax.inject:1=annotationProcessor,compileClasspath,deploy_jar,errorprone,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath -joda-time:joda-time:2.14.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +joda-time:joda-time:2.14.1=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath junit:junit:4.13.2=testCompileClasspath,testRuntimeClasspath -net.bytebuddy:byte-buddy-agent:1.17.6=testCompileClasspath,testRuntimeClasspath -net.bytebuddy:byte-buddy:1.17.6=testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy-agent:1.17.7=testCompileClasspath,testRuntimeClasspath +net.bytebuddy:byte-buddy:1.17.7=testCompileClasspath,testRuntimeClasspath net.java.dev.jna:jna:5.13.0=testCompileClasspath,testRuntimeClasspath net.ltgt.gradle.incap:incap:0.2=annotationProcessor,testAnnotationProcessor net.sf.saxon:Saxon-HE:10.6=checkstyle @@ -120,19 +119,19 @@ org.apache.commons:commons-compress:1.24.0=testCompileClasspath,testRuntimeClass org.apache.httpcomponents:httpclient:4.5.14=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apache.httpcomponents:httpcore:4.4.16=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath -org.bouncycastle:bcpkix-jdk18on:1.81=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcprov-jdk18on:1.81=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.bouncycastle:bcutil-jdk18on:1.81=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcpkix-jdk18on:1.83=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcprov-jdk18on:1.83=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.bouncycastle:bcutil-jdk18on:1.83=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.checkerframework:checker-compat-qual:2.5.3=annotationProcessor,testAnnotationProcessor org.checkerframework:checker-compat-qual:2.5.6=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.checkerframework:checker-qual:3.12.0=checkstyle org.checkerframework:checker-qual:3.33.0=errorprone org.checkerframework:checker-qual:3.41.0=annotationProcessor,testAnnotationProcessor -org.checkerframework:checker-qual:3.49.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.codehaus.mojo:animal-sniffer-annotations:1.24=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.checkerframework:checker-qual:3.47.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.codehaus.mojo:animal-sniffer-annotations:1.24=deploy_jar,runtimeClasspath,testRuntimeClasspath org.conscrypt:conscrypt-openjdk-uber:2.5.2=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.eclipse.angus:angus-activation:2.0.2=deploy_jar,runtimeClasspath,testRuntimeClasspath -org.eclipse.angus:jakarta.mail:2.0.4=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.eclipse.angus:angus-activation:2.1.0-M1=deploy_jar,runtimeClasspath,testRuntimeClasspath +org.eclipse.angus:jakarta.mail:2.1.0-M1=deploy_jar,runtimeClasspath,testRuntimeClasspath org.hamcrest:hamcrest-core:3.0=testCompileClasspath,testRuntimeClasspath org.hamcrest:hamcrest:3.0=testCompileClasspath,testRuntimeClasspath org.jacoco:org.jacoco.agent:0.8.12=jacocoAgent,jacocoAnt @@ -140,36 +139,37 @@ org.jacoco:org.jacoco.ant:0.8.12=jacocoAnt org.jacoco:org.jacoco.core:0.8.12=jacocoAnt org.jacoco:org.jacoco.report:0.8.12=jacocoAnt org.javassist:javassist:3.28.0-GA=checkstyle -org.jetbrains.kotlin:kotlin-metadata-jvm:2.1.21=annotationProcessor,testAnnotationProcessor +org.jetbrains.kotlin:kotlin-metadata-jvm:2.2.20=annotationProcessor,testAnnotationProcessor org.jetbrains.kotlin:kotlin-reflect:1.6.10=annotationProcessor,testAnnotationProcessor org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0=annotationProcessor,testAnnotationProcessor org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0=annotationProcessor,testAnnotationProcessor -org.jetbrains.kotlin:kotlin-stdlib:2.1.21=annotationProcessor,testAnnotationProcessor +org.jetbrains.kotlin:kotlin-stdlib:2.2.20=annotationProcessor,testAnnotationProcessor org.jetbrains:annotations:13.0=annotationProcessor,testAnnotationProcessor org.jetbrains:annotations:17.0.0=testCompileClasspath,testRuntimeClasspath org.jspecify:jspecify:1.0.0=annotationProcessor,compileClasspath,deploy_jar,runtimeClasspath,testAnnotationProcessor,testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-api:5.13.4=testCompileClasspath,testRuntimeClasspath org.junit.jupiter:junit-jupiter-engine:5.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-commons:1.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-engine:1.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-launcher:1.13.4=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-commons:1.14.3=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-engine:1.14.3=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-launcher:1.14.3=testCompileClasspath,testRuntimeClasspath org.junit.platform:junit-platform-runner:1.13.3=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-suite-api:1.13.4=testCompileClasspath,testRuntimeClasspath -org.junit.platform:junit-platform-suite-commons:1.13.4=testRuntimeClasspath -org.junit:junit-bom:5.13.4=testCompileClasspath,testRuntimeClasspath -org.mockito:mockito-core:5.19.0=testCompileClasspath,testRuntimeClasspath -org.mockito:mockito-junit-jupiter:5.19.0=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-suite-api:1.14.3=testCompileClasspath,testRuntimeClasspath +org.junit.platform:junit-platform-suite-commons:1.14.3=testRuntimeClasspath +org.junit:junit-bom:5.14.3=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-core:5.23.0=testCompileClasspath,testRuntimeClasspath +org.mockito:mockito-junit-jupiter:5.23.0=testCompileClasspath,testRuntimeClasspath org.objenesis:objenesis:3.3=testRuntimeClasspath org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath org.ow2.asm:asm-commons:9.7=jacocoAnt org.ow2.asm:asm-tree:9.7=jacocoAnt -org.ow2.asm:asm:9.7=deploy_jar,jacocoAnt,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.ow2.asm:asm:9.7=jacocoAnt +org.ow2.asm:asm:9.8=deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath org.pcollections:pcollections:3.1.4=annotationProcessor,errorprone,testAnnotationProcessor org.reflections:reflections:0.10.2=checkstyle org.rnorth.duct-tape:duct-tape:1.0.8=testCompileClasspath,testRuntimeClasspath org.slf4j:slf4j-api:1.7.36=testCompileClasspath,testRuntimeClasspath -org.testcontainers:junit-jupiter:1.21.3=testCompileClasspath,testRuntimeClasspath -org.testcontainers:testcontainers:1.21.3=testCompileClasspath,testRuntimeClasspath +org.testcontainers:junit-jupiter:1.21.4=testCompileClasspath,testRuntimeClasspath +org.testcontainers:testcontainers:1.21.4=testCompileClasspath,testRuntimeClasspath org.threeten:threetenbp:1.7.0=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath -org.yaml:snakeyaml:2.4=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath +org.yaml:snakeyaml:2.6=compileClasspath,deploy_jar,runtimeClasspath,testCompileClasspath,testRuntimeClasspath empty=