From 9628b69534a5d86fcb64566ed006ef157b859747 Mon Sep 17 00:00:00 2001 From: Emma Richardson <49138186+Emrichardsone@users.noreply.github.com> Date: Wed, 20 Sep 2023 15:44:19 -0500 Subject: [PATCH 01/19] update to grails5, micronaut 3, groovy 3, and more --- .sdkmanrc | 3 + build.gradle | 8 +- core/build.gradle | 27 +- .../entity/arguments/ComplexArgument.groovy | 2 +- .../graphql/entity/dsl/GraphQLMapping.groovy | 3 +- .../entity/dsl/GraphQLPropertyMapping.groovy | 1 - .../entity/dsl/helpers/Arguable.groovy | 2 +- .../entity/dsl/helpers/ComplexTyped.groovy | 2 +- .../dsl/helpers/ExecutesClosures.groovy | 2 + .../entity/operations/ComplexOperation.groovy | 2 +- .../impl/ComplexGraphQLProperty.groovy | 1 - .../impl/PersistentGraphQLProperty.groovy | 1 - .../description/MappingComment.groovy | 1 + dep.txt | 6200 +++++++++++++++++ examples/grails-docs-app/build.gradle | 55 +- .../grails-multi-datastore-app/build.gradle | 68 +- .../groovy/myapp/BarIntegrationSpec.groovy | 7 +- .../groovy/myapp/FooIntegrationSpec.groovy | 6 +- examples/grails-tenant-app/build.gradle | 56 +- examples/grails-test-app/build.gradle | 51 +- .../domain/grails/test/app/ArguedField.groovy | 1 - .../grails/test/app/GraphQLCustomizer.groovy | 1 - .../app/manyToMany/StudentSchemaSpec.groovy | 2 + examples/spring-boot-app/build.gradle | 40 +- gradle.properties | 24 +- plugin/build.gradle | 29 +- .../graphql/plugin/GraphqlController.groovy | 2 + .../graphql/plugin/testing/GraphQLSpec.groovy | 2 +- plugin/src/main/resources/graphiql.html | 4 +- 29 files changed, 6424 insertions(+), 179 deletions(-) create mode 100644 .sdkmanrc create mode 100644 dep.txt diff --git a/.sdkmanrc b/.sdkmanrc new file mode 100644 index 00000000..207ddffa --- /dev/null +++ b/.sdkmanrc @@ -0,0 +1,3 @@ +# Enable auto-env through the sdkman_auto_env config +# Add key=value pairs of SDKs to use below +java=8.0.372-amzn diff --git a/build.gradle b/build.gradle index 163cf949..5f4dc9db 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { maven { url "https://repo.grails.org/grails/core" } } dependencies { - classpath "org.grails:grails-gradle-plugin:$grailsVersion" + classpath "org.grails:grails-gradle-plugin:$grailsGradlePluginVersion" classpath "org.grails:grails-docs:${project.ext.properties.grailsDocsVersion ?: grailsVersion}" classpath "io.github.gradle-nexus:publish-plugin:1.1.0" } @@ -68,7 +68,11 @@ subprojects { } dependencies { - testCompile "org.codehaus.groovy:groovy-test:$groovyVersion" + implementation "com.graphql-java:graphql-java:$graphqlJavaVersion" + testImplementation "org.codehaus.groovy:groovy-test:$groovyVersion" + testImplementation "io.projectreactor:reactor-test:3.5.5" + testImplementation("org.spockframework:spock-core:$spockVersion") + implementation 'org.grails:grails-datastore-gorm:7.3.4' } } diff --git a/core/build.gradle b/core/build.gradle index 6ebdb381..874856e1 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -1,21 +1,28 @@ +repositories { + mavenCentral() + maven { url "https://repo.grails.org/grails/core" } +} apply plugin: 'codenarc' dependencies { documentation "org.codehaus.groovy:groovy-cli-picocli:$groovyVersion" - compile "org.grails:grails-datastore-gorm:${gormVersion}" - compile "com.graphql-java:graphql-java:$graphqlJavaVersion" - compile "com.graphql-java:graphql-java-extended-scalars:$graphqlJavaScalarExtVersion" + implementation "org.grails:grails-datastore-gorm:${gormVersion}" + implementation "com.graphql-java:graphql-java:$graphqlJavaVersion" + implementation "com.graphql-java:graphql-java-extended-scalars:$graphqlJavaScalarExtVersion" + implementation 'com.github.javaparser:javaparser-core:3.25.5' + implementation "org.grails.plugins:views-json:2.3.2" + implementation 'org.javassist:javassist:3.29.2-GA' codenarc "org.codenarc:CodeNarc:$codenarcVersion" - testCompile "org.grails:grails-datastore-gorm-hibernate5:${gormHibernateVersion}" - testCompile "org.grails:grails-datastore-gorm-mongodb:${gormMongoDbVersion}" - testCompile 'com.github.fakemongo:fongo:2.1.1' - testRuntime "com.h2database:h2:1.4.192" - testRuntime "org.apache.tomcat:tomcat-jdbc:8.5.85" - testRuntime "org.apache.tomcat.embed:tomcat-embed-logging-log4j:8.5.2" - testRuntime "org.slf4j:slf4j-api:$slf4jVersion" + testImplementation "org.grails:grails-datastore-gorm-hibernate5:${gormHibernateVersion}" + testImplementation "org.grails:grails-datastore-gorm-mongodb:${gormMongoDbVersion}" + testImplementation 'com.github.fakemongo:fongo:2.1.1' + testImplementation 'com.h2database:h2:2.2.224' + testImplementation "org.apache.tomcat:tomcat-jdbc:8.5.85" + testImplementation "org.apache.tomcat.embed:tomcat-embed-logging-log4j:8.5.2" + testImplementation "org.slf4j:slf4j-api:$slf4jVersion" } targetCompatibility = 1.8 diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/arguments/ComplexArgument.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/arguments/ComplexArgument.groovy index 7837b889..71a6e7a1 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/arguments/ComplexArgument.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/arguments/ComplexArgument.groovy @@ -14,7 +14,7 @@ import org.grails.gorm.graphql.types.GraphQLTypeManager * @author James Kleeh * @since 1.0.0 */ -@CompileStatic + @InheritConstructors class ComplexArgument extends CustomArgument implements ComplexTyped, ExecutesClosures { diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLMapping.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLMapping.groovy index 69f1fc4d..0e27cb6d 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLMapping.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLMapping.groovy @@ -1,5 +1,6 @@ package org.grails.gorm.graphql.entity.dsl +import grails.compiler.GrailsCompileStatic import groovy.transform.CompileDynamic import groovy.transform.CompileStatic import org.grails.gorm.graphql.entity.dsl.helpers.Deprecatable @@ -36,7 +37,7 @@ import org.springframework.validation.DataBinder * @author James Kleeh * @since 1.0.0 */ -@CompileStatic + class GraphQLMapping implements Describable, Deprecatable, ExecutesClosures { private List additional = [] diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy index 6d0a2650..02270ae1 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy @@ -37,7 +37,6 @@ import org.grails.gorm.graphql.entity.dsl.helpers.Named * @since 1.0.0 */ @Builder(builderStrategy = SimpleStrategy, prefix = '') -@CompileStatic class GraphQLPropertyMapping implements Describable, Deprecatable, Named, ExecutesClosures { /** diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/Arguable.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/Arguable.groovy index c3d4a7ef..b36aa025 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/Arguable.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/Arguable.groovy @@ -15,7 +15,7 @@ import org.grails.gorm.graphql.types.GraphQLTypeManager * @author James Kleeh * @since 1.0.0 */ -@CompileStatic + trait Arguable extends ExecutesClosures { List arguments = [] diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ComplexTyped.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ComplexTyped.groovy index 638b6ac5..ab935bbe 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ComplexTyped.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ComplexTyped.groovy @@ -18,7 +18,7 @@ import static graphql.schema.GraphQLInputObjectField.newInputObjectField * @author James Kleeh * @since 1.0.0 */ -@CompileStatic + trait ComplexTyped extends ExecutesClosures { boolean collection = false diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ExecutesClosures.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ExecutesClosures.groovy index 339dc06c..305f2efa 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ExecutesClosures.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ExecutesClosures.groovy @@ -24,4 +24,6 @@ trait ExecutesClosures { } } } + } + diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/operations/ComplexOperation.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/operations/ComplexOperation.groovy index c32da2e0..ea1e4176 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/operations/ComplexOperation.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/operations/ComplexOperation.groovy @@ -13,7 +13,7 @@ import org.grails.gorm.graphql.types.GraphQLTypeManager * @author James Kleeh * @since 1.0.0 */ -@CompileStatic + class ComplexOperation extends CustomOperation implements ExecutesClosures { String typeName diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/ComplexGraphQLProperty.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/ComplexGraphQLProperty.groovy index ad299b14..aad03f8c 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/ComplexGraphQLProperty.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/ComplexGraphQLProperty.groovy @@ -16,7 +16,6 @@ import org.grails.gorm.graphql.types.GraphQLTypeManager * @since 1.0.0 */ @AutoClone -@CompileStatic class ComplexGraphQLProperty extends CustomGraphQLProperty implements ExecutesClosures { String typeName diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy index ae1b2c93..72a7fc52 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy @@ -33,7 +33,6 @@ import static graphql.schema.GraphQLList.list * @author James Kleeh * @since 1.0.0 */ -@CompileStatic class PersistentGraphQLProperty extends OrderedGraphQLProperty { final Integer order diff --git a/core/src/test/groovy/org/grails/gorm/graphql/domain/hibernate/description/MappingComment.groovy b/core/src/test/groovy/org/grails/gorm/graphql/domain/hibernate/description/MappingComment.groovy index 3e322c2d..078469e8 100644 --- a/core/src/test/groovy/org/grails/gorm/graphql/domain/hibernate/description/MappingComment.groovy +++ b/core/src/test/groovy/org/grails/gorm/graphql/domain/hibernate/description/MappingComment.groovy @@ -3,6 +3,7 @@ package org.grails.gorm.graphql.domain.hibernate.description import grails.gorm.annotation.Entity import grails.gorm.hibernate.mapping.MappingBuilder + @Entity class MappingComment { diff --git a/dep.txt b/dep.txt new file mode 100644 index 00000000..920124e4 --- /dev/null +++ b/dep.txt @@ -0,0 +1,6200 @@ + +> Task :examples-grails-multi-datastore-app:dependencies + +------------------------------------------------------------ +Project ':examples-grails-multi-datastore-app' +------------------------------------------------------------ + +agent +No dependencies + +annotationProcessor - Annotation processors and their dependencies for source set 'main'. +No dependencies + +apiElements - API elements for main. (n) +No dependencies + +archives - Configuration for archive artifacts. (n) +No dependencies + +bootArchives - Configuration for Spring Boot archive artifacts. (n) +No dependencies + +compileClasspath - Compile classpath for source set 'main'. ++--- org.grails.plugins:embedded-mongodb:2.0.1 +| +--- org.springframework.boot:spring-boot-starter-logging -> 2.7.8 +| | +--- ch.qos.logback:logback-classic:1.2.11 +| | | +--- ch.qos.logback:logback-core:1.2.11 +| | | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | +--- org.apache.logging.log4j:log4j-to-slf4j:2.17.2 +| | | +--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 +| | | \--- org.apache.logging.log4j:log4j-api:2.17.2 +| | \--- org.slf4j:jul-to-slf4j:1.7.36 +| | \--- org.slf4j:slf4j-api:1.7.36 +| +--- org.springframework.boot:spring-boot-autoconfigure -> 2.7.8 +| | \--- org.springframework.boot:spring-boot:2.7.8 +| | +--- org.springframework:spring-core:5.3.25 +| | | \--- org.springframework:spring-jcl:5.3.25 +| | \--- org.springframework:spring-context:5.3.25 +| | +--- org.springframework:spring-aop:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 +| | | | \--- org.springframework:spring-core:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-beans:5.3.25 (*) +| | +--- org.springframework:spring-core:5.3.25 (*) +| | \--- org.springframework:spring-expression:5.3.25 +| | \--- org.springframework:spring-core:5.3.25 (*) +| +--- org.grails:grails-core -> 5.3.2 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 +| | | \--- org.slf4j:slf4j-api:1.7.36 +| | +--- io.micronaut:micronaut-inject:3.8.4 -> 3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | +--- jakarta.inject:jakarta.inject-api:2.0.1 +| | | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 +| | | +--- io.micronaut:micronaut-core:3.2.0 +| | | | \--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | \--- org.yaml:snakeyaml:1.29 -> 1.30 +| | +--- javax.inject:javax.inject:1 +| | +--- io.micronaut.spring:micronaut-spring-context:4.5.0 +| | | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) +| | | +--- org.springframework:spring-framework-bom:5.3.25 +| | | | +--- org.springframework:spring-aop:5.3.25 (c) +| | | | +--- org.springframework:spring-beans:5.3.25 (c) +| | | | +--- org.springframework:spring-context:5.3.25 (c) +| | | | +--- org.springframework:spring-core:5.3.25 (c) +| | | | +--- org.springframework:spring-expression:5.3.25 (c) +| | | | +--- org.springframework:spring-jcl:5.3.25 (c) +| | | | +--- org.springframework:spring-jdbc:5.3.25 (c) +| | | | +--- org.springframework:spring-orm:5.3.25 (c) +| | | | +--- org.springframework:spring-test:5.3.25 (c) +| | | | +--- org.springframework:spring-tx:5.3.25 (c) +| | | | +--- org.springframework:spring-web:5.3.25 (c) +| | | | +--- org.springframework:spring-webmvc:5.3.25 (c) +| | | | \--- org.springframework:spring-context-support:5.3.25 (c) +| | | +--- org.springframework:spring-context:5.3.25 (*) +| | | +--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | | \--- io.micronaut:micronaut-core:3.2.0 (*) +| | | \--- io.micronaut.spring:micronaut-spring:4.5.0 +| | | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) +| | | +--- org.springframework:spring-framework-bom:5.3.25 (*) +| | | +--- org.springframework:spring-core:5.3.25 (*) +| | | +--- org.springframework:spring-tx:5.3.25 +| | | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | | \--- org.springframework:spring-core:5.3.25 (*) +| | | +--- org.springframework:spring-context:5.3.25 (*) +| | | \--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) +| | +--- io.micronaut.cache:micronaut-cache-core:3.5.0 +| | | +--- io.micronaut:micronaut-inject:3.5.4 -> 3.2.0 (*) +| | | +--- io.micronaut:micronaut-aop:3.5.4 -> 3.2.0 (*) +| | | +--- io.micronaut:micronaut-http:3.5.4 -> 3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | | \--- io.micronaut:micronaut-core-reactive:3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-core:3.2.0 (*) +| | | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| | | \--- io.micronaut:micronaut-runtime:3.5.4 -> 3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | +--- io.micronaut:micronaut-aop:3.2.0 (*) +| | | +--- io.micronaut:micronaut-context:3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | | +--- io.micronaut:micronaut-aop:3.2.0 (*) +| | | | \--- javax.validation:validation-api:2.0.1.Final +| | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (*) +| | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 +| | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | | +--- io.micronaut:micronaut-json-core:3.2.0 +| | | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | | | +--- io.micronaut:micronaut-context:3.2.0 (*) +| | | | | | \--- io.micronaut:micronaut-http:3.2.0 (*) +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 +| | | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 +| | | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) +| | | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) +| | | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) +| | | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) +| | | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) +| | | | | \--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 +| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | \--- javax.validation:validation-api:2.0.1.Final +| | +--- io.micronaut:micronaut-runtime:3.8.4 -> 3.2.0 (*) +| | +--- javax.persistence:javax.persistence-api:2.2 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.springframework.boot:spring-boot:2.7.8 (*) +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-tx:5.3.25 (*) +| | +--- org.springframework:spring-beans:5.3.25 (*) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | +--- org.grails:grails-bootstrap:5.3.2 -> 5.3.3 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.codehaus.groovy:groovy-xml:3.0.11 +| | | | \--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.codehaus.groovy:groovy-templates:3.0.11 +| | | | \--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.yaml:snakeyaml:1.33 -> 1.30 +| | | \--- io.micronaut:micronaut-inject:3.8.5 -> 3.2.0 (*) +| | +--- org.grails:grails-spring:5.3.2 -> 5.3.3 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.springframework:spring-tx:5.3.25 (*) +| | | +--- org.springframework:spring-web:5.3.25 +| | | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | | \--- org.springframework:spring-core:5.3.25 (*) +| | | +--- org.springframework:spring-context:5.3.25 (*) +| | | \--- org.grails:grails-bootstrap:5.3.3 (*) +| | +--- org.grails:grails-datastore-core:7.3.3 +| | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- javax.transaction:jta:1.1 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- javax.persistence:javax.persistence-api:2.2 +| | | +--- org.springframework:spring-core:5.3.25 (*) +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | +--- org.springframework:spring-tx:5.3.25 (*) +| | | \--- org.springframework:spring-context:5.3.25 (*) +| | +--- org.apache.ant:ant:1.10.13 +| | | \--- org.apache.ant:ant-launcher:1.10.13 +| | +--- jline:jline:2.14.6 +| | \--- org.fusesource.jansi:jansi:1.18 +| +--- org.grails.profiles:plugin -> 5.0.1 +| +--- org.grails:grails-gorm-testing-support -> 2.4.1 +| | +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | +--- org.grails:grails-plugin-domain-class:5.1.2 -> 5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 +| | | | \--- org.springframework:spring-core:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | +--- org.grails:grails-spring:5.3.3 (*) +| | | +--- org.grails:grails-plugin-validation:5.3.3 +| | | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | | +--- org.springframework:spring-test:5.3.25 (*) +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | | \--- org.grails:grails-web:5.3.3 +| | | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | | +--- org.springframework:spring-test:5.3.25 (*) +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | +--- org.grails:grails-web-common:5.3.3 +| | | | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | | | +--- org.springframework:spring-test:5.3.25 (*) +| | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | | | +--- org.grails:grails-databinding:5.3.3 +| | | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) +| | | | | +--- org.grails:grails-encoder:5.3.3 +| | | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | | | | +--- org.codehaus.groovy:groovy-json:3.0.11 +| | | | | | | \--- org.codehaus.groovy:groovy:3.0.11 +| | | | | | \--- org.springframework:spring-web:5.3.25 (*) +| | | | | +--- org.grails:grails-gsp:5.2.2 +| | | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | | | +--- org.grails:grails-taglib:5.2.2 +| | | | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | | | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | | | \--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | | | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | | | | +--- org.springframework:spring-webmvc:5.3.25 +| | | | | | +--- org.springframework:spring-aop:5.3.25 (*) +| | | | | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | | | | +--- org.springframework:spring-context:5.3.25 (*) +| | | | | | +--- org.springframework:spring-core:5.3.25 (*) +| | | | | | +--- org.springframework:spring-expression:5.3.25 (*) +| | | | | | \--- org.springframework:spring-web:5.3.25 (*) +| | | | | \--- org.springframework:spring-context-support:5.3.25 +| | | | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | | | +--- org.springframework:spring-context:5.3.25 (*) +| | | | | \--- org.springframework:spring-core:5.3.25 (*) +| | | | +--- org.grails:grails-web-databinding:5.3.3 +| | | | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | | | +--- org.springframework:spring-test:5.3.25 (*) +| | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | | +--- org.grails:grails-databinding:5.3.3 (*) +| | | | | \--- org.grails:grails-web-common:5.3.3 (*) +| | | | +--- org.grails:grails-web-fileupload:5.3.3 +| | | | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | | | +--- org.springframework:spring-test:5.3.25 (*) +| | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | | | \--- commons-fileupload:commons-fileupload:1.5 +| | | | | \--- commons-io:commons-io:2.11.0 +| | | | +--- org.grails:grails-web-url-mappings:5.3.3 +| | | | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | | | +--- org.springframework:spring-test:5.3.25 (*) +| | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 +| | | | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | | | | | \--- commons-validator:commons-validator:1.7 +| | | | | | \--- commons-collections:commons-collections:3.2.2 +| | | | | +--- org.fusesource.jansi:jansi:1.18 +| | | | | \--- jline:jline:2.14.6 +| | | | +--- org.grails:grails-web-mvc:5.3.3 +| | | | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | | | +--- org.springframework:spring-test:5.3.25 (*) +| | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | | | +--- org.grails:grails-web-url-mappings:5.3.3 (*) +| | | | | \--- org.grails:grails-web-sitemesh:5.2.2 +| | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | | | \--- opensymphony:sitemesh:2.4.2 +| | | | +--- org.grails:grails-web-gsp:5.2.2 +| | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | | | +--- org.grails:grails-gsp:5.2.2 (*) +| | | | | +--- org.grails:grails-web-common:5.2.5 -> 5.3.3 (*) +| | | | | +--- org.grails:grails-web-taglib:5.2.2 +| | | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | | | \--- org.grails:grails-taglib:5.2.2 (*) +| | | | | \--- org.grails:grails-web-sitemesh:5.2.2 (*) +| | | | \--- org.grails:grails-web-sitemesh:5.2.2 (*) +| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm:7.3.3 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | | | \--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm-support:7.3.3 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-gorm:7.3.3 (*) +| | | | +--- org.grails:grails-core:5.2.4 -> 5.3.2 (*) +| | | | \--- org.grails:grails-bootstrap:5.2.4 -> 5.3.3 (*) +| | | \--- org.grails:grails-datastore-core:7.3.3 (*) +| | +--- org.grails:grails-datastore-gorm-test:7.2.0 -> 7.3.3 +| | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.grails:grails-datastore-gorm:7.3.3 (*) +| | | \--- org.grails:grails-datastore-core:7.3.3 (*) +| | \--- org.grails:grails-testing-support:2.4.1 +| | +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | +--- org.springframework:spring-test:5.3.16 -> 5.3.25 (*) +| | +--- org.grails:grails-plugin-codecs:5.1.2 -> 5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web:5.3.3 (*) +| | | \--- org.grails:grails-encoder:5.3.3 (*) +| | +--- org.grails.plugins:async:4.0.0 +| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | +--- org.grails:grails-plugin-controllers:4.0.0 -> 5.3.3 +| | | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | | +--- org.springframework:spring-test:5.3.25 (*) +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | | +--- org.grails:grails-web:5.3.3 (*) +| | | | +--- org.grails:grails-plugin-mimetypes:5.3.3 +| | | | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | | | +--- org.springframework:spring-test:5.3.25 (*) +| | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | | \--- org.grails:grails-web:5.3.3 (*) +| | | | +--- org.grails:grails-plugin-validation:5.3.3 (*) +| | | | +--- org.grails:grails-plugin-domain-class:5.3.3 (*) +| | | | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.9 -> 2.7.8 (*) +| | | +--- org.grails.plugins:events:4.0.0 +| | | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.grails:grails-core:4.0.0 -> 5.3.2 (*) +| | | | +--- org.grails:grails-events:4.0.0 +| | | | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | | | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | | +--- org.springframework:spring-context:5.1.8.RELEASE -> 5.3.25 (*) +| | | | | \--- org.springframework:spring-tx:5.1.8.RELEASE -> 5.3.25 (*) +| | | | +--- org.grails:grails-events-transform:4.0.0 +| | | | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | | | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | | +--- org.grails:grails-events:4.0.0 (*) +| | | | | \--- org.grails:grails-datastore-gorm:7.0.2.RELEASE -> 7.3.3 (*) +| | | | \--- org.grails:grails-events-compat:4.0.0 +| | | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.grails:grails-events:4.0.0 (*) +| | | | \--- org.grails:grails-events-transform:4.0.0 (*) +| | | \--- org.grails:grails-async:4.0.0 +| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | | \--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.grails:grails-datastore-gorm:7.2.0 -> 7.3.3 (*) +| | +--- org.grails:grails-test:5.1.2 -> 5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.springframework:spring-tx:5.3.25 (*) +| | | +--- org.springframework.boot:spring-boot-test:2.7.9 -> 2.7.8 +| | | | \--- org.springframework.boot:spring-boot:2.7.8 (*) +| | | +--- org.codehaus.groovy:groovy-test-junit5:3.0.11 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | \--- org.junit.jupiter:junit-jupiter-api:5.8.2 +| | | | +--- org.junit:junit-bom:5.8.2 +| | | | | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 (c) +| | | | | +--- org.junit.platform:junit-platform-commons:1.8.2 (c) +| | | | | +--- org.junit.platform:junit-platform-engine:1.8.2 (c) +| | | | | +--- org.junit.platform:junit-platform-launcher:1.8.2 (c) +| | | | | +--- org.junit.platform:junit-platform-runner:1.8.2 (c) +| | | | | \--- org.junit.platform:junit-platform-suite-api:1.8.2 (c) +| | | | +--- org.opentest4j:opentest4j:1.2.0 +| | | | +--- org.junit.platform:junit-platform-commons:1.8.2 +| | | | | +--- org.junit:junit-bom:5.8.2 (*) +| | | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | +--- org.codehaus.groovy:groovy-test:3.0.11 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | \--- junit:junit:4.13.2 +| | | | \--- org.hamcrest:hamcrest-core:1.3 -> 2.2 +| | | | \--- org.hamcrest:hamcrest:2.2 +| | | +--- org.spockframework:spock-core:2.1-groovy-3.0 +| | | | +--- org.codehaus.groovy:groovy:3.0.9 -> 3.0.11 +| | | | +--- org.junit:junit-bom:5.8.1 -> 5.8.2 (*) +| | | | +--- org.junit.platform:junit-platform-engine -> 1.8.2 +| | | | | +--- org.junit:junit-bom:5.8.2 (*) +| | | | | +--- org.opentest4j:opentest4j:1.2.0 +| | | | | +--- org.junit.platform:junit-platform-commons:1.8.2 (*) +| | | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | | \--- org.hamcrest:hamcrest:2.2 +| | | +--- org.junit.platform:junit-platform-runner:1.9.2 -> 1.8.2 +| | | | +--- org.junit:junit-bom:5.8.2 (*) +| | | | +--- junit:junit:4.13.2 (*) +| | | | +--- org.junit.platform:junit-platform-launcher:1.8.2 +| | | | | +--- org.junit:junit-bom:5.8.2 (*) +| | | | | +--- org.junit.platform:junit-platform-engine:1.8.2 (*) +| | | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | | +--- org.junit.platform:junit-platform-suite-api:1.8.2 +| | | | | +--- org.junit:junit-bom:5.8.2 (*) +| | | | | +--- org.junit.platform:junit-platform-commons:1.8.2 (*) +| | | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | | \--- org.apiguardian:apiguardian-api:1.1.2 +| | | +--- org.grails:grails-plugin-mimetypes:5.3.3 (*) +| | | +--- org.grails:grails-web:5.3.3 (*) +| | | +--- org.grails.plugins:converters:4.0.0 +| | | | \--- org.apache.commons:commons-lang3:3.0 -> 3.12.0 +| | | +--- jline:jline:2.14.6 +| | | +--- org.fusesource.jansi:jansi:1.18 +| | | +--- org.apache.ant:ant:1.10.13 (*) +| | | +--- org.apache.ant:ant-junit:1.10.13 +| | | | +--- org.apache.ant:ant:1.10.13 (*) +| | | | \--- junit:junit:4.13.1 -> 4.13.2 (*) +| | | \--- org.objenesis:objenesis:3.3 +| | +--- org.springframework.boot:spring-boot-test:2.6.4 -> 2.7.8 (*) +| | +--- org.spockframework:spock-spring:2.1-groovy-3.0 +| | +--- org.spockframework:spock-core:2.1-groovy-3.0 (*) +| | +--- org.codehaus.groovy:groovy-test-junit5:3.0.7 -> 3.0.11 (*) +| | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 (*) +| | \--- org.junit.platform:junit-platform-runner:1.8.2 (*) +| +--- de.flapdoodle.embed:de.flapdoodle.embed.mongo:2.2.0 -> 3.4.11 +| | +--- de.flapdoodle.embed:de.flapdoodle.embed.process:3.1.15 +| | | +--- de.flapdoodle:de.flapdoodle.os:1.1.12 +| | | \--- org.apache.commons:commons-compress:1.21 -> 1.10 +| | \--- de.flapdoodle.embed:de.flapdoodle.embed.mongo.packageresolver:1.0.10 +| \--- org.grails.plugins:mongodb -> 7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | +--- org.springframework:spring-web:5.3.25 (*) +| | \--- org.springframework:spring-context:5.3.25 (*) +| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm-mongodb-ext:7.3.0 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | \--- org.mongodb:mongodb-driver-sync:4.5.0 +| | +--- org.mongodb:bson:4.5.0 -> 4.6.1 +| | \--- org.mongodb:mongodb-driver-core:4.5.0 +| | \--- org.mongodb:bson:4.5.0 -> 4.6.1 +| \--- org.grails:grails-datastore-gorm-mongodb:7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.mongodb:mongodb-driver-sync:4.5.0 (*) +| +--- org.grails:grails-datastore-gorm-validation:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) +| \--- org.grails:grails-datastore-gorm-bson:7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) +| \--- org.mongodb:bson:4.5.0 -> 4.6.1 ++--- org.grails:grails-gorm-testing-support -> 2.4.1 (*) ++--- org.grails.plugins:geb -> 3.0.0 +| +--- org.grails:grails-core:5.1.8 -> 5.3.2 (*) +| \--- org.gebish:geb-spock:5.1 +| +--- org.gebish:geb-core:5.1 +| | +--- org.seleniumhq.selenium:selenium-api:3.141.59 -> 4.1.4 +| | +--- org.gebish:geb-ast:5.1 +| | | +--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 (c) +| | | | +--- org.codehaus.groovy:groovy-sql:3.0.11 (c) +| | | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (c) +| | | | +--- org.codehaus.groovy:groovy-test:3.0.11 (c) +| | | | +--- org.codehaus.groovy:groovy-test-junit5:3.0.11 (c) +| | | | +--- org.codehaus.groovy:groovy-xml:3.0.11 (c) +| | | | +--- org.codehaus.groovy:groovy-json:3.0.11 (c) +| | | | \--- org.codehaus.groovy:groovy-macro:3.0.11 (c) +| | | +--- org.codehaus.groovy:groovy -> 3.0.11 +| | | +--- org.codehaus.groovy:groovy-templates -> 3.0.11 (*) +| | | \--- org.codehaus.groovy:groovy-macro -> 3.0.11 +| | | \--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.gebish:geb-waiting:5.1 +| | | +--- org.gebish:geb-implicit-assertions:5.1 +| | | | +--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) +| | | | +--- org.codehaus.groovy:groovy -> 3.0.11 +| | | | \--- org.codehaus.groovy:groovy-templates -> 3.0.11 (*) +| | | +--- org.gebish:geb-exceptions:5.1 +| | | | +--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) +| | | | +--- org.codehaus.groovy:groovy -> 3.0.11 +| | | | \--- org.codehaus.groovy:groovy-templates -> 3.0.11 (*) +| | | +--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) +| | | +--- org.codehaus.groovy:groovy -> 3.0.11 +| | | \--- org.codehaus.groovy:groovy-templates -> 3.0.11 (*) +| | +--- org.threeten:threeten-extra:1.4 +| | +--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) +| | +--- org.codehaus.groovy:groovy -> 3.0.11 +| | \--- org.codehaus.groovy:groovy-templates -> 3.0.11 (*) +| +--- org.spockframework:spock-core:2.0-groovy-3.0 -> 2.1-groovy-3.0 (*) +| +--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) +| +--- org.codehaus.groovy:groovy -> 3.0.11 +| \--- org.codehaus.groovy:groovy-templates -> 3.0.11 (*) ++--- org.grails:grails-web-testing-support -> 2.4.1 +| +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| +--- org.grails.plugins:gsp:5.1.0 -> 5.2.2 +| | +--- org.grails:grails-web-gsp-taglib:5.2.2 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | \--- org.grails:grails-web-jsp:5.2.2 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | +--- org.grails:grails-web-common:5.2.5 -> 5.3.3 (*) +| | | \--- org.grails:grails-web-gsp:5.2.2 (*) +| | +--- commons-lang:commons-lang:2.6 +| | \--- org.grails:grails-plugin-codecs:5.2.5 -> 5.3.3 (*) +| +--- org.grails:grails-plugin-rest:5.1.2 -> 5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- javax.xml.bind:jaxb-api:2.3.1 +| | | \--- javax.activation:javax.activation-api:1.2.0 +| | +--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-controllers:5.3.3 (*) +| | +--- org.grails:grails-plugin-datasource:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.springframework:spring-jdbc:5.3.25 +| | | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | | +--- org.springframework:spring-core:5.3.25 (*) +| | | | \--- org.springframework:spring-tx:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy-sql:3.0.11 +| | | | \--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.springframework:spring-context:5.3.25 (*) +| | | +--- org.grails:grails-datastore-gorm:7.3.3 (*) +| | | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | | \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | \--- org.grails.plugins:converters:4.0.0 (*) +| +--- org.grails:grails-plugin-interceptors:5.1.2 -> 5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.grails:grails-plugin-controllers:5.3.3 (*) +| | \--- org.grails:grails-plugin-url-mappings:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-controllers:5.3.3 (*) +| | \--- junit:junit:4.13.2 (*) +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.grails:grails-testing-support:2.4.1 (*) +| \--- org.javassist:javassist:3.28.0-GA ++--- org.springframework.boot:spring-boot-starter-logging -> 2.7.8 (*) ++--- org.springframework.boot:spring-boot-autoconfigure -> 2.7.8 (*) ++--- org.grails:grails-core:5.3.2 (*) ++--- org.springframework.boot:spring-boot-starter-actuator -> 2.7.8 +| +--- org.springframework.boot:spring-boot-starter:2.7.8 +| | +--- org.springframework.boot:spring-boot:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot-starter-logging:2.7.8 (*) +| | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 +| | +--- org.springframework:spring-core:5.3.25 (*) +| | \--- org.yaml:snakeyaml:1.30 +| +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.7.8 +| | +--- org.springframework.boot:spring-boot-actuator:2.7.8 +| | | \--- org.springframework.boot:spring-boot:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot:2.7.8 (*) +| | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) +| \--- io.micrometer:micrometer-core:1.9.7 +| \--- org.hdrhistogram:HdrHistogram:2.1.12 ++--- org.springframework.boot:spring-boot-starter-tomcat -> 2.7.8 +| +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 +| +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 +| +--- org.apache.tomcat.embed:tomcat-embed-el:9.0.71 +| \--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.71 +| \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 ++--- org.grails:grails-plugin-url-mappings -> 5.3.3 (*) ++--- org.grails:grails-plugin-rest -> 5.3.3 (*) ++--- org.grails:grails-plugin-codecs -> 5.3.3 (*) ++--- org.grails:grails-plugin-interceptors -> 5.3.3 (*) ++--- org.grails:grails-plugin-services -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails:grails-plugin-datasource:5.3.3 (*) ++--- org.grails:grails-plugin-datasource -> 5.3.3 (*) ++--- org.grails:grails-plugin-databinding -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails:grails-web:5.3.3 (*) ++--- org.grails:grails-web-boot -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| \--- org.grails:grails-web-common:5.3.3 (*) ++--- org.grails:grails-logging -> 5.3.3 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) ++--- org.grails.plugins:cache -> 5.0.1 +| +--- com.bertramlabs.plugins:asset-pipeline-grails:3.0.7 +| +--- gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.4 +| | +--- org.ysb33r.gradle:grolifant:0.11 +| | \--- org.apache.maven:maven-artifact:3.6.3 +| | +--- org.codehaus.plexus:plexus-utils:3.2.1 +| | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| +--- org.codehaus.gpars:gpars:1.2.1 +| | +--- org.multiverse:multiverse-core:0.7.0 +| | \--- org.codehaus.jsr166-mirror:jsr166y:1.7.0 +| +--- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2 +| \--- org.javassist:javassist:3.27.0-GA -> 3.28.0-GA ++--- org.grails.plugins:async -> 4.0.0 (*) ++--- org.grails.plugins:hibernate5 -> 7.3.0 +| +--- org.springframework.boot:spring-boot:2.7.0 -> 2.7.8 (*) +| +--- org.springframework:spring-orm:5.3.20 -> 5.3.25 +| | +--- org.springframework:spring-beans:5.3.25 (*) +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-jdbc:5.3.25 (*) +| | \--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.hibernate:hibernate-core:5.6.9.Final -> 5.6.11.Final +| | +--- org.jboss.logging:jboss-logging:3.4.3.Final +| | +--- javax.persistence:javax.persistence-api:2.2 +| | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 +| | +--- antlr:antlr:2.7.7 +| | +--- org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final +| | +--- org.jboss:jandex:2.4.2.Final +| | +--- com.fasterxml:classmate:1.5.1 +| | +--- javax.activation:javax.activation-api:1.2.0 +| | +--- org.hibernate.common:hibernate-commons-annotations:5.1.2.Final +| | | \--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.4.3.Final +| | +--- javax.xml.bind:jaxb-api:2.3.1 (*) +| | \--- org.glassfish.jaxb:jaxb-runtime:2.3.1 -> 2.3.7 +| | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 +| | +--- org.glassfish.jaxb:txw2:2.3.7 +| | \--- com.sun.istack:istack-commons-runtime:3.0.12 +| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) +| \--- org.grails:grails-datastore-gorm-hibernate5:7.3.0 -> 7.2.2 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 +| +--- org.grails:grails-datastore-gorm:7.2.1 -> 7.3.3 (*) +| +--- org.springframework:spring-orm:5.3.16 -> 5.3.25 (*) +| +--- org.hibernate:hibernate-core:5.6.5.Final -> 5.6.11.Final (*) +| +--- org.hibernate:hibernate-validator:6.2.3.Final +| | \--- org.hibernate.validator:hibernate-validator:6.2.3.Final -> 6.2.5.Final +| | +--- jakarta.validation:jakarta.validation-api:2.0.2 +| | +--- org.jboss.logging:jboss-logging:3.4.1.Final -> 3.4.3.Final +| | \--- com.fasterxml:classmate:1.5.1 +| \--- javax.validation:validation-api:2.0.1.Final ++--- org.hibernate:hibernate-core:5.6.11.Final (*) ++--- org.grails.plugins:mongodb -> 7.3.0 (*) ++--- org.grails.plugins:views-json -> 2.3.2 +| +--- org.grails:grails-core:5.1.8 -> 5.3.2 (*) +| \--- org.grails:views-core:2.3.2 +| +--- org.codehaus.groovy:groovy-bom:3.0.11 (*) +| +--- org.grails:grails-encoder:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-web-common:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-web-url-mappings:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-plugin-rest:5.1.8 -> 5.3.3 (*) +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 +| | +--- org.checkerframework:checker-qual:3.19.0 +| | \--- com.google.errorprone:error_prone_annotations:2.10.0 +| \--- javax.servlet:javax.servlet-api:4.0.1 ++--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 +| +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) +| +--- io.micronaut.rxjava2:micronaut-rxjava2:1.2.0 +| | +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-runtime:3.3.0 -> 3.2.0 (*) +| | \--- io.reactivex.rxjava2:rxjava:2.2.21 +| | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| \--- io.micronaut:micronaut-http-client:3.3.0 -> 3.2.0 +| +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| +--- io.micronaut:micronaut-runtime:3.2.0 (*) +| +--- io.micronaut:micronaut-http-client-core:3.2.0 +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | \--- io.micronaut:micronaut-runtime:3.2.0 (*) +| +--- io.micronaut:micronaut-websocket:3.2.0 +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | +--- io.micronaut:micronaut-http-client-core:3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | \--- io.micronaut:micronaut-aop:3.2.0 (*) +| +--- io.micronaut:micronaut-http-netty:3.2.0 +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | +--- io.micronaut:micronaut-websocket:3.2.0 (*) +| | +--- io.micronaut:micronaut-buffer-netty:3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-core:3.2.0 (*) +| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | \--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final +| | | \--- io.netty:netty-common:4.1.87.Final +| | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-resolver:4.1.87.Final +| | | | \--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-codec:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-transport:4.1.87.Final (*) +| | | \--- io.netty:netty-handler:4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-resolver:4.1.87.Final (*) +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-transport:4.1.87.Final (*) +| | | \--- io.netty:netty-codec:4.1.87.Final (*) +| | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | +--- io.netty:netty-codec:4.1.87.Final (*) +| | | +--- io.netty:netty-handler:4.1.87.Final (*) +| | | \--- io.netty:netty-codec-http:4.1.87.Final (*) +| | \--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (*) +| \--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final +| +--- io.netty:netty-common:4.1.87.Final +| +--- io.netty:netty-buffer:4.1.87.Final (*) +| +--- io.netty:netty-transport:4.1.87.Final (*) +| +--- io.netty:netty-codec:4.1.87.Final (*) +| +--- io.netty:netty-codec-socks:4.1.87.Final +| | +--- io.netty:netty-common:4.1.87.Final +| | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | +--- io.netty:netty-transport:4.1.87.Final (*) +| | \--- io.netty:netty-codec:4.1.87.Final (*) +| \--- io.netty:netty-codec-http:4.1.87.Final (*) ++--- org.grails.plugins:views-json-templates -> 2.3.2 +| \--- org.grails.plugins:views-json:2.3.2 (*) ++--- com.graphql-java:graphql-java:20.6 +| +--- com.graphql-java:java-dataloader:3.2.0 +| | \--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 ++--- org.apache.commons:commons-compress:1.10 +\--- project :grails-plugin-gorm-graphql-plugin + \--- project :gorm-graphql + +--- org.codehaus.groovy:groovy:3.0.11 + \--- org.slf4j:slf4j-api:1.7.36 + +compileOnly - Compile only dependencies for source set 'main'. (n) ++--- org.grails.plugins:embedded-mongodb:2.0.1 (n) ++--- org.grails:grails-gorm-testing-support (n) ++--- org.grails.plugins:geb (n) +\--- org.grails:grails-web-testing-support (n) + +console +\--- org.grails:grails-console -> 5.3.3 + +--- org.fusesource.jansi:jansi:1.18 + +--- jline:jline:2.14.6 + +--- net.java.dev.jna:jna:5.13.0 + +--- org.codehaus.groovy:groovy:3.0.11 + +--- org.slf4j:slf4j-api:1.7.36 + +--- org.slf4j:jcl-over-slf4j:1.7.36 + | \--- org.slf4j:slf4j-api:1.7.36 + +--- org.grails:grails-core:5.3.3 + | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 + | | +--- org.checkerframework:checker-qual:3.19.0 + | | \--- com.google.errorprone:error_prone_annotations:2.10.0 + | +--- org.codehaus.groovy:groovy:3.0.11 + | +--- org.slf4j:slf4j-api:1.7.36 + | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) + | +--- io.micronaut:micronaut-inject:3.8.5 -> 3.2.0 + | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 + | | +--- javax.annotation:javax.annotation-api:1.3.2 + | | +--- jakarta.inject:jakarta.inject-api:2.0.1 + | | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 + | | +--- io.micronaut:micronaut-core:3.2.0 + | | | \--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 + | | \--- org.yaml:snakeyaml:1.29 -> 1.30 + | +--- javax.inject:javax.inject:1 + | +--- io.micronaut.spring:micronaut-spring-context:4.5.0 + | | +--- io.micronaut.cache:micronaut-cache-core:3.5.0 + | | | +--- io.projectreactor:reactor-core:3.4.21 -> 3.4.26 + | | | | \--- org.reactivestreams:reactive-streams:1.0.4 + | | | +--- io.micronaut:micronaut-bom:3.5.4 -> 3.2.0 + | | | | +--- org.codehaus.groovy:groovy-bom:3.0.9 -> 3.0.11 + | | | | | +--- org.codehaus.groovy:groovy:3.0.11 (c) + | | | | | +--- org.codehaus.groovy:groovy-console:3.0.11 (c) + | | | | | +--- org.codehaus.groovy:groovy-groovysh:3.0.11 (c) + | | | | | +--- org.codehaus.groovy:groovy-swing:3.0.11 (c) + | | | | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (c) + | | | | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (c) + | | | | +--- io.grpc:grpc-bom:1.39.0 + | | | | +--- com.fasterxml.jackson:jackson-bom:2.12.4 -> 2.13.4 + | | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) + | | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) + | | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) + | | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) + | | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) + | | | | +--- org.junit:junit-bom:5.7.2 + | | | | +--- org.jetbrains.kotlin:kotlin-bom:1.6.0 + | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.5.1 + | | | | +--- io.ktor:ktor-bom:1.6.1 + | | | | +--- io.micrometer:micrometer-bom:1.8.0 + | | | | +--- io.micronaut.aws:micronaut-aws-bom:3.0.4 + | | | | +--- io.micronaut.cache:micronaut-cache-bom:3.0.0 + | | | | | +--- io.micronaut.cache:micronaut-cache-core:3.0.0 -> 3.5.0 (c) + | | | | | \--- com.github.ben-manes.caffeine:caffeine:2.9.1 -> 2.9.3 (c) + | | | | +--- io.micronaut.coherence:micronaut-coherence-bom:3.0.1 + | | | | +--- io.micronaut.data:micronaut-data-bom:3.2.0 + | | | | +--- io.micronaut.groovy:micronaut-groovy-bom:3.0.0 + | | | | | \--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) + | | | | +--- io.micronaut.micrometer:micronaut-micrometer-bom:4.1.0 + | | | | | \--- io.micrometer:micrometer-bom:1.8.0 + | | | | +--- io.micronaut.oraclecloud:micronaut-oraclecloud-bom:2.0.3 + | | | | +--- io.micronaut.r2dbc:micronaut-r2dbc-bom:2.0.0 + | | | | | \--- io.r2dbc:r2dbc-bom:Arabba-SR9 + | | | | +--- io.micronaut.sql:micronaut-sql-bom:4.0.4 + | | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 + | | | | | +--- org.junit:junit-bom:5.7.2 + | | | | | \--- org.spockframework:spock-bom:2.0-groovy-3.0 + | | | | +--- io.micronaut.views:micronaut-views-bom:3.0.1 + | | | | +--- io.netty:netty-bom:4.1.70.Final + | | | | +--- com.google.protobuf:protobuf-bom:3.17.2 + | | | | +--- org.testcontainers:testcontainers-bom:1.16.1 + | | | | +--- io.micronaut:micronaut-aop:3.2.0 (c) + | | | | +--- io.micronaut:micronaut-context:3.2.0 (c) + | | | | +--- io.micronaut:micronaut-core:3.2.0 (c) + | | | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (c) + | | | | +--- io.micronaut:micronaut-http:3.2.0 (c) + | | | | +--- io.micronaut:micronaut-inject:3.2.0 (c) + | | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 (c) + | | | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 (c) + | | | | +--- io.micronaut:micronaut-runtime:3.2.0 (c) + | | | | +--- org.grails:grails-datastore-core:7.1.0.M6 -> 7.3.3 (c) + | | | | +--- org.codehaus.groovy:groovy:3.0.9 -> 3.0.11 (c) + | | | | +--- org.codehaus.groovy:groovy-templates:3.0.9 -> 3.0.11 (c) + | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 (c) + | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 (c) + | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 (c) + | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 (c) + | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 (c) + | | | | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 (c) + | | | | +--- javax.annotation:javax.annotation-api:1.3.2 (c) + | | | | +--- net.java.dev.jna:jna:5.3.1 -> 5.13.0 (c) + | | | | +--- io.micronaut.spring:micronaut-spring:4.0.0 -> 4.5.0 (c) + | | | | +--- io.micronaut.spring:micronaut-spring-context:4.0.0 -> 4.5.0 (c) + | | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 (c) + | | | | +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 (c) + | | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (c) + | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 (c) + | | | | +--- org.yaml:snakeyaml:1.29 -> 1.30 (c) + | | | | +--- org.springframework:spring-core:5.3.9 -> 5.3.25 (c) + | | | | +--- org.springframework:spring-context:5.3.9 -> 5.3.25 (c) + | | | | +--- org.springframework:spring-tx:5.3.9 -> 5.3.25 (c) + | | | | +--- javax.validation:validation-api:2.0.1.Final (c) + | | | | \--- io.micronaut:micronaut-json-core:3.2.0 (c) + | | | +--- io.micronaut:micronaut-inject:3.5.4 -> 3.2.0 (*) + | | | +--- io.micronaut:micronaut-aop:3.5.4 -> 3.2.0 + | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 + | | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) + | | | | \--- io.micronaut:micronaut-core:3.2.0 (*) + | | | +--- io.micronaut:micronaut-http:3.5.4 -> 3.2.0 + | | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) + | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 + | | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) + | | | | \--- io.micronaut:micronaut-core-reactive:3.2.0 + | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 + | | | | +--- io.micronaut:micronaut-core:3.2.0 (*) + | | | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 + | | | \--- io.micronaut:micronaut-runtime:3.5.4 -> 3.2.0 + | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 + | | | +--- io.micronaut:micronaut-http:3.2.0 (*) + | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) + | | | +--- io.micronaut:micronaut-aop:3.2.0 (*) + | | | +--- io.micronaut:micronaut-context:3.2.0 + | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 + | | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) + | | | | +--- io.micronaut:micronaut-aop:3.2.0 (*) + | | | | \--- javax.validation:validation-api:2.0.1.Final + | | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (*) + | | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 + | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 + | | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 + | | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 + | | | | | +--- io.micronaut:micronaut-json-core:3.2.0 + | | | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 + | | | | | | +--- io.micronaut:micronaut-context:3.2.0 (*) + | | | | | | \--- io.micronaut:micronaut-http:3.2.0 (*) + | | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 + | | | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) + | | | | | \--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 + | | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) + | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 + | | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) + | | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) + | | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) + | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 + | | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) + | | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) + | | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) + | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 + | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) + | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) + | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) + | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) + | | | +--- javax.validation:validation-api:2.0.1.Final + | | | \--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) + | | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) + | | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) + | | +--- org.springframework:spring-framework-bom:5.3.25 + | | | +--- org.springframework:spring-aop:5.3.25 (c) + | | | +--- org.springframework:spring-beans:5.3.25 (c) + | | | +--- org.springframework:spring-context:5.3.25 (c) + | | | +--- org.springframework:spring-core:5.3.25 (c) + | | | +--- org.springframework:spring-expression:5.3.25 (c) + | | | +--- org.springframework:spring-jcl:5.3.25 (c) + | | | +--- org.springframework:spring-test:5.3.25 (c) + | | | +--- org.springframework:spring-tx:5.3.25 (c) + | | | \--- org.springframework:spring-web:5.3.25 (c) + | | +--- org.springframework:spring-context:5.3.25 + | | | +--- org.springframework:spring-aop:5.3.25 + | | | | +--- org.springframework:spring-beans:5.3.25 + | | | | | \--- org.springframework:spring-core:5.3.25 + | | | | | \--- org.springframework:spring-jcl:5.3.25 + | | | | \--- org.springframework:spring-core:5.3.25 (*) + | | | +--- org.springframework:spring-beans:5.3.25 (*) + | | | +--- org.springframework:spring-core:5.3.25 (*) + | | | \--- org.springframework:spring-expression:5.3.25 + | | | \--- org.springframework:spring-core:5.3.25 (*) + | | +--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) + | | \--- io.micronaut.spring:micronaut-spring:4.5.0 + | | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) + | | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) + | | +--- org.springframework:spring-framework-bom:5.3.25 (*) + | | +--- org.springframework:spring-core:5.3.25 (*) + | | +--- org.springframework:spring-tx:5.3.25 + | | | +--- org.springframework:spring-beans:5.3.25 (*) + | | | \--- org.springframework:spring-core:5.3.25 (*) + | | +--- org.springframework:spring-context:5.3.25 (*) + | | \--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) + | +--- io.micronaut.cache:micronaut-cache-core:3.5.0 (*) + | +--- io.micronaut:micronaut-runtime:3.8.5 -> 3.2.0 (*) + | +--- javax.persistence:javax.persistence-api:2.2 + | +--- javax.annotation:javax.annotation-api:1.3.2 + | +--- org.springframework.boot:spring-boot:2.7.9 -> 2.7.8 + | | +--- org.springframework:spring-core:5.3.25 (*) + | | \--- org.springframework:spring-context:5.3.25 (*) + | +--- org.springframework:spring-core:5.3.25 (*) + | +--- org.springframework:spring-tx:5.3.25 (*) + | +--- org.springframework:spring-beans:5.3.25 (*) + | +--- org.springframework:spring-context:5.3.25 (*) + | +--- org.grails:grails-bootstrap:5.3.3 + | | +--- org.codehaus.groovy:groovy:3.0.11 + | | +--- org.slf4j:slf4j-api:1.7.36 + | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) + | | +--- org.codehaus.groovy:groovy-xml:3.0.11 + | | | \--- org.codehaus.groovy:groovy:3.0.11 + | | +--- org.codehaus.groovy:groovy-templates:3.0.11 + | | | +--- org.codehaus.groovy:groovy:3.0.11 + | | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) + | | +--- org.yaml:snakeyaml:1.33 -> 1.30 + | | \--- io.micronaut:micronaut-inject:3.8.5 -> 3.2.0 (*) + | +--- org.grails:grails-spring:5.3.3 + | | +--- org.codehaus.groovy:groovy:3.0.11 + | | +--- org.slf4j:slf4j-api:1.7.36 + | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) + | | \--- org.springframework:spring-context:5.3.25 (*) + | +--- org.grails:grails-datastore-core:7.3.3 + | | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) + | | +--- org.javassist:javassist:3.29.2-GA + | | +--- javax.annotation:javax.annotation-api:1.3.2 + | | +--- org.codehaus.groovy:groovy:3.0.11 + | | +--- javax.transaction:jta:1.1 + | | +--- org.slf4j:slf4j-api:1.7.36 + | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) + | | +--- javax.persistence:javax.persistence-api:2.2 + | | +--- org.springframework:spring-core:5.3.25 (*) + | | +--- org.springframework:spring-beans:5.3.25 (*) + | | +--- org.springframework:spring-tx:5.3.25 (*) + | | \--- org.springframework:spring-context:5.3.25 (*) + | +--- org.apache.ant:ant:1.10.13 + | | \--- org.apache.ant:ant-launcher:1.10.13 + | +--- jline:jline:2.14.6 + | \--- org.fusesource.jansi:jansi:1.18 + +--- org.codehaus.groovy:groovy-console:3.0.11 + | +--- org.codehaus.groovy:groovy:3.0.11 + | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) + | \--- org.codehaus.groovy:groovy-swing:3.0.11 + | \--- org.codehaus.groovy:groovy:3.0.11 + +--- org.codehaus.groovy:groovy-swing:3.0.11 (*) + +--- org.codehaus.groovy:groovy-groovysh:3.0.11 + | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) + | +--- org.codehaus.groovy:groovy:3.0.11 + | +--- org.codehaus.groovy:groovy-console:3.0.11 (*) + | +--- org.codehaus.groovy:groovy-xml:3.0.11 (*) + | \--- jline:jline:2.14.6 + +--- org.springframework.boot:spring-boot:2.7.9 -> 2.7.8 (*) + +--- org.springframework:spring-test:5.3.25 + | \--- org.springframework:spring-core:5.3.25 (*) + +--- org.springframework:spring-web:5.3.25 + | +--- org.springframework:spring-beans:5.3.25 (*) + | \--- org.springframework:spring-core:5.3.25 (*) + \--- javax.servlet:javax.servlet-api:4.0.1 + +default - Configuration for default artifacts. (n) +No dependencies + +developmentOnly - Configuration for development-only dependencies such as Spring Boot's DevTools. +\--- io.micronaut:micronaut-inject-groovy:3.2.0 + +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 + +--- io.micronaut:micronaut-inject:3.2.0 + | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 + | +--- javax.annotation:javax.annotation-api:1.3.2 + | +--- jakarta.inject:jakarta.inject-api:2.0.1 + | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 + | +--- io.micronaut:micronaut-core:3.2.0 + | | \--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 + | \--- org.yaml:snakeyaml:1.29 -> 1.30 + +--- io.micronaut:micronaut-aop:3.2.0 + | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 + | +--- io.micronaut:micronaut-inject:3.2.0 (*) + | \--- io.micronaut:micronaut-core:3.2.0 (*) + \--- org.codehaus.groovy:groovy:3.0.9 -> 3.0.11 + +implementation - Implementation only dependencies for source set 'main'. (n) ++--- org.springframework.boot:spring-boot-starter-logging (n) ++--- org.springframework.boot:spring-boot-autoconfigure (n) ++--- org.grails:grails-core:5.3.2 (n) ++--- org.springframework.boot:spring-boot-starter-actuator (n) ++--- org.springframework.boot:spring-boot-starter-tomcat (n) ++--- org.grails:grails-plugin-url-mappings (n) ++--- org.grails:grails-plugin-rest (n) ++--- org.grails:grails-plugin-codecs (n) ++--- org.grails:grails-plugin-interceptors (n) ++--- org.grails:grails-plugin-services (n) ++--- org.grails:grails-plugin-datasource (n) ++--- org.grails:grails-plugin-databinding (n) ++--- org.grails:grails-web-boot (n) ++--- org.grails:grails-logging (n) ++--- org.grails.plugins:cache (n) ++--- org.grails.plugins:async (n) ++--- org.grails.plugins:hibernate5 (n) ++--- org.hibernate:hibernate-core:5.6.11.Final (n) ++--- org.grails.plugins:mongodb (n) ++--- org.grails.plugins:views-json (n) ++--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 (n) ++--- org.grails.plugins:views-json-templates (n) ++--- com.graphql-java:graphql-java:20.6 (n) ++--- org.apache.commons:commons-compress:1.10 (n) +\--- project grails-plugin-gorm-graphql-plugin (n) + +integrationTestAnnotationProcessor - Annotation processors and their dependencies for source set 'integration test'. +No dependencies + +integrationTestCompileClasspath - Compile classpath for source set 'integration test'. ++--- org.springframework.boot:spring-boot-starter-logging -> 2.7.8 +| +--- ch.qos.logback:logback-classic:1.2.11 +| | +--- ch.qos.logback:logback-core:1.2.11 +| | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| +--- org.apache.logging.log4j:log4j-to-slf4j:2.17.2 +| | +--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 +| | \--- org.apache.logging.log4j:log4j-api:2.17.2 +| \--- org.slf4j:jul-to-slf4j:1.7.36 +| \--- org.slf4j:slf4j-api:1.7.36 ++--- org.springframework.boot:spring-boot-autoconfigure -> 2.7.8 +| \--- org.springframework.boot:spring-boot:2.7.8 +| +--- org.springframework:spring-core:5.3.25 +| | \--- org.springframework:spring-jcl:5.3.25 +| \--- org.springframework:spring-context:5.3.25 +| +--- org.springframework:spring-aop:5.3.25 +| | +--- org.springframework:spring-beans:5.3.25 +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | \--- org.springframework:spring-core:5.3.25 (*) +| +--- org.springframework:spring-beans:5.3.25 (*) +| +--- org.springframework:spring-core:5.3.25 (*) +| \--- org.springframework:spring-expression:5.3.25 +| \--- org.springframework:spring-core:5.3.25 (*) ++--- org.grails:grails-core:5.3.2 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 +| | \--- org.slf4j:slf4j-api:1.7.36 +| +--- io.micronaut:micronaut-inject:3.8.4 -> 3.2.0 +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- jakarta.inject:jakarta.inject-api:2.0.1 +| | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 +| | +--- io.micronaut:micronaut-core:3.2.0 +| | | \--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | \--- org.yaml:snakeyaml:1.29 -> 1.30 +| +--- javax.inject:javax.inject:1 +| +--- io.micronaut.spring:micronaut-spring-context:4.5.0 +| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) +| | +--- org.springframework:spring-framework-bom:5.3.25 +| | | +--- org.springframework:spring-aop:5.3.25 (c) +| | | +--- org.springframework:spring-beans:5.3.25 (c) +| | | +--- org.springframework:spring-context:5.3.25 (c) +| | | +--- org.springframework:spring-core:5.3.25 (c) +| | | +--- org.springframework:spring-expression:5.3.25 (c) +| | | +--- org.springframework:spring-jcl:5.3.25 (c) +| | | +--- org.springframework:spring-jdbc:5.3.25 (c) +| | | +--- org.springframework:spring-orm:5.3.25 (c) +| | | +--- org.springframework:spring-test:5.3.25 (c) +| | | +--- org.springframework:spring-tx:5.3.25 (c) +| | | +--- org.springframework:spring-web:5.3.25 (c) +| | | +--- org.springframework:spring-webmvc:5.3.25 (c) +| | | \--- org.springframework:spring-context-support:5.3.25 (c) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | +--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | \--- io.micronaut:micronaut-core:3.2.0 (*) +| | \--- io.micronaut.spring:micronaut-spring:4.5.0 +| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) +| | +--- org.springframework:spring-framework-bom:5.3.25 (*) +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-tx:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | \--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) +| +--- io.micronaut.cache:micronaut-cache-core:3.5.0 +| | +--- io.micronaut:micronaut-inject:3.5.4 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-aop:3.5.4 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-http:3.5.4 -> 3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | \--- io.micronaut:micronaut-core-reactive:3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-core:3.2.0 (*) +| | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| | \--- io.micronaut:micronaut-runtime:3.5.4 -> 3.2.0 +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | +--- io.micronaut:micronaut-aop:3.2.0 (*) +| | +--- io.micronaut:micronaut-context:3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | +--- io.micronaut:micronaut-aop:3.2.0 (*) +| | | \--- javax.validation:validation-api:2.0.1.Final +| | +--- io.micronaut:micronaut-core-reactive:3.2.0 (*) +| | +--- io.micronaut:micronaut-jackson-databind:3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-jackson-core:3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-json-core:3.2.0 +| | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | | +--- io.micronaut:micronaut-context:3.2.0 (*) +| | | | | \--- io.micronaut:micronaut-http:3.2.0 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 +| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) +| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) +| | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) +| | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) +| | | | \--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | \--- javax.validation:validation-api:2.0.1.Final +| +--- io.micronaut:micronaut-runtime:3.8.4 -> 3.2.0 (*) +| +--- javax.persistence:javax.persistence-api:2.2 +| +--- javax.annotation:javax.annotation-api:1.3.2 +| +--- org.springframework.boot:spring-boot:2.7.8 (*) +| +--- org.springframework:spring-core:5.3.25 (*) +| +--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.springframework:spring-beans:5.3.25 (*) +| +--- org.springframework:spring-context:5.3.25 (*) +| +--- org.grails:grails-bootstrap:5.3.2 -> 5.3.3 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.codehaus.groovy:groovy-xml:3.0.11 +| | | \--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.codehaus.groovy:groovy-templates:3.0.11 +| | | \--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.yaml:snakeyaml:1.33 -> 1.30 +| | \--- io.micronaut:micronaut-inject:3.8.5 -> 3.2.0 (*) +| +--- org.grails:grails-spring:5.3.2 -> 5.3.3 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.springframework:spring-tx:5.3.25 (*) +| | +--- org.springframework:spring-web:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | \--- org.grails:grails-bootstrap:5.3.3 (*) +| +--- org.grails:grails-datastore-core:7.3.3 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- javax.transaction:jta:1.1 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- javax.persistence:javax.persistence-api:2.2 +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-beans:5.3.25 (*) +| | +--- org.springframework:spring-tx:5.3.25 (*) +| | \--- org.springframework:spring-context:5.3.25 (*) +| +--- org.apache.ant:ant:1.10.13 +| | \--- org.apache.ant:ant-launcher:1.10.13 +| +--- jline:jline:2.14.6 +| \--- org.fusesource.jansi:jansi:1.18 ++--- org.springframework.boot:spring-boot-starter-actuator -> 2.7.8 +| +--- org.springframework.boot:spring-boot-starter:2.7.8 +| | +--- org.springframework.boot:spring-boot:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot-starter-logging:2.7.8 (*) +| | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 +| | +--- org.springframework:spring-core:5.3.25 (*) +| | \--- org.yaml:snakeyaml:1.30 +| +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.7.8 +| | +--- org.springframework.boot:spring-boot-actuator:2.7.8 +| | | \--- org.springframework.boot:spring-boot:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot:2.7.8 (*) +| | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) +| \--- io.micrometer:micrometer-core:1.9.7 +| \--- org.hdrhistogram:HdrHistogram:2.1.12 ++--- org.springframework.boot:spring-boot-starter-tomcat -> 2.7.8 +| +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 +| +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 +| +--- org.apache.tomcat.embed:tomcat-embed-el:9.0.71 +| \--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.71 +| \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 ++--- org.grails:grails-plugin-url-mappings -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 +| | \--- org.springframework:spring-core:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-web:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.grails:grails-web-common:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | +--- org.grails:grails-databinding:5.3.3 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) +| | | +--- org.grails:grails-encoder:5.3.3 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | | +--- org.codehaus.groovy:groovy-json:3.0.11 +| | | | | \--- org.codehaus.groovy:groovy:3.0.11 +| | | | \--- org.springframework:spring-web:5.3.25 (*) +| | | +--- org.grails:grails-gsp:5.2.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | +--- org.grails:grails-taglib:5.2.2 +| | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | \--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | | +--- org.springframework:spring-webmvc:5.3.25 +| | | | +--- org.springframework:spring-aop:5.3.25 (*) +| | | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | | +--- org.springframework:spring-context:5.3.25 (*) +| | | | +--- org.springframework:spring-core:5.3.25 (*) +| | | | +--- org.springframework:spring-expression:5.3.25 (*) +| | | | \--- org.springframework:spring-web:5.3.25 (*) +| | | \--- org.springframework:spring-context-support:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | +--- org.springframework:spring-context:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.grails:grails-web-databinding:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-databinding:5.3.3 (*) +| | | \--- org.grails:grails-web-common:5.3.3 (*) +| | +--- org.grails:grails-web-fileupload:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | \--- commons-fileupload:commons-fileupload:1.5 +| | | \--- commons-io:commons-io:2.11.0 +| | +--- org.grails:grails-web-url-mappings:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | | | \--- commons-validator:commons-validator:1.7 +| | | | \--- commons-collections:commons-collections:3.2.2 +| | | +--- org.fusesource.jansi:jansi:1.18 +| | | \--- jline:jline:2.14.6 +| | +--- org.grails:grails-web-mvc:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | +--- org.grails:grails-web-url-mappings:5.3.3 (*) +| | | \--- org.grails:grails-web-sitemesh:5.2.2 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | \--- opensymphony:sitemesh:2.4.2 +| | +--- org.grails:grails-web-gsp:5.2.2 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.grails:grails-gsp:5.2.2 (*) +| | | +--- org.grails:grails-web-taglib:5.2.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | \--- org.grails:grails-taglib:5.2.2 (*) +| | | \--- org.grails:grails-web-sitemesh:5.2.2 (*) +| | \--- org.grails:grails-web-sitemesh:5.2.2 (*) +| +--- org.grails:grails-plugin-controllers:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | +--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-mimetypes:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | \--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-validation:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | \--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-domain-class:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | +--- org.grails:grails-spring:5.3.3 (*) +| | | +--- org.grails:grails-plugin-validation:5.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm:7.3.3 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | | | \--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm-support:7.3.3 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-gorm:7.3.3 (*) +| | | | +--- org.grails:grails-core:5.2.4 -> 5.3.2 (*) +| | | | \--- org.grails:grails-bootstrap:5.2.4 -> 5.3.3 (*) +| | | \--- org.grails:grails-datastore-core:7.3.3 (*) +| | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.9 -> 2.7.8 (*) +| \--- junit:junit:4.13.2 +| \--- org.hamcrest:hamcrest-core:1.3 -> 2.2 +| \--- org.hamcrest:hamcrest:2.2 ++--- org.grails:grails-plugin-rest -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- javax.xml.bind:jaxb-api:2.3.1 +| | \--- javax.activation:javax.activation-api:1.2.0 +| +--- org.grails:grails-web:5.3.3 (*) +| +--- org.grails:grails-plugin-controllers:5.3.3 (*) +| +--- org.grails:grails-plugin-datasource:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.springframework:spring-jdbc:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | +--- org.springframework:spring-core:5.3.25 (*) +| | | \--- org.springframework:spring-tx:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy-sql:3.0.11 +| | | \--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.springframework:spring-context:5.3.25 (*) +| | +--- org.grails:grails-datastore-gorm:7.3.3 (*) +| | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails.plugins:converters:4.0.0 +| \--- org.apache.commons:commons-lang3:3.0 -> 3.12.0 ++--- org.grails:grails-plugin-codecs -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-web:5.3.3 (*) +| \--- org.grails:grails-encoder:5.3.3 (*) ++--- org.grails:grails-plugin-interceptors -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-plugin-controllers:5.3.3 (*) +| \--- org.grails:grails-plugin-url-mappings:5.3.3 (*) ++--- org.grails:grails-plugin-services -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails:grails-plugin-datasource:5.3.3 (*) ++--- org.grails:grails-plugin-datasource -> 5.3.3 (*) ++--- org.grails:grails-plugin-databinding -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails:grails-web:5.3.3 (*) ++--- org.grails:grails-web-boot -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| \--- org.grails:grails-web-common:5.3.3 (*) ++--- org.grails:grails-logging -> 5.3.3 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) ++--- org.grails.plugins:cache -> 5.0.1 +| +--- com.bertramlabs.plugins:asset-pipeline-grails:3.0.7 +| +--- gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.4 +| | +--- org.ysb33r.gradle:grolifant:0.11 +| | \--- org.apache.maven:maven-artifact:3.6.3 +| | +--- org.codehaus.plexus:plexus-utils:3.2.1 +| | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| +--- org.codehaus.gpars:gpars:1.2.1 +| | +--- org.multiverse:multiverse-core:0.7.0 +| | \--- org.codehaus.jsr166-mirror:jsr166y:1.7.0 +| +--- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2 +| \--- org.javassist:javassist:3.27.0-GA ++--- org.grails.plugins:async -> 4.0.0 +| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| +--- javax.annotation:javax.annotation-api:1.3.2 +| +--- org.grails:grails-plugin-controllers:4.0.0 -> 5.3.3 (*) +| +--- org.grails.plugins:events:4.0.0 +| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.grails:grails-core:4.0.0 -> 5.3.2 (*) +| | +--- org.grails:grails-events:4.0.0 +| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | +--- org.springframework:spring-context:5.1.8.RELEASE -> 5.3.25 (*) +| | | \--- org.springframework:spring-tx:5.1.8.RELEASE -> 5.3.25 (*) +| | +--- org.grails:grails-events-transform:4.0.0 +| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | +--- org.grails:grails-events:4.0.0 (*) +| | | \--- org.grails:grails-datastore-gorm:7.0.2.RELEASE -> 7.3.3 (*) +| | \--- org.grails:grails-events-compat:4.0.0 +| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.grails:grails-events:4.0.0 (*) +| | \--- org.grails:grails-events-transform:4.0.0 (*) +| \--- org.grails:grails-async:4.0.0 +| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| \--- javax.annotation:javax.annotation-api:1.3.2 ++--- org.grails.plugins:hibernate5 -> 7.3.0 +| +--- org.springframework.boot:spring-boot:2.7.0 -> 2.7.8 (*) +| +--- org.springframework:spring-orm:5.3.20 -> 5.3.25 +| | +--- org.springframework:spring-beans:5.3.25 (*) +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-jdbc:5.3.25 (*) +| | \--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.hibernate:hibernate-core:5.6.9.Final -> 5.6.11.Final +| | +--- org.jboss.logging:jboss-logging:3.4.3.Final +| | +--- javax.persistence:javax.persistence-api:2.2 +| | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 +| | +--- antlr:antlr:2.7.7 +| | +--- org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final +| | +--- org.jboss:jandex:2.4.2.Final +| | +--- com.fasterxml:classmate:1.5.1 +| | +--- javax.activation:javax.activation-api:1.2.0 +| | +--- org.hibernate.common:hibernate-commons-annotations:5.1.2.Final +| | | \--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.4.3.Final +| | +--- javax.xml.bind:jaxb-api:2.3.1 (*) +| | \--- org.glassfish.jaxb:jaxb-runtime:2.3.1 -> 2.3.7 +| | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 +| | +--- org.glassfish.jaxb:txw2:2.3.7 +| | \--- com.sun.istack:istack-commons-runtime:3.0.12 +| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | +--- org.springframework:spring-web:5.3.25 (*) +| | \--- org.springframework:spring-context:5.3.25 (*) +| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) +| \--- org.grails:grails-datastore-gorm-hibernate5:7.3.0 -> 7.2.2 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 +| +--- org.grails:grails-datastore-gorm:7.2.1 -> 7.3.3 (*) +| +--- org.springframework:spring-orm:5.3.16 -> 5.3.25 (*) +| +--- org.hibernate:hibernate-core:5.6.5.Final -> 5.6.11.Final (*) +| +--- org.hibernate:hibernate-validator:6.2.3.Final +| | \--- org.hibernate.validator:hibernate-validator:6.2.3.Final -> 6.2.5.Final +| | +--- jakarta.validation:jakarta.validation-api:2.0.2 +| | +--- org.jboss.logging:jboss-logging:3.4.1.Final -> 3.4.3.Final +| | \--- com.fasterxml:classmate:1.5.1 +| \--- javax.validation:validation-api:2.0.1.Final ++--- org.hibernate:hibernate-core:5.6.11.Final (*) ++--- org.grails.plugins:mongodb -> 7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm-mongodb-ext:7.3.0 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | \--- org.mongodb:mongodb-driver-sync:4.5.0 +| | +--- org.mongodb:bson:4.5.0 -> 4.6.1 +| | \--- org.mongodb:mongodb-driver-core:4.5.0 +| | \--- org.mongodb:bson:4.5.0 -> 4.6.1 +| \--- org.grails:grails-datastore-gorm-mongodb:7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.mongodb:mongodb-driver-sync:4.5.0 (*) +| +--- org.grails:grails-datastore-gorm-validation:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) +| \--- org.grails:grails-datastore-gorm-bson:7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) +| \--- org.mongodb:bson:4.5.0 -> 4.6.1 ++--- org.grails.plugins:views-json -> 2.3.2 +| +--- org.grails:grails-core:5.1.8 -> 5.3.2 (*) +| \--- org.grails:views-core:2.3.2 +| +--- org.codehaus.groovy:groovy-bom:3.0.11 +| | +--- org.codehaus.groovy:groovy:3.0.11 (c) +| | +--- org.codehaus.groovy:groovy-json:3.0.11 (c) +| | +--- org.codehaus.groovy:groovy-sql:3.0.11 (c) +| | +--- org.codehaus.groovy:groovy-templates:3.0.11 (c) +| | \--- org.codehaus.groovy:groovy-xml:3.0.11 (c) +| +--- org.grails:grails-encoder:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-web-common:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-web-url-mappings:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-plugin-rest:5.1.8 -> 5.3.3 (*) +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 +| | +--- org.checkerframework:checker-qual:3.19.0 +| | \--- com.google.errorprone:error_prone_annotations:2.10.0 +| \--- javax.servlet:javax.servlet-api:4.0.1 ++--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 +| +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) +| +--- io.micronaut.rxjava2:micronaut-rxjava2:1.2.0 +| | +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-runtime:3.3.0 -> 3.2.0 (*) +| | \--- io.reactivex.rxjava2:rxjava:2.2.21 +| | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| \--- io.micronaut:micronaut-http-client:3.3.0 -> 3.2.0 +| +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| +--- io.micronaut:micronaut-runtime:3.2.0 (*) +| +--- io.micronaut:micronaut-http-client-core:3.2.0 +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | \--- io.micronaut:micronaut-runtime:3.2.0 (*) +| +--- io.micronaut:micronaut-websocket:3.2.0 +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | +--- io.micronaut:micronaut-http-client-core:3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | \--- io.micronaut:micronaut-aop:3.2.0 (*) +| +--- io.micronaut:micronaut-http-netty:3.2.0 +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | +--- io.micronaut:micronaut-websocket:3.2.0 (*) +| | +--- io.micronaut:micronaut-buffer-netty:3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-core:3.2.0 (*) +| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | \--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final +| | | \--- io.netty:netty-common:4.1.87.Final +| | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-resolver:4.1.87.Final +| | | | \--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-codec:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-transport:4.1.87.Final (*) +| | | \--- io.netty:netty-handler:4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-resolver:4.1.87.Final (*) +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-transport:4.1.87.Final (*) +| | | \--- io.netty:netty-codec:4.1.87.Final (*) +| | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | +--- io.netty:netty-codec:4.1.87.Final (*) +| | | +--- io.netty:netty-handler:4.1.87.Final (*) +| | | \--- io.netty:netty-codec-http:4.1.87.Final (*) +| | \--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (*) +| \--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final +| +--- io.netty:netty-common:4.1.87.Final +| +--- io.netty:netty-buffer:4.1.87.Final (*) +| +--- io.netty:netty-transport:4.1.87.Final (*) +| +--- io.netty:netty-codec:4.1.87.Final (*) +| +--- io.netty:netty-codec-socks:4.1.87.Final +| | +--- io.netty:netty-common:4.1.87.Final +| | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | +--- io.netty:netty-transport:4.1.87.Final (*) +| | \--- io.netty:netty-codec:4.1.87.Final (*) +| \--- io.netty:netty-codec-http:4.1.87.Final (*) ++--- org.grails.plugins:views-json-templates -> 2.3.2 +| \--- org.grails.plugins:views-json:2.3.2 (*) ++--- com.graphql-java:graphql-java:20.6 +| +--- com.graphql-java:java-dataloader:3.2.0 +| | \--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 ++--- org.apache.commons:commons-compress:1.10 ++--- project :grails-plugin-gorm-graphql-plugin +| \--- project :gorm-graphql +| +--- org.codehaus.groovy:groovy:3.0.11 +| \--- org.slf4j:slf4j-api:1.7.36 +\--- org.grails:grails-test-mixins:3.3.0 + +integrationTestCompileOnly - Compile only dependencies for source set 'integration test'. (n) +No dependencies + +integrationTestImplementation - Implementation only dependencies for source set 'integration test'. (n) ++--- unspecified (n) +\--- unspecified (n) + +integrationTestRuntimeClasspath - Runtime classpath of source set 'integration test'. ++--- org.springframework.boot:spring-boot-starter-logging -> 2.7.8 +| +--- ch.qos.logback:logback-classic:1.2.11 +| | +--- ch.qos.logback:logback-core:1.2.11 +| | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| +--- org.apache.logging.log4j:log4j-to-slf4j:2.17.2 +| | +--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 +| | \--- org.apache.logging.log4j:log4j-api:2.17.2 +| \--- org.slf4j:jul-to-slf4j:1.7.36 +| \--- org.slf4j:slf4j-api:1.7.36 ++--- org.springframework.boot:spring-boot-autoconfigure -> 2.7.8 +| \--- org.springframework.boot:spring-boot:2.7.8 +| +--- org.springframework:spring-core:5.3.25 +| | \--- org.springframework:spring-jcl:5.3.25 +| \--- org.springframework:spring-context:5.3.25 +| +--- org.springframework:spring-aop:5.3.25 +| | +--- org.springframework:spring-beans:5.3.25 +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | \--- org.springframework:spring-core:5.3.25 (*) +| +--- org.springframework:spring-beans:5.3.25 (*) +| +--- org.springframework:spring-core:5.3.25 (*) +| \--- org.springframework:spring-expression:5.3.25 +| \--- org.springframework:spring-core:5.3.25 (*) ++--- org.grails:grails-core:5.3.2 +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 +| | +--- org.checkerframework:checker-qual:3.19.0 +| | \--- com.google.errorprone:error_prone_annotations:2.10.0 -> 2.11.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 +| | \--- org.slf4j:slf4j-api:1.7.36 +| +--- io.micronaut:micronaut-inject:3.8.4 -> 3.2.0 +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- jakarta.inject:jakarta.inject-api:2.0.1 +| | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 +| | +--- io.micronaut:micronaut-core:3.2.0 +| | | \--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | \--- org.yaml:snakeyaml:1.29 -> 1.30 +| +--- javax.inject:javax.inject:1 +| +--- io.micronaut.spring:micronaut-spring-context:4.5.0 +| | +--- io.micronaut.cache:micronaut-cache-core:3.5.0 +| | | +--- io.projectreactor:reactor-core:3.4.21 -> 3.4.26 +| | | | \--- org.reactivestreams:reactive-streams:1.0.4 +| | | +--- io.micronaut:micronaut-bom:3.5.4 -> 3.2.0 +| | | | +--- org.codehaus.groovy:groovy-bom:3.0.9 -> 3.0.11 +| | | | | +--- org.codehaus.groovy:groovy:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-ant:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-json:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-sql:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-test:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-test-junit5:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-xml:3.0.11 (c) +| | | | | \--- org.codehaus.groovy:groovy-groovydoc:3.0.11 (c) +| | | | +--- io.grpc:grpc-bom:1.39.0 +| | | | +--- com.fasterxml.jackson:jackson-bom:2.12.4 -> 2.13.4 +| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) +| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) +| | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) +| | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) +| | | | +--- org.junit:junit-bom:5.7.2 -> 5.8.2 +| | | | | +--- org.junit.jupiter:junit-jupiter:5.8.2 (c) +| | | | | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 (c) +| | | | | +--- org.junit.jupiter:junit-jupiter-engine:5.8.2 (c) +| | | | | +--- org.junit.jupiter:junit-jupiter-params:5.8.2 (c) +| | | | | +--- org.junit.platform:junit-platform-commons:1.8.2 (c) +| | | | | +--- org.junit.platform:junit-platform-engine:1.8.2 (c) +| | | | | +--- org.junit.platform:junit-platform-launcher:1.8.2 (c) +| | | | | +--- org.junit.platform:junit-platform-runner:1.8.2 (c) +| | | | | +--- org.junit.platform:junit-platform-suite-api:1.8.2 (c) +| | | | | \--- org.junit.platform:junit-platform-suite-commons:1.8.2 (c) +| | | | +--- org.jetbrains.kotlin:kotlin-bom:1.6.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.5.1 +| | | | +--- io.ktor:ktor-bom:1.6.1 +| | | | +--- io.micrometer:micrometer-bom:1.8.0 +| | | | | \--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) +| | | | +--- io.micronaut.aws:micronaut-aws-bom:3.0.4 +| | | | +--- io.micronaut.cache:micronaut-cache-bom:3.0.0 +| | | | | +--- io.micronaut.cache:micronaut-cache-core:3.0.0 -> 3.5.0 (c) +| | | | | \--- com.github.ben-manes.caffeine:caffeine:2.9.1 -> 2.9.3 (c) +| | | | +--- io.micronaut.coherence:micronaut-coherence-bom:3.0.1 +| | | | +--- io.micronaut.data:micronaut-data-bom:3.2.0 +| | | | +--- io.micronaut.groovy:micronaut-groovy-bom:3.0.0 +| | | | | \--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) +| | | | +--- io.micronaut.micrometer:micronaut-micrometer-bom:4.1.0 +| | | | | +--- io.micrometer:micrometer-bom:1.8.0 (*) +| | | | | \--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) +| | | | +--- io.micronaut.oraclecloud:micronaut-oraclecloud-bom:2.0.3 +| | | | +--- io.micronaut.r2dbc:micronaut-r2dbc-bom:2.0.0 +| | | | | \--- io.r2dbc:r2dbc-bom:Arabba-SR9 +| | | | +--- io.micronaut.sql:micronaut-sql-bom:4.0.4 +| | | | | +--- org.hibernate:hibernate-core:5.5.3.Final -> 5.6.11.Final (c) +| | | | | \--- org.apache.tomcat:tomcat-jdbc:10.0.8 -> 9.0.71 (c) +| | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 +| | | | | +--- org.junit:junit-bom:5.7.2 -> 5.8.2 (*) +| | | | | +--- org.spockframework:spock-bom:2.0-groovy-3.0 +| | | | | | +--- org.spockframework:spock-core:2.0-groovy-3.0 -> 2.1-groovy-3.0 (c) +| | | | | | \--- org.spockframework:spock-spring:2.0-groovy-3.0 -> 2.1-groovy-3.0 (c) +| | | | | +--- org.mockito:mockito-core:3.6.28 -> 4.5.1 (c) +| | | | | +--- org.mockito:mockito-junit-jupiter:3.6.28 -> 4.5.1 (c) +| | | | | +--- org.assertj:assertj-core:3.18.1 -> 3.22.0 (c) +| | | | | \--- org.hamcrest:hamcrest:2.2 (c) +| | | | +--- io.micronaut.views:micronaut-views-bom:3.0.1 +| | | | +--- io.netty:netty-bom:4.1.70.Final +| | | | | +--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-codec:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-codec-socks:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-common:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-resolver:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-transport:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-transport-native-unix-common:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-transport-classes-epoll:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-transport-native-epoll:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-transport-classes-kqueue:4.1.70.Final -> 4.1.87.Final (c) +| | | | | \--- io.netty:netty-transport-native-kqueue:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- com.google.protobuf:protobuf-bom:3.17.2 +| | | | +--- org.testcontainers:testcontainers-bom:1.16.1 +| | | | +--- io.micronaut:micronaut-aop:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-buffer-netty:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-context:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-core:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-http:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-http-client:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-http-client-core:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-http-netty:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-inject:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-runtime:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-websocket:3.2.0 (c) +| | | | +--- org.grails:grails-datastore-core:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-gorm:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-gorm-support:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-gorm-test:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-gorm-validation:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-web:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-gorm-hibernate5:7.1.0.M3 -> 7.2.2 (c) +| | | | +--- org.codehaus.groovy:groovy:3.0.9 -> 3.0.11 (c) +| | | | +--- org.codehaus.groovy:groovy-json:3.0.9 -> 3.0.11 (c) +| | | | +--- org.codehaus.groovy:groovy-sql:3.0.9 -> 3.0.11 (c) +| | | | +--- org.codehaus.groovy:groovy-templates:3.0.9 -> 3.0.11 (c) +| | | | +--- com.h2database:h2:1.4.200 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 (c) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 (c) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 (c) +| | | | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 (c) +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 (c) +| | | | +--- com.google.code.findbugs:jsr305:3.0.2 (c) +| | | | +--- ch.qos.logback:logback-classic:1.2.3 -> 1.2.11 (c) +| | | | +--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) +| | | | +--- io.micronaut.rxjava2:micronaut-rxjava2:1.1.0 -> 1.2.0 (c) +| | | | +--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.1.0 -> 1.2.0 (c) +| | | | +--- io.micronaut.spring:micronaut-spring:4.0.0 -> 4.5.0 (c) +| | | | +--- io.micronaut.spring:micronaut-spring-context:4.0.0 -> 4.5.0 (c) +| | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 (c) +| | | | +--- org.mongodb:mongodb-driver-core:4.3.0 -> 4.5.0 (c) +| | | | +--- org.mongodb:mongodb-driver-sync:4.3.0 -> 4.5.0 (c) +| | | | +--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-transport-native-epoll:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-transport-native-kqueue:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 (c) +| | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (c) +| | | | +--- io.reactivex.rxjava2:rxjava:2.2.10 -> 2.2.21 (c) +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 (c) +| | | | +--- org.yaml:snakeyaml:1.29 -> 1.30 (c) +| | | | +--- org.spockframework:spock-core:2.0-groovy-3.0 -> 2.1-groovy-3.0 (c) +| | | | +--- org.springframework:spring-core:5.3.9 -> 5.3.25 (c) +| | | | +--- org.springframework.boot:spring-boot-starter:2.5.3 -> 2.7.8 (c) +| | | | +--- org.springframework:spring-context:5.3.9 -> 5.3.25 (c) +| | | | +--- org.springframework:spring-jdbc:5.3.9 -> 5.3.25 (c) +| | | | +--- org.springframework:spring-orm:5.3.9 -> 5.3.25 (c) +| | | | +--- org.springframework:spring-tx:5.3.9 -> 5.3.25 (c) +| | | | +--- javax.validation:validation-api:2.0.1.Final (c) +| | | | \--- io.micronaut:micronaut-json-core:3.2.0 (c) +| | | +--- io.micronaut:micronaut-inject:3.5.4 -> 3.2.0 (*) +| | | +--- io.micronaut:micronaut-aop:3.5.4 -> 3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | | \--- io.micronaut:micronaut-core:3.2.0 (*) +| | | +--- io.micronaut:micronaut-http:3.5.4 -> 3.2.0 +| | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | | \--- io.micronaut:micronaut-core-reactive:3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-core:3.2.0 (*) +| | | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| | | \--- io.micronaut:micronaut-runtime:3.5.4 -> 3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | +--- io.micronaut:micronaut-aop:3.2.0 (*) +| | | +--- io.micronaut:micronaut-context:3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | | +--- io.micronaut:micronaut-aop:3.2.0 (*) +| | | | \--- javax.validation:validation-api:2.0.1.Final +| | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (*) +| | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 +| | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | | +--- io.micronaut:micronaut-json-core:3.2.0 +| | | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | | | +--- io.micronaut:micronaut-context:3.2.0 (*) +| | | | | | \--- io.micronaut:micronaut-http:3.2.0 (*) +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 +| | | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | | \--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 +| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | +--- javax.validation:validation-api:2.0.1.Final +| | | \--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) +| | +--- org.springframework:spring-framework-bom:5.3.25 +| | | +--- org.springframework:spring-aop:5.3.25 (c) +| | | +--- org.springframework:spring-beans:5.3.25 (c) +| | | +--- org.springframework:spring-context:5.3.25 (c) +| | | +--- org.springframework:spring-core:5.3.25 (c) +| | | +--- org.springframework:spring-expression:5.3.25 (c) +| | | +--- org.springframework:spring-jcl:5.3.25 (c) +| | | +--- org.springframework:spring-jdbc:5.3.25 (c) +| | | +--- org.springframework:spring-orm:5.3.25 (c) +| | | +--- org.springframework:spring-test:5.3.25 (c) +| | | +--- org.springframework:spring-tx:5.3.25 (c) +| | | +--- org.springframework:spring-web:5.3.25 (c) +| | | +--- org.springframework:spring-webmvc:5.3.25 (c) +| | | \--- org.springframework:spring-context-support:5.3.25 (c) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | +--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) +| | \--- io.micronaut.spring:micronaut-spring:4.5.0 +| | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) +| | +--- org.springframework:spring-framework-bom:5.3.25 (*) +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-tx:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | \--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) +| +--- io.micronaut.cache:micronaut-cache-core:3.5.0 (*) +| +--- io.micronaut:micronaut-runtime:3.8.4 -> 3.2.0 (*) +| +--- javax.persistence:javax.persistence-api:2.2 +| +--- javax.annotation:javax.annotation-api:1.3.2 +| +--- org.springframework.boot:spring-boot:2.7.8 (*) +| +--- org.springframework:spring-core:5.3.25 (*) +| +--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.springframework:spring-beans:5.3.25 (*) +| +--- org.springframework:spring-context:5.3.25 (*) +| +--- org.grails:grails-bootstrap:5.3.2 -> 5.3.3 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.codehaus.groovy:groovy-xml:3.0.11 +| | | \--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.codehaus.groovy:groovy-templates:3.0.11 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) +| | +--- org.yaml:snakeyaml:1.33 -> 1.30 +| | \--- io.micronaut:micronaut-inject:3.8.5 -> 3.2.0 (*) +| +--- org.grails:grails-spring:5.3.2 -> 5.3.3 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.springframework:spring-tx:5.3.25 (*) +| | +--- org.springframework:spring-web:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | \--- org.grails:grails-bootstrap:5.3.3 (*) +| +--- org.grails:grails-datastore-core:7.3.3 +| | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| | +--- org.javassist:javassist:3.29.2-GA +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- javax.transaction:jta:1.1 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- javax.persistence:javax.persistence-api:2.2 +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-beans:5.3.25 (*) +| | +--- org.springframework:spring-tx:5.3.25 (*) +| | \--- org.springframework:spring-context:5.3.25 (*) +| +--- org.apache.ant:ant:1.10.13 +| | \--- org.apache.ant:ant-launcher:1.10.13 +| +--- jline:jline:2.14.6 +| \--- org.fusesource.jansi:jansi:1.18 ++--- org.springframework.boot:spring-boot-starter-actuator -> 2.7.8 +| +--- org.springframework.boot:spring-boot-starter:2.7.8 +| | +--- org.springframework.boot:spring-boot:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot-starter-logging:2.7.8 (*) +| | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 +| | +--- org.springframework:spring-core:5.3.25 (*) +| | \--- org.yaml:snakeyaml:1.30 +| +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.7.8 +| | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4.2 (*) +| | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (*) +| | +--- org.springframework.boot:spring-boot-actuator:2.7.8 +| | | \--- org.springframework.boot:spring-boot:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot:2.7.8 (*) +| | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) +| \--- io.micrometer:micrometer-core:1.9.7 +| +--- org.hdrhistogram:HdrHistogram:2.1.12 +| \--- org.latencyutils:LatencyUtils:2.0.3 ++--- org.springframework.boot:spring-boot-starter-tomcat -> 2.7.8 +| +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 +| +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 +| +--- org.apache.tomcat.embed:tomcat-embed-el:9.0.71 +| \--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.71 +| \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 ++--- org.grails:grails-plugin-url-mappings -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 +| | \--- org.springframework:spring-core:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-web:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.grails:grails-web-common:5.3.3 +| | | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | +--- org.grails:grails-databinding:5.3.3 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) +| | | +--- org.grails:grails-encoder:5.3.3 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | | +--- org.codehaus.groovy:groovy-json:3.0.11 +| | | | | \--- org.codehaus.groovy:groovy:3.0.11 +| | | | \--- org.springframework:spring-web:5.3.25 (*) +| | | +--- org.grails:grails-gsp:5.2.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | +--- org.grails:grails-core:5.2.5 -> 5.3.2 (*) +| | | | +--- org.grails:grails-taglib:5.2.2 +| | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | | +--- org.grails:grails-core:5.2.5 -> 5.3.2 (*) +| | | | | \--- org.grails:grails-encoder:5.2.5 -> 5.3.3 (*) +| | | | \--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | | +--- org.springframework:spring-webmvc:5.3.25 +| | | | +--- org.springframework:spring-aop:5.3.25 (*) +| | | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | | +--- org.springframework:spring-context:5.3.25 (*) +| | | | +--- org.springframework:spring-core:5.3.25 (*) +| | | | +--- org.springframework:spring-expression:5.3.25 (*) +| | | | \--- org.springframework:spring-web:5.3.25 (*) +| | | \--- org.springframework:spring-context-support:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | +--- org.springframework:spring-context:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.grails:grails-web-databinding:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-databinding:5.3.3 (*) +| | | \--- org.grails:grails-web-common:5.3.3 (*) +| | +--- org.grails:grails-web-fileupload:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | \--- commons-fileupload:commons-fileupload:1.5 +| | | \--- commons-io:commons-io:2.11.0 +| | +--- org.grails:grails-web-url-mappings:5.3.3 +| | | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | | | \--- commons-validator:commons-validator:1.7 +| | | | \--- commons-collections:commons-collections:3.2.2 +| | | +--- org.fusesource.jansi:jansi:1.18 +| | | \--- jline:jline:2.14.6 +| | +--- org.grails:grails-web-mvc:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | +--- org.grails:grails-web-url-mappings:5.3.3 (*) +| | | \--- org.grails:grails-web-sitemesh:5.2.2 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | \--- opensymphony:sitemesh:2.4.2 +| | +--- org.grails:grails-web-gsp:5.2.2 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.grails:grails-gsp:5.2.2 (*) +| | | +--- org.grails:grails-web-common:5.2.5 -> 5.3.3 (*) +| | | +--- org.grails:grails-web-taglib:5.2.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | +--- org.grails:grails-web-common:5.2.5 -> 5.3.3 (*) +| | | | \--- org.grails:grails-taglib:5.2.2 (*) +| | | \--- org.grails:grails-web-sitemesh:5.2.2 (*) +| | \--- org.grails:grails-web-sitemesh:5.2.2 (*) +| +--- org.grails:grails-plugin-controllers:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | +--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-mimetypes:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | \--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-validation:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | \--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-domain-class:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | +--- org.grails:grails-spring:5.3.3 (*) +| | | +--- org.grails:grails-plugin-validation:5.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm:7.3.3 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- javax.el:javax.el-api:3.0.0 -> 3.0.1-b06 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) +| | | | \--- org.glassfish:javax.el:3.0.1-b12 +| | | +--- org.grails:grails-datastore-gorm-support:7.3.3 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-gorm:7.3.3 (*) +| | | | +--- org.grails:grails-core:5.2.4 -> 5.3.2 (*) +| | | | \--- org.grails:grails-bootstrap:5.2.4 -> 5.3.3 (*) +| | | \--- org.grails:grails-datastore-core:7.3.3 (*) +| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.9 -> 2.7.8 (*) +| | \--- org.grails:grails-plugin-i18n:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.grails:grails-web:5.3.3 (*) +| | \--- org.codehaus.groovy:groovy-ant:3.0.11 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.apache.ant:ant:1.10.12 -> 1.10.13 (*) +| | +--- org.apache.ant:ant-junit:1.10.12 -> 1.10.13 +| | | +--- org.apache.ant:ant:1.10.13 (*) +| | | \--- junit:junit:4.13.1 -> 4.13.2 +| | | \--- org.hamcrest:hamcrest-core:1.3 -> 2.2 +| | | \--- org.hamcrest:hamcrest:2.2 +| | +--- org.apache.ant:ant-launcher:1.10.12 -> 1.10.13 +| | +--- org.apache.ant:ant-antlr:1.10.12 +| | \--- org.codehaus.groovy:groovy-groovydoc:3.0.11 +| \--- junit:junit:4.13.2 (*) ++--- org.grails:grails-plugin-rest -> 5.3.3 +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- javax.xml.bind:jaxb-api:2.3.1 +| | \--- javax.activation:javax.activation-api:1.2.0 +| +--- org.grails:grails-web:5.3.3 (*) +| +--- org.grails:grails-plugin-controllers:5.3.3 (*) +| +--- org.grails:grails-plugin-datasource:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.springframework:spring-jdbc:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | +--- org.springframework:spring-core:5.3.25 (*) +| | | \--- org.springframework:spring-tx:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy-sql:3.0.11 +| | | \--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.springframework:spring-context:5.3.25 (*) +| | +--- org.grails:grails-datastore-gorm:7.3.3 (*) +| | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails.plugins:converters:4.0.0 +| \--- org.apache.commons:commons-lang3:3.0 -> 3.12.0 ++--- org.grails:grails-plugin-codecs -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-web:5.3.3 (*) +| +--- org.grails:grails-encoder:5.3.3 (*) +| \--- org.grails:grails-codecs:5.3.3 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| \--- commons-codec:commons-codec:1.15 ++--- org.grails:grails-plugin-interceptors -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-plugin-controllers:5.3.3 (*) +| \--- org.grails:grails-plugin-url-mappings:5.3.3 (*) ++--- org.grails:grails-plugin-services -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails:grails-plugin-datasource:5.3.3 (*) ++--- org.grails:grails-plugin-datasource -> 5.3.3 (*) ++--- org.grails:grails-plugin-databinding -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails:grails-web:5.3.3 (*) ++--- org.grails:grails-web-boot -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| \--- org.grails:grails-web-common:5.3.3 (*) ++--- org.grails:grails-logging -> 5.3.3 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) ++--- org.grails.plugins:cache -> 5.0.1 +| +--- com.bertramlabs.plugins:asset-pipeline-grails:3.0.7 +| | \--- com.bertramlabs.plugins:asset-pipeline-core:3.0.7 +| | \--- commons-logging:commons-logging:1.1.1 -> 1.2 +| +--- gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.4 +| | +--- org.ysb33r.gradle:grolifant:0.11 +| | | \--- org.tukaani:xz:1.6 +| | \--- org.apache.maven:maven-artifact:3.6.3 +| | +--- org.codehaus.plexus:plexus-utils:3.2.1 +| | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| +--- org.codehaus.gpars:gpars:1.2.1 +| | +--- org.multiverse:multiverse-core:0.7.0 +| | \--- org.codehaus.jsr166-mirror:jsr166y:1.7.0 +| +--- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2 +| \--- org.javassist:javassist:3.27.0-GA -> 3.29.2-GA ++--- org.grails.plugins:async -> 4.0.0 +| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| +--- javax.annotation:javax.annotation-api:1.3.2 +| +--- org.grails:grails-plugin-controllers:4.0.0 -> 5.3.3 (*) +| +--- org.grails.plugins:events:4.0.0 +| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.grails:grails-core:4.0.0 -> 5.3.2 (*) +| | +--- org.grails:grails-events:4.0.0 +| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | +--- org.springframework:spring-context:5.1.8.RELEASE -> 5.3.25 (*) +| | | \--- org.springframework:spring-tx:5.1.8.RELEASE -> 5.3.25 (*) +| | +--- org.grails:grails-events-transform:4.0.0 +| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | +--- org.grails:grails-events:4.0.0 (*) +| | | \--- org.grails:grails-datastore-gorm:7.0.2.RELEASE -> 7.3.3 (*) +| | \--- org.grails:grails-events-compat:4.0.0 +| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.grails:grails-events:4.0.0 (*) +| | \--- org.grails:grails-events-transform:4.0.0 (*) +| \--- org.grails:grails-async:4.0.0 +| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| \--- javax.annotation:javax.annotation-api:1.3.2 ++--- org.grails.plugins:hibernate5 -> 7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.springframework.boot:spring-boot:2.7.0 -> 2.7.8 (*) +| +--- org.springframework:spring-orm:5.3.20 -> 5.3.25 +| | +--- org.springframework:spring-beans:5.3.25 (*) +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-jdbc:5.3.25 (*) +| | \--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.hibernate:hibernate-core:5.6.9.Final -> 5.6.11.Final +| | +--- org.jboss.logging:jboss-logging:3.4.3.Final +| | +--- javax.persistence:javax.persistence-api:2.2 +| | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 +| | +--- antlr:antlr:2.7.7 +| | +--- org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final +| | +--- org.jboss:jandex:2.4.2.Final +| | +--- com.fasterxml:classmate:1.5.1 +| | +--- javax.activation:javax.activation-api:1.2.0 +| | +--- org.hibernate.common:hibernate-commons-annotations:5.1.2.Final +| | | \--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.4.3.Final +| | +--- javax.xml.bind:jaxb-api:2.3.1 (*) +| | \--- org.glassfish.jaxb:jaxb-runtime:2.3.1 -> 2.3.7 +| | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 +| | | \--- jakarta.activation:jakarta.activation-api:1.2.2 +| | +--- org.glassfish.jaxb:txw2:2.3.7 +| | +--- com.sun.istack:istack-commons-runtime:3.0.12 +| | \--- com.sun.activation:jakarta.activation:1.2.2 +| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | +--- org.springframework:spring-web:5.3.25 (*) +| | \--- org.springframework:spring-context:5.3.25 (*) +| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) +| \--- org.grails:grails-datastore-gorm-hibernate5:7.3.0 -> 7.2.2 +| +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.grails:grails-datastore-gorm:7.2.1 -> 7.3.3 (*) +| +--- org.springframework:spring-orm:5.3.16 -> 5.3.25 (*) +| +--- org.hibernate:hibernate-core:5.6.5.Final -> 5.6.11.Final (*) +| +--- org.hibernate:hibernate-validator:6.2.3.Final +| | \--- org.hibernate.validator:hibernate-validator:6.2.3.Final -> 6.2.5.Final +| | +--- jakarta.validation:jakarta.validation-api:2.0.2 +| | +--- org.jboss.logging:jboss-logging:3.4.1.Final -> 3.4.3.Final +| | \--- com.fasterxml:classmate:1.5.1 +| +--- javax.validation:validation-api:2.0.1.Final +| +--- javax.el:javax.el-api:3.0.1-b06 +| +--- javax.xml.bind:jaxb-api:2.3.1 (*) +| \--- com.sun.xml.bind:jaxb-impl:2.3.1 ++--- org.hibernate:hibernate-core:5.6.11.Final (*) ++--- org.grails.plugins:mongodb -> 7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm-mongodb-ext:7.3.0 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | \--- org.mongodb:mongodb-driver-sync:4.5.0 +| | +--- org.mongodb:bson:4.5.0 -> 4.6.1 +| | \--- org.mongodb:mongodb-driver-core:4.5.0 +| | \--- org.mongodb:bson:4.5.0 -> 4.6.1 +| \--- org.grails:grails-datastore-gorm-mongodb:7.3.0 +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.mongodb:mongodb-driver-sync:4.5.0 (*) +| +--- org.grails:grails-datastore-gorm-validation:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) +| \--- org.grails:grails-datastore-gorm-bson:7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) +| \--- org.mongodb:bson:4.5.0 -> 4.6.1 ++--- org.grails.plugins:views-json -> 2.3.2 +| +--- org.grails:grails-core:5.1.8 -> 5.3.2 (*) +| \--- org.grails:views-core:2.3.2 +| +--- org.codehaus.groovy:groovy-bom:3.0.11 (*) +| +--- org.grails:grails-encoder:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-web-common:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-web-url-mappings:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-plugin-rest:5.1.8 -> 5.3.3 (*) +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| \--- javax.servlet:javax.servlet-api:4.0.1 ++--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 +| +--- io.micronaut:micronaut-bom:3.3.0 -> 3.2.0 (*) +| +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) +| +--- io.micronaut.rxjava2:micronaut-rxjava2:1.2.0 +| | +--- io.micronaut:micronaut-bom:3.3.0 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-runtime:3.3.0 -> 3.2.0 (*) +| | \--- io.reactivex.rxjava2:rxjava:2.2.21 +| | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| \--- io.micronaut:micronaut-http-client:3.3.0 -> 3.2.0 +| +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| +--- io.micronaut:micronaut-runtime:3.2.0 (*) +| +--- io.micronaut:micronaut-http-client-core:3.2.0 +| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | \--- io.micronaut:micronaut-runtime:3.2.0 (*) +| +--- io.micronaut:micronaut-websocket:3.2.0 +| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | +--- io.micronaut:micronaut-http-client-core:3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | \--- io.micronaut:micronaut-aop:3.2.0 (*) +| +--- io.micronaut:micronaut-http-netty:3.2.0 +| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | +--- io.micronaut:micronaut-websocket:3.2.0 (*) +| | +--- io.micronaut:micronaut-buffer-netty:3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-core:3.2.0 (*) +| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | \--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final +| | | \--- io.netty:netty-common:4.1.87.Final +| | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-resolver:4.1.87.Final +| | | | \--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-codec:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-transport:4.1.87.Final (*) +| | | \--- io.netty:netty-handler:4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-resolver:4.1.87.Final (*) +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-transport:4.1.87.Final (*) +| | | \--- io.netty:netty-codec:4.1.87.Final (*) +| | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | +--- io.netty:netty-codec:4.1.87.Final (*) +| | | +--- io.netty:netty-handler:4.1.87.Final (*) +| | | \--- io.netty:netty-codec-http:4.1.87.Final (*) +| | \--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (*) +| \--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final +| +--- io.netty:netty-common:4.1.87.Final +| +--- io.netty:netty-buffer:4.1.87.Final (*) +| +--- io.netty:netty-transport:4.1.87.Final (*) +| +--- io.netty:netty-codec:4.1.87.Final (*) +| +--- io.netty:netty-codec-socks:4.1.87.Final +| | +--- io.netty:netty-common:4.1.87.Final +| | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | +--- io.netty:netty-transport:4.1.87.Final (*) +| | \--- io.netty:netty-codec:4.1.87.Final (*) +| \--- io.netty:netty-codec-http:4.1.87.Final (*) ++--- org.grails.plugins:views-json-templates -> 2.3.2 +| \--- org.grails.plugins:views-json:2.3.2 (*) ++--- com.graphql-java:graphql-java:20.6 +| +--- com.graphql-java:java-dataloader:3.2.0 +| | \--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| \--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 ++--- org.apache.commons:commons-compress:1.10 ++--- project :grails-plugin-gorm-graphql-plugin +| +--- project :gorm-graphql +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- com.graphql-java:graphql-java:20.6 (*) +| | +--- org.grails:grails-datastore-gorm:7.3.4 -> 7.3.3 (*) +| | +--- org.grails:grails-datastore-gorm:7.3.1 -> 7.3.3 (*) +| | +--- com.graphql-java:graphql-java-extended-scalars:20.2 +| | | \--- com.graphql-java:graphql-java:20.2 -> 20.6 (*) +| | +--- com.github.javaparser:javaparser-core:3.25.5 +| | +--- org.grails.plugins:views-json:2.3.2 (*) +| | \--- org.javassist:javassist:3.29.2-GA +| +--- com.graphql-java:graphql-java:20.6 (*) +| +--- org.grails:grails-datastore-gorm:7.3.4 -> 7.3.3 (*) +| +--- org.grails:grails-plugin-controllers -> 5.3.3 (*) +| +--- org.grails:grails-plugin-databinding -> 5.3.3 (*) +| +--- org.grails:grails-plugin-rest -> 5.3.3 (*) +| +--- org.grails:grails-plugin-url-mappings -> 5.3.3 (*) +| +--- org.grails.plugins:views-json:2.3.2 (*) +| +--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 (*) +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- io.micronaut:micronaut-http-client:3.2.0 (*) +| +--- org.grails.plugins:converters:3.3.1 -> 4.0.0 (*) +| \--- com.github.javaparser:javaparser-core:3.25.5 ++--- org.glassfish.web:el-impl:2.1.2-b03 +| \--- javax.el:el-api:2.1.2-b03 ++--- com.h2database:h2 -> 1.4.200 ++--- org.apache.tomcat:tomcat-jdbc -> 9.0.71 +| \--- org.apache.tomcat:tomcat-juli:9.0.71 ++--- org.grails:grails-test-mixins:3.3.0 +| +--- org.codehaus.groovy:groovy:2.4.11 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| +--- org.grails:grails-web-jsp:3.3.0 +| | +--- org.codehaus.groovy:groovy:2.4.11 -> 3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | +--- org.grails:grails-web-common:3.2.10 -> 5.3.3 (*) +| | \--- org.grails:grails-web-gsp:3.3.0 -> 5.2.2 (*) +| +--- org.grails.plugins:async:3.3.0 -> 4.0.0 (*) +| +--- org.grails:grails-test:3.3.0 -> 5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.springframework:spring-tx:5.3.25 (*) +| | +--- org.springframework.boot:spring-boot-test:2.7.9 -> 2.7.8 +| | | \--- org.springframework.boot:spring-boot:2.7.8 (*) +| | +--- org.codehaus.groovy:groovy-test-junit5:3.0.11 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 +| | | | +--- org.junit:junit-bom:5.8.2 (*) +| | | | +--- org.opentest4j:opentest4j:1.2.0 +| | | | \--- org.junit.platform:junit-platform-commons:1.8.2 +| | | | \--- org.junit:junit-bom:5.8.2 (*) +| | | +--- org.junit.platform:junit-platform-launcher:1.8.2 +| | | | +--- org.junit:junit-bom:5.8.2 (*) +| | | | \--- org.junit.platform:junit-platform-engine:1.8.2 +| | | | +--- org.junit:junit-bom:5.8.2 (*) +| | | | +--- org.opentest4j:opentest4j:1.2.0 +| | | | \--- org.junit.platform:junit-platform-commons:1.8.2 (*) +| | | \--- org.junit.jupiter:junit-jupiter-engine:5.8.2 +| | | +--- org.junit:junit-bom:5.8.2 (*) +| | | +--- org.junit.platform:junit-platform-engine:1.8.2 (*) +| | | \--- org.junit.jupiter:junit-jupiter-api:5.8.2 (*) +| | +--- org.codehaus.groovy:groovy-test:3.0.11 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | \--- junit:junit:4.13.2 (*) +| | +--- org.spockframework:spock-core:2.1-groovy-3.0 +| | +--- org.junit.platform:junit-platform-runner:1.9.2 -> 1.8.2 +| | | +--- org.junit.platform:junit-platform-suite-commons:1.8.2 +| | | | +--- org.junit.platform:junit-platform-engine:1.8.2 (*) +| | | | +--- org.junit.platform:junit-platform-suite-api:1.8.2 +| | | | | +--- org.junit:junit-bom:5.8.2 (*) +| | | | | \--- org.junit.platform:junit-platform-commons:1.8.2 (*) +| | | | +--- org.junit:junit-bom:5.8.2 (*) +| | | | \--- org.junit.platform:junit-platform-launcher:1.8.2 (*) +| | | +--- org.junit:junit-bom:5.8.2 (*) +| | | +--- junit:junit:4.13.2 (*) +| | | +--- org.junit.platform:junit-platform-launcher:1.8.2 (*) +| | | \--- org.junit.platform:junit-platform-suite-api:1.8.2 (*) +| | +--- org.grails.plugins:converters:4.0.0 (*) +| | +--- jline:jline:2.14.6 +| | +--- org.fusesource.jansi:jansi:1.18 +| | +--- org.apache.ant:ant:1.10.13 (*) +| | +--- org.apache.ant:ant-junit:1.10.13 (*) +| | \--- org.objenesis:objenesis:3.3 +| +--- org.grails:grails-datastore-gorm-test:6.1.6.RELEASE -> 7.3.3 +| | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.grails:grails-datastore-gorm:7.3.3 (*) +| | \--- org.grails:grails-datastore-core:7.3.3 (*) +| +--- org.grails:grails-logging:3.3.0 -> 5.3.3 (*) +| +--- javax.servlet:javax.servlet-api:3.1.0 -> 4.0.1 +| +--- org.springframework:spring-test:4.3.9.RELEASE -> 5.3.25 (*) +| +--- org.springframework.boot:spring-boot-starter-test:1.5.6.RELEASE -> 2.7.8 +| | +--- org.springframework.boot:spring-boot-starter:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot-test:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot-test-autoconfigure:2.7.8 +| | | +--- org.springframework.boot:spring-boot:2.7.8 (*) +| | | +--- org.springframework.boot:spring-boot-test:2.7.8 (*) +| | | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) +| | +--- com.jayway.jsonpath:json-path:2.7.0 +| | | +--- net.minidev:json-smart:2.4.7 -> 2.4.8 +| | | | \--- net.minidev:accessors-smart:2.4.8 +| | | | \--- org.ow2.asm:asm:9.1 +| | | \--- org.slf4j:slf4j-api:1.7.33 -> 1.7.36 +| | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 (*) +| | +--- org.assertj:assertj-core:3.22.0 +| | +--- org.hamcrest:hamcrest:2.2 +| | +--- org.junit.jupiter:junit-jupiter:5.8.2 +| | | +--- org.junit:junit-bom:5.8.2 (*) +| | | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 (*) +| | | +--- org.junit.jupiter:junit-jupiter-params:5.8.2 +| | | | +--- org.junit:junit-bom:5.8.2 (*) +| | | | \--- org.junit.jupiter:junit-jupiter-api:5.8.2 (*) +| | | \--- org.junit.jupiter:junit-jupiter-engine:5.8.2 (*) +| | +--- org.mockito:mockito-core:4.5.1 +| | | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 +| | | +--- net.bytebuddy:byte-buddy-agent:1.12.9 -> 1.12.22 +| | | \--- org.objenesis:objenesis:3.2 -> 3.3 +| | +--- org.mockito:mockito-junit-jupiter:4.5.1 +| | | +--- org.mockito:mockito-core:4.5.1 (*) +| | | \--- org.junit.jupiter:junit-jupiter-api:5.8.2 (*) +| | +--- org.skyscreamer:jsonassert:1.5.1 +| | | \--- com.vaadin.external.google:android-json:0.0.20131108.vaadin1 +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-test:5.3.25 (*) +| | \--- org.xmlunit:xmlunit-core:2.9.1 +| +--- org.spockframework:spock-spring:1.1-groovy-2.4 -> 2.1-groovy-3.0 +| +--- org.spockframework:spock-core:1.1-groovy-2.4 -> 2.1-groovy-3.0 +| +--- junit:junit:4.12 -> 4.13.2 (*) +| \--- cglib:cglib:2.2.2 +| \--- asm:asm:3.3.1 ++--- org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1 +| +--- org.seleniumhq.selenium:selenium-remote-driver:2.47.1 -> 4.1.4 +| | +--- com.beust:jcommander:1.82 +| | +--- com.google.auto.service:auto-service-annotations:1.0.1 +| | +--- com.google.auto.service:auto-service:1.0.1 +| | | +--- com.google.auto.service:auto-service-annotations:1.0.1 +| | | +--- com.google.auto:auto-common:1.2 +| | | | \--- com.google.guava:guava:31.0.1-jre -> 31.1-jre +| | | | +--- com.google.guava:failureaccess:1.0.1 +| | | | +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava +| | | | +--- com.google.code.findbugs:jsr305:3.0.2 +| | | | +--- org.checkerframework:checker-qual:3.12.0 -> 3.19.0 +| | | | +--- com.google.errorprone:error_prone_annotations:2.11.0 +| | | | \--- com.google.j2objc:j2objc-annotations:1.3 +| | | \--- com.google.guava:guava:31.0.1-jre -> 31.1-jre (*) +| | +--- com.google.guava:guava:31.1-jre (*) +| | +--- io.netty:netty-buffer:4.1.76.Final -> 4.1.87.Final (*) +| | +--- io.netty:netty-codec-http:4.1.76.Final -> 4.1.87.Final (*) +| | +--- io.netty:netty-common:4.1.76.Final -> 4.1.87.Final +| | +--- io.netty:netty-transport-classes-epoll:4.1.76.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | \--- io.netty:netty-transport-native-unix-common:4.1.87.Final (*) +| | +--- io.netty:netty-transport-classes-kqueue:4.1.76.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | \--- io.netty:netty-transport-native-unix-common:4.1.87.Final (*) +| | +--- io.netty:netty-transport-native-epoll:4.1.76.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final (*) +| | | \--- io.netty:netty-transport-classes-epoll:4.1.87.Final (*) +| | +--- io.netty:netty-transport-native-kqueue:4.1.76.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final (*) +| | | \--- io.netty:netty-transport-classes-kqueue:4.1.87.Final (*) +| | +--- io.netty:netty-transport-native-unix-common:4.1.76.Final -> 4.1.87.Final (*) +| | +--- io.netty:netty-transport:4.1.76.Final -> 4.1.87.Final (*) +| | +--- io.opentelemetry:opentelemetry-api:1.13.0 +| | | \--- io.opentelemetry:opentelemetry-context:1.13.0 +| | +--- io.opentelemetry:opentelemetry-context:1.13.0 +| | +--- io.opentelemetry:opentelemetry-exporter-logging:1.13.0 +| | | +--- io.opentelemetry:opentelemetry-sdk:1.13.0 +| | | | +--- io.opentelemetry:opentelemetry-sdk-metrics:1.13.0-alpha +| | | | | +--- io.opentelemetry:opentelemetry-api:1.13.0 (*) +| | | | | \--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 +| | | | | +--- io.opentelemetry:opentelemetry-semconv:1.13.0-alpha +| | | | | | \--- io.opentelemetry:opentelemetry-api:1.13.0 (*) +| | | | | \--- io.opentelemetry:opentelemetry-api:1.13.0 (*) +| | | | +--- io.opentelemetry:opentelemetry-sdk-logs:1.13.0-alpha +| | | | | \--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 (*) +| | | | +--- io.opentelemetry:opentelemetry-api:1.13.0 (*) +| | | | +--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 (*) +| | | | \--- io.opentelemetry:opentelemetry-sdk-trace:1.13.0 +| | | | +--- io.opentelemetry:opentelemetry-semconv:1.13.0-alpha (*) +| | | | +--- io.opentelemetry:opentelemetry-api:1.13.0 (*) +| | | | \--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 (*) +| | | +--- io.opentelemetry:opentelemetry-sdk-metrics:1.13.0-alpha (*) +| | | \--- io.opentelemetry:opentelemetry-sdk-logs:1.13.0-alpha (*) +| | +--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 (*) +| | +--- io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.13.0 +| | | +--- io.opentelemetry:opentelemetry-sdk-metrics:1.13.0-alpha (*) +| | | +--- io.opentelemetry:opentelemetry-sdk-logs:1.13.0-alpha (*) +| | | \--- io.opentelemetry:opentelemetry-sdk:1.13.0 (*) +| | +--- io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.13.0-alpha +| | | +--- io.opentelemetry:opentelemetry-semconv:1.13.0-alpha (*) +| | | +--- io.opentelemetry:opentelemetry-sdk:1.13.0 (*) +| | | +--- io.opentelemetry:opentelemetry-sdk-metrics:1.13.0-alpha (*) +| | | +--- io.opentelemetry:opentelemetry-sdk-logs:1.13.0-alpha (*) +| | | \--- io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.13.0 (*) +| | +--- io.opentelemetry:opentelemetry-sdk-trace:1.13.0 (*) +| | +--- io.opentelemetry:opentelemetry-sdk:1.13.0 (*) +| | +--- io.opentelemetry:opentelemetry-semconv:1.13.0-alpha (*) +| | +--- io.ous:jtoml:2.0.0 +| | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 +| | +--- org.apache.commons:commons-exec:1.3 +| | +--- org.asynchttpclient:async-http-client:2.12.3 +| | | +--- org.asynchttpclient:async-http-client-netty-utils:2.12.3 +| | | | +--- io.netty:netty-buffer:4.1.60.Final -> 4.1.87.Final (*) +| | | | +--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| | | | \--- com.sun.activation:jakarta.activation:1.2.2 +| | | +--- io.netty:netty-codec-http:4.1.60.Final -> 4.1.87.Final (*) +| | | +--- io.netty:netty-handler:4.1.60.Final -> 4.1.87.Final (*) +| | | +--- io.netty:netty-codec-socks:4.1.60.Final -> 4.1.87.Final (*) +| | | +--- io.netty:netty-handler-proxy:4.1.60.Final -> 4.1.87.Final (*) +| | | +--- io.netty:netty-transport-native-epoll:4.1.60.Final -> 4.1.87.Final (*) +| | | +--- io.netty:netty-transport-native-kqueue:4.1.60.Final -> 4.1.87.Final (*) +| | | +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| | | +--- com.typesafe.netty:netty-reactive-streams:2.0.4 +| | | | +--- io.netty:netty-handler:4.1.43.Final -> 4.1.87.Final (*) +| | | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| | | +--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| | | \--- com.sun.activation:jakarta.activation:1.2.2 +| | +--- org.seleniumhq.selenium:selenium-api:4.1.4 +| | +--- org.seleniumhq.selenium:selenium-http:4.1.4 +| | | +--- com.google.guava:guava:31.1-jre (*) +| | | +--- dev.failsafe:failsafe:3.2.3 +| | | +--- org.seleniumhq.selenium:selenium-api:4.1.4 +| | | \--- org.seleniumhq.selenium:selenium-json:4.1.4 +| | | \--- org.seleniumhq.selenium:selenium-api:4.1.4 +| | \--- org.seleniumhq.selenium:selenium-json:4.1.4 (*) +| +--- net.sourceforge.htmlunit:htmlunit:2.17 -> 2.18 +| | +--- xalan:xalan:2.7.2 +| | | \--- xalan:serializer:2.7.2 +| | | \--- xml-apis:xml-apis:1.3.04 -> 1.4.01 +| | +--- commons-collections:commons-collections:3.2.1 -> 3.2.2 +| | +--- org.apache.commons:commons-lang3:3.4 -> 3.12.0 +| | +--- org.apache.httpcomponents:httpclient:4.5 -> 4.5.14 +| | | +--- org.apache.httpcomponents:httpcore:4.4.16 +| | | +--- commons-logging:commons-logging:1.2 +| | | \--- commons-codec:commons-codec:1.11 -> 1.15 +| | +--- org.apache.httpcomponents:httpmime:4.5 -> 4.5.14 +| | | \--- org.apache.httpcomponents:httpclient:4.5.14 (*) +| | +--- commons-codec:commons-codec:1.10 -> 1.15 +| | +--- net.sourceforge.htmlunit:htmlunit-core-js:2.17 +| | +--- xerces:xercesImpl:2.11.0 +| | | \--- xml-apis:xml-apis:1.4.01 +| | +--- net.sourceforge.nekohtml:nekohtml:1.9.22 +| | +--- net.sourceforge.cssparser:cssparser:0.9.16 +| | | \--- org.w3c.css:sac:1.3 +| | +--- commons-io:commons-io:2.4 -> 2.11.0 +| | +--- commons-logging:commons-logging:1.2 +| | \--- org.eclipse.jetty.websocket:websocket-client:9.2.12.v20150709 -> 9.4.50.v20221201 +| | +--- org.eclipse.jetty:jetty-client:9.4.50.v20221201 +| | | +--- org.eclipse.jetty:jetty-http:9.4.50.v20221201 +| | | | +--- org.eclipse.jetty:jetty-util:9.4.50.v20221201 +| | | | \--- org.eclipse.jetty:jetty-io:9.4.50.v20221201 +| | | | \--- org.eclipse.jetty:jetty-util:9.4.50.v20221201 +| | | \--- org.eclipse.jetty:jetty-io:9.4.50.v20221201 (*) +| | +--- org.eclipse.jetty:jetty-util:9.4.50.v20221201 +| | +--- org.eclipse.jetty:jetty-io:9.4.50.v20221201 (*) +| | \--- org.eclipse.jetty.websocket:websocket-common:9.4.50.v20221201 +| | +--- org.eclipse.jetty.websocket:websocket-api:9.4.50.v20221201 +| | +--- org.eclipse.jetty:jetty-util:9.4.50.v20221201 +| | \--- org.eclipse.jetty:jetty-io:9.4.50.v20221201 (*) +| \--- org.apache.httpcomponents:httpclient:4.4.1 -> 4.5.14 (*) +\--- net.sourceforge.htmlunit:htmlunit:2.18 (*) + +integrationTestRuntimeOnly - Runtime only dependencies for source set 'integration test'. (n) +No dependencies + +productionRuntimeClasspath ++--- org.springframework.boot:spring-boot-starter-logging -> 2.7.8 +| +--- ch.qos.logback:logback-classic:1.2.11 +| | +--- ch.qos.logback:logback-core:1.2.11 +| | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| +--- org.apache.logging.log4j:log4j-to-slf4j:2.17.2 +| | +--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 +| | \--- org.apache.logging.log4j:log4j-api:2.17.2 +| \--- org.slf4j:jul-to-slf4j:1.7.36 +| \--- org.slf4j:slf4j-api:1.7.36 ++--- org.springframework.boot:spring-boot-autoconfigure -> 2.7.8 +| \--- org.springframework.boot:spring-boot:2.7.8 +| +--- org.springframework:spring-core:5.3.25 +| | \--- org.springframework:spring-jcl:5.3.25 +| \--- org.springframework:spring-context:5.3.25 +| +--- org.springframework:spring-aop:5.3.25 +| | +--- org.springframework:spring-beans:5.3.25 +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | \--- org.springframework:spring-core:5.3.25 (*) +| +--- org.springframework:spring-beans:5.3.25 (*) +| +--- org.springframework:spring-core:5.3.25 (*) +| \--- org.springframework:spring-expression:5.3.25 +| \--- org.springframework:spring-core:5.3.25 (*) ++--- org.grails:grails-core:5.3.2 +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 +| | +--- org.checkerframework:checker-qual:3.19.0 +| | \--- com.google.errorprone:error_prone_annotations:2.10.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 +| | \--- org.slf4j:slf4j-api:1.7.36 +| +--- io.micronaut:micronaut-inject:3.8.4 -> 3.2.0 +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- jakarta.inject:jakarta.inject-api:2.0.1 +| | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 +| | +--- io.micronaut:micronaut-core:3.2.0 +| | | \--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | \--- org.yaml:snakeyaml:1.29 -> 1.30 +| +--- javax.inject:javax.inject:1 +| +--- io.micronaut.spring:micronaut-spring-context:4.5.0 +| | +--- io.micronaut.cache:micronaut-cache-core:3.5.0 +| | | +--- io.projectreactor:reactor-core:3.4.21 -> 3.4.26 +| | | | \--- org.reactivestreams:reactive-streams:1.0.4 +| | | +--- io.micronaut:micronaut-bom:3.5.4 -> 3.2.0 +| | | | +--- org.codehaus.groovy:groovy-bom:3.0.9 -> 3.0.11 +| | | | | +--- org.codehaus.groovy:groovy:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-ant:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-json:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-sql:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-xml:3.0.11 (c) +| | | | | \--- org.codehaus.groovy:groovy-groovydoc:3.0.11 (c) +| | | | +--- io.grpc:grpc-bom:1.39.0 +| | | | +--- com.fasterxml.jackson:jackson-bom:2.12.4 -> 2.13.4 +| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) +| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) +| | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) +| | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) +| | | | +--- org.junit:junit-bom:5.7.2 +| | | | +--- org.jetbrains.kotlin:kotlin-bom:1.6.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.5.1 +| | | | +--- io.ktor:ktor-bom:1.6.1 +| | | | +--- io.micrometer:micrometer-bom:1.8.0 +| | | | | \--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) +| | | | +--- io.micronaut.aws:micronaut-aws-bom:3.0.4 +| | | | +--- io.micronaut.cache:micronaut-cache-bom:3.0.0 +| | | | | +--- io.micronaut.cache:micronaut-cache-core:3.0.0 -> 3.5.0 (c) +| | | | | \--- com.github.ben-manes.caffeine:caffeine:2.9.1 -> 2.9.3 (c) +| | | | +--- io.micronaut.coherence:micronaut-coherence-bom:3.0.1 +| | | | +--- io.micronaut.data:micronaut-data-bom:3.2.0 +| | | | +--- io.micronaut.groovy:micronaut-groovy-bom:3.0.0 +| | | | | \--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) +| | | | +--- io.micronaut.micrometer:micronaut-micrometer-bom:4.1.0 +| | | | | +--- io.micrometer:micrometer-bom:1.8.0 (*) +| | | | | \--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) +| | | | +--- io.micronaut.oraclecloud:micronaut-oraclecloud-bom:2.0.3 +| | | | +--- io.micronaut.r2dbc:micronaut-r2dbc-bom:2.0.0 +| | | | | \--- io.r2dbc:r2dbc-bom:Arabba-SR9 +| | | | +--- io.micronaut.sql:micronaut-sql-bom:4.0.4 +| | | | | +--- org.hibernate:hibernate-core:5.5.3.Final -> 5.6.11.Final (c) +| | | | | \--- org.apache.tomcat:tomcat-jdbc:10.0.8 -> 9.0.71 (c) +| | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 +| | | | | +--- org.junit:junit-bom:5.7.2 +| | | | | +--- org.spockframework:spock-bom:2.0-groovy-3.0 +| | | | | \--- org.hamcrest:hamcrest:2.2 (c) +| | | | +--- io.micronaut.views:micronaut-views-bom:3.0.1 +| | | | +--- io.netty:netty-bom:4.1.70.Final +| | | | | +--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-codec:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-codec-socks:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-common:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-resolver:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-transport:4.1.70.Final -> 4.1.87.Final (c) +| | | | | \--- io.netty:netty-transport-native-unix-common:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- com.google.protobuf:protobuf-bom:3.17.2 +| | | | +--- org.testcontainers:testcontainers-bom:1.16.1 +| | | | +--- io.micronaut:micronaut-aop:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-buffer-netty:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-context:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-core:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-http:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-http-client:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-http-client-core:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-http-netty:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-inject:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-runtime:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-websocket:3.2.0 (c) +| | | | +--- org.grails:grails-datastore-core:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-gorm:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-gorm-support:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-gorm-validation:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-web:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-gorm-hibernate5:7.1.0.M3 -> 7.2.2 (c) +| | | | +--- org.codehaus.groovy:groovy:3.0.9 -> 3.0.11 (c) +| | | | +--- org.codehaus.groovy:groovy-json:3.0.9 -> 3.0.11 (c) +| | | | +--- org.codehaus.groovy:groovy-sql:3.0.9 -> 3.0.11 (c) +| | | | +--- org.codehaus.groovy:groovy-templates:3.0.9 -> 3.0.11 (c) +| | | | +--- com.h2database:h2:1.4.200 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 (c) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 (c) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 (c) +| | | | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 (c) +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 (c) +| | | | +--- ch.qos.logback:logback-classic:1.2.3 -> 1.2.11 (c) +| | | | +--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) +| | | | +--- io.micronaut.rxjava2:micronaut-rxjava2:1.1.0 -> 1.2.0 (c) +| | | | +--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.1.0 -> 1.2.0 (c) +| | | | +--- io.micronaut.spring:micronaut-spring:4.0.0 -> 4.5.0 (c) +| | | | +--- io.micronaut.spring:micronaut-spring-context:4.0.0 -> 4.5.0 (c) +| | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 (c) +| | | | +--- org.mongodb:mongodb-driver-core:4.3.0 -> 4.5.0 (c) +| | | | +--- org.mongodb:mongodb-driver-sync:4.3.0 -> 4.5.0 (c) +| | | | +--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 (c) +| | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (c) +| | | | +--- io.reactivex.rxjava2:rxjava:2.2.10 -> 2.2.21 (c) +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 (c) +| | | | +--- org.yaml:snakeyaml:1.29 -> 1.30 (c) +| | | | +--- org.springframework:spring-core:5.3.9 -> 5.3.25 (c) +| | | | +--- org.springframework.boot:spring-boot-starter:2.5.3 -> 2.7.8 (c) +| | | | +--- org.springframework:spring-context:5.3.9 -> 5.3.25 (c) +| | | | +--- org.springframework:spring-jdbc:5.3.9 -> 5.3.25 (c) +| | | | +--- org.springframework:spring-orm:5.3.9 -> 5.3.25 (c) +| | | | +--- org.springframework:spring-tx:5.3.9 -> 5.3.25 (c) +| | | | +--- javax.validation:validation-api:2.0.1.Final (c) +| | | | \--- io.micronaut:micronaut-json-core:3.2.0 (c) +| | | +--- io.micronaut:micronaut-inject:3.5.4 -> 3.2.0 (*) +| | | +--- io.micronaut:micronaut-aop:3.5.4 -> 3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | | \--- io.micronaut:micronaut-core:3.2.0 (*) +| | | +--- io.micronaut:micronaut-http:3.5.4 -> 3.2.0 +| | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | | \--- io.micronaut:micronaut-core-reactive:3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-core:3.2.0 (*) +| | | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| | | \--- io.micronaut:micronaut-runtime:3.5.4 -> 3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | +--- io.micronaut:micronaut-aop:3.2.0 (*) +| | | +--- io.micronaut:micronaut-context:3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | | +--- io.micronaut:micronaut-aop:3.2.0 (*) +| | | | \--- javax.validation:validation-api:2.0.1.Final +| | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (*) +| | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 +| | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | | +--- io.micronaut:micronaut-json-core:3.2.0 +| | | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | | | +--- io.micronaut:micronaut-context:3.2.0 (*) +| | | | | | \--- io.micronaut:micronaut-http:3.2.0 (*) +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 +| | | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | | \--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 +| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | +--- javax.validation:validation-api:2.0.1.Final +| | | \--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) +| | +--- org.springframework:spring-framework-bom:5.3.25 +| | | +--- org.springframework:spring-aop:5.3.25 (c) +| | | +--- org.springframework:spring-beans:5.3.25 (c) +| | | +--- org.springframework:spring-context:5.3.25 (c) +| | | +--- org.springframework:spring-core:5.3.25 (c) +| | | +--- org.springframework:spring-expression:5.3.25 (c) +| | | +--- org.springframework:spring-jcl:5.3.25 (c) +| | | +--- org.springframework:spring-jdbc:5.3.25 (c) +| | | +--- org.springframework:spring-orm:5.3.25 (c) +| | | +--- org.springframework:spring-test:5.3.25 (c) +| | | +--- org.springframework:spring-tx:5.3.25 (c) +| | | +--- org.springframework:spring-web:5.3.25 (c) +| | | +--- org.springframework:spring-webmvc:5.3.25 (c) +| | | \--- org.springframework:spring-context-support:5.3.25 (c) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | +--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) +| | \--- io.micronaut.spring:micronaut-spring:4.5.0 +| | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) +| | +--- org.springframework:spring-framework-bom:5.3.25 (*) +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-tx:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | \--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) +| +--- io.micronaut.cache:micronaut-cache-core:3.5.0 (*) +| +--- io.micronaut:micronaut-runtime:3.8.4 -> 3.2.0 (*) +| +--- javax.persistence:javax.persistence-api:2.2 +| +--- javax.annotation:javax.annotation-api:1.3.2 +| +--- org.springframework.boot:spring-boot:2.7.8 (*) +| +--- org.springframework:spring-core:5.3.25 (*) +| +--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.springframework:spring-beans:5.3.25 (*) +| +--- org.springframework:spring-context:5.3.25 (*) +| +--- org.grails:grails-bootstrap:5.3.2 -> 5.3.3 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.codehaus.groovy:groovy-xml:3.0.11 +| | | \--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.codehaus.groovy:groovy-templates:3.0.11 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) +| | +--- org.yaml:snakeyaml:1.33 -> 1.30 +| | \--- io.micronaut:micronaut-inject:3.8.5 -> 3.2.0 (*) +| +--- org.grails:grails-spring:5.3.2 -> 5.3.3 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.springframework:spring-tx:5.3.25 (*) +| | +--- org.springframework:spring-web:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | \--- org.grails:grails-bootstrap:5.3.3 (*) +| +--- org.grails:grails-datastore-core:7.3.3 +| | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| | +--- org.javassist:javassist:3.29.2-GA +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- javax.transaction:jta:1.1 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- javax.persistence:javax.persistence-api:2.2 +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-beans:5.3.25 (*) +| | +--- org.springframework:spring-tx:5.3.25 (*) +| | \--- org.springframework:spring-context:5.3.25 (*) +| +--- org.apache.ant:ant:1.10.13 +| | \--- org.apache.ant:ant-launcher:1.10.13 +| +--- jline:jline:2.14.6 +| \--- org.fusesource.jansi:jansi:1.18 ++--- org.springframework.boot:spring-boot-starter-actuator -> 2.7.8 +| +--- org.springframework.boot:spring-boot-starter:2.7.8 +| | +--- org.springframework.boot:spring-boot:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot-starter-logging:2.7.8 (*) +| | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 +| | +--- org.springframework:spring-core:5.3.25 (*) +| | \--- org.yaml:snakeyaml:1.30 +| +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.7.8 +| | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4.2 (*) +| | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (*) +| | +--- org.springframework.boot:spring-boot-actuator:2.7.8 +| | | \--- org.springframework.boot:spring-boot:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot:2.7.8 (*) +| | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) +| \--- io.micrometer:micrometer-core:1.9.7 +| +--- org.hdrhistogram:HdrHistogram:2.1.12 +| \--- org.latencyutils:LatencyUtils:2.0.3 ++--- org.springframework.boot:spring-boot-starter-tomcat -> 2.7.8 +| +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 +| +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 +| +--- org.apache.tomcat.embed:tomcat-embed-el:9.0.71 +| \--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.71 +| \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 ++--- org.grails:grails-plugin-url-mappings -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 +| | \--- org.springframework:spring-core:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-web:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.grails:grails-web-common:5.3.3 +| | | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | +--- org.grails:grails-databinding:5.3.3 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) +| | | +--- org.grails:grails-encoder:5.3.3 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | | +--- org.codehaus.groovy:groovy-json:3.0.11 +| | | | | \--- org.codehaus.groovy:groovy:3.0.11 +| | | | \--- org.springframework:spring-web:5.3.25 (*) +| | | +--- org.grails:grails-gsp:5.2.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | +--- org.grails:grails-taglib:5.2.2 +| | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | \--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | | +--- org.springframework:spring-webmvc:5.3.25 +| | | | +--- org.springframework:spring-aop:5.3.25 (*) +| | | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | | +--- org.springframework:spring-context:5.3.25 (*) +| | | | +--- org.springframework:spring-core:5.3.25 (*) +| | | | +--- org.springframework:spring-expression:5.3.25 (*) +| | | | \--- org.springframework:spring-web:5.3.25 (*) +| | | \--- org.springframework:spring-context-support:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | +--- org.springframework:spring-context:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.grails:grails-web-databinding:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-databinding:5.3.3 (*) +| | | \--- org.grails:grails-web-common:5.3.3 (*) +| | +--- org.grails:grails-web-fileupload:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | \--- commons-fileupload:commons-fileupload:1.5 +| | | \--- commons-io:commons-io:2.11.0 +| | +--- org.grails:grails-web-url-mappings:5.3.3 +| | | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | | | \--- commons-validator:commons-validator:1.7 +| | | | \--- commons-collections:commons-collections:3.2.2 +| | | +--- org.fusesource.jansi:jansi:1.18 +| | | \--- jline:jline:2.14.6 +| | +--- org.grails:grails-web-mvc:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | +--- org.grails:grails-web-url-mappings:5.3.3 (*) +| | | \--- org.grails:grails-web-sitemesh:5.2.2 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | \--- opensymphony:sitemesh:2.4.2 +| | +--- org.grails:grails-web-gsp:5.2.2 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.grails:grails-gsp:5.2.2 (*) +| | | +--- org.grails:grails-web-taglib:5.2.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | \--- org.grails:grails-taglib:5.2.2 (*) +| | | \--- org.grails:grails-web-sitemesh:5.2.2 (*) +| | \--- org.grails:grails-web-sitemesh:5.2.2 (*) +| +--- org.grails:grails-plugin-controllers:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | +--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-mimetypes:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | \--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-validation:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | \--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-domain-class:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | +--- org.grails:grails-spring:5.3.3 (*) +| | | +--- org.grails:grails-plugin-validation:5.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm:7.3.3 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- javax.el:javax.el-api:3.0.0 -> 3.0.1-b06 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) +| | | | \--- org.glassfish:javax.el:3.0.1-b12 +| | | +--- org.grails:grails-datastore-gorm-support:7.3.3 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-gorm:7.3.3 (*) +| | | | +--- org.grails:grails-core:5.2.4 -> 5.3.2 (*) +| | | | \--- org.grails:grails-bootstrap:5.2.4 -> 5.3.3 (*) +| | | \--- org.grails:grails-datastore-core:7.3.3 (*) +| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.9 -> 2.7.8 (*) +| | \--- org.grails:grails-plugin-i18n:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.grails:grails-web:5.3.3 (*) +| | \--- org.codehaus.groovy:groovy-ant:3.0.11 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.apache.ant:ant:1.10.12 -> 1.10.13 (*) +| | +--- org.apache.ant:ant-junit:1.10.12 +| | | \--- org.apache.ant:ant:1.10.12 -> 1.10.13 (*) +| | +--- org.apache.ant:ant-launcher:1.10.12 -> 1.10.13 +| | +--- org.apache.ant:ant-antlr:1.10.12 +| | \--- org.codehaus.groovy:groovy-groovydoc:3.0.11 +| \--- junit:junit:4.13.2 +| \--- org.hamcrest:hamcrest-core:1.3 -> 2.2 +| \--- org.hamcrest:hamcrest:2.2 ++--- org.grails:grails-plugin-rest -> 5.3.3 +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- javax.xml.bind:jaxb-api:2.3.1 +| | \--- javax.activation:javax.activation-api:1.2.0 +| +--- org.grails:grails-web:5.3.3 (*) +| +--- org.grails:grails-plugin-controllers:5.3.3 (*) +| +--- org.grails:grails-plugin-datasource:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.springframework:spring-jdbc:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | +--- org.springframework:spring-core:5.3.25 (*) +| | | \--- org.springframework:spring-tx:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy-sql:3.0.11 +| | | \--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.springframework:spring-context:5.3.25 (*) +| | +--- org.grails:grails-datastore-gorm:7.3.3 (*) +| | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails.plugins:converters:4.0.0 +| \--- org.apache.commons:commons-lang3:3.0 -> 3.12.0 ++--- org.grails:grails-plugin-codecs -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-web:5.3.3 (*) +| +--- org.grails:grails-encoder:5.3.3 (*) +| \--- org.grails:grails-codecs:5.3.3 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| \--- commons-codec:commons-codec:1.15 ++--- org.grails:grails-plugin-interceptors -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-plugin-controllers:5.3.3 (*) +| \--- org.grails:grails-plugin-url-mappings:5.3.3 (*) ++--- org.grails:grails-plugin-services -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails:grails-plugin-datasource:5.3.3 (*) ++--- org.grails:grails-plugin-datasource -> 5.3.3 (*) ++--- org.grails:grails-plugin-databinding -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails:grails-web:5.3.3 (*) ++--- org.grails:grails-web-boot -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| \--- org.grails:grails-web-common:5.3.3 (*) ++--- org.grails:grails-logging -> 5.3.3 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) ++--- org.grails.plugins:cache -> 5.0.1 +| +--- com.bertramlabs.plugins:asset-pipeline-grails:3.0.7 +| | \--- com.bertramlabs.plugins:asset-pipeline-core:3.0.7 +| | \--- commons-logging:commons-logging:1.1.1 +| +--- gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.4 +| | +--- org.ysb33r.gradle:grolifant:0.11 +| | | \--- org.tukaani:xz:1.6 +| | \--- org.apache.maven:maven-artifact:3.6.3 +| | +--- org.codehaus.plexus:plexus-utils:3.2.1 +| | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| +--- org.codehaus.gpars:gpars:1.2.1 +| | +--- org.multiverse:multiverse-core:0.7.0 +| | \--- org.codehaus.jsr166-mirror:jsr166y:1.7.0 +| +--- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2 +| \--- org.javassist:javassist:3.27.0-GA -> 3.29.2-GA ++--- org.grails.plugins:async -> 4.0.0 +| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| +--- javax.annotation:javax.annotation-api:1.3.2 +| +--- org.grails:grails-plugin-controllers:4.0.0 -> 5.3.3 (*) +| +--- org.grails.plugins:events:4.0.0 +| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.grails:grails-core:4.0.0 -> 5.3.2 (*) +| | +--- org.grails:grails-events:4.0.0 +| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | +--- org.springframework:spring-context:5.1.8.RELEASE -> 5.3.25 (*) +| | | \--- org.springframework:spring-tx:5.1.8.RELEASE -> 5.3.25 (*) +| | +--- org.grails:grails-events-transform:4.0.0 +| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | +--- org.grails:grails-events:4.0.0 (*) +| | | \--- org.grails:grails-datastore-gorm:7.0.2.RELEASE -> 7.3.3 (*) +| | \--- org.grails:grails-events-compat:4.0.0 +| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.grails:grails-events:4.0.0 (*) +| | \--- org.grails:grails-events-transform:4.0.0 (*) +| \--- org.grails:grails-async:4.0.0 +| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| \--- javax.annotation:javax.annotation-api:1.3.2 ++--- org.grails.plugins:hibernate5 -> 7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.springframework.boot:spring-boot:2.7.0 -> 2.7.8 (*) +| +--- org.springframework:spring-orm:5.3.20 -> 5.3.25 +| | +--- org.springframework:spring-beans:5.3.25 (*) +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-jdbc:5.3.25 (*) +| | \--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.hibernate:hibernate-core:5.6.9.Final -> 5.6.11.Final +| | +--- org.jboss.logging:jboss-logging:3.4.3.Final +| | +--- javax.persistence:javax.persistence-api:2.2 +| | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 +| | +--- antlr:antlr:2.7.7 +| | +--- org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final +| | +--- org.jboss:jandex:2.4.2.Final +| | +--- com.fasterxml:classmate:1.5.1 +| | +--- javax.activation:javax.activation-api:1.2.0 +| | +--- org.hibernate.common:hibernate-commons-annotations:5.1.2.Final +| | | \--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.4.3.Final +| | +--- javax.xml.bind:jaxb-api:2.3.1 (*) +| | \--- org.glassfish.jaxb:jaxb-runtime:2.3.1 -> 2.3.7 +| | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 +| | +--- org.glassfish.jaxb:txw2:2.3.7 +| | +--- com.sun.istack:istack-commons-runtime:3.0.12 +| | \--- com.sun.activation:jakarta.activation:1.2.2 +| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | +--- org.springframework:spring-web:5.3.25 (*) +| | \--- org.springframework:spring-context:5.3.25 (*) +| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) +| \--- org.grails:grails-datastore-gorm-hibernate5:7.3.0 -> 7.2.2 +| +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.grails:grails-datastore-gorm:7.2.1 -> 7.3.3 (*) +| +--- org.springframework:spring-orm:5.3.16 -> 5.3.25 (*) +| +--- org.hibernate:hibernate-core:5.6.5.Final -> 5.6.11.Final (*) +| +--- org.hibernate:hibernate-validator:6.2.3.Final +| | \--- org.hibernate.validator:hibernate-validator:6.2.3.Final -> 6.2.5.Final +| | +--- jakarta.validation:jakarta.validation-api:2.0.2 +| | +--- org.jboss.logging:jboss-logging:3.4.1.Final -> 3.4.3.Final +| | \--- com.fasterxml:classmate:1.5.1 +| +--- javax.validation:validation-api:2.0.1.Final +| +--- javax.el:javax.el-api:3.0.1-b06 +| +--- javax.xml.bind:jaxb-api:2.3.1 (*) +| \--- com.sun.xml.bind:jaxb-impl:2.3.1 ++--- org.hibernate:hibernate-core:5.6.11.Final (*) ++--- org.grails.plugins:mongodb -> 7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm-mongodb-ext:7.3.0 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | \--- org.mongodb:mongodb-driver-sync:4.5.0 +| | +--- org.mongodb:bson:4.5.0 -> 4.6.1 +| | \--- org.mongodb:mongodb-driver-core:4.5.0 +| | \--- org.mongodb:bson:4.5.0 -> 4.6.1 +| \--- org.grails:grails-datastore-gorm-mongodb:7.3.0 +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.mongodb:mongodb-driver-sync:4.5.0 (*) +| +--- org.grails:grails-datastore-gorm-validation:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) +| \--- org.grails:grails-datastore-gorm-bson:7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) +| \--- org.mongodb:bson:4.5.0 -> 4.6.1 ++--- org.grails.plugins:views-json -> 2.3.2 +| +--- org.grails:grails-core:5.1.8 -> 5.3.2 (*) +| \--- org.grails:views-core:2.3.2 +| +--- org.codehaus.groovy:groovy-bom:3.0.11 (*) +| +--- org.grails:grails-encoder:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-web-common:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-web-url-mappings:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-plugin-rest:5.1.8 -> 5.3.3 (*) +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| \--- javax.servlet:javax.servlet-api:4.0.1 ++--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 +| +--- io.micronaut:micronaut-bom:3.3.0 -> 3.2.0 (*) +| +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) +| +--- io.micronaut.rxjava2:micronaut-rxjava2:1.2.0 +| | +--- io.micronaut:micronaut-bom:3.3.0 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-runtime:3.3.0 -> 3.2.0 (*) +| | \--- io.reactivex.rxjava2:rxjava:2.2.21 +| | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| \--- io.micronaut:micronaut-http-client:3.3.0 -> 3.2.0 +| +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| +--- io.micronaut:micronaut-runtime:3.2.0 (*) +| +--- io.micronaut:micronaut-http-client-core:3.2.0 +| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | \--- io.micronaut:micronaut-runtime:3.2.0 (*) +| +--- io.micronaut:micronaut-websocket:3.2.0 +| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | +--- io.micronaut:micronaut-http-client-core:3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | \--- io.micronaut:micronaut-aop:3.2.0 (*) +| +--- io.micronaut:micronaut-http-netty:3.2.0 +| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | +--- io.micronaut:micronaut-websocket:3.2.0 (*) +| | +--- io.micronaut:micronaut-buffer-netty:3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-core:3.2.0 (*) +| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | \--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final +| | | \--- io.netty:netty-common:4.1.87.Final +| | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-resolver:4.1.87.Final +| | | | \--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-codec:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-transport:4.1.87.Final (*) +| | | \--- io.netty:netty-handler:4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-resolver:4.1.87.Final (*) +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-transport:4.1.87.Final (*) +| | | \--- io.netty:netty-codec:4.1.87.Final (*) +| | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | +--- io.netty:netty-codec:4.1.87.Final (*) +| | | +--- io.netty:netty-handler:4.1.87.Final (*) +| | | \--- io.netty:netty-codec-http:4.1.87.Final (*) +| | \--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (*) +| \--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final +| +--- io.netty:netty-common:4.1.87.Final +| +--- io.netty:netty-buffer:4.1.87.Final (*) +| +--- io.netty:netty-transport:4.1.87.Final (*) +| +--- io.netty:netty-codec:4.1.87.Final (*) +| +--- io.netty:netty-codec-socks:4.1.87.Final +| | +--- io.netty:netty-common:4.1.87.Final +| | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | +--- io.netty:netty-transport:4.1.87.Final (*) +| | \--- io.netty:netty-codec:4.1.87.Final (*) +| \--- io.netty:netty-codec-http:4.1.87.Final (*) ++--- org.grails.plugins:views-json-templates -> 2.3.2 +| \--- org.grails.plugins:views-json:2.3.2 (*) ++--- com.graphql-java:graphql-java:20.6 +| +--- com.graphql-java:java-dataloader:3.2.0 +| | \--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| \--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 ++--- org.apache.commons:commons-compress:1.10 ++--- project :grails-plugin-gorm-graphql-plugin +| +--- project :gorm-graphql +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- com.graphql-java:graphql-java:20.6 (*) +| | +--- org.grails:grails-datastore-gorm:7.3.4 -> 7.3.3 (*) +| | +--- org.grails:grails-datastore-gorm:7.3.1 -> 7.3.3 (*) +| | +--- com.graphql-java:graphql-java-extended-scalars:20.2 +| | | \--- com.graphql-java:graphql-java:20.2 -> 20.6 (*) +| | +--- com.github.javaparser:javaparser-core:3.25.5 +| | +--- org.grails.plugins:views-json:2.3.2 (*) +| | \--- org.javassist:javassist:3.29.2-GA +| +--- com.graphql-java:graphql-java:20.6 (*) +| +--- org.grails:grails-datastore-gorm:7.3.4 -> 7.3.3 (*) +| +--- org.grails:grails-plugin-controllers -> 5.3.3 (*) +| +--- org.grails:grails-plugin-databinding -> 5.3.3 (*) +| +--- org.grails:grails-plugin-rest -> 5.3.3 (*) +| +--- org.grails:grails-plugin-url-mappings -> 5.3.3 (*) +| +--- org.grails.plugins:views-json:2.3.2 (*) +| +--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 (*) +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- io.micronaut:micronaut-http-client:3.2.0 (*) +| +--- org.grails.plugins:converters:3.3.1 -> 4.0.0 (*) +| \--- com.github.javaparser:javaparser-core:3.25.5 ++--- org.glassfish.web:el-impl:2.1.2-b03 +| \--- javax.el:el-api:2.1.2-b03 ++--- com.h2database:h2 -> 1.4.200 +\--- org.apache.tomcat:tomcat-jdbc -> 9.0.71 + \--- org.apache.tomcat:tomcat-juli:9.0.71 + +profile +\--- org.grails.profiles:rest-api -> 5.0.1 + \--- org.grails.profiles:base:5.0.2 -> 5.1.1 + +runtimeClasspath - Runtime classpath of source set 'main'. ++--- io.micronaut:micronaut-inject-groovy:3.2.0 +| +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| +--- io.micronaut:micronaut-inject:3.2.0 +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- jakarta.inject:jakarta.inject-api:2.0.1 +| | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 +| | +--- io.micronaut:micronaut-core:3.2.0 +| | | \--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | \--- org.yaml:snakeyaml:1.29 -> 1.30 +| +--- io.micronaut:micronaut-aop:3.2.0 +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | \--- io.micronaut:micronaut-core:3.2.0 (*) +| \--- org.codehaus.groovy:groovy:3.0.9 -> 3.0.11 ++--- org.springframework.boot:spring-boot-starter-logging -> 2.7.8 +| +--- ch.qos.logback:logback-classic:1.2.11 +| | +--- ch.qos.logback:logback-core:1.2.11 +| | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| +--- org.apache.logging.log4j:log4j-to-slf4j:2.17.2 +| | +--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 +| | \--- org.apache.logging.log4j:log4j-api:2.17.2 +| \--- org.slf4j:jul-to-slf4j:1.7.36 +| \--- org.slf4j:slf4j-api:1.7.36 ++--- org.springframework.boot:spring-boot-autoconfigure -> 2.7.8 +| \--- org.springframework.boot:spring-boot:2.7.8 +| +--- org.springframework:spring-core:5.3.25 +| | \--- org.springframework:spring-jcl:5.3.25 +| \--- org.springframework:spring-context:5.3.25 +| +--- org.springframework:spring-aop:5.3.25 +| | +--- org.springframework:spring-beans:5.3.25 +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | \--- org.springframework:spring-core:5.3.25 (*) +| +--- org.springframework:spring-beans:5.3.25 (*) +| +--- org.springframework:spring-core:5.3.25 (*) +| \--- org.springframework:spring-expression:5.3.25 +| \--- org.springframework:spring-core:5.3.25 (*) ++--- org.grails:grails-core:5.3.2 +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 +| | +--- org.checkerframework:checker-qual:3.19.0 +| | \--- com.google.errorprone:error_prone_annotations:2.10.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 +| | \--- org.slf4j:slf4j-api:1.7.36 +| +--- io.micronaut:micronaut-inject:3.8.4 -> 3.2.0 (*) +| +--- javax.inject:javax.inject:1 +| +--- io.micronaut.spring:micronaut-spring-context:4.5.0 +| | +--- io.micronaut.cache:micronaut-cache-core:3.5.0 +| | | +--- io.projectreactor:reactor-core:3.4.21 -> 3.4.26 +| | | | \--- org.reactivestreams:reactive-streams:1.0.4 +| | | +--- io.micronaut:micronaut-bom:3.5.4 -> 3.2.0 +| | | | +--- org.codehaus.groovy:groovy-bom:3.0.9 -> 3.0.11 +| | | | | +--- org.codehaus.groovy:groovy:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-ant:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-json:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-sql:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-xml:3.0.11 (c) +| | | | | \--- org.codehaus.groovy:groovy-groovydoc:3.0.11 (c) +| | | | +--- io.grpc:grpc-bom:1.39.0 +| | | | +--- com.fasterxml.jackson:jackson-bom:2.12.4 -> 2.13.4 +| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) +| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) +| | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) +| | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) +| | | | +--- org.junit:junit-bom:5.7.2 +| | | | +--- org.jetbrains.kotlin:kotlin-bom:1.6.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.5.1 +| | | | +--- io.ktor:ktor-bom:1.6.1 +| | | | +--- io.micrometer:micrometer-bom:1.8.0 +| | | | | \--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) +| | | | +--- io.micronaut.aws:micronaut-aws-bom:3.0.4 +| | | | +--- io.micronaut.cache:micronaut-cache-bom:3.0.0 +| | | | | +--- io.micronaut.cache:micronaut-cache-core:3.0.0 -> 3.5.0 (c) +| | | | | \--- com.github.ben-manes.caffeine:caffeine:2.9.1 -> 2.9.3 (c) +| | | | +--- io.micronaut.coherence:micronaut-coherence-bom:3.0.1 +| | | | +--- io.micronaut.data:micronaut-data-bom:3.2.0 +| | | | +--- io.micronaut.groovy:micronaut-groovy-bom:3.0.0 +| | | | | \--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) +| | | | +--- io.micronaut.micrometer:micronaut-micrometer-bom:4.1.0 +| | | | | +--- io.micrometer:micrometer-bom:1.8.0 (*) +| | | | | \--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) +| | | | +--- io.micronaut.oraclecloud:micronaut-oraclecloud-bom:2.0.3 +| | | | +--- io.micronaut.r2dbc:micronaut-r2dbc-bom:2.0.0 +| | | | | \--- io.r2dbc:r2dbc-bom:Arabba-SR9 +| | | | +--- io.micronaut.sql:micronaut-sql-bom:4.0.4 +| | | | | +--- org.hibernate:hibernate-core:5.5.3.Final -> 5.6.11.Final (c) +| | | | | \--- org.apache.tomcat:tomcat-jdbc:10.0.8 -> 9.0.71 (c) +| | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 +| | | | | +--- org.junit:junit-bom:5.7.2 +| | | | | +--- org.spockframework:spock-bom:2.0-groovy-3.0 +| | | | | \--- org.hamcrest:hamcrest:2.2 (c) +| | | | +--- io.micronaut.views:micronaut-views-bom:3.0.1 +| | | | +--- io.netty:netty-bom:4.1.70.Final +| | | | | +--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-codec:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-codec-socks:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-common:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-resolver:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-transport:4.1.70.Final -> 4.1.87.Final (c) +| | | | | \--- io.netty:netty-transport-native-unix-common:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- com.google.protobuf:protobuf-bom:3.17.2 +| | | | +--- org.testcontainers:testcontainers-bom:1.16.1 +| | | | +--- io.micronaut:micronaut-aop:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-buffer-netty:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-context:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-core:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-http:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-http-client:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-http-client-core:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-http-netty:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-inject:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-inject-groovy:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-runtime:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-websocket:3.2.0 (c) +| | | | +--- org.grails:grails-datastore-core:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-gorm:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-gorm-support:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-gorm-validation:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-web:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-gorm-hibernate5:7.1.0.M3 -> 7.2.2 (c) +| | | | +--- org.codehaus.groovy:groovy:3.0.9 -> 3.0.11 (c) +| | | | +--- org.codehaus.groovy:groovy-json:3.0.9 -> 3.0.11 (c) +| | | | +--- org.codehaus.groovy:groovy-sql:3.0.9 -> 3.0.11 (c) +| | | | +--- org.codehaus.groovy:groovy-templates:3.0.9 -> 3.0.11 (c) +| | | | +--- com.h2database:h2:1.4.200 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 (c) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 (c) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 (c) +| | | | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 (c) +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 (c) +| | | | +--- ch.qos.logback:logback-classic:1.2.3 -> 1.2.11 (c) +| | | | +--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) +| | | | +--- io.micronaut.rxjava2:micronaut-rxjava2:1.1.0 -> 1.2.0 (c) +| | | | +--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.1.0 -> 1.2.0 (c) +| | | | +--- io.micronaut.spring:micronaut-spring:4.0.0 -> 4.5.0 (c) +| | | | +--- io.micronaut.spring:micronaut-spring-context:4.0.0 -> 4.5.0 (c) +| | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 (c) +| | | | +--- org.mongodb:mongodb-driver-core:4.3.0 -> 4.5.0 (c) +| | | | +--- org.mongodb:mongodb-driver-sync:4.3.0 -> 4.5.0 (c) +| | | | +--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 (c) +| | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (c) +| | | | +--- io.reactivex.rxjava2:rxjava:2.2.10 -> 2.2.21 (c) +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 (c) +| | | | +--- org.yaml:snakeyaml:1.29 -> 1.30 (c) +| | | | +--- org.springframework:spring-core:5.3.9 -> 5.3.25 (c) +| | | | +--- org.springframework.boot:spring-boot-starter:2.5.3 -> 2.7.8 (c) +| | | | +--- org.springframework:spring-context:5.3.9 -> 5.3.25 (c) +| | | | +--- org.springframework:spring-jdbc:5.3.9 -> 5.3.25 (c) +| | | | +--- org.springframework:spring-orm:5.3.9 -> 5.3.25 (c) +| | | | +--- org.springframework:spring-tx:5.3.9 -> 5.3.25 (c) +| | | | +--- javax.validation:validation-api:2.0.1.Final (c) +| | | | \--- io.micronaut:micronaut-json-core:3.2.0 (c) +| | | +--- io.micronaut:micronaut-inject:3.5.4 -> 3.2.0 (*) +| | | +--- io.micronaut:micronaut-aop:3.5.4 -> 3.2.0 (*) +| | | +--- io.micronaut:micronaut-http:3.5.4 -> 3.2.0 +| | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | | \--- io.micronaut:micronaut-core-reactive:3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-core:3.2.0 (*) +| | | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| | | \--- io.micronaut:micronaut-runtime:3.5.4 -> 3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | +--- io.micronaut:micronaut-aop:3.2.0 (*) +| | | +--- io.micronaut:micronaut-context:3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | | +--- io.micronaut:micronaut-aop:3.2.0 (*) +| | | | \--- javax.validation:validation-api:2.0.1.Final +| | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (*) +| | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 +| | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | | +--- io.micronaut:micronaut-json-core:3.2.0 +| | | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | | | +--- io.micronaut:micronaut-context:3.2.0 (*) +| | | | | | \--- io.micronaut:micronaut-http:3.2.0 (*) +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 +| | | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | | \--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 +| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | +--- javax.validation:validation-api:2.0.1.Final +| | | \--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) +| | +--- org.springframework:spring-framework-bom:5.3.25 +| | | +--- org.springframework:spring-aop:5.3.25 (c) +| | | +--- org.springframework:spring-beans:5.3.25 (c) +| | | +--- org.springframework:spring-context:5.3.25 (c) +| | | +--- org.springframework:spring-core:5.3.25 (c) +| | | +--- org.springframework:spring-expression:5.3.25 (c) +| | | +--- org.springframework:spring-jcl:5.3.25 (c) +| | | +--- org.springframework:spring-jdbc:5.3.25 (c) +| | | +--- org.springframework:spring-orm:5.3.25 (c) +| | | +--- org.springframework:spring-test:5.3.25 (c) +| | | +--- org.springframework:spring-tx:5.3.25 (c) +| | | +--- org.springframework:spring-web:5.3.25 (c) +| | | +--- org.springframework:spring-webmvc:5.3.25 (c) +| | | \--- org.springframework:spring-context-support:5.3.25 (c) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | +--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) +| | \--- io.micronaut.spring:micronaut-spring:4.5.0 +| | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) +| | +--- org.springframework:spring-framework-bom:5.3.25 (*) +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-tx:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | \--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) +| +--- io.micronaut.cache:micronaut-cache-core:3.5.0 (*) +| +--- io.micronaut:micronaut-runtime:3.8.4 -> 3.2.0 (*) +| +--- javax.persistence:javax.persistence-api:2.2 +| +--- javax.annotation:javax.annotation-api:1.3.2 +| +--- org.springframework.boot:spring-boot:2.7.8 (*) +| +--- org.springframework:spring-core:5.3.25 (*) +| +--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.springframework:spring-beans:5.3.25 (*) +| +--- org.springframework:spring-context:5.3.25 (*) +| +--- org.grails:grails-bootstrap:5.3.2 -> 5.3.3 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.codehaus.groovy:groovy-xml:3.0.11 +| | | \--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.codehaus.groovy:groovy-templates:3.0.11 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) +| | +--- org.yaml:snakeyaml:1.33 -> 1.30 +| | \--- io.micronaut:micronaut-inject:3.8.5 -> 3.2.0 (*) +| +--- org.grails:grails-spring:5.3.2 -> 5.3.3 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.springframework:spring-tx:5.3.25 (*) +| | +--- org.springframework:spring-web:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | \--- org.grails:grails-bootstrap:5.3.3 (*) +| +--- org.grails:grails-datastore-core:7.3.3 +| | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| | +--- org.javassist:javassist:3.29.2-GA +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- javax.transaction:jta:1.1 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- javax.persistence:javax.persistence-api:2.2 +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-beans:5.3.25 (*) +| | +--- org.springframework:spring-tx:5.3.25 (*) +| | \--- org.springframework:spring-context:5.3.25 (*) +| +--- org.apache.ant:ant:1.10.13 +| | \--- org.apache.ant:ant-launcher:1.10.13 +| +--- jline:jline:2.14.6 +| \--- org.fusesource.jansi:jansi:1.18 ++--- org.springframework.boot:spring-boot-starter-actuator -> 2.7.8 +| +--- org.springframework.boot:spring-boot-starter:2.7.8 +| | +--- org.springframework.boot:spring-boot:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot-starter-logging:2.7.8 (*) +| | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 +| | +--- org.springframework:spring-core:5.3.25 (*) +| | \--- org.yaml:snakeyaml:1.30 +| +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.7.8 +| | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4.2 (*) +| | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (*) +| | +--- org.springframework.boot:spring-boot-actuator:2.7.8 +| | | \--- org.springframework.boot:spring-boot:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot:2.7.8 (*) +| | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) +| \--- io.micrometer:micrometer-core:1.9.7 +| +--- org.hdrhistogram:HdrHistogram:2.1.12 +| \--- org.latencyutils:LatencyUtils:2.0.3 ++--- org.springframework.boot:spring-boot-starter-tomcat -> 2.7.8 +| +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 +| +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 +| +--- org.apache.tomcat.embed:tomcat-embed-el:9.0.71 +| \--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.71 +| \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 ++--- org.grails:grails-plugin-url-mappings -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 +| | \--- org.springframework:spring-core:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-web:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.grails:grails-web-common:5.3.3 +| | | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | +--- org.grails:grails-databinding:5.3.3 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) +| | | +--- org.grails:grails-encoder:5.3.3 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | | +--- org.codehaus.groovy:groovy-json:3.0.11 +| | | | | \--- org.codehaus.groovy:groovy:3.0.11 +| | | | \--- org.springframework:spring-web:5.3.25 (*) +| | | +--- org.grails:grails-gsp:5.2.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | +--- org.grails:grails-taglib:5.2.2 +| | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | \--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | | +--- org.springframework:spring-webmvc:5.3.25 +| | | | +--- org.springframework:spring-aop:5.3.25 (*) +| | | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | | +--- org.springframework:spring-context:5.3.25 (*) +| | | | +--- org.springframework:spring-core:5.3.25 (*) +| | | | +--- org.springframework:spring-expression:5.3.25 (*) +| | | | \--- org.springframework:spring-web:5.3.25 (*) +| | | \--- org.springframework:spring-context-support:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | +--- org.springframework:spring-context:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.grails:grails-web-databinding:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-databinding:5.3.3 (*) +| | | \--- org.grails:grails-web-common:5.3.3 (*) +| | +--- org.grails:grails-web-fileupload:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | \--- commons-fileupload:commons-fileupload:1.5 +| | | \--- commons-io:commons-io:2.11.0 +| | +--- org.grails:grails-web-url-mappings:5.3.3 +| | | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | | | \--- commons-validator:commons-validator:1.7 +| | | | \--- commons-collections:commons-collections:3.2.2 +| | | +--- org.fusesource.jansi:jansi:1.18 +| | | \--- jline:jline:2.14.6 +| | +--- org.grails:grails-web-mvc:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | +--- org.grails:grails-web-url-mappings:5.3.3 (*) +| | | \--- org.grails:grails-web-sitemesh:5.2.2 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | \--- opensymphony:sitemesh:2.4.2 +| | +--- org.grails:grails-web-gsp:5.2.2 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.grails:grails-gsp:5.2.2 (*) +| | | +--- org.grails:grails-web-taglib:5.2.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | \--- org.grails:grails-taglib:5.2.2 (*) +| | | \--- org.grails:grails-web-sitemesh:5.2.2 (*) +| | \--- org.grails:grails-web-sitemesh:5.2.2 (*) +| +--- org.grails:grails-plugin-controllers:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | +--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-mimetypes:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | \--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-validation:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | \--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-domain-class:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | +--- org.grails:grails-spring:5.3.3 (*) +| | | +--- org.grails:grails-plugin-validation:5.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm:7.3.3 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- javax.el:javax.el-api:3.0.0 -> 3.0.1-b06 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) +| | | | \--- org.glassfish:javax.el:3.0.1-b12 +| | | +--- org.grails:grails-datastore-gorm-support:7.3.3 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-gorm:7.3.3 (*) +| | | | +--- org.grails:grails-core:5.2.4 -> 5.3.2 (*) +| | | | \--- org.grails:grails-bootstrap:5.2.4 -> 5.3.3 (*) +| | | \--- org.grails:grails-datastore-core:7.3.3 (*) +| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.9 -> 2.7.8 (*) +| | \--- org.grails:grails-plugin-i18n:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.grails:grails-web:5.3.3 (*) +| | \--- org.codehaus.groovy:groovy-ant:3.0.11 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.apache.ant:ant:1.10.12 -> 1.10.13 (*) +| | +--- org.apache.ant:ant-junit:1.10.12 +| | | \--- org.apache.ant:ant:1.10.12 -> 1.10.13 (*) +| | +--- org.apache.ant:ant-launcher:1.10.12 -> 1.10.13 +| | +--- org.apache.ant:ant-antlr:1.10.12 +| | \--- org.codehaus.groovy:groovy-groovydoc:3.0.11 +| \--- junit:junit:4.13.2 +| \--- org.hamcrest:hamcrest-core:1.3 -> 2.2 +| \--- org.hamcrest:hamcrest:2.2 ++--- org.grails:grails-plugin-rest -> 5.3.3 +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- javax.xml.bind:jaxb-api:2.3.1 +| | \--- javax.activation:javax.activation-api:1.2.0 +| +--- org.grails:grails-web:5.3.3 (*) +| +--- org.grails:grails-plugin-controllers:5.3.3 (*) +| +--- org.grails:grails-plugin-datasource:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.springframework:spring-jdbc:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | +--- org.springframework:spring-core:5.3.25 (*) +| | | \--- org.springframework:spring-tx:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy-sql:3.0.11 +| | | \--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.springframework:spring-context:5.3.25 (*) +| | +--- org.grails:grails-datastore-gorm:7.3.3 (*) +| | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails.plugins:converters:4.0.0 +| \--- org.apache.commons:commons-lang3:3.0 -> 3.12.0 ++--- org.grails:grails-plugin-codecs -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-web:5.3.3 (*) +| +--- org.grails:grails-encoder:5.3.3 (*) +| \--- org.grails:grails-codecs:5.3.3 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| \--- commons-codec:commons-codec:1.15 ++--- org.grails:grails-plugin-interceptors -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-plugin-controllers:5.3.3 (*) +| \--- org.grails:grails-plugin-url-mappings:5.3.3 (*) ++--- org.grails:grails-plugin-services -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails:grails-plugin-datasource:5.3.3 (*) ++--- org.grails:grails-plugin-datasource -> 5.3.3 (*) ++--- org.grails:grails-plugin-databinding -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails:grails-web:5.3.3 (*) ++--- org.grails:grails-web-boot -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| \--- org.grails:grails-web-common:5.3.3 (*) ++--- org.grails:grails-logging -> 5.3.3 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) ++--- org.grails.plugins:cache -> 5.0.1 +| +--- com.bertramlabs.plugins:asset-pipeline-grails:3.0.7 +| | \--- com.bertramlabs.plugins:asset-pipeline-core:3.0.7 +| | \--- commons-logging:commons-logging:1.1.1 +| +--- gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.4 +| | +--- org.ysb33r.gradle:grolifant:0.11 +| | | \--- org.tukaani:xz:1.6 +| | \--- org.apache.maven:maven-artifact:3.6.3 +| | +--- org.codehaus.plexus:plexus-utils:3.2.1 +| | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| +--- org.codehaus.gpars:gpars:1.2.1 +| | +--- org.multiverse:multiverse-core:0.7.0 +| | \--- org.codehaus.jsr166-mirror:jsr166y:1.7.0 +| +--- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2 +| \--- org.javassist:javassist:3.27.0-GA -> 3.29.2-GA ++--- org.grails.plugins:async -> 4.0.0 +| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| +--- javax.annotation:javax.annotation-api:1.3.2 +| +--- org.grails:grails-plugin-controllers:4.0.0 -> 5.3.3 (*) +| +--- org.grails.plugins:events:4.0.0 +| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.grails:grails-core:4.0.0 -> 5.3.2 (*) +| | +--- org.grails:grails-events:4.0.0 +| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | +--- org.springframework:spring-context:5.1.8.RELEASE -> 5.3.25 (*) +| | | \--- org.springframework:spring-tx:5.1.8.RELEASE -> 5.3.25 (*) +| | +--- org.grails:grails-events-transform:4.0.0 +| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | +--- org.grails:grails-events:4.0.0 (*) +| | | \--- org.grails:grails-datastore-gorm:7.0.2.RELEASE -> 7.3.3 (*) +| | \--- org.grails:grails-events-compat:4.0.0 +| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.grails:grails-events:4.0.0 (*) +| | \--- org.grails:grails-events-transform:4.0.0 (*) +| \--- org.grails:grails-async:4.0.0 +| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| \--- javax.annotation:javax.annotation-api:1.3.2 ++--- org.grails.plugins:hibernate5 -> 7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.springframework.boot:spring-boot:2.7.0 -> 2.7.8 (*) +| +--- org.springframework:spring-orm:5.3.20 -> 5.3.25 +| | +--- org.springframework:spring-beans:5.3.25 (*) +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-jdbc:5.3.25 (*) +| | \--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.hibernate:hibernate-core:5.6.9.Final -> 5.6.11.Final +| | +--- org.jboss.logging:jboss-logging:3.4.3.Final +| | +--- javax.persistence:javax.persistence-api:2.2 +| | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 +| | +--- antlr:antlr:2.7.7 +| | +--- org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final +| | +--- org.jboss:jandex:2.4.2.Final +| | +--- com.fasterxml:classmate:1.5.1 +| | +--- javax.activation:javax.activation-api:1.2.0 +| | +--- org.hibernate.common:hibernate-commons-annotations:5.1.2.Final +| | | \--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.4.3.Final +| | +--- javax.xml.bind:jaxb-api:2.3.1 (*) +| | \--- org.glassfish.jaxb:jaxb-runtime:2.3.1 -> 2.3.7 +| | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 +| | +--- org.glassfish.jaxb:txw2:2.3.7 +| | +--- com.sun.istack:istack-commons-runtime:3.0.12 +| | \--- com.sun.activation:jakarta.activation:1.2.2 +| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | +--- org.springframework:spring-web:5.3.25 (*) +| | \--- org.springframework:spring-context:5.3.25 (*) +| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) +| \--- org.grails:grails-datastore-gorm-hibernate5:7.3.0 -> 7.2.2 +| +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.grails:grails-datastore-gorm:7.2.1 -> 7.3.3 (*) +| +--- org.springframework:spring-orm:5.3.16 -> 5.3.25 (*) +| +--- org.hibernate:hibernate-core:5.6.5.Final -> 5.6.11.Final (*) +| +--- org.hibernate:hibernate-validator:6.2.3.Final +| | \--- org.hibernate.validator:hibernate-validator:6.2.3.Final -> 6.2.5.Final +| | +--- jakarta.validation:jakarta.validation-api:2.0.2 +| | +--- org.jboss.logging:jboss-logging:3.4.1.Final -> 3.4.3.Final +| | \--- com.fasterxml:classmate:1.5.1 +| +--- javax.validation:validation-api:2.0.1.Final +| +--- javax.el:javax.el-api:3.0.1-b06 +| +--- javax.xml.bind:jaxb-api:2.3.1 (*) +| \--- com.sun.xml.bind:jaxb-impl:2.3.1 ++--- org.hibernate:hibernate-core:5.6.11.Final (*) ++--- org.grails.plugins:mongodb -> 7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm-mongodb-ext:7.3.0 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | \--- org.mongodb:mongodb-driver-sync:4.5.0 +| | +--- org.mongodb:bson:4.5.0 -> 4.6.1 +| | \--- org.mongodb:mongodb-driver-core:4.5.0 +| | \--- org.mongodb:bson:4.5.0 -> 4.6.1 +| \--- org.grails:grails-datastore-gorm-mongodb:7.3.0 +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.mongodb:mongodb-driver-sync:4.5.0 (*) +| +--- org.grails:grails-datastore-gorm-validation:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) +| \--- org.grails:grails-datastore-gorm-bson:7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) +| \--- org.mongodb:bson:4.5.0 -> 4.6.1 ++--- org.grails.plugins:views-json -> 2.3.2 +| +--- org.grails:grails-core:5.1.8 -> 5.3.2 (*) +| \--- org.grails:views-core:2.3.2 +| +--- org.codehaus.groovy:groovy-bom:3.0.11 (*) +| +--- org.grails:grails-encoder:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-web-common:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-web-url-mappings:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-plugin-rest:5.1.8 -> 5.3.3 (*) +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| \--- javax.servlet:javax.servlet-api:4.0.1 ++--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 +| +--- io.micronaut:micronaut-bom:3.3.0 -> 3.2.0 (*) +| +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) +| +--- io.micronaut.rxjava2:micronaut-rxjava2:1.2.0 +| | +--- io.micronaut:micronaut-bom:3.3.0 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-runtime:3.3.0 -> 3.2.0 (*) +| | \--- io.reactivex.rxjava2:rxjava:2.2.21 +| | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| \--- io.micronaut:micronaut-http-client:3.3.0 -> 3.2.0 +| +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| +--- io.micronaut:micronaut-runtime:3.2.0 (*) +| +--- io.micronaut:micronaut-http-client-core:3.2.0 +| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | \--- io.micronaut:micronaut-runtime:3.2.0 (*) +| +--- io.micronaut:micronaut-websocket:3.2.0 +| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | +--- io.micronaut:micronaut-http-client-core:3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | \--- io.micronaut:micronaut-aop:3.2.0 (*) +| +--- io.micronaut:micronaut-http-netty:3.2.0 +| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | +--- io.micronaut:micronaut-websocket:3.2.0 (*) +| | +--- io.micronaut:micronaut-buffer-netty:3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-core:3.2.0 (*) +| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | \--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final +| | | \--- io.netty:netty-common:4.1.87.Final +| | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-resolver:4.1.87.Final +| | | | \--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-codec:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-transport:4.1.87.Final (*) +| | | \--- io.netty:netty-handler:4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-resolver:4.1.87.Final (*) +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-transport:4.1.87.Final (*) +| | | \--- io.netty:netty-codec:4.1.87.Final (*) +| | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | +--- io.netty:netty-codec:4.1.87.Final (*) +| | | +--- io.netty:netty-handler:4.1.87.Final (*) +| | | \--- io.netty:netty-codec-http:4.1.87.Final (*) +| | \--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (*) +| \--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final +| +--- io.netty:netty-common:4.1.87.Final +| +--- io.netty:netty-buffer:4.1.87.Final (*) +| +--- io.netty:netty-transport:4.1.87.Final (*) +| +--- io.netty:netty-codec:4.1.87.Final (*) +| +--- io.netty:netty-codec-socks:4.1.87.Final +| | +--- io.netty:netty-common:4.1.87.Final +| | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | +--- io.netty:netty-transport:4.1.87.Final (*) +| | \--- io.netty:netty-codec:4.1.87.Final (*) +| \--- io.netty:netty-codec-http:4.1.87.Final (*) ++--- org.grails.plugins:views-json-templates -> 2.3.2 +| \--- org.grails.plugins:views-json:2.3.2 (*) ++--- com.graphql-java:graphql-java:20.6 +| +--- com.graphql-java:java-dataloader:3.2.0 +| | \--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| \--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 ++--- org.apache.commons:commons-compress:1.10 ++--- project :grails-plugin-gorm-graphql-plugin +| +--- project :gorm-graphql +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- com.graphql-java:graphql-java:20.6 (*) +| | +--- org.grails:grails-datastore-gorm:7.3.4 -> 7.3.3 (*) +| | +--- org.grails:grails-datastore-gorm:7.3.1 -> 7.3.3 (*) +| | +--- com.graphql-java:graphql-java-extended-scalars:20.2 +| | | \--- com.graphql-java:graphql-java:20.2 -> 20.6 (*) +| | +--- com.github.javaparser:javaparser-core:3.25.5 +| | +--- org.grails.plugins:views-json:2.3.2 (*) +| | \--- org.javassist:javassist:3.29.2-GA +| +--- com.graphql-java:graphql-java:20.6 (*) +| +--- org.grails:grails-datastore-gorm:7.3.4 -> 7.3.3 (*) +| +--- org.grails:grails-plugin-controllers -> 5.3.3 (*) +| +--- org.grails:grails-plugin-databinding -> 5.3.3 (*) +| +--- org.grails:grails-plugin-rest -> 5.3.3 (*) +| +--- org.grails:grails-plugin-url-mappings -> 5.3.3 (*) +| +--- org.grails.plugins:views-json:2.3.2 (*) +| +--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 (*) +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- io.micronaut:micronaut-http-client:3.2.0 (*) +| +--- org.grails.plugins:converters:3.3.1 -> 4.0.0 (*) +| \--- com.github.javaparser:javaparser-core:3.25.5 ++--- org.glassfish.web:el-impl:2.1.2-b03 +| \--- javax.el:el-api:2.1.2-b03 ++--- com.h2database:h2 -> 1.4.200 +\--- org.apache.tomcat:tomcat-jdbc -> 9.0.71 + \--- org.apache.tomcat:tomcat-juli:9.0.71 + +runtimeElements - Elements of runtime for main. (n) +No dependencies + +runtimeOnly - Runtime only dependencies for source set 'main'. (n) +No dependencies + +testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. +No dependencies + +testCompileClasspath - Compile classpath for source set 'test'. ++--- org.springframework.boot:spring-boot-starter-logging -> 2.7.8 +| +--- ch.qos.logback:logback-classic:1.2.11 +| | +--- ch.qos.logback:logback-core:1.2.11 +| | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| +--- org.apache.logging.log4j:log4j-to-slf4j:2.17.2 +| | +--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 +| | \--- org.apache.logging.log4j:log4j-api:2.17.2 +| \--- org.slf4j:jul-to-slf4j:1.7.36 +| \--- org.slf4j:slf4j-api:1.7.36 ++--- org.springframework.boot:spring-boot-autoconfigure -> 2.7.8 +| \--- org.springframework.boot:spring-boot:2.7.8 +| +--- org.springframework:spring-core:5.3.25 +| | \--- org.springframework:spring-jcl:5.3.25 +| \--- org.springframework:spring-context:5.3.25 +| +--- org.springframework:spring-aop:5.3.25 +| | +--- org.springframework:spring-beans:5.3.25 +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | \--- org.springframework:spring-core:5.3.25 (*) +| +--- org.springframework:spring-beans:5.3.25 (*) +| +--- org.springframework:spring-core:5.3.25 (*) +| \--- org.springframework:spring-expression:5.3.25 +| \--- org.springframework:spring-core:5.3.25 (*) ++--- org.grails:grails-core:5.3.2 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 +| | \--- org.slf4j:slf4j-api:1.7.36 +| +--- io.micronaut:micronaut-inject:3.8.4 -> 3.2.0 +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- jakarta.inject:jakarta.inject-api:2.0.1 +| | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 +| | +--- io.micronaut:micronaut-core:3.2.0 +| | | \--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | \--- org.yaml:snakeyaml:1.29 -> 1.30 +| +--- javax.inject:javax.inject:1 +| +--- io.micronaut.spring:micronaut-spring-context:4.5.0 +| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) +| | +--- org.springframework:spring-framework-bom:5.3.25 +| | | +--- org.springframework:spring-aop:5.3.25 (c) +| | | +--- org.springframework:spring-beans:5.3.25 (c) +| | | +--- org.springframework:spring-context:5.3.25 (c) +| | | +--- org.springframework:spring-core:5.3.25 (c) +| | | +--- org.springframework:spring-expression:5.3.25 (c) +| | | +--- org.springframework:spring-jcl:5.3.25 (c) +| | | +--- org.springframework:spring-jdbc:5.3.25 (c) +| | | +--- org.springframework:spring-orm:5.3.25 (c) +| | | +--- org.springframework:spring-test:5.3.25 (c) +| | | +--- org.springframework:spring-tx:5.3.25 (c) +| | | +--- org.springframework:spring-web:5.3.25 (c) +| | | +--- org.springframework:spring-webmvc:5.3.25 (c) +| | | \--- org.springframework:spring-context-support:5.3.25 (c) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | +--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | \--- io.micronaut:micronaut-core:3.2.0 (*) +| | \--- io.micronaut.spring:micronaut-spring:4.5.0 +| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) +| | +--- org.springframework:spring-framework-bom:5.3.25 (*) +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-tx:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | \--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) +| +--- io.micronaut.cache:micronaut-cache-core:3.5.0 +| | +--- io.micronaut:micronaut-inject:3.5.4 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-aop:3.5.4 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-http:3.5.4 -> 3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | \--- io.micronaut:micronaut-core-reactive:3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-core:3.2.0 (*) +| | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| | \--- io.micronaut:micronaut-runtime:3.5.4 -> 3.2.0 +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | +--- io.micronaut:micronaut-aop:3.2.0 (*) +| | +--- io.micronaut:micronaut-context:3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | +--- io.micronaut:micronaut-aop:3.2.0 (*) +| | | \--- javax.validation:validation-api:2.0.1.Final +| | +--- io.micronaut:micronaut-core-reactive:3.2.0 (*) +| | +--- io.micronaut:micronaut-jackson-databind:3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-jackson-core:3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-json-core:3.2.0 +| | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | | +--- io.micronaut:micronaut-context:3.2.0 (*) +| | | | | \--- io.micronaut:micronaut-http:3.2.0 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 +| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) +| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) +| | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) +| | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) +| | | | \--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | \--- javax.validation:validation-api:2.0.1.Final +| +--- io.micronaut:micronaut-runtime:3.8.4 -> 3.2.0 (*) +| +--- javax.persistence:javax.persistence-api:2.2 +| +--- javax.annotation:javax.annotation-api:1.3.2 +| +--- org.springframework.boot:spring-boot:2.7.8 (*) +| +--- org.springframework:spring-core:5.3.25 (*) +| +--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.springframework:spring-beans:5.3.25 (*) +| +--- org.springframework:spring-context:5.3.25 (*) +| +--- org.grails:grails-bootstrap:5.3.2 -> 5.3.3 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.codehaus.groovy:groovy-xml:3.0.11 +| | | \--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.codehaus.groovy:groovy-templates:3.0.11 +| | | \--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.yaml:snakeyaml:1.33 -> 1.30 +| | \--- io.micronaut:micronaut-inject:3.8.5 -> 3.2.0 (*) +| +--- org.grails:grails-spring:5.3.2 -> 5.3.3 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.springframework:spring-tx:5.3.25 (*) +| | +--- org.springframework:spring-web:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | \--- org.grails:grails-bootstrap:5.3.3 (*) +| +--- org.grails:grails-datastore-core:7.3.3 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- javax.transaction:jta:1.1 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- javax.persistence:javax.persistence-api:2.2 +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-beans:5.3.25 (*) +| | +--- org.springframework:spring-tx:5.3.25 (*) +| | \--- org.springframework:spring-context:5.3.25 (*) +| +--- org.apache.ant:ant:1.10.13 +| | \--- org.apache.ant:ant-launcher:1.10.13 +| +--- jline:jline:2.14.6 +| \--- org.fusesource.jansi:jansi:1.18 ++--- org.springframework.boot:spring-boot-starter-actuator -> 2.7.8 +| +--- org.springframework.boot:spring-boot-starter:2.7.8 +| | +--- org.springframework.boot:spring-boot:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot-starter-logging:2.7.8 (*) +| | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 +| | +--- org.springframework:spring-core:5.3.25 (*) +| | \--- org.yaml:snakeyaml:1.30 +| +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.7.8 +| | +--- org.springframework.boot:spring-boot-actuator:2.7.8 +| | | \--- org.springframework.boot:spring-boot:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot:2.7.8 (*) +| | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) +| \--- io.micrometer:micrometer-core:1.9.7 +| \--- org.hdrhistogram:HdrHistogram:2.1.12 ++--- org.springframework.boot:spring-boot-starter-tomcat -> 2.7.8 +| +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 +| +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 +| +--- org.apache.tomcat.embed:tomcat-embed-el:9.0.71 +| \--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.71 +| \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 ++--- org.grails:grails-plugin-url-mappings -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 +| | \--- org.springframework:spring-core:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-web:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.grails:grails-web-common:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | +--- org.grails:grails-databinding:5.3.3 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) +| | | +--- org.grails:grails-encoder:5.3.3 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | | +--- org.codehaus.groovy:groovy-json:3.0.11 +| | | | | \--- org.codehaus.groovy:groovy:3.0.11 +| | | | \--- org.springframework:spring-web:5.3.25 (*) +| | | +--- org.grails:grails-gsp:5.2.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | +--- org.grails:grails-taglib:5.2.2 +| | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | \--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | | +--- org.springframework:spring-webmvc:5.3.25 +| | | | +--- org.springframework:spring-aop:5.3.25 (*) +| | | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | | +--- org.springframework:spring-context:5.3.25 (*) +| | | | +--- org.springframework:spring-core:5.3.25 (*) +| | | | +--- org.springframework:spring-expression:5.3.25 (*) +| | | | \--- org.springframework:spring-web:5.3.25 (*) +| | | \--- org.springframework:spring-context-support:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | +--- org.springframework:spring-context:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.grails:grails-web-databinding:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-databinding:5.3.3 (*) +| | | \--- org.grails:grails-web-common:5.3.3 (*) +| | +--- org.grails:grails-web-fileupload:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | \--- commons-fileupload:commons-fileupload:1.5 +| | | \--- commons-io:commons-io:2.11.0 +| | +--- org.grails:grails-web-url-mappings:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | | | \--- commons-validator:commons-validator:1.7 +| | | | \--- commons-collections:commons-collections:3.2.2 +| | | +--- org.fusesource.jansi:jansi:1.18 +| | | \--- jline:jline:2.14.6 +| | +--- org.grails:grails-web-mvc:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | +--- org.grails:grails-web-url-mappings:5.3.3 (*) +| | | \--- org.grails:grails-web-sitemesh:5.2.2 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | \--- opensymphony:sitemesh:2.4.2 +| | +--- org.grails:grails-web-gsp:5.2.2 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.grails:grails-gsp:5.2.2 (*) +| | | +--- org.grails:grails-web-taglib:5.2.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | \--- org.grails:grails-taglib:5.2.2 (*) +| | | \--- org.grails:grails-web-sitemesh:5.2.2 (*) +| | \--- org.grails:grails-web-sitemesh:5.2.2 (*) +| +--- org.grails:grails-plugin-controllers:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | +--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-mimetypes:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | \--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-validation:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | \--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-domain-class:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | +--- org.grails:grails-spring:5.3.3 (*) +| | | +--- org.grails:grails-plugin-validation:5.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm:7.3.3 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | | | \--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm-support:7.3.3 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-gorm:7.3.3 (*) +| | | | +--- org.grails:grails-core:5.2.4 -> 5.3.2 (*) +| | | | \--- org.grails:grails-bootstrap:5.2.4 -> 5.3.3 (*) +| | | \--- org.grails:grails-datastore-core:7.3.3 (*) +| | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.9 -> 2.7.8 (*) +| \--- junit:junit:4.13.2 +| \--- org.hamcrest:hamcrest-core:1.3 -> 2.2 +| \--- org.hamcrest:hamcrest:2.2 ++--- org.grails:grails-plugin-rest -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- javax.xml.bind:jaxb-api:2.3.1 +| | \--- javax.activation:javax.activation-api:1.2.0 +| +--- org.grails:grails-web:5.3.3 (*) +| +--- org.grails:grails-plugin-controllers:5.3.3 (*) +| +--- org.grails:grails-plugin-datasource:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.springframework:spring-jdbc:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | +--- org.springframework:spring-core:5.3.25 (*) +| | | \--- org.springframework:spring-tx:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy-sql:3.0.11 +| | | \--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.springframework:spring-context:5.3.25 (*) +| | +--- org.grails:grails-datastore-gorm:7.3.3 (*) +| | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails.plugins:converters:4.0.0 +| \--- org.apache.commons:commons-lang3:3.0 -> 3.12.0 ++--- org.grails:grails-plugin-codecs -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-web:5.3.3 (*) +| \--- org.grails:grails-encoder:5.3.3 (*) ++--- org.grails:grails-plugin-interceptors -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-plugin-controllers:5.3.3 (*) +| \--- org.grails:grails-plugin-url-mappings:5.3.3 (*) ++--- org.grails:grails-plugin-services -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails:grails-plugin-datasource:5.3.3 (*) ++--- org.grails:grails-plugin-datasource -> 5.3.3 (*) ++--- org.grails:grails-plugin-databinding -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails:grails-web:5.3.3 (*) ++--- org.grails:grails-web-boot -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| \--- org.grails:grails-web-common:5.3.3 (*) ++--- org.grails:grails-logging -> 5.3.3 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) ++--- org.grails.plugins:cache -> 5.0.1 +| +--- com.bertramlabs.plugins:asset-pipeline-grails:3.0.7 +| +--- gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.4 +| | +--- org.ysb33r.gradle:grolifant:0.11 +| | \--- org.apache.maven:maven-artifact:3.6.3 +| | +--- org.codehaus.plexus:plexus-utils:3.2.1 +| | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| +--- org.codehaus.gpars:gpars:1.2.1 +| | +--- org.multiverse:multiverse-core:0.7.0 +| | \--- org.codehaus.jsr166-mirror:jsr166y:1.7.0 +| +--- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2 +| \--- org.javassist:javassist:3.27.0-GA ++--- org.grails.plugins:async -> 4.0.0 +| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| +--- javax.annotation:javax.annotation-api:1.3.2 +| +--- org.grails:grails-plugin-controllers:4.0.0 -> 5.3.3 (*) +| +--- org.grails.plugins:events:4.0.0 +| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.grails:grails-core:4.0.0 -> 5.3.2 (*) +| | +--- org.grails:grails-events:4.0.0 +| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | +--- org.springframework:spring-context:5.1.8.RELEASE -> 5.3.25 (*) +| | | \--- org.springframework:spring-tx:5.1.8.RELEASE -> 5.3.25 (*) +| | +--- org.grails:grails-events-transform:4.0.0 +| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | +--- org.grails:grails-events:4.0.0 (*) +| | | \--- org.grails:grails-datastore-gorm:7.0.2.RELEASE -> 7.3.3 (*) +| | \--- org.grails:grails-events-compat:4.0.0 +| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.grails:grails-events:4.0.0 (*) +| | \--- org.grails:grails-events-transform:4.0.0 (*) +| \--- org.grails:grails-async:4.0.0 +| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| \--- javax.annotation:javax.annotation-api:1.3.2 ++--- org.grails.plugins:hibernate5 -> 7.3.0 +| +--- org.springframework.boot:spring-boot:2.7.0 -> 2.7.8 (*) +| +--- org.springframework:spring-orm:5.3.20 -> 5.3.25 +| | +--- org.springframework:spring-beans:5.3.25 (*) +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-jdbc:5.3.25 (*) +| | \--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.hibernate:hibernate-core:5.6.9.Final -> 5.6.11.Final +| | +--- org.jboss.logging:jboss-logging:3.4.3.Final +| | +--- javax.persistence:javax.persistence-api:2.2 +| | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 +| | +--- antlr:antlr:2.7.7 +| | +--- org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final +| | +--- org.jboss:jandex:2.4.2.Final +| | +--- com.fasterxml:classmate:1.5.1 +| | +--- javax.activation:javax.activation-api:1.2.0 +| | +--- org.hibernate.common:hibernate-commons-annotations:5.1.2.Final +| | | \--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.4.3.Final +| | +--- javax.xml.bind:jaxb-api:2.3.1 (*) +| | \--- org.glassfish.jaxb:jaxb-runtime:2.3.1 -> 2.3.7 +| | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 +| | +--- org.glassfish.jaxb:txw2:2.3.7 +| | \--- com.sun.istack:istack-commons-runtime:3.0.12 +| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | +--- org.springframework:spring-web:5.3.25 (*) +| | \--- org.springframework:spring-context:5.3.25 (*) +| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) +| \--- org.grails:grails-datastore-gorm-hibernate5:7.3.0 -> 7.2.2 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 +| +--- org.grails:grails-datastore-gorm:7.2.1 -> 7.3.3 (*) +| +--- org.springframework:spring-orm:5.3.16 -> 5.3.25 (*) +| +--- org.hibernate:hibernate-core:5.6.5.Final -> 5.6.11.Final (*) +| +--- org.hibernate:hibernate-validator:6.2.3.Final +| | \--- org.hibernate.validator:hibernate-validator:6.2.3.Final -> 6.2.5.Final +| | +--- jakarta.validation:jakarta.validation-api:2.0.2 +| | +--- org.jboss.logging:jboss-logging:3.4.1.Final -> 3.4.3.Final +| | \--- com.fasterxml:classmate:1.5.1 +| \--- javax.validation:validation-api:2.0.1.Final ++--- org.hibernate:hibernate-core:5.6.11.Final (*) ++--- org.grails.plugins:mongodb -> 7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm-mongodb-ext:7.3.0 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | \--- org.mongodb:mongodb-driver-sync:4.5.0 +| | +--- org.mongodb:bson:4.5.0 -> 4.6.1 +| | \--- org.mongodb:mongodb-driver-core:4.5.0 +| | \--- org.mongodb:bson:4.5.0 -> 4.6.1 +| \--- org.grails:grails-datastore-gorm-mongodb:7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.mongodb:mongodb-driver-sync:4.5.0 (*) +| +--- org.grails:grails-datastore-gorm-validation:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) +| \--- org.grails:grails-datastore-gorm-bson:7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) +| \--- org.mongodb:bson:4.5.0 -> 4.6.1 ++--- org.grails.plugins:views-json -> 2.3.2 +| +--- org.grails:grails-core:5.1.8 -> 5.3.2 (*) +| \--- org.grails:views-core:2.3.2 +| +--- org.codehaus.groovy:groovy-bom:3.0.11 +| | +--- org.codehaus.groovy:groovy:3.0.11 (c) +| | +--- org.codehaus.groovy:groovy-json:3.0.11 (c) +| | +--- org.codehaus.groovy:groovy-sql:3.0.11 (c) +| | +--- org.codehaus.groovy:groovy-templates:3.0.11 (c) +| | \--- org.codehaus.groovy:groovy-xml:3.0.11 (c) +| +--- org.grails:grails-encoder:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-web-common:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-web-url-mappings:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-plugin-rest:5.1.8 -> 5.3.3 (*) +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 +| | +--- org.checkerframework:checker-qual:3.19.0 +| | \--- com.google.errorprone:error_prone_annotations:2.10.0 +| \--- javax.servlet:javax.servlet-api:4.0.1 ++--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 +| +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) +| +--- io.micronaut.rxjava2:micronaut-rxjava2:1.2.0 +| | +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-runtime:3.3.0 -> 3.2.0 (*) +| | \--- io.reactivex.rxjava2:rxjava:2.2.21 +| | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| \--- io.micronaut:micronaut-http-client:3.3.0 -> 3.2.0 +| +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| +--- io.micronaut:micronaut-runtime:3.2.0 (*) +| +--- io.micronaut:micronaut-http-client-core:3.2.0 +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | \--- io.micronaut:micronaut-runtime:3.2.0 (*) +| +--- io.micronaut:micronaut-websocket:3.2.0 +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | +--- io.micronaut:micronaut-http-client-core:3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | \--- io.micronaut:micronaut-aop:3.2.0 (*) +| +--- io.micronaut:micronaut-http-netty:3.2.0 +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | +--- io.micronaut:micronaut-websocket:3.2.0 (*) +| | +--- io.micronaut:micronaut-buffer-netty:3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-core:3.2.0 (*) +| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | \--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final +| | | \--- io.netty:netty-common:4.1.87.Final +| | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-resolver:4.1.87.Final +| | | | \--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-codec:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-transport:4.1.87.Final (*) +| | | \--- io.netty:netty-handler:4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-resolver:4.1.87.Final (*) +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-transport:4.1.87.Final (*) +| | | \--- io.netty:netty-codec:4.1.87.Final (*) +| | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | +--- io.netty:netty-codec:4.1.87.Final (*) +| | | +--- io.netty:netty-handler:4.1.87.Final (*) +| | | \--- io.netty:netty-codec-http:4.1.87.Final (*) +| | \--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (*) +| \--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final +| +--- io.netty:netty-common:4.1.87.Final +| +--- io.netty:netty-buffer:4.1.87.Final (*) +| +--- io.netty:netty-transport:4.1.87.Final (*) +| +--- io.netty:netty-codec:4.1.87.Final (*) +| +--- io.netty:netty-codec-socks:4.1.87.Final +| | +--- io.netty:netty-common:4.1.87.Final +| | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | +--- io.netty:netty-transport:4.1.87.Final (*) +| | \--- io.netty:netty-codec:4.1.87.Final (*) +| \--- io.netty:netty-codec-http:4.1.87.Final (*) ++--- org.grails.plugins:views-json-templates -> 2.3.2 +| \--- org.grails.plugins:views-json:2.3.2 (*) ++--- com.graphql-java:graphql-java:20.6 +| +--- com.graphql-java:java-dataloader:3.2.0 +| | \--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 ++--- org.apache.commons:commons-compress:1.10 ++--- project :grails-plugin-gorm-graphql-plugin +| \--- project :gorm-graphql +| +--- org.codehaus.groovy:groovy:3.0.11 +| \--- org.slf4j:slf4j-api:1.7.36 +\--- org.grails:grails-test-mixins:3.3.0 + +testCompileOnly - Compile only dependencies for source set 'test'. (n) +No dependencies + +testImplementation - Implementation only dependencies for source set 'test'. (n) +\--- org.grails:grails-test-mixins:3.3.0 (n) + +testRuntimeClasspath - Runtime classpath of source set 'test'. ++--- org.springframework.boot:spring-boot-starter-logging -> 2.7.8 +| +--- ch.qos.logback:logback-classic:1.2.11 +| | +--- ch.qos.logback:logback-core:1.2.11 +| | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| +--- org.apache.logging.log4j:log4j-to-slf4j:2.17.2 +| | +--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 +| | \--- org.apache.logging.log4j:log4j-api:2.17.2 +| \--- org.slf4j:jul-to-slf4j:1.7.36 +| \--- org.slf4j:slf4j-api:1.7.36 ++--- org.springframework.boot:spring-boot-autoconfigure -> 2.7.8 +| \--- org.springframework.boot:spring-boot:2.7.8 +| +--- org.springframework:spring-core:5.3.25 +| | \--- org.springframework:spring-jcl:5.3.25 +| \--- org.springframework:spring-context:5.3.25 +| +--- org.springframework:spring-aop:5.3.25 +| | +--- org.springframework:spring-beans:5.3.25 +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | \--- org.springframework:spring-core:5.3.25 (*) +| +--- org.springframework:spring-beans:5.3.25 (*) +| +--- org.springframework:spring-core:5.3.25 (*) +| \--- org.springframework:spring-expression:5.3.25 +| \--- org.springframework:spring-core:5.3.25 (*) ++--- org.grails:grails-core:5.3.2 +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 +| | +--- org.checkerframework:checker-qual:3.19.0 +| | \--- com.google.errorprone:error_prone_annotations:2.10.0 -> 2.11.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 +| | \--- org.slf4j:slf4j-api:1.7.36 +| +--- io.micronaut:micronaut-inject:3.8.4 -> 3.2.0 +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- jakarta.inject:jakarta.inject-api:2.0.1 +| | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 +| | +--- io.micronaut:micronaut-core:3.2.0 +| | | \--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | \--- org.yaml:snakeyaml:1.29 -> 1.30 +| +--- javax.inject:javax.inject:1 +| +--- io.micronaut.spring:micronaut-spring-context:4.5.0 +| | +--- io.micronaut.cache:micronaut-cache-core:3.5.0 +| | | +--- io.projectreactor:reactor-core:3.4.21 -> 3.4.26 +| | | | \--- org.reactivestreams:reactive-streams:1.0.4 +| | | +--- io.micronaut:micronaut-bom:3.5.4 -> 3.2.0 +| | | | +--- org.codehaus.groovy:groovy-bom:3.0.9 -> 3.0.11 +| | | | | +--- org.codehaus.groovy:groovy:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-ant:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-json:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-sql:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-test:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-test-junit5:3.0.11 (c) +| | | | | +--- org.codehaus.groovy:groovy-xml:3.0.11 (c) +| | | | | \--- org.codehaus.groovy:groovy-groovydoc:3.0.11 (c) +| | | | +--- io.grpc:grpc-bom:1.39.0 +| | | | +--- com.fasterxml.jackson:jackson-bom:2.12.4 -> 2.13.4 +| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) +| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) +| | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) +| | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) +| | | | +--- org.junit:junit-bom:5.7.2 -> 5.8.2 +| | | | | +--- org.junit.jupiter:junit-jupiter:5.8.2 (c) +| | | | | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 (c) +| | | | | +--- org.junit.jupiter:junit-jupiter-engine:5.8.2 (c) +| | | | | +--- org.junit.jupiter:junit-jupiter-params:5.8.2 (c) +| | | | | +--- org.junit.platform:junit-platform-commons:1.8.2 (c) +| | | | | +--- org.junit.platform:junit-platform-engine:1.8.2 (c) +| | | | | +--- org.junit.platform:junit-platform-launcher:1.8.2 (c) +| | | | | +--- org.junit.platform:junit-platform-runner:1.8.2 (c) +| | | | | +--- org.junit.platform:junit-platform-suite-api:1.8.2 (c) +| | | | | \--- org.junit.platform:junit-platform-suite-commons:1.8.2 (c) +| | | | +--- org.jetbrains.kotlin:kotlin-bom:1.6.0 +| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.5.1 +| | | | +--- io.ktor:ktor-bom:1.6.1 +| | | | +--- io.micrometer:micrometer-bom:1.8.0 +| | | | | \--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) +| | | | +--- io.micronaut.aws:micronaut-aws-bom:3.0.4 +| | | | +--- io.micronaut.cache:micronaut-cache-bom:3.0.0 +| | | | | +--- io.micronaut.cache:micronaut-cache-core:3.0.0 -> 3.5.0 (c) +| | | | | \--- com.github.ben-manes.caffeine:caffeine:2.9.1 -> 2.9.3 (c) +| | | | +--- io.micronaut.coherence:micronaut-coherence-bom:3.0.1 +| | | | +--- io.micronaut.data:micronaut-data-bom:3.2.0 +| | | | +--- io.micronaut.groovy:micronaut-groovy-bom:3.0.0 +| | | | | \--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) +| | | | +--- io.micronaut.micrometer:micronaut-micrometer-bom:4.1.0 +| | | | | +--- io.micrometer:micrometer-bom:1.8.0 (*) +| | | | | \--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) +| | | | +--- io.micronaut.oraclecloud:micronaut-oraclecloud-bom:2.0.3 +| | | | +--- io.micronaut.r2dbc:micronaut-r2dbc-bom:2.0.0 +| | | | | \--- io.r2dbc:r2dbc-bom:Arabba-SR9 +| | | | +--- io.micronaut.sql:micronaut-sql-bom:4.0.4 +| | | | | +--- org.hibernate:hibernate-core:5.5.3.Final -> 5.6.11.Final (c) +| | | | | \--- org.apache.tomcat:tomcat-jdbc:10.0.8 -> 9.0.71 (c) +| | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 +| | | | | +--- org.junit:junit-bom:5.7.2 -> 5.8.2 (*) +| | | | | +--- org.spockframework:spock-bom:2.0-groovy-3.0 +| | | | | | +--- org.spockframework:spock-core:2.0-groovy-3.0 -> 2.1-groovy-3.0 (c) +| | | | | | \--- org.spockframework:spock-spring:2.0-groovy-3.0 -> 2.1-groovy-3.0 (c) +| | | | | +--- org.mockito:mockito-core:3.6.28 -> 4.5.1 (c) +| | | | | +--- org.mockito:mockito-junit-jupiter:3.6.28 -> 4.5.1 (c) +| | | | | +--- org.assertj:assertj-core:3.18.1 -> 3.22.0 (c) +| | | | | \--- org.hamcrest:hamcrest:2.2 (c) +| | | | +--- io.micronaut.views:micronaut-views-bom:3.0.1 +| | | | +--- io.netty:netty-bom:4.1.70.Final +| | | | | +--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-codec:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-codec-socks:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-common:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-resolver:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-transport:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-transport-native-unix-common:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-transport-classes-epoll:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-transport-native-epoll:4.1.70.Final -> 4.1.87.Final (c) +| | | | | +--- io.netty:netty-transport-classes-kqueue:4.1.70.Final -> 4.1.87.Final (c) +| | | | | \--- io.netty:netty-transport-native-kqueue:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- com.google.protobuf:protobuf-bom:3.17.2 +| | | | +--- org.testcontainers:testcontainers-bom:1.16.1 +| | | | +--- io.micronaut:micronaut-aop:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-buffer-netty:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-context:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-core:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-http:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-http-client:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-http-client-core:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-http-netty:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-inject:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-runtime:3.2.0 (c) +| | | | +--- io.micronaut:micronaut-websocket:3.2.0 (c) +| | | | +--- org.grails:grails-datastore-core:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-gorm:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-gorm-support:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-gorm-test:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-gorm-validation:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-web:7.1.0.M6 -> 7.3.3 (c) +| | | | +--- org.grails:grails-datastore-gorm-hibernate5:7.1.0.M3 -> 7.2.2 (c) +| | | | +--- org.codehaus.groovy:groovy:3.0.9 -> 3.0.11 (c) +| | | | +--- org.codehaus.groovy:groovy-json:3.0.9 -> 3.0.11 (c) +| | | | +--- org.codehaus.groovy:groovy-sql:3.0.9 -> 3.0.11 (c) +| | | | +--- org.codehaus.groovy:groovy-templates:3.0.9 -> 3.0.11 (c) +| | | | +--- com.h2database:h2:1.4.200 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 (c) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 (c) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 (c) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 (c) +| | | | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 (c) +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 (c) +| | | | +--- com.google.code.findbugs:jsr305:3.0.2 (c) +| | | | +--- ch.qos.logback:logback-classic:1.2.3 -> 1.2.11 (c) +| | | | +--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) +| | | | +--- io.micronaut.rxjava2:micronaut-rxjava2:1.1.0 -> 1.2.0 (c) +| | | | +--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.1.0 -> 1.2.0 (c) +| | | | +--- io.micronaut.spring:micronaut-spring:4.0.0 -> 4.5.0 (c) +| | | | +--- io.micronaut.spring:micronaut-spring-context:4.0.0 -> 4.5.0 (c) +| | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 (c) +| | | | +--- org.mongodb:mongodb-driver-core:4.3.0 -> 4.5.0 (c) +| | | | +--- org.mongodb:mongodb-driver-sync:4.3.0 -> 4.5.0 (c) +| | | | +--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-transport-native-epoll:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- io.netty:netty-transport-native-kqueue:4.1.70.Final -> 4.1.87.Final (c) +| | | | +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 (c) +| | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (c) +| | | | +--- io.reactivex.rxjava2:rxjava:2.2.10 -> 2.2.21 (c) +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 (c) +| | | | +--- org.yaml:snakeyaml:1.29 -> 1.30 (c) +| | | | +--- org.spockframework:spock-core:2.0-groovy-3.0 -> 2.1-groovy-3.0 (c) +| | | | +--- org.springframework:spring-core:5.3.9 -> 5.3.25 (c) +| | | | +--- org.springframework.boot:spring-boot-starter:2.5.3 -> 2.7.8 (c) +| | | | +--- org.springframework:spring-context:5.3.9 -> 5.3.25 (c) +| | | | +--- org.springframework:spring-jdbc:5.3.9 -> 5.3.25 (c) +| | | | +--- org.springframework:spring-orm:5.3.9 -> 5.3.25 (c) +| | | | +--- org.springframework:spring-tx:5.3.9 -> 5.3.25 (c) +| | | | +--- javax.validation:validation-api:2.0.1.Final (c) +| | | | \--- io.micronaut:micronaut-json-core:3.2.0 (c) +| | | +--- io.micronaut:micronaut-inject:3.5.4 -> 3.2.0 (*) +| | | +--- io.micronaut:micronaut-aop:3.5.4 -> 3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | | \--- io.micronaut:micronaut-core:3.2.0 (*) +| | | +--- io.micronaut:micronaut-http:3.5.4 -> 3.2.0 +| | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | | \--- io.micronaut:micronaut-core-reactive:3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-core:3.2.0 (*) +| | | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| | | \--- io.micronaut:micronaut-runtime:3.5.4 -> 3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | +--- io.micronaut:micronaut-aop:3.2.0 (*) +| | | +--- io.micronaut:micronaut-context:3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | | +--- io.micronaut:micronaut-aop:3.2.0 (*) +| | | | \--- javax.validation:validation-api:2.0.1.Final +| | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (*) +| | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 +| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 +| | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | | +--- io.micronaut:micronaut-json-core:3.2.0 +| | | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | | | | +--- io.micronaut:micronaut-context:3.2.0 (*) +| | | | | | \--- io.micronaut:micronaut-http:3.2.0 (*) +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 +| | | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | | \--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 +| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 +| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 +| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) +| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) +| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) +| | | +--- javax.validation:validation-api:2.0.1.Final +| | | \--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) +| | +--- org.springframework:spring-framework-bom:5.3.25 +| | | +--- org.springframework:spring-aop:5.3.25 (c) +| | | +--- org.springframework:spring-beans:5.3.25 (c) +| | | +--- org.springframework:spring-context:5.3.25 (c) +| | | +--- org.springframework:spring-core:5.3.25 (c) +| | | +--- org.springframework:spring-expression:5.3.25 (c) +| | | +--- org.springframework:spring-jcl:5.3.25 (c) +| | | +--- org.springframework:spring-jdbc:5.3.25 (c) +| | | +--- org.springframework:spring-orm:5.3.25 (c) +| | | +--- org.springframework:spring-test:5.3.25 (c) +| | | +--- org.springframework:spring-tx:5.3.25 (c) +| | | +--- org.springframework:spring-web:5.3.25 (c) +| | | +--- org.springframework:spring-webmvc:5.3.25 (c) +| | | \--- org.springframework:spring-context-support:5.3.25 (c) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | +--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) +| | \--- io.micronaut.spring:micronaut-spring:4.5.0 +| | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) +| | +--- org.springframework:spring-framework-bom:5.3.25 (*) +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-tx:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | \--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) +| +--- io.micronaut.cache:micronaut-cache-core:3.5.0 (*) +| +--- io.micronaut:micronaut-runtime:3.8.4 -> 3.2.0 (*) +| +--- javax.persistence:javax.persistence-api:2.2 +| +--- javax.annotation:javax.annotation-api:1.3.2 +| +--- org.springframework.boot:spring-boot:2.7.8 (*) +| +--- org.springframework:spring-core:5.3.25 (*) +| +--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.springframework:spring-beans:5.3.25 (*) +| +--- org.springframework:spring-context:5.3.25 (*) +| +--- org.grails:grails-bootstrap:5.3.2 -> 5.3.3 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.codehaus.groovy:groovy-xml:3.0.11 +| | | \--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.codehaus.groovy:groovy-templates:3.0.11 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) +| | +--- org.yaml:snakeyaml:1.33 -> 1.30 +| | \--- io.micronaut:micronaut-inject:3.8.5 -> 3.2.0 (*) +| +--- org.grails:grails-spring:5.3.2 -> 5.3.3 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.springframework:spring-tx:5.3.25 (*) +| | +--- org.springframework:spring-web:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-context:5.3.25 (*) +| | \--- org.grails:grails-bootstrap:5.3.3 (*) +| +--- org.grails:grails-datastore-core:7.3.3 +| | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| | +--- org.javassist:javassist:3.29.2-GA +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- javax.transaction:jta:1.1 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- javax.persistence:javax.persistence-api:2.2 +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-beans:5.3.25 (*) +| | +--- org.springframework:spring-tx:5.3.25 (*) +| | \--- org.springframework:spring-context:5.3.25 (*) +| +--- org.apache.ant:ant:1.10.13 +| | \--- org.apache.ant:ant-launcher:1.10.13 +| +--- jline:jline:2.14.6 +| \--- org.fusesource.jansi:jansi:1.18 ++--- org.springframework.boot:spring-boot-starter-actuator -> 2.7.8 +| +--- org.springframework.boot:spring-boot-starter:2.7.8 +| | +--- org.springframework.boot:spring-boot:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot-starter-logging:2.7.8 (*) +| | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 +| | +--- org.springframework:spring-core:5.3.25 (*) +| | \--- org.yaml:snakeyaml:1.30 +| +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.7.8 +| | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4.2 (*) +| | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (*) +| | +--- org.springframework.boot:spring-boot-actuator:2.7.8 +| | | \--- org.springframework.boot:spring-boot:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot:2.7.8 (*) +| | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) +| \--- io.micrometer:micrometer-core:1.9.7 +| +--- org.hdrhistogram:HdrHistogram:2.1.12 +| \--- org.latencyutils:LatencyUtils:2.0.3 ++--- org.springframework.boot:spring-boot-starter-tomcat -> 2.7.8 +| +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 +| +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 +| +--- org.apache.tomcat.embed:tomcat-embed-el:9.0.71 +| \--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.71 +| \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 ++--- org.grails:grails-plugin-url-mappings -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 +| | \--- org.springframework:spring-core:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-web:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.grails:grails-web-common:5.3.3 +| | | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | +--- org.grails:grails-databinding:5.3.3 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) +| | | +--- org.grails:grails-encoder:5.3.3 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | | +--- org.codehaus.groovy:groovy-json:3.0.11 +| | | | | \--- org.codehaus.groovy:groovy:3.0.11 +| | | | \--- org.springframework:spring-web:5.3.25 (*) +| | | +--- org.grails:grails-gsp:5.2.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | +--- org.grails:grails-core:5.2.5 -> 5.3.2 (*) +| | | | +--- org.grails:grails-taglib:5.2.2 +| | | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | | +--- org.grails:grails-core:5.2.5 -> 5.3.2 (*) +| | | | | \--- org.grails:grails-encoder:5.2.5 -> 5.3.3 (*) +| | | | \--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | | +--- org.springframework:spring-webmvc:5.3.25 +| | | | +--- org.springframework:spring-aop:5.3.25 (*) +| | | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | | +--- org.springframework:spring-context:5.3.25 (*) +| | | | +--- org.springframework:spring-core:5.3.25 (*) +| | | | +--- org.springframework:spring-expression:5.3.25 (*) +| | | | \--- org.springframework:spring-web:5.3.25 (*) +| | | \--- org.springframework:spring-context-support:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | +--- org.springframework:spring-context:5.3.25 (*) +| | | \--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.grails:grails-web-databinding:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-databinding:5.3.3 (*) +| | | \--- org.grails:grails-web-common:5.3.3 (*) +| | +--- org.grails:grails-web-fileupload:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | \--- commons-fileupload:commons-fileupload:1.5 +| | | \--- commons-io:commons-io:2.11.0 +| | +--- org.grails:grails-web-url-mappings:5.3.3 +| | | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | | | \--- commons-validator:commons-validator:1.7 +| | | | \--- commons-collections:commons-collections:3.2.2 +| | | +--- org.fusesource.jansi:jansi:1.18 +| | | \--- jline:jline:2.14.6 +| | +--- org.grails:grails-web-mvc:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-web-common:5.3.3 (*) +| | | +--- org.grails:grails-web-url-mappings:5.3.3 (*) +| | | \--- org.grails:grails-web-sitemesh:5.2.2 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | \--- opensymphony:sitemesh:2.4.2 +| | +--- org.grails:grails-web-gsp:5.2.2 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.grails:grails-gsp:5.2.2 (*) +| | | +--- org.grails:grails-web-common:5.2.5 -> 5.3.3 (*) +| | | +--- org.grails:grails-web-taglib:5.2.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 +| | | | +--- org.grails:grails-web-common:5.2.5 -> 5.3.3 (*) +| | | | \--- org.grails:grails-taglib:5.2.2 (*) +| | | \--- org.grails:grails-web-sitemesh:5.2.2 (*) +| | \--- org.grails:grails-web-sitemesh:5.2.2 (*) +| +--- org.grails:grails-plugin-controllers:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | +--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-mimetypes:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | \--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-validation:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | \--- org.grails:grails-web:5.3.3 (*) +| | +--- org.grails:grails-plugin-domain-class:5.3.3 +| | | +--- javax.servlet:javax.servlet-api:4.0.1 +| | | +--- org.springframework:spring-test:5.3.25 (*) +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.36 +| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| | | +--- org.grails:grails-spring:5.3.3 (*) +| | | +--- org.grails:grails-plugin-validation:5.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) +| | | +--- org.grails:grails-datastore-gorm:7.3.3 +| | | | +--- org.slf4j:slf4j-api:1.7.36 +| | | | +--- javax.el:javax.el-api:3.0.0 -> 3.0.1-b06 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) +| | | | \--- org.glassfish:javax.el:3.0.1-b12 +| | | +--- org.grails:grails-datastore-gorm-support:7.3.3 +| | | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | | +--- org.grails:grails-datastore-gorm:7.3.3 (*) +| | | | +--- org.grails:grails-core:5.2.4 -> 5.3.2 (*) +| | | | \--- org.grails:grails-bootstrap:5.2.4 -> 5.3.3 (*) +| | | \--- org.grails:grails-datastore-core:7.3.3 (*) +| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.9 -> 2.7.8 (*) +| | \--- org.grails:grails-plugin-i18n:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.grails:grails-web:5.3.3 (*) +| | \--- org.codehaus.groovy:groovy-ant:3.0.11 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.apache.ant:ant:1.10.12 -> 1.10.13 (*) +| | +--- org.apache.ant:ant-junit:1.10.12 -> 1.10.13 +| | | +--- org.apache.ant:ant:1.10.13 (*) +| | | \--- junit:junit:4.13.1 -> 4.13.2 +| | | \--- org.hamcrest:hamcrest-core:1.3 -> 2.2 +| | | \--- org.hamcrest:hamcrest:2.2 +| | +--- org.apache.ant:ant-launcher:1.10.12 -> 1.10.13 +| | +--- org.apache.ant:ant-antlr:1.10.12 +| | \--- org.codehaus.groovy:groovy-groovydoc:3.0.11 +| \--- junit:junit:4.13.2 (*) ++--- org.grails:grails-plugin-rest -> 5.3.3 +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- javax.xml.bind:jaxb-api:2.3.1 +| | \--- javax.activation:javax.activation-api:1.2.0 +| +--- org.grails:grails-web:5.3.3 (*) +| +--- org.grails:grails-plugin-controllers:5.3.3 (*) +| +--- org.grails:grails-plugin-datasource:5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.springframework:spring-jdbc:5.3.25 +| | | +--- org.springframework:spring-beans:5.3.25 (*) +| | | +--- org.springframework:spring-core:5.3.25 (*) +| | | \--- org.springframework:spring-tx:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy-sql:3.0.11 +| | | \--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.springframework:spring-context:5.3.25 (*) +| | +--- org.grails:grails-datastore-gorm:7.3.3 (*) +| | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails.plugins:converters:4.0.0 +| \--- org.apache.commons:commons-lang3:3.0 -> 3.12.0 ++--- org.grails:grails-plugin-codecs -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-web:5.3.3 (*) +| +--- org.grails:grails-encoder:5.3.3 (*) +| \--- org.grails:grails-codecs:5.3.3 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| \--- commons-codec:commons-codec:1.15 ++--- org.grails:grails-plugin-interceptors -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-plugin-controllers:5.3.3 (*) +| \--- org.grails:grails-plugin-url-mappings:5.3.3 (*) ++--- org.grails:grails-plugin-services -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails:grails-plugin-datasource:5.3.3 (*) ++--- org.grails:grails-plugin-datasource -> 5.3.3 (*) ++--- org.grails:grails-plugin-databinding -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) +| \--- org.grails:grails-web:5.3.3 (*) ++--- org.grails:grails-web-boot -> 5.3.3 +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- org.springframework:spring-test:5.3.25 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| \--- org.grails:grails-web-common:5.3.3 (*) ++--- org.grails:grails-logging -> 5.3.3 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) ++--- org.grails.plugins:cache -> 5.0.1 +| +--- com.bertramlabs.plugins:asset-pipeline-grails:3.0.7 +| | \--- com.bertramlabs.plugins:asset-pipeline-core:3.0.7 +| | \--- commons-logging:commons-logging:1.1.1 -> 1.2 +| +--- gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.4 +| | +--- org.ysb33r.gradle:grolifant:0.11 +| | | \--- org.tukaani:xz:1.6 +| | \--- org.apache.maven:maven-artifact:3.6.3 +| | +--- org.codehaus.plexus:plexus-utils:3.2.1 +| | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 +| +--- org.codehaus.gpars:gpars:1.2.1 +| | +--- org.multiverse:multiverse-core:0.7.0 +| | \--- org.codehaus.jsr166-mirror:jsr166y:1.7.0 +| +--- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2 +| \--- org.javassist:javassist:3.27.0-GA -> 3.29.2-GA ++--- org.grails.plugins:async -> 4.0.0 +| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| +--- javax.annotation:javax.annotation-api:1.3.2 +| +--- org.grails:grails-plugin-controllers:4.0.0 -> 5.3.3 (*) +| +--- org.grails.plugins:events:4.0.0 +| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.grails:grails-core:4.0.0 -> 5.3.2 (*) +| | +--- org.grails:grails-events:4.0.0 +| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | +--- org.springframework:spring-context:5.1.8.RELEASE -> 5.3.25 (*) +| | | \--- org.springframework:spring-tx:5.1.8.RELEASE -> 5.3.25 (*) +| | +--- org.grails:grails-events-transform:4.0.0 +| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | | +--- javax.annotation:javax.annotation-api:1.3.2 +| | | +--- org.grails:grails-events:4.0.0 (*) +| | | \--- org.grails:grails-datastore-gorm:7.0.2.RELEASE -> 7.3.3 (*) +| | \--- org.grails:grails-events-compat:4.0.0 +| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.grails:grails-events:4.0.0 (*) +| | \--- org.grails:grails-events-transform:4.0.0 (*) +| \--- org.grails:grails-async:4.0.0 +| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| \--- javax.annotation:javax.annotation-api:1.3.2 ++--- org.grails.plugins:hibernate5 -> 7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.springframework.boot:spring-boot:2.7.0 -> 2.7.8 (*) +| +--- org.springframework:spring-orm:5.3.20 -> 5.3.25 +| | +--- org.springframework:spring-beans:5.3.25 (*) +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-jdbc:5.3.25 (*) +| | \--- org.springframework:spring-tx:5.3.25 (*) +| +--- org.hibernate:hibernate-core:5.6.9.Final -> 5.6.11.Final +| | +--- org.jboss.logging:jboss-logging:3.4.3.Final +| | +--- javax.persistence:javax.persistence-api:2.2 +| | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 +| | +--- antlr:antlr:2.7.7 +| | +--- org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final +| | +--- org.jboss:jandex:2.4.2.Final +| | +--- com.fasterxml:classmate:1.5.1 +| | +--- javax.activation:javax.activation-api:1.2.0 +| | +--- org.hibernate.common:hibernate-commons-annotations:5.1.2.Final +| | | \--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.4.3.Final +| | +--- javax.xml.bind:jaxb-api:2.3.1 (*) +| | \--- org.glassfish.jaxb:jaxb-runtime:2.3.1 -> 2.3.7 +| | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 +| | | \--- jakarta.activation:jakarta.activation-api:1.2.2 +| | +--- org.glassfish.jaxb:txw2:2.3.7 +| | +--- com.sun.istack:istack-commons-runtime:3.0.12 +| | \--- com.sun.activation:jakarta.activation:1.2.2 +| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.grails:grails-datastore-core:7.3.3 (*) +| | +--- org.springframework:spring-web:5.3.25 (*) +| | \--- org.springframework:spring-context:5.3.25 (*) +| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) +| \--- org.grails:grails-datastore-gorm-hibernate5:7.3.0 -> 7.2.2 +| +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.36 +| +--- org.grails:grails-datastore-gorm:7.2.1 -> 7.3.3 (*) +| +--- org.springframework:spring-orm:5.3.16 -> 5.3.25 (*) +| +--- org.hibernate:hibernate-core:5.6.5.Final -> 5.6.11.Final (*) +| +--- org.hibernate:hibernate-validator:6.2.3.Final +| | \--- org.hibernate.validator:hibernate-validator:6.2.3.Final -> 6.2.5.Final +| | +--- jakarta.validation:jakarta.validation-api:2.0.2 +| | +--- org.jboss.logging:jboss-logging:3.4.1.Final -> 3.4.3.Final +| | \--- com.fasterxml:classmate:1.5.1 +| +--- javax.validation:validation-api:2.0.1.Final +| +--- javax.el:javax.el-api:3.0.1-b06 +| +--- javax.xml.bind:jaxb-api:2.3.1 (*) +| \--- com.sun.xml.bind:jaxb-impl:2.3.1 ++--- org.hibernate:hibernate-core:5.6.11.Final (*) ++--- org.grails.plugins:mongodb -> 7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm-mongodb-ext:7.3.0 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| | \--- org.mongodb:mongodb-driver-sync:4.5.0 +| | +--- org.mongodb:bson:4.5.0 -> 4.6.1 +| | \--- org.mongodb:mongodb-driver-core:4.5.0 +| | \--- org.mongodb:bson:4.5.0 -> 4.6.1 +| \--- org.grails:grails-datastore-gorm-mongodb:7.3.0 +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.mongodb:mongodb-driver-sync:4.5.0 (*) +| +--- org.grails:grails-datastore-gorm-validation:7.3.2 -> 7.3.3 (*) +| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) +| \--- org.grails:grails-datastore-gorm-bson:7.3.0 +| +--- org.codehaus.groovy:groovy:3.0.11 +| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) +| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) +| \--- org.mongodb:bson:4.5.0 -> 4.6.1 ++--- org.grails.plugins:views-json -> 2.3.2 +| +--- org.grails:grails-core:5.1.8 -> 5.3.2 (*) +| \--- org.grails:views-core:2.3.2 +| +--- org.codehaus.groovy:groovy-bom:3.0.11 (*) +| +--- org.grails:grails-encoder:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-web-common:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-web-url-mappings:5.1.8 -> 5.3.3 (*) +| +--- org.grails:grails-plugin-rest:5.1.8 -> 5.3.3 (*) +| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| \--- javax.servlet:javax.servlet-api:4.0.1 ++--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 +| +--- io.micronaut:micronaut-bom:3.3.0 -> 3.2.0 (*) +| +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) +| +--- io.micronaut.rxjava2:micronaut-rxjava2:1.2.0 +| | +--- io.micronaut:micronaut-bom:3.3.0 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) +| | +--- io.micronaut:micronaut-runtime:3.3.0 -> 3.2.0 (*) +| | \--- io.reactivex.rxjava2:rxjava:2.2.21 +| | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| \--- io.micronaut:micronaut-http-client:3.3.0 -> 3.2.0 +| +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| +--- io.micronaut:micronaut-runtime:3.2.0 (*) +| +--- io.micronaut:micronaut-http-client-core:3.2.0 +| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | \--- io.micronaut:micronaut-runtime:3.2.0 (*) +| +--- io.micronaut:micronaut-websocket:3.2.0 +| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | +--- io.micronaut:micronaut-http-client-core:3.2.0 (*) +| | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | \--- io.micronaut:micronaut-aop:3.2.0 (*) +| +--- io.micronaut:micronaut-http-netty:3.2.0 +| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) +| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | +--- io.micronaut:micronaut-http:3.2.0 (*) +| | +--- io.micronaut:micronaut-websocket:3.2.0 (*) +| | +--- io.micronaut:micronaut-buffer-netty:3.2.0 +| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 +| | | +--- io.micronaut:micronaut-core:3.2.0 (*) +| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) +| | | \--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final +| | | \--- io.netty:netty-common:4.1.87.Final +| | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-resolver:4.1.87.Final +| | | | \--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-codec:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-transport:4.1.87.Final (*) +| | | \--- io.netty:netty-handler:4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-resolver:4.1.87.Final (*) +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final +| | | | +--- io.netty:netty-common:4.1.87.Final +| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | | \--- io.netty:netty-transport:4.1.87.Final (*) +| | | \--- io.netty:netty-codec:4.1.87.Final (*) +| | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | +--- io.netty:netty-codec:4.1.87.Final (*) +| | | +--- io.netty:netty-handler:4.1.87.Final (*) +| | | \--- io.netty:netty-codec-http:4.1.87.Final (*) +| | \--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (*) +| \--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final +| +--- io.netty:netty-common:4.1.87.Final +| +--- io.netty:netty-buffer:4.1.87.Final (*) +| +--- io.netty:netty-transport:4.1.87.Final (*) +| +--- io.netty:netty-codec:4.1.87.Final (*) +| +--- io.netty:netty-codec-socks:4.1.87.Final +| | +--- io.netty:netty-common:4.1.87.Final +| | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | +--- io.netty:netty-transport:4.1.87.Final (*) +| | \--- io.netty:netty-codec:4.1.87.Final (*) +| \--- io.netty:netty-codec-http:4.1.87.Final (*) ++--- org.grails.plugins:views-json-templates -> 2.3.2 +| \--- org.grails.plugins:views-json:2.3.2 (*) ++--- com.graphql-java:graphql-java:20.6 +| +--- com.graphql-java:java-dataloader:3.2.0 +| | \--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| \--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 ++--- org.apache.commons:commons-compress:1.10 ++--- project :grails-plugin-gorm-graphql-plugin +| +--- project :gorm-graphql +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- com.graphql-java:graphql-java:20.6 (*) +| | +--- org.grails:grails-datastore-gorm:7.3.4 -> 7.3.3 (*) +| | +--- org.grails:grails-datastore-gorm:7.3.1 -> 7.3.3 (*) +| | +--- com.graphql-java:graphql-java-extended-scalars:20.2 +| | | \--- com.graphql-java:graphql-java:20.2 -> 20.6 (*) +| | +--- com.github.javaparser:javaparser-core:3.25.5 +| | +--- org.grails.plugins:views-json:2.3.2 (*) +| | \--- org.javassist:javassist:3.29.2-GA +| +--- com.graphql-java:graphql-java:20.6 (*) +| +--- org.grails:grails-datastore-gorm:7.3.4 -> 7.3.3 (*) +| +--- org.grails:grails-plugin-controllers -> 5.3.3 (*) +| +--- org.grails:grails-plugin-databinding -> 5.3.3 (*) +| +--- org.grails:grails-plugin-rest -> 5.3.3 (*) +| +--- org.grails:grails-plugin-url-mappings -> 5.3.3 (*) +| +--- org.grails.plugins:views-json:2.3.2 (*) +| +--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 (*) +| +--- javax.servlet:javax.servlet-api:4.0.1 +| +--- io.micronaut:micronaut-http-client:3.2.0 (*) +| +--- org.grails.plugins:converters:3.3.1 -> 4.0.0 (*) +| \--- com.github.javaparser:javaparser-core:3.25.5 ++--- org.glassfish.web:el-impl:2.1.2-b03 +| \--- javax.el:el-api:2.1.2-b03 ++--- com.h2database:h2 -> 1.4.200 ++--- org.apache.tomcat:tomcat-jdbc -> 9.0.71 +| \--- org.apache.tomcat:tomcat-juli:9.0.71 ++--- org.grails:grails-test-mixins:3.3.0 +| +--- org.codehaus.groovy:groovy:2.4.11 -> 3.0.11 +| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| +--- org.grails:grails-web-jsp:3.3.0 +| | +--- org.codehaus.groovy:groovy:2.4.11 -> 3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 +| | +--- org.grails:grails-web-common:3.2.10 -> 5.3.3 (*) +| | \--- org.grails:grails-web-gsp:3.3.0 -> 5.2.2 (*) +| +--- org.grails.plugins:async:3.3.0 -> 4.0.0 (*) +| +--- org.grails:grails-test:3.3.0 -> 5.3.3 +| | +--- javax.servlet:javax.servlet-api:4.0.1 +| | +--- org.springframework:spring-test:5.3.25 (*) +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.slf4j:slf4j-api:1.7.36 +| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) +| | +--- org.springframework:spring-tx:5.3.25 (*) +| | +--- org.springframework.boot:spring-boot-test:2.7.9 -> 2.7.8 +| | | \--- org.springframework.boot:spring-boot:2.7.8 (*) +| | +--- org.codehaus.groovy:groovy-test-junit5:3.0.11 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 +| | | | +--- org.junit:junit-bom:5.8.2 (*) +| | | | +--- org.opentest4j:opentest4j:1.2.0 +| | | | \--- org.junit.platform:junit-platform-commons:1.8.2 +| | | | \--- org.junit:junit-bom:5.8.2 (*) +| | | +--- org.junit.platform:junit-platform-launcher:1.8.2 +| | | | +--- org.junit:junit-bom:5.8.2 (*) +| | | | \--- org.junit.platform:junit-platform-engine:1.8.2 +| | | | +--- org.junit:junit-bom:5.8.2 (*) +| | | | +--- org.opentest4j:opentest4j:1.2.0 +| | | | \--- org.junit.platform:junit-platform-commons:1.8.2 (*) +| | | \--- org.junit.jupiter:junit-jupiter-engine:5.8.2 +| | | +--- org.junit:junit-bom:5.8.2 (*) +| | | +--- org.junit.platform:junit-platform-engine:1.8.2 (*) +| | | \--- org.junit.jupiter:junit-jupiter-api:5.8.2 (*) +| | +--- org.codehaus.groovy:groovy-test:3.0.11 +| | | +--- org.codehaus.groovy:groovy:3.0.11 +| | | \--- junit:junit:4.13.2 (*) +| | +--- org.spockframework:spock-core:2.1-groovy-3.0 +| | +--- org.junit.platform:junit-platform-runner:1.9.2 -> 1.8.2 +| | | +--- org.junit.platform:junit-platform-suite-commons:1.8.2 +| | | | +--- org.junit.platform:junit-platform-engine:1.8.2 (*) +| | | | +--- org.junit.platform:junit-platform-suite-api:1.8.2 +| | | | | +--- org.junit:junit-bom:5.8.2 (*) +| | | | | \--- org.junit.platform:junit-platform-commons:1.8.2 (*) +| | | | +--- org.junit:junit-bom:5.8.2 (*) +| | | | \--- org.junit.platform:junit-platform-launcher:1.8.2 (*) +| | | +--- org.junit:junit-bom:5.8.2 (*) +| | | +--- junit:junit:4.13.2 (*) +| | | +--- org.junit.platform:junit-platform-launcher:1.8.2 (*) +| | | \--- org.junit.platform:junit-platform-suite-api:1.8.2 (*) +| | +--- org.grails.plugins:converters:4.0.0 (*) +| | +--- jline:jline:2.14.6 +| | +--- org.fusesource.jansi:jansi:1.18 +| | +--- org.apache.ant:ant:1.10.13 (*) +| | +--- org.apache.ant:ant-junit:1.10.13 (*) +| | \--- org.objenesis:objenesis:3.3 +| +--- org.grails:grails-datastore-gorm-test:6.1.6.RELEASE -> 7.3.3 +| | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) +| | +--- javax.annotation:javax.annotation-api:1.3.2 +| | +--- org.codehaus.groovy:groovy:3.0.11 +| | +--- org.grails:grails-datastore-gorm:7.3.3 (*) +| | \--- org.grails:grails-datastore-core:7.3.3 (*) +| +--- org.grails:grails-logging:3.3.0 -> 5.3.3 (*) +| +--- javax.servlet:javax.servlet-api:3.1.0 -> 4.0.1 +| +--- org.springframework:spring-test:4.3.9.RELEASE -> 5.3.25 (*) +| +--- org.springframework.boot:spring-boot-starter-test:1.5.6.RELEASE -> 2.7.8 +| | +--- org.springframework.boot:spring-boot-starter:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot-test:2.7.8 (*) +| | +--- org.springframework.boot:spring-boot-test-autoconfigure:2.7.8 +| | | +--- org.springframework.boot:spring-boot:2.7.8 (*) +| | | +--- org.springframework.boot:spring-boot-test:2.7.8 (*) +| | | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) +| | +--- com.jayway.jsonpath:json-path:2.7.0 +| | | +--- net.minidev:json-smart:2.4.7 -> 2.4.8 +| | | | \--- net.minidev:accessors-smart:2.4.8 +| | | | \--- org.ow2.asm:asm:9.1 +| | | \--- org.slf4j:slf4j-api:1.7.33 -> 1.7.36 +| | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 (*) +| | +--- org.assertj:assertj-core:3.22.0 +| | +--- org.hamcrest:hamcrest:2.2 +| | +--- org.junit.jupiter:junit-jupiter:5.8.2 +| | | +--- org.junit:junit-bom:5.8.2 (*) +| | | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 (*) +| | | +--- org.junit.jupiter:junit-jupiter-params:5.8.2 +| | | | +--- org.junit:junit-bom:5.8.2 (*) +| | | | \--- org.junit.jupiter:junit-jupiter-api:5.8.2 (*) +| | | \--- org.junit.jupiter:junit-jupiter-engine:5.8.2 (*) +| | +--- org.mockito:mockito-core:4.5.1 +| | | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 +| | | +--- net.bytebuddy:byte-buddy-agent:1.12.9 -> 1.12.22 +| | | \--- org.objenesis:objenesis:3.2 -> 3.3 +| | +--- org.mockito:mockito-junit-jupiter:4.5.1 +| | | +--- org.mockito:mockito-core:4.5.1 (*) +| | | \--- org.junit.jupiter:junit-jupiter-api:5.8.2 (*) +| | +--- org.skyscreamer:jsonassert:1.5.1 +| | | \--- com.vaadin.external.google:android-json:0.0.20131108.vaadin1 +| | +--- org.springframework:spring-core:5.3.25 (*) +| | +--- org.springframework:spring-test:5.3.25 (*) +| | \--- org.xmlunit:xmlunit-core:2.9.1 +| +--- org.spockframework:spock-spring:1.1-groovy-2.4 -> 2.1-groovy-3.0 +| +--- org.spockframework:spock-core:1.1-groovy-2.4 -> 2.1-groovy-3.0 +| +--- junit:junit:4.12 -> 4.13.2 (*) +| \--- cglib:cglib:2.2.2 +| \--- asm:asm:3.3.1 ++--- org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1 +| +--- org.seleniumhq.selenium:selenium-remote-driver:2.47.1 -> 4.1.4 +| | +--- com.beust:jcommander:1.82 +| | +--- com.google.auto.service:auto-service-annotations:1.0.1 +| | +--- com.google.auto.service:auto-service:1.0.1 +| | | +--- com.google.auto.service:auto-service-annotations:1.0.1 +| | | +--- com.google.auto:auto-common:1.2 +| | | | \--- com.google.guava:guava:31.0.1-jre -> 31.1-jre +| | | | +--- com.google.guava:failureaccess:1.0.1 +| | | | +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava +| | | | +--- com.google.code.findbugs:jsr305:3.0.2 +| | | | +--- org.checkerframework:checker-qual:3.12.0 -> 3.19.0 +| | | | +--- com.google.errorprone:error_prone_annotations:2.11.0 +| | | | \--- com.google.j2objc:j2objc-annotations:1.3 +| | | \--- com.google.guava:guava:31.0.1-jre -> 31.1-jre (*) +| | +--- com.google.guava:guava:31.1-jre (*) +| | +--- io.netty:netty-buffer:4.1.76.Final -> 4.1.87.Final (*) +| | +--- io.netty:netty-codec-http:4.1.76.Final -> 4.1.87.Final (*) +| | +--- io.netty:netty-common:4.1.76.Final -> 4.1.87.Final +| | +--- io.netty:netty-transport-classes-epoll:4.1.76.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | \--- io.netty:netty-transport-native-unix-common:4.1.87.Final (*) +| | +--- io.netty:netty-transport-classes-kqueue:4.1.76.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | \--- io.netty:netty-transport-native-unix-common:4.1.87.Final (*) +| | +--- io.netty:netty-transport-native-epoll:4.1.76.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final (*) +| | | \--- io.netty:netty-transport-classes-epoll:4.1.87.Final (*) +| | +--- io.netty:netty-transport-native-kqueue:4.1.76.Final -> 4.1.87.Final +| | | +--- io.netty:netty-common:4.1.87.Final +| | | +--- io.netty:netty-buffer:4.1.87.Final (*) +| | | +--- io.netty:netty-transport:4.1.87.Final (*) +| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final (*) +| | | \--- io.netty:netty-transport-classes-kqueue:4.1.87.Final (*) +| | +--- io.netty:netty-transport-native-unix-common:4.1.76.Final -> 4.1.87.Final (*) +| | +--- io.netty:netty-transport:4.1.76.Final -> 4.1.87.Final (*) +| | +--- io.opentelemetry:opentelemetry-api:1.13.0 +| | | \--- io.opentelemetry:opentelemetry-context:1.13.0 +| | +--- io.opentelemetry:opentelemetry-context:1.13.0 +| | +--- io.opentelemetry:opentelemetry-exporter-logging:1.13.0 +| | | +--- io.opentelemetry:opentelemetry-sdk:1.13.0 +| | | | +--- io.opentelemetry:opentelemetry-sdk-metrics:1.13.0-alpha +| | | | | +--- io.opentelemetry:opentelemetry-api:1.13.0 (*) +| | | | | \--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 +| | | | | +--- io.opentelemetry:opentelemetry-semconv:1.13.0-alpha +| | | | | | \--- io.opentelemetry:opentelemetry-api:1.13.0 (*) +| | | | | \--- io.opentelemetry:opentelemetry-api:1.13.0 (*) +| | | | +--- io.opentelemetry:opentelemetry-sdk-logs:1.13.0-alpha +| | | | | \--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 (*) +| | | | +--- io.opentelemetry:opentelemetry-api:1.13.0 (*) +| | | | +--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 (*) +| | | | \--- io.opentelemetry:opentelemetry-sdk-trace:1.13.0 +| | | | +--- io.opentelemetry:opentelemetry-semconv:1.13.0-alpha (*) +| | | | +--- io.opentelemetry:opentelemetry-api:1.13.0 (*) +| | | | \--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 (*) +| | | +--- io.opentelemetry:opentelemetry-sdk-metrics:1.13.0-alpha (*) +| | | \--- io.opentelemetry:opentelemetry-sdk-logs:1.13.0-alpha (*) +| | +--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 (*) +| | +--- io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.13.0 +| | | +--- io.opentelemetry:opentelemetry-sdk-metrics:1.13.0-alpha (*) +| | | +--- io.opentelemetry:opentelemetry-sdk-logs:1.13.0-alpha (*) +| | | \--- io.opentelemetry:opentelemetry-sdk:1.13.0 (*) +| | +--- io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.13.0-alpha +| | | +--- io.opentelemetry:opentelemetry-semconv:1.13.0-alpha (*) +| | | +--- io.opentelemetry:opentelemetry-sdk:1.13.0 (*) +| | | +--- io.opentelemetry:opentelemetry-sdk-metrics:1.13.0-alpha (*) +| | | +--- io.opentelemetry:opentelemetry-sdk-logs:1.13.0-alpha (*) +| | | \--- io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.13.0 (*) +| | +--- io.opentelemetry:opentelemetry-sdk-trace:1.13.0 (*) +| | +--- io.opentelemetry:opentelemetry-sdk:1.13.0 (*) +| | +--- io.opentelemetry:opentelemetry-semconv:1.13.0-alpha (*) +| | +--- io.ous:jtoml:2.0.0 +| | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 +| | +--- org.apache.commons:commons-exec:1.3 +| | +--- org.asynchttpclient:async-http-client:2.12.3 +| | | +--- org.asynchttpclient:async-http-client-netty-utils:2.12.3 +| | | | +--- io.netty:netty-buffer:4.1.60.Final -> 4.1.87.Final (*) +| | | | +--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| | | | \--- com.sun.activation:jakarta.activation:1.2.2 +| | | +--- io.netty:netty-codec-http:4.1.60.Final -> 4.1.87.Final (*) +| | | +--- io.netty:netty-handler:4.1.60.Final -> 4.1.87.Final (*) +| | | +--- io.netty:netty-codec-socks:4.1.60.Final -> 4.1.87.Final (*) +| | | +--- io.netty:netty-handler-proxy:4.1.60.Final -> 4.1.87.Final (*) +| | | +--- io.netty:netty-transport-native-epoll:4.1.60.Final -> 4.1.87.Final (*) +| | | +--- io.netty:netty-transport-native-kqueue:4.1.60.Final -> 4.1.87.Final (*) +| | | +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| | | +--- com.typesafe.netty:netty-reactive-streams:2.0.4 +| | | | +--- io.netty:netty-handler:4.1.43.Final -> 4.1.87.Final (*) +| | | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 +| | | +--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 +| | | \--- com.sun.activation:jakarta.activation:1.2.2 +| | +--- org.seleniumhq.selenium:selenium-api:4.1.4 +| | +--- org.seleniumhq.selenium:selenium-http:4.1.4 +| | | +--- com.google.guava:guava:31.1-jre (*) +| | | +--- dev.failsafe:failsafe:3.2.3 +| | | +--- org.seleniumhq.selenium:selenium-api:4.1.4 +| | | \--- org.seleniumhq.selenium:selenium-json:4.1.4 +| | | \--- org.seleniumhq.selenium:selenium-api:4.1.4 +| | \--- org.seleniumhq.selenium:selenium-json:4.1.4 (*) +| +--- net.sourceforge.htmlunit:htmlunit:2.17 -> 2.18 +| | +--- xalan:xalan:2.7.2 +| | | \--- xalan:serializer:2.7.2 +| | | \--- xml-apis:xml-apis:1.3.04 -> 1.4.01 +| | +--- commons-collections:commons-collections:3.2.1 -> 3.2.2 +| | +--- org.apache.commons:commons-lang3:3.4 -> 3.12.0 +| | +--- org.apache.httpcomponents:httpclient:4.5 -> 4.5.14 +| | | +--- org.apache.httpcomponents:httpcore:4.4.16 +| | | +--- commons-logging:commons-logging:1.2 +| | | \--- commons-codec:commons-codec:1.11 -> 1.15 +| | +--- org.apache.httpcomponents:httpmime:4.5 -> 4.5.14 +| | | \--- org.apache.httpcomponents:httpclient:4.5.14 (*) +| | +--- commons-codec:commons-codec:1.10 -> 1.15 +| | +--- net.sourceforge.htmlunit:htmlunit-core-js:2.17 +| | +--- xerces:xercesImpl:2.11.0 +| | | \--- xml-apis:xml-apis:1.4.01 +| | +--- net.sourceforge.nekohtml:nekohtml:1.9.22 +| | +--- net.sourceforge.cssparser:cssparser:0.9.16 +| | | \--- org.w3c.css:sac:1.3 +| | +--- commons-io:commons-io:2.4 -> 2.11.0 +| | +--- commons-logging:commons-logging:1.2 +| | \--- org.eclipse.jetty.websocket:websocket-client:9.2.12.v20150709 -> 9.4.50.v20221201 +| | +--- org.eclipse.jetty:jetty-client:9.4.50.v20221201 +| | | +--- org.eclipse.jetty:jetty-http:9.4.50.v20221201 +| | | | +--- org.eclipse.jetty:jetty-util:9.4.50.v20221201 +| | | | \--- org.eclipse.jetty:jetty-io:9.4.50.v20221201 +| | | | \--- org.eclipse.jetty:jetty-util:9.4.50.v20221201 +| | | \--- org.eclipse.jetty:jetty-io:9.4.50.v20221201 (*) +| | +--- org.eclipse.jetty:jetty-util:9.4.50.v20221201 +| | +--- org.eclipse.jetty:jetty-io:9.4.50.v20221201 (*) +| | \--- org.eclipse.jetty.websocket:websocket-common:9.4.50.v20221201 +| | +--- org.eclipse.jetty.websocket:websocket-api:9.4.50.v20221201 +| | +--- org.eclipse.jetty:jetty-util:9.4.50.v20221201 +| | \--- org.eclipse.jetty:jetty-io:9.4.50.v20221201 (*) +| \--- org.apache.httpcomponents:httpclient:4.4.1 -> 4.5.14 (*) +\--- net.sourceforge.htmlunit:htmlunit:2.18 (*) + +testRuntimeOnly - Runtime only dependencies for source set 'test'. (n) +No dependencies + +(c) - dependency constraint +(*) - dependencies omitted (listed previously) + +(n) - Not resolved (configuration is not meant to be resolved) + +A web-based, searchable dependency report is available by adding the --scan option. + +Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0. +Use '--warning-mode all' to show the individual deprecation warnings. +See https://docs.gradle.org/6.9.3/userguide/command_line_interface.html#sec:command_line_warnings + +BUILD SUCCESSFUL in 3s +1 actionable task: 1 executed diff --git a/examples/grails-docs-app/build.gradle b/examples/grails-docs-app/build.gradle index 78fa7f10..0610743c 100644 --- a/examples/grails-docs-app/build.gradle +++ b/examples/grails-docs-app/build.gradle @@ -1,34 +1,35 @@ dependencies { - compile "org.springframework.boot:spring-boot-starter-logging" - compile "org.springframework.boot:spring-boot-autoconfigure" - compile "org.grails:grails-core" - compile "org.springframework.boot:spring-boot-starter-actuator" - compile "org.springframework.boot:spring-boot-starter-tomcat" - compile "org.grails:grails-plugin-url-mappings" - compile "org.grails:grails-plugin-rest" - compile "org.grails:grails-plugin-codecs" - compile "org.grails:grails-plugin-interceptors" - compile "org.grails:grails-plugin-services" - compile "org.grails:grails-plugin-datasource" - compile "org.grails:grails-plugin-databinding" - compile "org.grails:grails-web-boot" - compile "org.grails:grails-logging" - compile "org.grails.plugins:cache" - compile "org.grails.plugins:async" - compile "org.grails.plugins:events" - compile "org.grails.plugins:hibernate5" - compile "org.hibernate:hibernate-core:$hibernateCoreVersion" - compile "org.grails.plugins:views-json" - compile "org.grails.plugins:views-json-templates" + implementation "org.springframework.boot:spring-boot-starter-logging" + implementation "org.springframework.boot:spring-boot-autoconfigure" + implementation "org.grails:grails-core" + implementation "org.springframework.boot:spring-boot-starter-actuator" + implementation "org.springframework.boot:spring-boot-starter-tomcat" + implementation "org.grails:grails-plugin-url-mappings" + implementation "org.grails:grails-plugin-rest" + implementation "org.grails:grails-plugin-codecs" + implementation "org.grails:grails-plugin-interceptors" + implementation "org.grails:grails-plugin-services" + implementation "org.grails:grails-plugin-datasource" + implementation "org.grails:grails-plugin-databinding" + implementation "org.grails:grails-web-boot" + implementation "org.grails:grails-logging" + implementation "org.grails.plugins:cache" + implementation "org.grails.plugins:async" + implementation "org.grails.plugins:events" + implementation "org.grails.plugins:hibernate5" + implementation "org.hibernate:hibernate-core:$hibernateCoreVersion" + implementation "org.grails.plugins:views-json" + implementation "org.grails.plugins:views-json-templates" + implementation 'io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0' console "org.grails:grails-console" profile "org.grails.profiles:rest-api" - runtime "org.glassfish.web:el-impl:2.1.2-b03" - runtime "com.h2database:h2" - runtime "org.apache.tomcat:tomcat-jdbc" - testCompile "org.grails:grails-gorm-testing-support" - testCompile "org.grails:grails-web-testing-support" + runtimeOnly "org.glassfish.web:el-impl:2.1.2-b03" + runtimeOnly "com.h2database:h2" + runtimeOnly "org.apache.tomcat:tomcat-jdbc" + testImplementation "org.grails:grails-gorm-testing-support" + testImplementation "org.grails:grails-web-testing-support" - compile project(":grails-plugin-gorm-graphql-plugin") + implementation project(":grails-plugin-gorm-graphql-plugin") } bootRun { diff --git a/examples/grails-multi-datastore-app/build.gradle b/examples/grails-multi-datastore-app/build.gradle index 0fc582a3..96a5510a 100755 --- a/examples/grails-multi-datastore-app/build.gradle +++ b/examples/grails-multi-datastore-app/build.gradle @@ -1,42 +1,48 @@ dependencies { - compile "org.springframework.boot:spring-boot-starter-logging" - compile "org.springframework.boot:spring-boot-autoconfigure" - compile "org.grails:grails-core" - compile "org.springframework.boot:spring-boot-starter-actuator" - compile "org.springframework.boot:spring-boot-starter-tomcat" - compile "org.grails:grails-plugin-url-mappings" - compile "org.grails:grails-plugin-rest" - compile "org.grails:grails-plugin-codecs" - compile "org.grails:grails-plugin-interceptors" - compile "org.grails:grails-plugin-services" - compile "org.grails:grails-plugin-datasource" - compile "org.grails:grails-plugin-databinding" - compile "org.grails:grails-web-boot" - compile "org.grails:grails-logging" - compile "org.grails.plugins:cache" - compile "org.grails.plugins:async" - compile "org.grails.plugins:hibernate5" - compile "org.hibernate:hibernate-core:$hibernateCoreVersion" - compile "org.grails.plugins:mongodb" - compile "org.grails.plugins:views-json" - compile "org.grails.plugins:views-json-templates" + implementation "org.springframework.boot:spring-boot-starter-logging" + implementation "org.springframework.boot:spring-boot-autoconfigure" + implementation "org.grails:grails-core:5.3.2" + implementation "org.springframework.boot:spring-boot-starter-actuator" + implementation "org.springframework.boot:spring-boot-starter-tomcat" + implementation "org.grails:grails-plugin-url-mappings" + implementation "org.grails:grails-plugin-rest" + implementation "org.grails:grails-plugin-codecs" + implementation "org.grails:grails-plugin-interceptors" + implementation "org.grails:grails-plugin-services" + implementation "org.grails:grails-plugin-datasource" + implementation "org.grails:grails-plugin-databinding" + implementation "org.grails:grails-web-boot" + implementation "org.grails:grails-logging" + implementation "org.grails.plugins:cache" + implementation "org.grails.plugins:async" + implementation "org.grails.plugins:hibernate5" + implementation "org.hibernate:hibernate-core:$hibernateCoreVersion" + implementation "org.grails.plugins:mongodb" + implementation "org.grails.plugins:views-json" + implementation 'io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0' + implementation "org.grails.plugins:views-json-templates" + implementation "com.graphql-java:graphql-java:$graphqlJavaVersion" console "org.grails:grails-console" profile "org.grails.profiles:rest-api" - provided "org.grails.plugins:embedded-mongodb:1.0.2" - compile "org.apache.commons:commons-compress:1.10" - runtime "org.glassfish.web:el-impl:2.1.2-b03" - runtime "com.h2database:h2" - runtime "org.apache.tomcat:tomcat-jdbc" - testCompile "org.grails:grails-gorm-testing-support" - testCompile "org.grails.plugins:geb" - testCompile "org.grails:grails-web-testing-support" + compileOnly 'org.grails.plugins:embedded-mongodb:2.0.1' + implementation "org.apache.commons:commons-compress:1.10" + implementation "org.glassfish.web:el-impl:2.1.2-b03" + implementation "com.h2database:h2" + implementation "org.apache.tomcat:tomcat-jdbc" + compileOnly "org.grails:grails-gorm-testing-support" + compileOnly "org.grails.plugins:geb" + compileOnly "org.grails:grails-web-testing-support" testRuntime "org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1" testRuntime "net.sourceforge.htmlunit:htmlunit:2.18" - - compile project(":grails-plugin-gorm-graphql-plugin") + testImplementation "org.grails:grails-test-mixins:3.3.0" + implementation project(":grails-plugin-gorm-graphql-plugin") } bootRun { jvmArgs('-Dspring.output.ansi.enabled=always') sourceResources sourceSets.main } + +repositories { + mavenCentral() +} diff --git a/examples/grails-multi-datastore-app/src/integration-test/groovy/myapp/BarIntegrationSpec.groovy b/examples/grails-multi-datastore-app/src/integration-test/groovy/myapp/BarIntegrationSpec.groovy index d4bb7cf3..5a3824ff 100644 --- a/examples/grails-multi-datastore-app/src/integration-test/groovy/myapp/BarIntegrationSpec.groovy +++ b/examples/grails-multi-datastore-app/src/integration-test/groovy/myapp/BarIntegrationSpec.groovy @@ -1,15 +1,14 @@ package myapp -import grails.testing.mixin.integration.Integration +import grails.test.mixin.integration.Integration import org.bson.types.ObjectId import org.grails.datastore.gorm.GormEnhancer import org.grails.datastore.mapping.mongo.MongoDatastore import org.grails.gorm.graphql.plugin.testing.GraphQLSpec -import org.grails.web.json.JSONObject -import spock.lang.Specification + @Integration -class BarIntegrationSpec extends Specification implements GraphQLSpec { +class BarIntegrationSpec implements GraphQLSpec { void "test a bar can be created"() { when: diff --git a/examples/grails-multi-datastore-app/src/integration-test/groovy/myapp/FooIntegrationSpec.groovy b/examples/grails-multi-datastore-app/src/integration-test/groovy/myapp/FooIntegrationSpec.groovy index e53d06d7..a6ae2bda 100644 --- a/examples/grails-multi-datastore-app/src/integration-test/groovy/myapp/FooIntegrationSpec.groovy +++ b/examples/grails-multi-datastore-app/src/integration-test/groovy/myapp/FooIntegrationSpec.groovy @@ -1,14 +1,12 @@ package myapp -import grails.testing.mixin.integration.Integration +import grails.test.mixin.integration.Integration import org.grails.datastore.gorm.GormEnhancer import org.grails.gorm.graphql.plugin.testing.GraphQLSpec import org.grails.orm.hibernate.HibernateDatastore -import org.grails.web.json.JSONObject -import spock.lang.Specification @Integration -class FooIntegrationSpec extends Specification implements GraphQLSpec { +class FooIntegrationSpec implements GraphQLSpec { void "test a foo can be created"() { when: diff --git a/examples/grails-tenant-app/build.gradle b/examples/grails-tenant-app/build.gradle index 9f374eea..9b126175 100644 --- a/examples/grails-tenant-app/build.gradle +++ b/examples/grails-tenant-app/build.gradle @@ -1,37 +1,39 @@ dependencies { - compile "org.springframework.boot:spring-boot-starter-logging" - compile "org.springframework.boot:spring-boot-autoconfigure" - compile "org.grails:grails-core" - compile "org.springframework.boot:spring-boot-starter-actuator" - compile "org.springframework.boot:spring-boot-starter-tomcat" - compile "org.grails:grails-plugin-url-mappings" - compile "org.grails:grails-plugin-rest" - compile "org.grails:grails-plugin-codecs" - compile "org.grails:grails-plugin-interceptors" - compile "org.grails:grails-plugin-services" - compile "org.grails:grails-plugin-datasource" - compile "org.grails:grails-plugin-databinding" - compile "org.grails:grails-web-boot" - compile "org.grails:grails-logging" - compile "org.grails.plugins:cache" - compile "org.grails.plugins:async" - compile "org.grails.plugins:events" - compile "org.grails.plugins:hibernate5" - compile "org.hibernate:hibernate-core:$hibernateCoreVersion" - compile "org.grails.plugins:views-json" - compile "org.grails.plugins:views-json-templates" + implementation "org.springframework.boot:spring-boot-starter-logging" + implementation "org.springframework.boot:spring-boot-autoconfigure" + implementation "org.grails:grails-core" + implementation "org.springframework.boot:spring-boot-starter-actuator" + implementation "org.springframework.boot:spring-boot-starter-tomcat" + implementation "org.grails:grails-plugin-url-mappings" + implementation "org.grails:grails-plugin-rest" + implementation "org.grails:grails-plugin-codecs" + implementation "org.grails:grails-plugin-interceptors" + implementation "org.grails:grails-plugin-services" + implementation "org.grails:grails-plugin-datasource" + implementation "org.grails:grails-plugin-databinding" + implementation "org.grails:grails-web-boot" + implementation "org.grails:grails-logging" + implementation "org.grails.plugins:cache" + implementation "org.grails.plugins:async" + implementation "org.grails.plugins:events" + implementation "org.grails.plugins:hibernate5" + implementation "org.hibernate:hibernate-core:$hibernateCoreVersion" + implementation "org.grails.plugins:views-json" + implementation "org.grails.plugins:views-json-templates" + implementation 'io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0' console "org.grails:grails-console" profile "org.grails.profiles:rest-api" runtime "org.glassfish.web:el-impl:2.1.2-b03" - runtime "com.h2database:h2" - runtime "org.apache.tomcat:tomcat-jdbc" - testCompile "org.grails:grails-gorm-testing-support" - testCompile "org.grails.plugins:geb" - testCompile "org.grails:grails-web-testing-support" + runtimeOnly "com.h2database:h2" + runtimeOnly "org.apache.tomcat:tomcat-jdbc" + testImplementation "org.grails:grails-gorm-testing-support" + testImplementation "org.grails.plugins:geb" + testImplementation "org.grails:grails-web-testing-support" testRuntime "org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1" testRuntime "net.sourceforge.htmlunit:htmlunit:2.18" - compile project(":grails-plugin-gorm-graphql-plugin") + + implementation project(":grails-plugin-gorm-graphql-plugin") } bootRun { diff --git a/examples/grails-test-app/build.gradle b/examples/grails-test-app/build.gradle index 78fa7f10..78f11e17 100644 --- a/examples/grails-test-app/build.gradle +++ b/examples/grails-test-app/build.gradle @@ -1,34 +1,37 @@ dependencies { - compile "org.springframework.boot:spring-boot-starter-logging" - compile "org.springframework.boot:spring-boot-autoconfigure" - compile "org.grails:grails-core" - compile "org.springframework.boot:spring-boot-starter-actuator" - compile "org.springframework.boot:spring-boot-starter-tomcat" - compile "org.grails:grails-plugin-url-mappings" - compile "org.grails:grails-plugin-rest" - compile "org.grails:grails-plugin-codecs" - compile "org.grails:grails-plugin-interceptors" - compile "org.grails:grails-plugin-services" - compile "org.grails:grails-plugin-datasource" - compile "org.grails:grails-plugin-databinding" - compile "org.grails:grails-web-boot" - compile "org.grails:grails-logging" - compile "org.grails.plugins:cache" - compile "org.grails.plugins:async" - compile "org.grails.plugins:events" - compile "org.grails.plugins:hibernate5" - compile "org.hibernate:hibernate-core:$hibernateCoreVersion" - compile "org.grails.plugins:views-json" - compile "org.grails.plugins:views-json-templates" + implementation "org.springframework.boot:spring-boot-starter-logging" + implementation "org.springframework.boot:spring-boot-autoconfigure" + implementation "org.grails:grails-core" + implementation "org.springframework.boot:spring-boot-starter-actuator" + implementation "org.springframework.boot:spring-boot-starter-tomcat" + implementation "org.grails:grails-plugin-url-mappings" + implementation "org.grails:grails-plugin-rest" + implementation "org.grails:grails-plugin-codecs" + implementation "org.grails:grails-plugin-interceptors" + implementation "org.grails:grails-plugin-services" + implementation "org.grails:grails-plugin-datasource" + implementation "org.grails:grails-plugin-databinding" + implementation "org.grails:grails-web-boot" + implementation "org.grails:grails-logging" + implementation "org.grails.plugins:cache" + implementation "org.grails.plugins:async" + implementation "org.grails.plugins:events" + implementation "org.grails.plugins:hibernate5" + implementation "org.hibernate:hibernate-core:$hibernateCoreVersion" + implementation "org.grails.plugins:views-json" + implementation "org.grails.plugins:views-json-templates" + implementation "com.graphql-java:graphql-java:$graphqlJavaVersion" + implementation 'io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0' console "org.grails:grails-console" profile "org.grails.profiles:rest-api" runtime "org.glassfish.web:el-impl:2.1.2-b03" runtime "com.h2database:h2" runtime "org.apache.tomcat:tomcat-jdbc" - testCompile "org.grails:grails-gorm-testing-support" - testCompile "org.grails:grails-web-testing-support" + testImplementation "org.grails:grails-gorm-testing-support" + testImplementation "org.grails:grails-web-testing-support" + testImplementation "org.grails:grails-test-mixins:3.3.0" - compile project(":grails-plugin-gorm-graphql-plugin") + implementation project(":grails-plugin-gorm-graphql-plugin") } bootRun { diff --git a/examples/grails-test-app/grails-app/domain/grails/test/app/ArguedField.groovy b/examples/grails-test-app/grails-app/domain/grails/test/app/ArguedField.groovy index da3430de..5d2f73da 100644 --- a/examples/grails-test-app/grails-app/domain/grails/test/app/ArguedField.groovy +++ b/examples/grails-test-app/grails-app/domain/grails/test/app/ArguedField.groovy @@ -4,7 +4,6 @@ import grails.compiler.GrailsCompileStatic import org.grails.gorm.graphql.entity.dsl.GraphQLMapping import org.grails.gorm.graphql.fetcher.impl.ClosureDataFetchingEnvironment -@GrailsCompileStatic class ArguedField { String name diff --git a/examples/grails-test-app/src/main/groovy/grails/test/app/GraphQLCustomizer.groovy b/examples/grails-test-app/src/main/groovy/grails/test/app/GraphQLCustomizer.groovy index aff8fa4e..246b4f2e 100644 --- a/examples/grails-test-app/src/main/groovy/grails/test/app/GraphQLCustomizer.groovy +++ b/examples/grails-test-app/src/main/groovy/grails/test/app/GraphQLCustomizer.groovy @@ -1,7 +1,6 @@ package grails.test.app import grails.test.app.pogo.Painting -import grails.test.app.pogo.Profile import graphql.schema.GraphQLObjectType import graphql.schema.GraphQLOutputType import org.grails.gorm.graphql.binding.manager.GraphQLDataBinderManager diff --git a/examples/grails-test-app/src/test/groovy/grails/test/app/manyToMany/StudentSchemaSpec.groovy b/examples/grails-test-app/src/test/groovy/grails/test/app/manyToMany/StudentSchemaSpec.groovy index 217f5931..ebd0fddb 100644 --- a/examples/grails-test-app/src/test/groovy/grails/test/app/manyToMany/StudentSchemaSpec.groovy +++ b/examples/grails-test-app/src/test/groovy/grails/test/app/manyToMany/StudentSchemaSpec.groovy @@ -2,6 +2,8 @@ package grails.test.app.manyToMany import grails.test.hibernate.HibernateSpec import org.grails.gorm.graphql.Schema +import org.junit.Test + class StudentSchemaSpec extends HibernateSpec { diff --git a/examples/spring-boot-app/build.gradle b/examples/spring-boot-app/build.gradle index fef94690..d94a8d1e 100644 --- a/examples/spring-boot-app/build.gradle +++ b/examples/spring-boot-app/build.gradle @@ -16,23 +16,33 @@ apply plugin: 'org.springframework.boot' apply plugin: 'io.spring.dependency-management' dependencies { - compile 'org.springframework.boot:spring-boot-starter' - compile "org.springframework.boot:spring-boot-starter-web" - compile 'org.codehaus.groovy:groovy' - compile "org.grails:gorm-hibernate5-spring-boot:${gormHibernateVersion}" - compile "org.hibernate:hibernate-core:$hibernateCoreVersion" - compile "org.hibernate:hibernate-ehcache:$hibernateEcacheVersion" - compile "org.grails:grails-core:$grailsVersion" - compile project(":gorm-graphql") + implementation 'org.springframework.boot:spring-boot-starter' + implementation "org.springframework.boot:spring-boot-starter-web" + implementation "org.grails:gorm-hibernate5-spring-boot:7.3.1" + implementation "org.hibernate:hibernate-core:$hibernateCoreVersion" + implementation "org.hibernate:hibernate-ehcache:5.6.15.Final" + implementation "org.grails:grails-core:5.3.2" + implementation project(":gorm-graphql") + implementation 'org.codehaus.groovy:groovy-astbuilder:3.0.19' + implementation 'jakarta.transaction:jakarta.transaction-api:2.0.1' + implementation 'com.github.javaparser:javaparser-core:3.25.5' + implementation "com.graphql-java:graphql-java:$graphqlJavaVersion" + runtimeOnly 'com.h2database:h2:2.1.214' + runtimeOnly 'org.apache.tomcat:tomcat-jdbc:10.1.9' + runtimeOnly "org.apache.tomcat.embed:tomcat-embed-logging-log4j:8.5.0" + implementation 'jakarta.persistence:jakarta.persistence-api:3.1.0' - runtime "com.h2database:h2:1.4.192" - runtime "org.apache.tomcat:tomcat-jdbc:8.5.0" - runtime "org.apache.tomcat.embed:tomcat-embed-logging-log4j:8.5.0" + runtimeOnly "javax.el:javax.el-api:3.0.0" + runtimeOnly "org.glassfish:javax.el:3.0.0" - runtime "javax.el:javax.el-api:3.0.0" - runtime "org.glassfish:javax.el:3.0.0" + testImplementation 'org.springframework.boot:spring-boot-starter-test' + testImplementation 'org.spockframework:spock-core:2.3-groovy-3.0' + testImplementation 'junit:junit:4.12' - testCompile 'org.springframework.boot:spring-boot-starter-test' - testCompile "org.spockframework:spock-spring:$spockVersion" + +} + +repositories { + mavenCentral() } diff --git a/gradle.properties b/gradle.properties index 31038136..4db677e8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,27 +6,29 @@ projectUrl=https://github.com/grails/gorm-graphql githubSlug=grails/gorm-graphql githubBranch=2.0.x developers=James Kleeh -gormVersion=7.0.5.RELEASE -gormHibernateVersion=7.0.3.RELEASE +gormVersion=7.3.1 +gormHibernateVersion=7.3.1 gormMongoDbVersion=7.0.0.RELEASE -grailsVersion=4.1.2 +grailsVersion=5.3.3 +grailsGradlePluginVersion=5.3.0 grailsDocsVersion=3.3.2 -groovyVersion=2.5.14 +groovyVersion=3.0.11 slf4jVersion=1.7.36 -spockVersion=1.3-groovy-2.5 -micronautVersion=1.0.3 -graphqlJavaVersion=17.3 -graphqlJavaScalarExtVersion=17.0 +spockVersion=2.1-groovy-3.0 +micronautVersion=3.2.0 +graphqlJavaVersion=20.6 +graphqlJavaScalarExtVersion=20.2 codenarcVersion=1.6.1 viewGradleVersion=2.0.0 -viewsJsonVersion=2.0.0 +viewsJsonVersion=2.3.2 servletApiVersion=4.0.1 cglibNodepVersion=3.2.9 objenesisVersion=2.6 jansiVersion=1.17.1 -hibernateEcacheVersion=5.3.7.Final -hibernateCoreVersion=5.3.7.Final +hibernateEcacheVersion=5.6.7.Final +hibernateCoreVersion=5.6.11.Final org.gradle.daemon=true org.gradle.parallel=true org.gradle.jvmargs=-Dfile.encoding=UTF-8 -Xmx1024M +junitJupiterVersion=5.9.3 diff --git a/plugin/build.gradle b/plugin/build.gradle index db05b476..8f35b6d5 100644 --- a/plugin/build.gradle +++ b/plugin/build.gradle @@ -1,9 +1,12 @@ +repositories { + mavenCentral() +} buildscript { repositories { maven { url "https://repo.grails.org/grails/core" } } dependencies { - classpath "org.grails:grails-gradle-plugin:$grailsVersion" + classpath "org.grails:grails-gradle-plugin:$grailsGradlePluginVersion" classpath "org.grails.plugins:views-gradle:$viewGradleVersion" } } @@ -12,18 +15,22 @@ apply plugin:"org.grails.grails-plugin" apply plugin:"org.grails.plugins.views-json" dependencies { - compile "org.grails:grails-plugin-controllers" - compile "org.grails:grails-plugin-databinding" - compile("org.grails:grails-plugin-rest") { + + implementation "org.grails:grails-plugin-controllers" + implementation "org.grails:grails-plugin-databinding" + implementation("org.grails:grails-plugin-rest") { exclude group: 'org.grails.plugins', module: 'converters' } - compile "org.grails:grails-plugin-url-mappings" - compile "org.grails.plugins:views-json:$viewsJsonVersion" - compile "javax.servlet:javax.servlet-api:$servletApiVersion" - compile "io.micronaut:micronaut-http-client:$micronautVersion" - compileOnly "org.grails.plugins:converters:3.3.1" - testCompile "org.grails:grails-web-testing-support" - testCompile "cglib:cglib-nodep:3.3.0" + implementation "org.grails:grails-plugin-url-mappings" + implementation "org.grails.plugins:views-json:$viewsJsonVersion" + implementation 'io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0' + implementation "javax.servlet:javax.servlet-api:$servletApiVersion" + implementation "io.micronaut:micronaut-http-client:$micronautVersion" + implementation "org.grails.plugins:converters:3.3.1" + implementation 'com.github.javaparser:javaparser-core:3.25.5' + implementation "com.graphql-java:graphql-java:$graphqlJavaVersion" + testImplementation "org.grails:grails-web-testing-support" + testImplementation "cglib:cglib-nodep:3.3.0" profile "org.grails.profiles:web-plugin" compile project(":gorm-graphql") diff --git a/plugin/grails-app/controllers/org/grails/gorm/graphql/plugin/GraphqlController.groovy b/plugin/grails-app/controllers/org/grails/gorm/graphql/plugin/GraphqlController.groovy index eef63756..d66796e9 100644 --- a/plugin/grails-app/controllers/org/grails/gorm/graphql/plugin/GraphqlController.groovy +++ b/plugin/grails-app/controllers/org/grails/gorm/graphql/plugin/GraphqlController.groovy @@ -6,6 +6,8 @@ import graphql.ExecutionInput import graphql.ExecutionResult import graphql.GraphQL import groovy.transform.CompileStatic + + import org.springframework.context.MessageSource import org.springframework.http.HttpMethod diff --git a/plugin/src/main/groovy/org/grails/gorm/graphql/plugin/testing/GraphQLSpec.groovy b/plugin/src/main/groovy/org/grails/gorm/graphql/plugin/testing/GraphQLSpec.groovy index 93b70009..ee715582 100644 --- a/plugin/src/main/groovy/org/grails/gorm/graphql/plugin/testing/GraphQLSpec.groovy +++ b/plugin/src/main/groovy/org/grails/gorm/graphql/plugin/testing/GraphQLSpec.groovy @@ -4,8 +4,8 @@ import groovy.json.StreamingJsonBuilder import groovy.transform.TupleConstructor import io.micronaut.http.HttpRequest import io.micronaut.http.HttpResponse -import io.micronaut.http.client.RxHttpClient import io.micronaut.http.uri.UriBuilder +import io.micronaut.rxjava2.http.client.RxHttpClient import org.springframework.beans.factory.annotation.Value trait GraphQLSpec { diff --git a/plugin/src/main/resources/graphiql.html b/plugin/src/main/resources/graphiql.html index 9c3f0fce..e8e93679 100644 --- a/plugin/src/main/resources/graphiql.html +++ b/plugin/src/main/resources/graphiql.html @@ -38,8 +38,8 @@ copy them directly into your environment, or perhaps include them in your favored resource bundler. --> - - + + From 2c4be48ff296fe06d46f7500b679fb711a771fb3 Mon Sep 17 00:00:00 2001 From: Matthew Moss Date: Tue, 26 Sep 2023 11:04:34 -0500 Subject: [PATCH 02/19] Fix integration test compilation issue with example app --- examples/grails-multi-datastore-app/build.gradle | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/examples/grails-multi-datastore-app/build.gradle b/examples/grails-multi-datastore-app/build.gradle index 96a5510a..42d8b514 100755 --- a/examples/grails-multi-datastore-app/build.gradle +++ b/examples/grails-multi-datastore-app/build.gradle @@ -1,3 +1,7 @@ +repositories { + mavenCentral() +} + dependencies { implementation "org.springframework.boot:spring-boot-starter-logging" implementation "org.springframework.boot:spring-boot-autoconfigure" @@ -35,6 +39,7 @@ dependencies { testRuntime "org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1" testRuntime "net.sourceforge.htmlunit:htmlunit:2.18" testImplementation "org.grails:grails-test-mixins:3.3.0" + testImplementation "org.grails:grails-gorm-testing-support" implementation project(":grails-plugin-gorm-graphql-plugin") } @@ -43,6 +48,6 @@ bootRun { sourceResources sourceSets.main } -repositories { - mavenCentral() +tasks.withType(Test) { + useJUnitPlatform() } From 2776cceddfc3d91a41975fcbefe16486d125694b Mon Sep 17 00:00:00 2001 From: Emma Richardson <49138186+Emrichardsone@users.noreply.github.com> Date: Wed, 27 Sep 2023 11:28:40 -0500 Subject: [PATCH 03/19] updated dependencies, build success --- .../entity/arguments/ComplexArgument.groovy | 1 - .../graphql/entity/dsl/GraphQLMapping.groovy | 2 - .../entity/dsl/GraphQLPropertyMapping.groovy | 1 - .../entity/dsl/helpers/Arguable.groovy | 1 - .../entity/dsl/helpers/ComplexTyped.groovy | 1 - .../entity/operations/ComplexOperation.groovy | 1 - .../impl/ComplexGraphQLProperty.groovy | 1 - .../impl/PersistentGraphQLProperty.groovy | 1 - dep.txt | 6200 ----------------- .../grails-app/conf/application.yml | 1 + examples/grails-tenant-app/build.gradle | 1 + .../tenant/app/UserIntegrationSpec.groovy | 2 - gradle.properties | 9 +- 13 files changed, 7 insertions(+), 6215 deletions(-) delete mode 100644 dep.txt diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/arguments/ComplexArgument.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/arguments/ComplexArgument.groovy index 71a6e7a1..0aedf4a1 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/arguments/ComplexArgument.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/arguments/ComplexArgument.groovy @@ -1,7 +1,6 @@ package org.grails.gorm.graphql.entity.arguments import graphql.schema.GraphQLInputType -import groovy.transform.CompileStatic import groovy.transform.InheritConstructors import org.grails.datastore.mapping.model.MappingContext import org.grails.gorm.graphql.entity.dsl.helpers.ComplexTyped diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLMapping.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLMapping.groovy index 0e27cb6d..51eacc0c 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLMapping.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLMapping.groovy @@ -1,8 +1,6 @@ package org.grails.gorm.graphql.entity.dsl -import grails.compiler.GrailsCompileStatic import groovy.transform.CompileDynamic -import groovy.transform.CompileStatic import org.grails.gorm.graphql.entity.dsl.helpers.Deprecatable import org.grails.gorm.graphql.entity.dsl.helpers.Describable import org.grails.gorm.graphql.entity.dsl.helpers.ExecutesClosures diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy index 02270ae1..addab7f6 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy @@ -1,6 +1,5 @@ package org.grails.gorm.graphql.entity.dsl -import groovy.transform.CompileStatic import groovy.transform.builder.Builder import groovy.transform.builder.SimpleStrategy import org.grails.gorm.graphql.entity.dsl.helpers.Deprecatable diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/Arguable.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/Arguable.groovy index b36aa025..81cfd4d2 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/Arguable.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/Arguable.groovy @@ -1,7 +1,6 @@ package org.grails.gorm.graphql.entity.dsl.helpers import graphql.schema.GraphQLArgument -import groovy.transform.CompileStatic import org.grails.datastore.mapping.model.MappingContext import org.grails.gorm.graphql.entity.arguments.ComplexArgument import org.grails.gorm.graphql.entity.arguments.CustomArgument diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ComplexTyped.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ComplexTyped.groovy index ab935bbe..6076f083 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ComplexTyped.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ComplexTyped.groovy @@ -1,7 +1,6 @@ package org.grails.gorm.graphql.entity.dsl.helpers import graphql.schema.* -import groovy.transform.CompileStatic import org.grails.datastore.mapping.model.MappingContext import org.grails.gorm.graphql.entity.fields.ComplexField import org.grails.gorm.graphql.entity.fields.Field diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/operations/ComplexOperation.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/operations/ComplexOperation.groovy index ea1e4176..bd3c9f15 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/operations/ComplexOperation.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/operations/ComplexOperation.groovy @@ -1,7 +1,6 @@ package org.grails.gorm.graphql.entity.operations import graphql.schema.GraphQLOutputType -import groovy.transform.CompileStatic import org.grails.datastore.mapping.model.MappingContext import org.grails.gorm.graphql.entity.dsl.helpers.ComplexTyped import org.grails.gorm.graphql.entity.dsl.helpers.ExecutesClosures diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/ComplexGraphQLProperty.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/ComplexGraphQLProperty.groovy index aad03f8c..80cfd46f 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/ComplexGraphQLProperty.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/ComplexGraphQLProperty.groovy @@ -2,7 +2,6 @@ package org.grails.gorm.graphql.entity.property.impl import graphql.schema.GraphQLType import groovy.transform.AutoClone -import groovy.transform.CompileStatic import org.grails.gorm.graphql.entity.dsl.helpers.ComplexTyped import org.grails.gorm.graphql.entity.dsl.helpers.ExecutesClosures import org.grails.gorm.graphql.types.GraphQLOperationType diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy index 72a7fc52..3cccff78 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy @@ -4,7 +4,6 @@ import grails.gorm.validation.ConstrainedProperty import grails.gorm.validation.PersistentEntityValidator import graphql.schema.DataFetcher import graphql.schema.GraphQLType -import groovy.transform.CompileStatic import org.grails.datastore.mapping.model.MappingContext import org.grails.datastore.mapping.model.PersistentEntity import org.grails.datastore.mapping.model.PersistentProperty diff --git a/dep.txt b/dep.txt deleted file mode 100644 index 920124e4..00000000 --- a/dep.txt +++ /dev/null @@ -1,6200 +0,0 @@ - -> Task :examples-grails-multi-datastore-app:dependencies - ------------------------------------------------------------- -Project ':examples-grails-multi-datastore-app' ------------------------------------------------------------- - -agent -No dependencies - -annotationProcessor - Annotation processors and their dependencies for source set 'main'. -No dependencies - -apiElements - API elements for main. (n) -No dependencies - -archives - Configuration for archive artifacts. (n) -No dependencies - -bootArchives - Configuration for Spring Boot archive artifacts. (n) -No dependencies - -compileClasspath - Compile classpath for source set 'main'. -+--- org.grails.plugins:embedded-mongodb:2.0.1 -| +--- org.springframework.boot:spring-boot-starter-logging -> 2.7.8 -| | +--- ch.qos.logback:logback-classic:1.2.11 -| | | +--- ch.qos.logback:logback-core:1.2.11 -| | | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | +--- org.apache.logging.log4j:log4j-to-slf4j:2.17.2 -| | | +--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 -| | | \--- org.apache.logging.log4j:log4j-api:2.17.2 -| | \--- org.slf4j:jul-to-slf4j:1.7.36 -| | \--- org.slf4j:slf4j-api:1.7.36 -| +--- org.springframework.boot:spring-boot-autoconfigure -> 2.7.8 -| | \--- org.springframework.boot:spring-boot:2.7.8 -| | +--- org.springframework:spring-core:5.3.25 -| | | \--- org.springframework:spring-jcl:5.3.25 -| | \--- org.springframework:spring-context:5.3.25 -| | +--- org.springframework:spring-aop:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 -| | | | \--- org.springframework:spring-core:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-beans:5.3.25 (*) -| | +--- org.springframework:spring-core:5.3.25 (*) -| | \--- org.springframework:spring-expression:5.3.25 -| | \--- org.springframework:spring-core:5.3.25 (*) -| +--- org.grails:grails-core -> 5.3.2 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 -| | | \--- org.slf4j:slf4j-api:1.7.36 -| | +--- io.micronaut:micronaut-inject:3.8.4 -> 3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | +--- jakarta.inject:jakarta.inject-api:2.0.1 -| | | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 -| | | +--- io.micronaut:micronaut-core:3.2.0 -| | | | \--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | \--- org.yaml:snakeyaml:1.29 -> 1.30 -| | +--- javax.inject:javax.inject:1 -| | +--- io.micronaut.spring:micronaut-spring-context:4.5.0 -| | | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) -| | | +--- org.springframework:spring-framework-bom:5.3.25 -| | | | +--- org.springframework:spring-aop:5.3.25 (c) -| | | | +--- org.springframework:spring-beans:5.3.25 (c) -| | | | +--- org.springframework:spring-context:5.3.25 (c) -| | | | +--- org.springframework:spring-core:5.3.25 (c) -| | | | +--- org.springframework:spring-expression:5.3.25 (c) -| | | | +--- org.springframework:spring-jcl:5.3.25 (c) -| | | | +--- org.springframework:spring-jdbc:5.3.25 (c) -| | | | +--- org.springframework:spring-orm:5.3.25 (c) -| | | | +--- org.springframework:spring-test:5.3.25 (c) -| | | | +--- org.springframework:spring-tx:5.3.25 (c) -| | | | +--- org.springframework:spring-web:5.3.25 (c) -| | | | +--- org.springframework:spring-webmvc:5.3.25 (c) -| | | | \--- org.springframework:spring-context-support:5.3.25 (c) -| | | +--- org.springframework:spring-context:5.3.25 (*) -| | | +--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | | \--- io.micronaut:micronaut-core:3.2.0 (*) -| | | \--- io.micronaut.spring:micronaut-spring:4.5.0 -| | | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) -| | | +--- org.springframework:spring-framework-bom:5.3.25 (*) -| | | +--- org.springframework:spring-core:5.3.25 (*) -| | | +--- org.springframework:spring-tx:5.3.25 -| | | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | | \--- org.springframework:spring-core:5.3.25 (*) -| | | +--- org.springframework:spring-context:5.3.25 (*) -| | | \--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) -| | +--- io.micronaut.cache:micronaut-cache-core:3.5.0 -| | | +--- io.micronaut:micronaut-inject:3.5.4 -> 3.2.0 (*) -| | | +--- io.micronaut:micronaut-aop:3.5.4 -> 3.2.0 (*) -| | | +--- io.micronaut:micronaut-http:3.5.4 -> 3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | | \--- io.micronaut:micronaut-core-reactive:3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-core:3.2.0 (*) -| | | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| | | \--- io.micronaut:micronaut-runtime:3.5.4 -> 3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | +--- io.micronaut:micronaut-aop:3.2.0 (*) -| | | +--- io.micronaut:micronaut-context:3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | | +--- io.micronaut:micronaut-aop:3.2.0 (*) -| | | | \--- javax.validation:validation-api:2.0.1.Final -| | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (*) -| | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 -| | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | | +--- io.micronaut:micronaut-json-core:3.2.0 -| | | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | | | +--- io.micronaut:micronaut-context:3.2.0 (*) -| | | | | | \--- io.micronaut:micronaut-http:3.2.0 (*) -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 -| | | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 -| | | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) -| | | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) -| | | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) -| | | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) -| | | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) -| | | | | \--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 -| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) -| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | \--- javax.validation:validation-api:2.0.1.Final -| | +--- io.micronaut:micronaut-runtime:3.8.4 -> 3.2.0 (*) -| | +--- javax.persistence:javax.persistence-api:2.2 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.springframework.boot:spring-boot:2.7.8 (*) -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-tx:5.3.25 (*) -| | +--- org.springframework:spring-beans:5.3.25 (*) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | +--- org.grails:grails-bootstrap:5.3.2 -> 5.3.3 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.codehaus.groovy:groovy-xml:3.0.11 -| | | | \--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.codehaus.groovy:groovy-templates:3.0.11 -| | | | \--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.yaml:snakeyaml:1.33 -> 1.30 -| | | \--- io.micronaut:micronaut-inject:3.8.5 -> 3.2.0 (*) -| | +--- org.grails:grails-spring:5.3.2 -> 5.3.3 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.springframework:spring-tx:5.3.25 (*) -| | | +--- org.springframework:spring-web:5.3.25 -| | | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | | \--- org.springframework:spring-core:5.3.25 (*) -| | | +--- org.springframework:spring-context:5.3.25 (*) -| | | \--- org.grails:grails-bootstrap:5.3.3 (*) -| | +--- org.grails:grails-datastore-core:7.3.3 -| | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- javax.transaction:jta:1.1 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- javax.persistence:javax.persistence-api:2.2 -| | | +--- org.springframework:spring-core:5.3.25 (*) -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | +--- org.springframework:spring-tx:5.3.25 (*) -| | | \--- org.springframework:spring-context:5.3.25 (*) -| | +--- org.apache.ant:ant:1.10.13 -| | | \--- org.apache.ant:ant-launcher:1.10.13 -| | +--- jline:jline:2.14.6 -| | \--- org.fusesource.jansi:jansi:1.18 -| +--- org.grails.profiles:plugin -> 5.0.1 -| +--- org.grails:grails-gorm-testing-support -> 2.4.1 -| | +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | +--- org.grails:grails-plugin-domain-class:5.1.2 -> 5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 -| | | | \--- org.springframework:spring-core:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | +--- org.grails:grails-spring:5.3.3 (*) -| | | +--- org.grails:grails-plugin-validation:5.3.3 -| | | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | | +--- org.springframework:spring-test:5.3.25 (*) -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | | \--- org.grails:grails-web:5.3.3 -| | | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | | +--- org.springframework:spring-test:5.3.25 (*) -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | +--- org.grails:grails-web-common:5.3.3 -| | | | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | | | +--- org.springframework:spring-test:5.3.25 (*) -| | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | | | +--- org.grails:grails-databinding:5.3.3 -| | | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) -| | | | | +--- org.grails:grails-encoder:5.3.3 -| | | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | | | | +--- org.codehaus.groovy:groovy-json:3.0.11 -| | | | | | | \--- org.codehaus.groovy:groovy:3.0.11 -| | | | | | \--- org.springframework:spring-web:5.3.25 (*) -| | | | | +--- org.grails:grails-gsp:5.2.2 -| | | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | | | +--- org.grails:grails-taglib:5.2.2 -| | | | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | | | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | | | \--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | | | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | | | | +--- org.springframework:spring-webmvc:5.3.25 -| | | | | | +--- org.springframework:spring-aop:5.3.25 (*) -| | | | | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | | | | +--- org.springframework:spring-context:5.3.25 (*) -| | | | | | +--- org.springframework:spring-core:5.3.25 (*) -| | | | | | +--- org.springframework:spring-expression:5.3.25 (*) -| | | | | | \--- org.springframework:spring-web:5.3.25 (*) -| | | | | \--- org.springframework:spring-context-support:5.3.25 -| | | | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | | | +--- org.springframework:spring-context:5.3.25 (*) -| | | | | \--- org.springframework:spring-core:5.3.25 (*) -| | | | +--- org.grails:grails-web-databinding:5.3.3 -| | | | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | | | +--- org.springframework:spring-test:5.3.25 (*) -| | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | | +--- org.grails:grails-databinding:5.3.3 (*) -| | | | | \--- org.grails:grails-web-common:5.3.3 (*) -| | | | +--- org.grails:grails-web-fileupload:5.3.3 -| | | | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | | | +--- org.springframework:spring-test:5.3.25 (*) -| | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | | | \--- commons-fileupload:commons-fileupload:1.5 -| | | | | \--- commons-io:commons-io:2.11.0 -| | | | +--- org.grails:grails-web-url-mappings:5.3.3 -| | | | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | | | +--- org.springframework:spring-test:5.3.25 (*) -| | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 -| | | | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | | | | | \--- commons-validator:commons-validator:1.7 -| | | | | | \--- commons-collections:commons-collections:3.2.2 -| | | | | +--- org.fusesource.jansi:jansi:1.18 -| | | | | \--- jline:jline:2.14.6 -| | | | +--- org.grails:grails-web-mvc:5.3.3 -| | | | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | | | +--- org.springframework:spring-test:5.3.25 (*) -| | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | | | +--- org.grails:grails-web-url-mappings:5.3.3 (*) -| | | | | \--- org.grails:grails-web-sitemesh:5.2.2 -| | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | | | \--- opensymphony:sitemesh:2.4.2 -| | | | +--- org.grails:grails-web-gsp:5.2.2 -| | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | | | +--- org.grails:grails-gsp:5.2.2 (*) -| | | | | +--- org.grails:grails-web-common:5.2.5 -> 5.3.3 (*) -| | | | | +--- org.grails:grails-web-taglib:5.2.2 -| | | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | | | \--- org.grails:grails-taglib:5.2.2 (*) -| | | | | \--- org.grails:grails-web-sitemesh:5.2.2 (*) -| | | | \--- org.grails:grails-web-sitemesh:5.2.2 (*) -| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm:7.3.3 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | | | \--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm-support:7.3.3 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-gorm:7.3.3 (*) -| | | | +--- org.grails:grails-core:5.2.4 -> 5.3.2 (*) -| | | | \--- org.grails:grails-bootstrap:5.2.4 -> 5.3.3 (*) -| | | \--- org.grails:grails-datastore-core:7.3.3 (*) -| | +--- org.grails:grails-datastore-gorm-test:7.2.0 -> 7.3.3 -| | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.grails:grails-datastore-gorm:7.3.3 (*) -| | | \--- org.grails:grails-datastore-core:7.3.3 (*) -| | \--- org.grails:grails-testing-support:2.4.1 -| | +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | +--- org.springframework:spring-test:5.3.16 -> 5.3.25 (*) -| | +--- org.grails:grails-plugin-codecs:5.1.2 -> 5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web:5.3.3 (*) -| | | \--- org.grails:grails-encoder:5.3.3 (*) -| | +--- org.grails.plugins:async:4.0.0 -| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | +--- org.grails:grails-plugin-controllers:4.0.0 -> 5.3.3 -| | | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | | +--- org.springframework:spring-test:5.3.25 (*) -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | | +--- org.grails:grails-web:5.3.3 (*) -| | | | +--- org.grails:grails-plugin-mimetypes:5.3.3 -| | | | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | | | +--- org.springframework:spring-test:5.3.25 (*) -| | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | | \--- org.grails:grails-web:5.3.3 (*) -| | | | +--- org.grails:grails-plugin-validation:5.3.3 (*) -| | | | +--- org.grails:grails-plugin-domain-class:5.3.3 (*) -| | | | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.9 -> 2.7.8 (*) -| | | +--- org.grails.plugins:events:4.0.0 -| | | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.grails:grails-core:4.0.0 -> 5.3.2 (*) -| | | | +--- org.grails:grails-events:4.0.0 -| | | | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | | | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | | +--- org.springframework:spring-context:5.1.8.RELEASE -> 5.3.25 (*) -| | | | | \--- org.springframework:spring-tx:5.1.8.RELEASE -> 5.3.25 (*) -| | | | +--- org.grails:grails-events-transform:4.0.0 -| | | | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | | | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | | +--- org.grails:grails-events:4.0.0 (*) -| | | | | \--- org.grails:grails-datastore-gorm:7.0.2.RELEASE -> 7.3.3 (*) -| | | | \--- org.grails:grails-events-compat:4.0.0 -| | | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.grails:grails-events:4.0.0 (*) -| | | | \--- org.grails:grails-events-transform:4.0.0 (*) -| | | \--- org.grails:grails-async:4.0.0 -| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | | \--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.grails:grails-datastore-gorm:7.2.0 -> 7.3.3 (*) -| | +--- org.grails:grails-test:5.1.2 -> 5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.springframework:spring-tx:5.3.25 (*) -| | | +--- org.springframework.boot:spring-boot-test:2.7.9 -> 2.7.8 -| | | | \--- org.springframework.boot:spring-boot:2.7.8 (*) -| | | +--- org.codehaus.groovy:groovy-test-junit5:3.0.11 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | \--- org.junit.jupiter:junit-jupiter-api:5.8.2 -| | | | +--- org.junit:junit-bom:5.8.2 -| | | | | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 (c) -| | | | | +--- org.junit.platform:junit-platform-commons:1.8.2 (c) -| | | | | +--- org.junit.platform:junit-platform-engine:1.8.2 (c) -| | | | | +--- org.junit.platform:junit-platform-launcher:1.8.2 (c) -| | | | | +--- org.junit.platform:junit-platform-runner:1.8.2 (c) -| | | | | \--- org.junit.platform:junit-platform-suite-api:1.8.2 (c) -| | | | +--- org.opentest4j:opentest4j:1.2.0 -| | | | +--- org.junit.platform:junit-platform-commons:1.8.2 -| | | | | +--- org.junit:junit-bom:5.8.2 (*) -| | | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | +--- org.codehaus.groovy:groovy-test:3.0.11 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | \--- junit:junit:4.13.2 -| | | | \--- org.hamcrest:hamcrest-core:1.3 -> 2.2 -| | | | \--- org.hamcrest:hamcrest:2.2 -| | | +--- org.spockframework:spock-core:2.1-groovy-3.0 -| | | | +--- org.codehaus.groovy:groovy:3.0.9 -> 3.0.11 -| | | | +--- org.junit:junit-bom:5.8.1 -> 5.8.2 (*) -| | | | +--- org.junit.platform:junit-platform-engine -> 1.8.2 -| | | | | +--- org.junit:junit-bom:5.8.2 (*) -| | | | | +--- org.opentest4j:opentest4j:1.2.0 -| | | | | +--- org.junit.platform:junit-platform-commons:1.8.2 (*) -| | | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | | \--- org.hamcrest:hamcrest:2.2 -| | | +--- org.junit.platform:junit-platform-runner:1.9.2 -> 1.8.2 -| | | | +--- org.junit:junit-bom:5.8.2 (*) -| | | | +--- junit:junit:4.13.2 (*) -| | | | +--- org.junit.platform:junit-platform-launcher:1.8.2 -| | | | | +--- org.junit:junit-bom:5.8.2 (*) -| | | | | +--- org.junit.platform:junit-platform-engine:1.8.2 (*) -| | | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | | +--- org.junit.platform:junit-platform-suite-api:1.8.2 -| | | | | +--- org.junit:junit-bom:5.8.2 (*) -| | | | | +--- org.junit.platform:junit-platform-commons:1.8.2 (*) -| | | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | | \--- org.apiguardian:apiguardian-api:1.1.2 -| | | +--- org.grails:grails-plugin-mimetypes:5.3.3 (*) -| | | +--- org.grails:grails-web:5.3.3 (*) -| | | +--- org.grails.plugins:converters:4.0.0 -| | | | \--- org.apache.commons:commons-lang3:3.0 -> 3.12.0 -| | | +--- jline:jline:2.14.6 -| | | +--- org.fusesource.jansi:jansi:1.18 -| | | +--- org.apache.ant:ant:1.10.13 (*) -| | | +--- org.apache.ant:ant-junit:1.10.13 -| | | | +--- org.apache.ant:ant:1.10.13 (*) -| | | | \--- junit:junit:4.13.1 -> 4.13.2 (*) -| | | \--- org.objenesis:objenesis:3.3 -| | +--- org.springframework.boot:spring-boot-test:2.6.4 -> 2.7.8 (*) -| | +--- org.spockframework:spock-spring:2.1-groovy-3.0 -| | +--- org.spockframework:spock-core:2.1-groovy-3.0 (*) -| | +--- org.codehaus.groovy:groovy-test-junit5:3.0.7 -> 3.0.11 (*) -| | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 (*) -| | \--- org.junit.platform:junit-platform-runner:1.8.2 (*) -| +--- de.flapdoodle.embed:de.flapdoodle.embed.mongo:2.2.0 -> 3.4.11 -| | +--- de.flapdoodle.embed:de.flapdoodle.embed.process:3.1.15 -| | | +--- de.flapdoodle:de.flapdoodle.os:1.1.12 -| | | \--- org.apache.commons:commons-compress:1.21 -> 1.10 -| | \--- de.flapdoodle.embed:de.flapdoodle.embed.mongo.packageresolver:1.0.10 -| \--- org.grails.plugins:mongodb -> 7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | +--- org.springframework:spring-web:5.3.25 (*) -| | \--- org.springframework:spring-context:5.3.25 (*) -| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm-mongodb-ext:7.3.0 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | \--- org.mongodb:mongodb-driver-sync:4.5.0 -| | +--- org.mongodb:bson:4.5.0 -> 4.6.1 -| | \--- org.mongodb:mongodb-driver-core:4.5.0 -| | \--- org.mongodb:bson:4.5.0 -> 4.6.1 -| \--- org.grails:grails-datastore-gorm-mongodb:7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.mongodb:mongodb-driver-sync:4.5.0 (*) -| +--- org.grails:grails-datastore-gorm-validation:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) -| \--- org.grails:grails-datastore-gorm-bson:7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) -| \--- org.mongodb:bson:4.5.0 -> 4.6.1 -+--- org.grails:grails-gorm-testing-support -> 2.4.1 (*) -+--- org.grails.plugins:geb -> 3.0.0 -| +--- org.grails:grails-core:5.1.8 -> 5.3.2 (*) -| \--- org.gebish:geb-spock:5.1 -| +--- org.gebish:geb-core:5.1 -| | +--- org.seleniumhq.selenium:selenium-api:3.141.59 -> 4.1.4 -| | +--- org.gebish:geb-ast:5.1 -| | | +--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 (c) -| | | | +--- org.codehaus.groovy:groovy-sql:3.0.11 (c) -| | | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (c) -| | | | +--- org.codehaus.groovy:groovy-test:3.0.11 (c) -| | | | +--- org.codehaus.groovy:groovy-test-junit5:3.0.11 (c) -| | | | +--- org.codehaus.groovy:groovy-xml:3.0.11 (c) -| | | | +--- org.codehaus.groovy:groovy-json:3.0.11 (c) -| | | | \--- org.codehaus.groovy:groovy-macro:3.0.11 (c) -| | | +--- org.codehaus.groovy:groovy -> 3.0.11 -| | | +--- org.codehaus.groovy:groovy-templates -> 3.0.11 (*) -| | | \--- org.codehaus.groovy:groovy-macro -> 3.0.11 -| | | \--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.gebish:geb-waiting:5.1 -| | | +--- org.gebish:geb-implicit-assertions:5.1 -| | | | +--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) -| | | | +--- org.codehaus.groovy:groovy -> 3.0.11 -| | | | \--- org.codehaus.groovy:groovy-templates -> 3.0.11 (*) -| | | +--- org.gebish:geb-exceptions:5.1 -| | | | +--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) -| | | | +--- org.codehaus.groovy:groovy -> 3.0.11 -| | | | \--- org.codehaus.groovy:groovy-templates -> 3.0.11 (*) -| | | +--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) -| | | +--- org.codehaus.groovy:groovy -> 3.0.11 -| | | \--- org.codehaus.groovy:groovy-templates -> 3.0.11 (*) -| | +--- org.threeten:threeten-extra:1.4 -| | +--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) -| | +--- org.codehaus.groovy:groovy -> 3.0.11 -| | \--- org.codehaus.groovy:groovy-templates -> 3.0.11 (*) -| +--- org.spockframework:spock-core:2.0-groovy-3.0 -> 2.1-groovy-3.0 (*) -| +--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) -| +--- org.codehaus.groovy:groovy -> 3.0.11 -| \--- org.codehaus.groovy:groovy-templates -> 3.0.11 (*) -+--- org.grails:grails-web-testing-support -> 2.4.1 -| +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| +--- org.grails.plugins:gsp:5.1.0 -> 5.2.2 -| | +--- org.grails:grails-web-gsp-taglib:5.2.2 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | \--- org.grails:grails-web-jsp:5.2.2 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | +--- org.grails:grails-web-common:5.2.5 -> 5.3.3 (*) -| | | \--- org.grails:grails-web-gsp:5.2.2 (*) -| | +--- commons-lang:commons-lang:2.6 -| | \--- org.grails:grails-plugin-codecs:5.2.5 -> 5.3.3 (*) -| +--- org.grails:grails-plugin-rest:5.1.2 -> 5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- javax.xml.bind:jaxb-api:2.3.1 -| | | \--- javax.activation:javax.activation-api:1.2.0 -| | +--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-controllers:5.3.3 (*) -| | +--- org.grails:grails-plugin-datasource:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.springframework:spring-jdbc:5.3.25 -| | | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | | +--- org.springframework:spring-core:5.3.25 (*) -| | | | \--- org.springframework:spring-tx:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy-sql:3.0.11 -| | | | \--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.springframework:spring-context:5.3.25 (*) -| | | +--- org.grails:grails-datastore-gorm:7.3.3 (*) -| | | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | | \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | \--- org.grails.plugins:converters:4.0.0 (*) -| +--- org.grails:grails-plugin-interceptors:5.1.2 -> 5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.grails:grails-plugin-controllers:5.3.3 (*) -| | \--- org.grails:grails-plugin-url-mappings:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-controllers:5.3.3 (*) -| | \--- junit:junit:4.13.2 (*) -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.grails:grails-testing-support:2.4.1 (*) -| \--- org.javassist:javassist:3.28.0-GA -+--- org.springframework.boot:spring-boot-starter-logging -> 2.7.8 (*) -+--- org.springframework.boot:spring-boot-autoconfigure -> 2.7.8 (*) -+--- org.grails:grails-core:5.3.2 (*) -+--- org.springframework.boot:spring-boot-starter-actuator -> 2.7.8 -| +--- org.springframework.boot:spring-boot-starter:2.7.8 -| | +--- org.springframework.boot:spring-boot:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot-starter-logging:2.7.8 (*) -| | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 -| | +--- org.springframework:spring-core:5.3.25 (*) -| | \--- org.yaml:snakeyaml:1.30 -| +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.7.8 -| | +--- org.springframework.boot:spring-boot-actuator:2.7.8 -| | | \--- org.springframework.boot:spring-boot:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot:2.7.8 (*) -| | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) -| \--- io.micrometer:micrometer-core:1.9.7 -| \--- org.hdrhistogram:HdrHistogram:2.1.12 -+--- org.springframework.boot:spring-boot-starter-tomcat -> 2.7.8 -| +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 -| +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 -| +--- org.apache.tomcat.embed:tomcat-embed-el:9.0.71 -| \--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.71 -| \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 -+--- org.grails:grails-plugin-url-mappings -> 5.3.3 (*) -+--- org.grails:grails-plugin-rest -> 5.3.3 (*) -+--- org.grails:grails-plugin-codecs -> 5.3.3 (*) -+--- org.grails:grails-plugin-interceptors -> 5.3.3 (*) -+--- org.grails:grails-plugin-services -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails:grails-plugin-datasource:5.3.3 (*) -+--- org.grails:grails-plugin-datasource -> 5.3.3 (*) -+--- org.grails:grails-plugin-databinding -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails:grails-web:5.3.3 (*) -+--- org.grails:grails-web-boot -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| \--- org.grails:grails-web-common:5.3.3 (*) -+--- org.grails:grails-logging -> 5.3.3 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -+--- org.grails.plugins:cache -> 5.0.1 -| +--- com.bertramlabs.plugins:asset-pipeline-grails:3.0.7 -| +--- gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.4 -| | +--- org.ysb33r.gradle:grolifant:0.11 -| | \--- org.apache.maven:maven-artifact:3.6.3 -| | +--- org.codehaus.plexus:plexus-utils:3.2.1 -| | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 -| +--- org.codehaus.gpars:gpars:1.2.1 -| | +--- org.multiverse:multiverse-core:0.7.0 -| | \--- org.codehaus.jsr166-mirror:jsr166y:1.7.0 -| +--- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2 -| \--- org.javassist:javassist:3.27.0-GA -> 3.28.0-GA -+--- org.grails.plugins:async -> 4.0.0 (*) -+--- org.grails.plugins:hibernate5 -> 7.3.0 -| +--- org.springframework.boot:spring-boot:2.7.0 -> 2.7.8 (*) -| +--- org.springframework:spring-orm:5.3.20 -> 5.3.25 -| | +--- org.springframework:spring-beans:5.3.25 (*) -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-jdbc:5.3.25 (*) -| | \--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.hibernate:hibernate-core:5.6.9.Final -> 5.6.11.Final -| | +--- org.jboss.logging:jboss-logging:3.4.3.Final -| | +--- javax.persistence:javax.persistence-api:2.2 -| | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 -| | +--- antlr:antlr:2.7.7 -| | +--- org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -| | +--- org.jboss:jandex:2.4.2.Final -| | +--- com.fasterxml:classmate:1.5.1 -| | +--- javax.activation:javax.activation-api:1.2.0 -| | +--- org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -| | | \--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.4.3.Final -| | +--- javax.xml.bind:jaxb-api:2.3.1 (*) -| | \--- org.glassfish.jaxb:jaxb-runtime:2.3.1 -> 2.3.7 -| | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 -| | +--- org.glassfish.jaxb:txw2:2.3.7 -| | \--- com.sun.istack:istack-commons-runtime:3.0.12 -| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) -| \--- org.grails:grails-datastore-gorm-hibernate5:7.3.0 -> 7.2.2 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 -| +--- org.grails:grails-datastore-gorm:7.2.1 -> 7.3.3 (*) -| +--- org.springframework:spring-orm:5.3.16 -> 5.3.25 (*) -| +--- org.hibernate:hibernate-core:5.6.5.Final -> 5.6.11.Final (*) -| +--- org.hibernate:hibernate-validator:6.2.3.Final -| | \--- org.hibernate.validator:hibernate-validator:6.2.3.Final -> 6.2.5.Final -| | +--- jakarta.validation:jakarta.validation-api:2.0.2 -| | +--- org.jboss.logging:jboss-logging:3.4.1.Final -> 3.4.3.Final -| | \--- com.fasterxml:classmate:1.5.1 -| \--- javax.validation:validation-api:2.0.1.Final -+--- org.hibernate:hibernate-core:5.6.11.Final (*) -+--- org.grails.plugins:mongodb -> 7.3.0 (*) -+--- org.grails.plugins:views-json -> 2.3.2 -| +--- org.grails:grails-core:5.1.8 -> 5.3.2 (*) -| \--- org.grails:views-core:2.3.2 -| +--- org.codehaus.groovy:groovy-bom:3.0.11 (*) -| +--- org.grails:grails-encoder:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-web-common:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-web-url-mappings:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-plugin-rest:5.1.8 -> 5.3.3 (*) -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 -| | +--- org.checkerframework:checker-qual:3.19.0 -| | \--- com.google.errorprone:error_prone_annotations:2.10.0 -| \--- javax.servlet:javax.servlet-api:4.0.1 -+--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 -| +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) -| +--- io.micronaut.rxjava2:micronaut-rxjava2:1.2.0 -| | +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-runtime:3.3.0 -> 3.2.0 (*) -| | \--- io.reactivex.rxjava2:rxjava:2.2.21 -| | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| \--- io.micronaut:micronaut-http-client:3.3.0 -> 3.2.0 -| +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| +--- io.micronaut:micronaut-runtime:3.2.0 (*) -| +--- io.micronaut:micronaut-http-client-core:3.2.0 -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | \--- io.micronaut:micronaut-runtime:3.2.0 (*) -| +--- io.micronaut:micronaut-websocket:3.2.0 -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | +--- io.micronaut:micronaut-http-client-core:3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | \--- io.micronaut:micronaut-aop:3.2.0 (*) -| +--- io.micronaut:micronaut-http-netty:3.2.0 -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | +--- io.micronaut:micronaut-websocket:3.2.0 (*) -| | +--- io.micronaut:micronaut-buffer-netty:3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-core:3.2.0 (*) -| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | \--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final -| | | \--- io.netty:netty-common:4.1.87.Final -| | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-resolver:4.1.87.Final -| | | | \--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-codec:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-transport:4.1.87.Final (*) -| | | \--- io.netty:netty-handler:4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-resolver:4.1.87.Final (*) -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-transport:4.1.87.Final (*) -| | | \--- io.netty:netty-codec:4.1.87.Final (*) -| | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | +--- io.netty:netty-codec:4.1.87.Final (*) -| | | +--- io.netty:netty-handler:4.1.87.Final (*) -| | | \--- io.netty:netty-codec-http:4.1.87.Final (*) -| | \--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (*) -| \--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final -| +--- io.netty:netty-common:4.1.87.Final -| +--- io.netty:netty-buffer:4.1.87.Final (*) -| +--- io.netty:netty-transport:4.1.87.Final (*) -| +--- io.netty:netty-codec:4.1.87.Final (*) -| +--- io.netty:netty-codec-socks:4.1.87.Final -| | +--- io.netty:netty-common:4.1.87.Final -| | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | +--- io.netty:netty-transport:4.1.87.Final (*) -| | \--- io.netty:netty-codec:4.1.87.Final (*) -| \--- io.netty:netty-codec-http:4.1.87.Final (*) -+--- org.grails.plugins:views-json-templates -> 2.3.2 -| \--- org.grails.plugins:views-json:2.3.2 (*) -+--- com.graphql-java:graphql-java:20.6 -| +--- com.graphql-java:java-dataloader:3.2.0 -| | \--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 -| \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -+--- org.apache.commons:commons-compress:1.10 -\--- project :grails-plugin-gorm-graphql-plugin - \--- project :gorm-graphql - +--- org.codehaus.groovy:groovy:3.0.11 - \--- org.slf4j:slf4j-api:1.7.36 - -compileOnly - Compile only dependencies for source set 'main'. (n) -+--- org.grails.plugins:embedded-mongodb:2.0.1 (n) -+--- org.grails:grails-gorm-testing-support (n) -+--- org.grails.plugins:geb (n) -\--- org.grails:grails-web-testing-support (n) - -console -\--- org.grails:grails-console -> 5.3.3 - +--- org.fusesource.jansi:jansi:1.18 - +--- jline:jline:2.14.6 - +--- net.java.dev.jna:jna:5.13.0 - +--- org.codehaus.groovy:groovy:3.0.11 - +--- org.slf4j:slf4j-api:1.7.36 - +--- org.slf4j:jcl-over-slf4j:1.7.36 - | \--- org.slf4j:slf4j-api:1.7.36 - +--- org.grails:grails-core:5.3.3 - | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 - | | +--- org.checkerframework:checker-qual:3.19.0 - | | \--- com.google.errorprone:error_prone_annotations:2.10.0 - | +--- org.codehaus.groovy:groovy:3.0.11 - | +--- org.slf4j:slf4j-api:1.7.36 - | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) - | +--- io.micronaut:micronaut-inject:3.8.5 -> 3.2.0 - | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 - | | +--- javax.annotation:javax.annotation-api:1.3.2 - | | +--- jakarta.inject:jakarta.inject-api:2.0.1 - | | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 - | | +--- io.micronaut:micronaut-core:3.2.0 - | | | \--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 - | | \--- org.yaml:snakeyaml:1.29 -> 1.30 - | +--- javax.inject:javax.inject:1 - | +--- io.micronaut.spring:micronaut-spring-context:4.5.0 - | | +--- io.micronaut.cache:micronaut-cache-core:3.5.0 - | | | +--- io.projectreactor:reactor-core:3.4.21 -> 3.4.26 - | | | | \--- org.reactivestreams:reactive-streams:1.0.4 - | | | +--- io.micronaut:micronaut-bom:3.5.4 -> 3.2.0 - | | | | +--- org.codehaus.groovy:groovy-bom:3.0.9 -> 3.0.11 - | | | | | +--- org.codehaus.groovy:groovy:3.0.11 (c) - | | | | | +--- org.codehaus.groovy:groovy-console:3.0.11 (c) - | | | | | +--- org.codehaus.groovy:groovy-groovysh:3.0.11 (c) - | | | | | +--- org.codehaus.groovy:groovy-swing:3.0.11 (c) - | | | | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (c) - | | | | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (c) - | | | | +--- io.grpc:grpc-bom:1.39.0 - | | | | +--- com.fasterxml.jackson:jackson-bom:2.12.4 -> 2.13.4 - | | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) - | | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) - | | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) - | | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) - | | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) - | | | | +--- org.junit:junit-bom:5.7.2 - | | | | +--- org.jetbrains.kotlin:kotlin-bom:1.6.0 - | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.5.1 - | | | | +--- io.ktor:ktor-bom:1.6.1 - | | | | +--- io.micrometer:micrometer-bom:1.8.0 - | | | | +--- io.micronaut.aws:micronaut-aws-bom:3.0.4 - | | | | +--- io.micronaut.cache:micronaut-cache-bom:3.0.0 - | | | | | +--- io.micronaut.cache:micronaut-cache-core:3.0.0 -> 3.5.0 (c) - | | | | | \--- com.github.ben-manes.caffeine:caffeine:2.9.1 -> 2.9.3 (c) - | | | | +--- io.micronaut.coherence:micronaut-coherence-bom:3.0.1 - | | | | +--- io.micronaut.data:micronaut-data-bom:3.2.0 - | | | | +--- io.micronaut.groovy:micronaut-groovy-bom:3.0.0 - | | | | | \--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) - | | | | +--- io.micronaut.micrometer:micronaut-micrometer-bom:4.1.0 - | | | | | \--- io.micrometer:micrometer-bom:1.8.0 - | | | | +--- io.micronaut.oraclecloud:micronaut-oraclecloud-bom:2.0.3 - | | | | +--- io.micronaut.r2dbc:micronaut-r2dbc-bom:2.0.0 - | | | | | \--- io.r2dbc:r2dbc-bom:Arabba-SR9 - | | | | +--- io.micronaut.sql:micronaut-sql-bom:4.0.4 - | | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 - | | | | | +--- org.junit:junit-bom:5.7.2 - | | | | | \--- org.spockframework:spock-bom:2.0-groovy-3.0 - | | | | +--- io.micronaut.views:micronaut-views-bom:3.0.1 - | | | | +--- io.netty:netty-bom:4.1.70.Final - | | | | +--- com.google.protobuf:protobuf-bom:3.17.2 - | | | | +--- org.testcontainers:testcontainers-bom:1.16.1 - | | | | +--- io.micronaut:micronaut-aop:3.2.0 (c) - | | | | +--- io.micronaut:micronaut-context:3.2.0 (c) - | | | | +--- io.micronaut:micronaut-core:3.2.0 (c) - | | | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (c) - | | | | +--- io.micronaut:micronaut-http:3.2.0 (c) - | | | | +--- io.micronaut:micronaut-inject:3.2.0 (c) - | | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 (c) - | | | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 (c) - | | | | +--- io.micronaut:micronaut-runtime:3.2.0 (c) - | | | | +--- org.grails:grails-datastore-core:7.1.0.M6 -> 7.3.3 (c) - | | | | +--- org.codehaus.groovy:groovy:3.0.9 -> 3.0.11 (c) - | | | | +--- org.codehaus.groovy:groovy-templates:3.0.9 -> 3.0.11 (c) - | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 (c) - | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 (c) - | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 (c) - | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 (c) - | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 (c) - | | | | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 (c) - | | | | +--- javax.annotation:javax.annotation-api:1.3.2 (c) - | | | | +--- net.java.dev.jna:jna:5.3.1 -> 5.13.0 (c) - | | | | +--- io.micronaut.spring:micronaut-spring:4.0.0 -> 4.5.0 (c) - | | | | +--- io.micronaut.spring:micronaut-spring-context:4.0.0 -> 4.5.0 (c) - | | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 (c) - | | | | +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 (c) - | | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (c) - | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 (c) - | | | | +--- org.yaml:snakeyaml:1.29 -> 1.30 (c) - | | | | +--- org.springframework:spring-core:5.3.9 -> 5.3.25 (c) - | | | | +--- org.springframework:spring-context:5.3.9 -> 5.3.25 (c) - | | | | +--- org.springframework:spring-tx:5.3.9 -> 5.3.25 (c) - | | | | +--- javax.validation:validation-api:2.0.1.Final (c) - | | | | \--- io.micronaut:micronaut-json-core:3.2.0 (c) - | | | +--- io.micronaut:micronaut-inject:3.5.4 -> 3.2.0 (*) - | | | +--- io.micronaut:micronaut-aop:3.5.4 -> 3.2.0 - | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 - | | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) - | | | | \--- io.micronaut:micronaut-core:3.2.0 (*) - | | | +--- io.micronaut:micronaut-http:3.5.4 -> 3.2.0 - | | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) - | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 - | | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) - | | | | \--- io.micronaut:micronaut-core-reactive:3.2.0 - | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 - | | | | +--- io.micronaut:micronaut-core:3.2.0 (*) - | | | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 - | | | \--- io.micronaut:micronaut-runtime:3.5.4 -> 3.2.0 - | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 - | | | +--- io.micronaut:micronaut-http:3.2.0 (*) - | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) - | | | +--- io.micronaut:micronaut-aop:3.2.0 (*) - | | | +--- io.micronaut:micronaut-context:3.2.0 - | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 - | | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) - | | | | +--- io.micronaut:micronaut-aop:3.2.0 (*) - | | | | \--- javax.validation:validation-api:2.0.1.Final - | | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (*) - | | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 - | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 - | | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 - | | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 - | | | | | +--- io.micronaut:micronaut-json-core:3.2.0 - | | | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 - | | | | | | +--- io.micronaut:micronaut-context:3.2.0 (*) - | | | | | | \--- io.micronaut:micronaut-http:3.2.0 (*) - | | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 - | | | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) - | | | | | \--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 - | | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) - | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 - | | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) - | | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) - | | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) - | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 - | | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) - | | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) - | | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) - | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 - | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) - | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) - | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) - | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) - | | | +--- javax.validation:validation-api:2.0.1.Final - | | | \--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) - | | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) - | | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) - | | +--- org.springframework:spring-framework-bom:5.3.25 - | | | +--- org.springframework:spring-aop:5.3.25 (c) - | | | +--- org.springframework:spring-beans:5.3.25 (c) - | | | +--- org.springframework:spring-context:5.3.25 (c) - | | | +--- org.springframework:spring-core:5.3.25 (c) - | | | +--- org.springframework:spring-expression:5.3.25 (c) - | | | +--- org.springframework:spring-jcl:5.3.25 (c) - | | | +--- org.springframework:spring-test:5.3.25 (c) - | | | +--- org.springframework:spring-tx:5.3.25 (c) - | | | \--- org.springframework:spring-web:5.3.25 (c) - | | +--- org.springframework:spring-context:5.3.25 - | | | +--- org.springframework:spring-aop:5.3.25 - | | | | +--- org.springframework:spring-beans:5.3.25 - | | | | | \--- org.springframework:spring-core:5.3.25 - | | | | | \--- org.springframework:spring-jcl:5.3.25 - | | | | \--- org.springframework:spring-core:5.3.25 (*) - | | | +--- org.springframework:spring-beans:5.3.25 (*) - | | | +--- org.springframework:spring-core:5.3.25 (*) - | | | \--- org.springframework:spring-expression:5.3.25 - | | | \--- org.springframework:spring-core:5.3.25 (*) - | | +--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) - | | \--- io.micronaut.spring:micronaut-spring:4.5.0 - | | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) - | | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) - | | +--- org.springframework:spring-framework-bom:5.3.25 (*) - | | +--- org.springframework:spring-core:5.3.25 (*) - | | +--- org.springframework:spring-tx:5.3.25 - | | | +--- org.springframework:spring-beans:5.3.25 (*) - | | | \--- org.springframework:spring-core:5.3.25 (*) - | | +--- org.springframework:spring-context:5.3.25 (*) - | | \--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) - | +--- io.micronaut.cache:micronaut-cache-core:3.5.0 (*) - | +--- io.micronaut:micronaut-runtime:3.8.5 -> 3.2.0 (*) - | +--- javax.persistence:javax.persistence-api:2.2 - | +--- javax.annotation:javax.annotation-api:1.3.2 - | +--- org.springframework.boot:spring-boot:2.7.9 -> 2.7.8 - | | +--- org.springframework:spring-core:5.3.25 (*) - | | \--- org.springframework:spring-context:5.3.25 (*) - | +--- org.springframework:spring-core:5.3.25 (*) - | +--- org.springframework:spring-tx:5.3.25 (*) - | +--- org.springframework:spring-beans:5.3.25 (*) - | +--- org.springframework:spring-context:5.3.25 (*) - | +--- org.grails:grails-bootstrap:5.3.3 - | | +--- org.codehaus.groovy:groovy:3.0.11 - | | +--- org.slf4j:slf4j-api:1.7.36 - | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) - | | +--- org.codehaus.groovy:groovy-xml:3.0.11 - | | | \--- org.codehaus.groovy:groovy:3.0.11 - | | +--- org.codehaus.groovy:groovy-templates:3.0.11 - | | | +--- org.codehaus.groovy:groovy:3.0.11 - | | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) - | | +--- org.yaml:snakeyaml:1.33 -> 1.30 - | | \--- io.micronaut:micronaut-inject:3.8.5 -> 3.2.0 (*) - | +--- org.grails:grails-spring:5.3.3 - | | +--- org.codehaus.groovy:groovy:3.0.11 - | | +--- org.slf4j:slf4j-api:1.7.36 - | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) - | | \--- org.springframework:spring-context:5.3.25 (*) - | +--- org.grails:grails-datastore-core:7.3.3 - | | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) - | | +--- org.javassist:javassist:3.29.2-GA - | | +--- javax.annotation:javax.annotation-api:1.3.2 - | | +--- org.codehaus.groovy:groovy:3.0.11 - | | +--- javax.transaction:jta:1.1 - | | +--- org.slf4j:slf4j-api:1.7.36 - | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) - | | +--- javax.persistence:javax.persistence-api:2.2 - | | +--- org.springframework:spring-core:5.3.25 (*) - | | +--- org.springframework:spring-beans:5.3.25 (*) - | | +--- org.springframework:spring-tx:5.3.25 (*) - | | \--- org.springframework:spring-context:5.3.25 (*) - | +--- org.apache.ant:ant:1.10.13 - | | \--- org.apache.ant:ant-launcher:1.10.13 - | +--- jline:jline:2.14.6 - | \--- org.fusesource.jansi:jansi:1.18 - +--- org.codehaus.groovy:groovy-console:3.0.11 - | +--- org.codehaus.groovy:groovy:3.0.11 - | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) - | \--- org.codehaus.groovy:groovy-swing:3.0.11 - | \--- org.codehaus.groovy:groovy:3.0.11 - +--- org.codehaus.groovy:groovy-swing:3.0.11 (*) - +--- org.codehaus.groovy:groovy-groovysh:3.0.11 - | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) - | +--- org.codehaus.groovy:groovy:3.0.11 - | +--- org.codehaus.groovy:groovy-console:3.0.11 (*) - | +--- org.codehaus.groovy:groovy-xml:3.0.11 (*) - | \--- jline:jline:2.14.6 - +--- org.springframework.boot:spring-boot:2.7.9 -> 2.7.8 (*) - +--- org.springframework:spring-test:5.3.25 - | \--- org.springframework:spring-core:5.3.25 (*) - +--- org.springframework:spring-web:5.3.25 - | +--- org.springframework:spring-beans:5.3.25 (*) - | \--- org.springframework:spring-core:5.3.25 (*) - \--- javax.servlet:javax.servlet-api:4.0.1 - -default - Configuration for default artifacts. (n) -No dependencies - -developmentOnly - Configuration for development-only dependencies such as Spring Boot's DevTools. -\--- io.micronaut:micronaut-inject-groovy:3.2.0 - +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 - +--- io.micronaut:micronaut-inject:3.2.0 - | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 - | +--- javax.annotation:javax.annotation-api:1.3.2 - | +--- jakarta.inject:jakarta.inject-api:2.0.1 - | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 - | +--- io.micronaut:micronaut-core:3.2.0 - | | \--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 - | \--- org.yaml:snakeyaml:1.29 -> 1.30 - +--- io.micronaut:micronaut-aop:3.2.0 - | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 - | +--- io.micronaut:micronaut-inject:3.2.0 (*) - | \--- io.micronaut:micronaut-core:3.2.0 (*) - \--- org.codehaus.groovy:groovy:3.0.9 -> 3.0.11 - -implementation - Implementation only dependencies for source set 'main'. (n) -+--- org.springframework.boot:spring-boot-starter-logging (n) -+--- org.springframework.boot:spring-boot-autoconfigure (n) -+--- org.grails:grails-core:5.3.2 (n) -+--- org.springframework.boot:spring-boot-starter-actuator (n) -+--- org.springframework.boot:spring-boot-starter-tomcat (n) -+--- org.grails:grails-plugin-url-mappings (n) -+--- org.grails:grails-plugin-rest (n) -+--- org.grails:grails-plugin-codecs (n) -+--- org.grails:grails-plugin-interceptors (n) -+--- org.grails:grails-plugin-services (n) -+--- org.grails:grails-plugin-datasource (n) -+--- org.grails:grails-plugin-databinding (n) -+--- org.grails:grails-web-boot (n) -+--- org.grails:grails-logging (n) -+--- org.grails.plugins:cache (n) -+--- org.grails.plugins:async (n) -+--- org.grails.plugins:hibernate5 (n) -+--- org.hibernate:hibernate-core:5.6.11.Final (n) -+--- org.grails.plugins:mongodb (n) -+--- org.grails.plugins:views-json (n) -+--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 (n) -+--- org.grails.plugins:views-json-templates (n) -+--- com.graphql-java:graphql-java:20.6 (n) -+--- org.apache.commons:commons-compress:1.10 (n) -\--- project grails-plugin-gorm-graphql-plugin (n) - -integrationTestAnnotationProcessor - Annotation processors and their dependencies for source set 'integration test'. -No dependencies - -integrationTestCompileClasspath - Compile classpath for source set 'integration test'. -+--- org.springframework.boot:spring-boot-starter-logging -> 2.7.8 -| +--- ch.qos.logback:logback-classic:1.2.11 -| | +--- ch.qos.logback:logback-core:1.2.11 -| | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| +--- org.apache.logging.log4j:log4j-to-slf4j:2.17.2 -| | +--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 -| | \--- org.apache.logging.log4j:log4j-api:2.17.2 -| \--- org.slf4j:jul-to-slf4j:1.7.36 -| \--- org.slf4j:slf4j-api:1.7.36 -+--- org.springframework.boot:spring-boot-autoconfigure -> 2.7.8 -| \--- org.springframework.boot:spring-boot:2.7.8 -| +--- org.springframework:spring-core:5.3.25 -| | \--- org.springframework:spring-jcl:5.3.25 -| \--- org.springframework:spring-context:5.3.25 -| +--- org.springframework:spring-aop:5.3.25 -| | +--- org.springframework:spring-beans:5.3.25 -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | \--- org.springframework:spring-core:5.3.25 (*) -| +--- org.springframework:spring-beans:5.3.25 (*) -| +--- org.springframework:spring-core:5.3.25 (*) -| \--- org.springframework:spring-expression:5.3.25 -| \--- org.springframework:spring-core:5.3.25 (*) -+--- org.grails:grails-core:5.3.2 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 -| | \--- org.slf4j:slf4j-api:1.7.36 -| +--- io.micronaut:micronaut-inject:3.8.4 -> 3.2.0 -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- jakarta.inject:jakarta.inject-api:2.0.1 -| | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 -| | +--- io.micronaut:micronaut-core:3.2.0 -| | | \--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | \--- org.yaml:snakeyaml:1.29 -> 1.30 -| +--- javax.inject:javax.inject:1 -| +--- io.micronaut.spring:micronaut-spring-context:4.5.0 -| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) -| | +--- org.springframework:spring-framework-bom:5.3.25 -| | | +--- org.springframework:spring-aop:5.3.25 (c) -| | | +--- org.springframework:spring-beans:5.3.25 (c) -| | | +--- org.springframework:spring-context:5.3.25 (c) -| | | +--- org.springframework:spring-core:5.3.25 (c) -| | | +--- org.springframework:spring-expression:5.3.25 (c) -| | | +--- org.springframework:spring-jcl:5.3.25 (c) -| | | +--- org.springframework:spring-jdbc:5.3.25 (c) -| | | +--- org.springframework:spring-orm:5.3.25 (c) -| | | +--- org.springframework:spring-test:5.3.25 (c) -| | | +--- org.springframework:spring-tx:5.3.25 (c) -| | | +--- org.springframework:spring-web:5.3.25 (c) -| | | +--- org.springframework:spring-webmvc:5.3.25 (c) -| | | \--- org.springframework:spring-context-support:5.3.25 (c) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | +--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | \--- io.micronaut:micronaut-core:3.2.0 (*) -| | \--- io.micronaut.spring:micronaut-spring:4.5.0 -| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) -| | +--- org.springframework:spring-framework-bom:5.3.25 (*) -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-tx:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | \--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) -| +--- io.micronaut.cache:micronaut-cache-core:3.5.0 -| | +--- io.micronaut:micronaut-inject:3.5.4 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-aop:3.5.4 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-http:3.5.4 -> 3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | \--- io.micronaut:micronaut-core-reactive:3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-core:3.2.0 (*) -| | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| | \--- io.micronaut:micronaut-runtime:3.5.4 -> 3.2.0 -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | +--- io.micronaut:micronaut-aop:3.2.0 (*) -| | +--- io.micronaut:micronaut-context:3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | +--- io.micronaut:micronaut-aop:3.2.0 (*) -| | | \--- javax.validation:validation-api:2.0.1.Final -| | +--- io.micronaut:micronaut-core-reactive:3.2.0 (*) -| | +--- io.micronaut:micronaut-jackson-databind:3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-jackson-core:3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-json-core:3.2.0 -| | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | | +--- io.micronaut:micronaut-context:3.2.0 (*) -| | | | | \--- io.micronaut:micronaut-http:3.2.0 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 -| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) -| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) -| | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) -| | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) -| | | | \--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) -| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 -| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) -| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) -| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | \--- javax.validation:validation-api:2.0.1.Final -| +--- io.micronaut:micronaut-runtime:3.8.4 -> 3.2.0 (*) -| +--- javax.persistence:javax.persistence-api:2.2 -| +--- javax.annotation:javax.annotation-api:1.3.2 -| +--- org.springframework.boot:spring-boot:2.7.8 (*) -| +--- org.springframework:spring-core:5.3.25 (*) -| +--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.springframework:spring-beans:5.3.25 (*) -| +--- org.springframework:spring-context:5.3.25 (*) -| +--- org.grails:grails-bootstrap:5.3.2 -> 5.3.3 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.codehaus.groovy:groovy-xml:3.0.11 -| | | \--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.codehaus.groovy:groovy-templates:3.0.11 -| | | \--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.yaml:snakeyaml:1.33 -> 1.30 -| | \--- io.micronaut:micronaut-inject:3.8.5 -> 3.2.0 (*) -| +--- org.grails:grails-spring:5.3.2 -> 5.3.3 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.springframework:spring-tx:5.3.25 (*) -| | +--- org.springframework:spring-web:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | \--- org.grails:grails-bootstrap:5.3.3 (*) -| +--- org.grails:grails-datastore-core:7.3.3 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- javax.transaction:jta:1.1 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- javax.persistence:javax.persistence-api:2.2 -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-beans:5.3.25 (*) -| | +--- org.springframework:spring-tx:5.3.25 (*) -| | \--- org.springframework:spring-context:5.3.25 (*) -| +--- org.apache.ant:ant:1.10.13 -| | \--- org.apache.ant:ant-launcher:1.10.13 -| +--- jline:jline:2.14.6 -| \--- org.fusesource.jansi:jansi:1.18 -+--- org.springframework.boot:spring-boot-starter-actuator -> 2.7.8 -| +--- org.springframework.boot:spring-boot-starter:2.7.8 -| | +--- org.springframework.boot:spring-boot:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot-starter-logging:2.7.8 (*) -| | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 -| | +--- org.springframework:spring-core:5.3.25 (*) -| | \--- org.yaml:snakeyaml:1.30 -| +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.7.8 -| | +--- org.springframework.boot:spring-boot-actuator:2.7.8 -| | | \--- org.springframework.boot:spring-boot:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot:2.7.8 (*) -| | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) -| \--- io.micrometer:micrometer-core:1.9.7 -| \--- org.hdrhistogram:HdrHistogram:2.1.12 -+--- org.springframework.boot:spring-boot-starter-tomcat -> 2.7.8 -| +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 -| +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 -| +--- org.apache.tomcat.embed:tomcat-embed-el:9.0.71 -| \--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.71 -| \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 -+--- org.grails:grails-plugin-url-mappings -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 -| | \--- org.springframework:spring-core:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-web:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.grails:grails-web-common:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | +--- org.grails:grails-databinding:5.3.3 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) -| | | +--- org.grails:grails-encoder:5.3.3 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | | +--- org.codehaus.groovy:groovy-json:3.0.11 -| | | | | \--- org.codehaus.groovy:groovy:3.0.11 -| | | | \--- org.springframework:spring-web:5.3.25 (*) -| | | +--- org.grails:grails-gsp:5.2.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | +--- org.grails:grails-taglib:5.2.2 -| | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | \--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | | +--- org.springframework:spring-webmvc:5.3.25 -| | | | +--- org.springframework:spring-aop:5.3.25 (*) -| | | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | | +--- org.springframework:spring-context:5.3.25 (*) -| | | | +--- org.springframework:spring-core:5.3.25 (*) -| | | | +--- org.springframework:spring-expression:5.3.25 (*) -| | | | \--- org.springframework:spring-web:5.3.25 (*) -| | | \--- org.springframework:spring-context-support:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | +--- org.springframework:spring-context:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.grails:grails-web-databinding:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-databinding:5.3.3 (*) -| | | \--- org.grails:grails-web-common:5.3.3 (*) -| | +--- org.grails:grails-web-fileupload:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | \--- commons-fileupload:commons-fileupload:1.5 -| | | \--- commons-io:commons-io:2.11.0 -| | +--- org.grails:grails-web-url-mappings:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | | | \--- commons-validator:commons-validator:1.7 -| | | | \--- commons-collections:commons-collections:3.2.2 -| | | +--- org.fusesource.jansi:jansi:1.18 -| | | \--- jline:jline:2.14.6 -| | +--- org.grails:grails-web-mvc:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | +--- org.grails:grails-web-url-mappings:5.3.3 (*) -| | | \--- org.grails:grails-web-sitemesh:5.2.2 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | \--- opensymphony:sitemesh:2.4.2 -| | +--- org.grails:grails-web-gsp:5.2.2 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.grails:grails-gsp:5.2.2 (*) -| | | +--- org.grails:grails-web-taglib:5.2.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | \--- org.grails:grails-taglib:5.2.2 (*) -| | | \--- org.grails:grails-web-sitemesh:5.2.2 (*) -| | \--- org.grails:grails-web-sitemesh:5.2.2 (*) -| +--- org.grails:grails-plugin-controllers:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | +--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-mimetypes:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | \--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-validation:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | \--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-domain-class:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | +--- org.grails:grails-spring:5.3.3 (*) -| | | +--- org.grails:grails-plugin-validation:5.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm:7.3.3 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | | | \--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm-support:7.3.3 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-gorm:7.3.3 (*) -| | | | +--- org.grails:grails-core:5.2.4 -> 5.3.2 (*) -| | | | \--- org.grails:grails-bootstrap:5.2.4 -> 5.3.3 (*) -| | | \--- org.grails:grails-datastore-core:7.3.3 (*) -| | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.9 -> 2.7.8 (*) -| \--- junit:junit:4.13.2 -| \--- org.hamcrest:hamcrest-core:1.3 -> 2.2 -| \--- org.hamcrest:hamcrest:2.2 -+--- org.grails:grails-plugin-rest -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- javax.xml.bind:jaxb-api:2.3.1 -| | \--- javax.activation:javax.activation-api:1.2.0 -| +--- org.grails:grails-web:5.3.3 (*) -| +--- org.grails:grails-plugin-controllers:5.3.3 (*) -| +--- org.grails:grails-plugin-datasource:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.springframework:spring-jdbc:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | +--- org.springframework:spring-core:5.3.25 (*) -| | | \--- org.springframework:spring-tx:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy-sql:3.0.11 -| | | \--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.springframework:spring-context:5.3.25 (*) -| | +--- org.grails:grails-datastore-gorm:7.3.3 (*) -| | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails.plugins:converters:4.0.0 -| \--- org.apache.commons:commons-lang3:3.0 -> 3.12.0 -+--- org.grails:grails-plugin-codecs -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-web:5.3.3 (*) -| \--- org.grails:grails-encoder:5.3.3 (*) -+--- org.grails:grails-plugin-interceptors -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-plugin-controllers:5.3.3 (*) -| \--- org.grails:grails-plugin-url-mappings:5.3.3 (*) -+--- org.grails:grails-plugin-services -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails:grails-plugin-datasource:5.3.3 (*) -+--- org.grails:grails-plugin-datasource -> 5.3.3 (*) -+--- org.grails:grails-plugin-databinding -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails:grails-web:5.3.3 (*) -+--- org.grails:grails-web-boot -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| \--- org.grails:grails-web-common:5.3.3 (*) -+--- org.grails:grails-logging -> 5.3.3 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -+--- org.grails.plugins:cache -> 5.0.1 -| +--- com.bertramlabs.plugins:asset-pipeline-grails:3.0.7 -| +--- gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.4 -| | +--- org.ysb33r.gradle:grolifant:0.11 -| | \--- org.apache.maven:maven-artifact:3.6.3 -| | +--- org.codehaus.plexus:plexus-utils:3.2.1 -| | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 -| +--- org.codehaus.gpars:gpars:1.2.1 -| | +--- org.multiverse:multiverse-core:0.7.0 -| | \--- org.codehaus.jsr166-mirror:jsr166y:1.7.0 -| +--- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2 -| \--- org.javassist:javassist:3.27.0-GA -+--- org.grails.plugins:async -> 4.0.0 -| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| +--- javax.annotation:javax.annotation-api:1.3.2 -| +--- org.grails:grails-plugin-controllers:4.0.0 -> 5.3.3 (*) -| +--- org.grails.plugins:events:4.0.0 -| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.grails:grails-core:4.0.0 -> 5.3.2 (*) -| | +--- org.grails:grails-events:4.0.0 -| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | +--- org.springframework:spring-context:5.1.8.RELEASE -> 5.3.25 (*) -| | | \--- org.springframework:spring-tx:5.1.8.RELEASE -> 5.3.25 (*) -| | +--- org.grails:grails-events-transform:4.0.0 -| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | +--- org.grails:grails-events:4.0.0 (*) -| | | \--- org.grails:grails-datastore-gorm:7.0.2.RELEASE -> 7.3.3 (*) -| | \--- org.grails:grails-events-compat:4.0.0 -| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.grails:grails-events:4.0.0 (*) -| | \--- org.grails:grails-events-transform:4.0.0 (*) -| \--- org.grails:grails-async:4.0.0 -| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| \--- javax.annotation:javax.annotation-api:1.3.2 -+--- org.grails.plugins:hibernate5 -> 7.3.0 -| +--- org.springframework.boot:spring-boot:2.7.0 -> 2.7.8 (*) -| +--- org.springframework:spring-orm:5.3.20 -> 5.3.25 -| | +--- org.springframework:spring-beans:5.3.25 (*) -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-jdbc:5.3.25 (*) -| | \--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.hibernate:hibernate-core:5.6.9.Final -> 5.6.11.Final -| | +--- org.jboss.logging:jboss-logging:3.4.3.Final -| | +--- javax.persistence:javax.persistence-api:2.2 -| | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 -| | +--- antlr:antlr:2.7.7 -| | +--- org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -| | +--- org.jboss:jandex:2.4.2.Final -| | +--- com.fasterxml:classmate:1.5.1 -| | +--- javax.activation:javax.activation-api:1.2.0 -| | +--- org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -| | | \--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.4.3.Final -| | +--- javax.xml.bind:jaxb-api:2.3.1 (*) -| | \--- org.glassfish.jaxb:jaxb-runtime:2.3.1 -> 2.3.7 -| | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 -| | +--- org.glassfish.jaxb:txw2:2.3.7 -| | \--- com.sun.istack:istack-commons-runtime:3.0.12 -| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | +--- org.springframework:spring-web:5.3.25 (*) -| | \--- org.springframework:spring-context:5.3.25 (*) -| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) -| \--- org.grails:grails-datastore-gorm-hibernate5:7.3.0 -> 7.2.2 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 -| +--- org.grails:grails-datastore-gorm:7.2.1 -> 7.3.3 (*) -| +--- org.springframework:spring-orm:5.3.16 -> 5.3.25 (*) -| +--- org.hibernate:hibernate-core:5.6.5.Final -> 5.6.11.Final (*) -| +--- org.hibernate:hibernate-validator:6.2.3.Final -| | \--- org.hibernate.validator:hibernate-validator:6.2.3.Final -> 6.2.5.Final -| | +--- jakarta.validation:jakarta.validation-api:2.0.2 -| | +--- org.jboss.logging:jboss-logging:3.4.1.Final -> 3.4.3.Final -| | \--- com.fasterxml:classmate:1.5.1 -| \--- javax.validation:validation-api:2.0.1.Final -+--- org.hibernate:hibernate-core:5.6.11.Final (*) -+--- org.grails.plugins:mongodb -> 7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm-mongodb-ext:7.3.0 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | \--- org.mongodb:mongodb-driver-sync:4.5.0 -| | +--- org.mongodb:bson:4.5.0 -> 4.6.1 -| | \--- org.mongodb:mongodb-driver-core:4.5.0 -| | \--- org.mongodb:bson:4.5.0 -> 4.6.1 -| \--- org.grails:grails-datastore-gorm-mongodb:7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.mongodb:mongodb-driver-sync:4.5.0 (*) -| +--- org.grails:grails-datastore-gorm-validation:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) -| \--- org.grails:grails-datastore-gorm-bson:7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) -| \--- org.mongodb:bson:4.5.0 -> 4.6.1 -+--- org.grails.plugins:views-json -> 2.3.2 -| +--- org.grails:grails-core:5.1.8 -> 5.3.2 (*) -| \--- org.grails:views-core:2.3.2 -| +--- org.codehaus.groovy:groovy-bom:3.0.11 -| | +--- org.codehaus.groovy:groovy:3.0.11 (c) -| | +--- org.codehaus.groovy:groovy-json:3.0.11 (c) -| | +--- org.codehaus.groovy:groovy-sql:3.0.11 (c) -| | +--- org.codehaus.groovy:groovy-templates:3.0.11 (c) -| | \--- org.codehaus.groovy:groovy-xml:3.0.11 (c) -| +--- org.grails:grails-encoder:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-web-common:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-web-url-mappings:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-plugin-rest:5.1.8 -> 5.3.3 (*) -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 -| | +--- org.checkerframework:checker-qual:3.19.0 -| | \--- com.google.errorprone:error_prone_annotations:2.10.0 -| \--- javax.servlet:javax.servlet-api:4.0.1 -+--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 -| +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) -| +--- io.micronaut.rxjava2:micronaut-rxjava2:1.2.0 -| | +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-runtime:3.3.0 -> 3.2.0 (*) -| | \--- io.reactivex.rxjava2:rxjava:2.2.21 -| | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| \--- io.micronaut:micronaut-http-client:3.3.0 -> 3.2.0 -| +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| +--- io.micronaut:micronaut-runtime:3.2.0 (*) -| +--- io.micronaut:micronaut-http-client-core:3.2.0 -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | \--- io.micronaut:micronaut-runtime:3.2.0 (*) -| +--- io.micronaut:micronaut-websocket:3.2.0 -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | +--- io.micronaut:micronaut-http-client-core:3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | \--- io.micronaut:micronaut-aop:3.2.0 (*) -| +--- io.micronaut:micronaut-http-netty:3.2.0 -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | +--- io.micronaut:micronaut-websocket:3.2.0 (*) -| | +--- io.micronaut:micronaut-buffer-netty:3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-core:3.2.0 (*) -| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | \--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final -| | | \--- io.netty:netty-common:4.1.87.Final -| | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-resolver:4.1.87.Final -| | | | \--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-codec:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-transport:4.1.87.Final (*) -| | | \--- io.netty:netty-handler:4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-resolver:4.1.87.Final (*) -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-transport:4.1.87.Final (*) -| | | \--- io.netty:netty-codec:4.1.87.Final (*) -| | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | +--- io.netty:netty-codec:4.1.87.Final (*) -| | | +--- io.netty:netty-handler:4.1.87.Final (*) -| | | \--- io.netty:netty-codec-http:4.1.87.Final (*) -| | \--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (*) -| \--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final -| +--- io.netty:netty-common:4.1.87.Final -| +--- io.netty:netty-buffer:4.1.87.Final (*) -| +--- io.netty:netty-transport:4.1.87.Final (*) -| +--- io.netty:netty-codec:4.1.87.Final (*) -| +--- io.netty:netty-codec-socks:4.1.87.Final -| | +--- io.netty:netty-common:4.1.87.Final -| | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | +--- io.netty:netty-transport:4.1.87.Final (*) -| | \--- io.netty:netty-codec:4.1.87.Final (*) -| \--- io.netty:netty-codec-http:4.1.87.Final (*) -+--- org.grails.plugins:views-json-templates -> 2.3.2 -| \--- org.grails.plugins:views-json:2.3.2 (*) -+--- com.graphql-java:graphql-java:20.6 -| +--- com.graphql-java:java-dataloader:3.2.0 -| | \--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 -| \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -+--- org.apache.commons:commons-compress:1.10 -+--- project :grails-plugin-gorm-graphql-plugin -| \--- project :gorm-graphql -| +--- org.codehaus.groovy:groovy:3.0.11 -| \--- org.slf4j:slf4j-api:1.7.36 -\--- org.grails:grails-test-mixins:3.3.0 - -integrationTestCompileOnly - Compile only dependencies for source set 'integration test'. (n) -No dependencies - -integrationTestImplementation - Implementation only dependencies for source set 'integration test'. (n) -+--- unspecified (n) -\--- unspecified (n) - -integrationTestRuntimeClasspath - Runtime classpath of source set 'integration test'. -+--- org.springframework.boot:spring-boot-starter-logging -> 2.7.8 -| +--- ch.qos.logback:logback-classic:1.2.11 -| | +--- ch.qos.logback:logback-core:1.2.11 -| | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| +--- org.apache.logging.log4j:log4j-to-slf4j:2.17.2 -| | +--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 -| | \--- org.apache.logging.log4j:log4j-api:2.17.2 -| \--- org.slf4j:jul-to-slf4j:1.7.36 -| \--- org.slf4j:slf4j-api:1.7.36 -+--- org.springframework.boot:spring-boot-autoconfigure -> 2.7.8 -| \--- org.springframework.boot:spring-boot:2.7.8 -| +--- org.springframework:spring-core:5.3.25 -| | \--- org.springframework:spring-jcl:5.3.25 -| \--- org.springframework:spring-context:5.3.25 -| +--- org.springframework:spring-aop:5.3.25 -| | +--- org.springframework:spring-beans:5.3.25 -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | \--- org.springframework:spring-core:5.3.25 (*) -| +--- org.springframework:spring-beans:5.3.25 (*) -| +--- org.springframework:spring-core:5.3.25 (*) -| \--- org.springframework:spring-expression:5.3.25 -| \--- org.springframework:spring-core:5.3.25 (*) -+--- org.grails:grails-core:5.3.2 -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 -| | +--- org.checkerframework:checker-qual:3.19.0 -| | \--- com.google.errorprone:error_prone_annotations:2.10.0 -> 2.11.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 -| | \--- org.slf4j:slf4j-api:1.7.36 -| +--- io.micronaut:micronaut-inject:3.8.4 -> 3.2.0 -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- jakarta.inject:jakarta.inject-api:2.0.1 -| | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 -| | +--- io.micronaut:micronaut-core:3.2.0 -| | | \--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | \--- org.yaml:snakeyaml:1.29 -> 1.30 -| +--- javax.inject:javax.inject:1 -| +--- io.micronaut.spring:micronaut-spring-context:4.5.0 -| | +--- io.micronaut.cache:micronaut-cache-core:3.5.0 -| | | +--- io.projectreactor:reactor-core:3.4.21 -> 3.4.26 -| | | | \--- org.reactivestreams:reactive-streams:1.0.4 -| | | +--- io.micronaut:micronaut-bom:3.5.4 -> 3.2.0 -| | | | +--- org.codehaus.groovy:groovy-bom:3.0.9 -> 3.0.11 -| | | | | +--- org.codehaus.groovy:groovy:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-ant:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-json:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-sql:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-test:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-test-junit5:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-xml:3.0.11 (c) -| | | | | \--- org.codehaus.groovy:groovy-groovydoc:3.0.11 (c) -| | | | +--- io.grpc:grpc-bom:1.39.0 -| | | | +--- com.fasterxml.jackson:jackson-bom:2.12.4 -> 2.13.4 -| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) -| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) -| | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) -| | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) -| | | | +--- org.junit:junit-bom:5.7.2 -> 5.8.2 -| | | | | +--- org.junit.jupiter:junit-jupiter:5.8.2 (c) -| | | | | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 (c) -| | | | | +--- org.junit.jupiter:junit-jupiter-engine:5.8.2 (c) -| | | | | +--- org.junit.jupiter:junit-jupiter-params:5.8.2 (c) -| | | | | +--- org.junit.platform:junit-platform-commons:1.8.2 (c) -| | | | | +--- org.junit.platform:junit-platform-engine:1.8.2 (c) -| | | | | +--- org.junit.platform:junit-platform-launcher:1.8.2 (c) -| | | | | +--- org.junit.platform:junit-platform-runner:1.8.2 (c) -| | | | | +--- org.junit.platform:junit-platform-suite-api:1.8.2 (c) -| | | | | \--- org.junit.platform:junit-platform-suite-commons:1.8.2 (c) -| | | | +--- org.jetbrains.kotlin:kotlin-bom:1.6.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.5.1 -| | | | +--- io.ktor:ktor-bom:1.6.1 -| | | | +--- io.micrometer:micrometer-bom:1.8.0 -| | | | | \--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) -| | | | +--- io.micronaut.aws:micronaut-aws-bom:3.0.4 -| | | | +--- io.micronaut.cache:micronaut-cache-bom:3.0.0 -| | | | | +--- io.micronaut.cache:micronaut-cache-core:3.0.0 -> 3.5.0 (c) -| | | | | \--- com.github.ben-manes.caffeine:caffeine:2.9.1 -> 2.9.3 (c) -| | | | +--- io.micronaut.coherence:micronaut-coherence-bom:3.0.1 -| | | | +--- io.micronaut.data:micronaut-data-bom:3.2.0 -| | | | +--- io.micronaut.groovy:micronaut-groovy-bom:3.0.0 -| | | | | \--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) -| | | | +--- io.micronaut.micrometer:micronaut-micrometer-bom:4.1.0 -| | | | | +--- io.micrometer:micrometer-bom:1.8.0 (*) -| | | | | \--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) -| | | | +--- io.micronaut.oraclecloud:micronaut-oraclecloud-bom:2.0.3 -| | | | +--- io.micronaut.r2dbc:micronaut-r2dbc-bom:2.0.0 -| | | | | \--- io.r2dbc:r2dbc-bom:Arabba-SR9 -| | | | +--- io.micronaut.sql:micronaut-sql-bom:4.0.4 -| | | | | +--- org.hibernate:hibernate-core:5.5.3.Final -> 5.6.11.Final (c) -| | | | | \--- org.apache.tomcat:tomcat-jdbc:10.0.8 -> 9.0.71 (c) -| | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 -| | | | | +--- org.junit:junit-bom:5.7.2 -> 5.8.2 (*) -| | | | | +--- org.spockframework:spock-bom:2.0-groovy-3.0 -| | | | | | +--- org.spockframework:spock-core:2.0-groovy-3.0 -> 2.1-groovy-3.0 (c) -| | | | | | \--- org.spockframework:spock-spring:2.0-groovy-3.0 -> 2.1-groovy-3.0 (c) -| | | | | +--- org.mockito:mockito-core:3.6.28 -> 4.5.1 (c) -| | | | | +--- org.mockito:mockito-junit-jupiter:3.6.28 -> 4.5.1 (c) -| | | | | +--- org.assertj:assertj-core:3.18.1 -> 3.22.0 (c) -| | | | | \--- org.hamcrest:hamcrest:2.2 (c) -| | | | +--- io.micronaut.views:micronaut-views-bom:3.0.1 -| | | | +--- io.netty:netty-bom:4.1.70.Final -| | | | | +--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-codec:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-codec-socks:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-common:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-resolver:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-transport:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-transport-native-unix-common:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-transport-classes-epoll:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-transport-native-epoll:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-transport-classes-kqueue:4.1.70.Final -> 4.1.87.Final (c) -| | | | | \--- io.netty:netty-transport-native-kqueue:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- com.google.protobuf:protobuf-bom:3.17.2 -| | | | +--- org.testcontainers:testcontainers-bom:1.16.1 -| | | | +--- io.micronaut:micronaut-aop:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-buffer-netty:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-context:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-core:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-http:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-http-client:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-http-client-core:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-http-netty:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-inject:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-runtime:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-websocket:3.2.0 (c) -| | | | +--- org.grails:grails-datastore-core:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-gorm:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-gorm-support:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-gorm-test:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-gorm-validation:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-web:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-gorm-hibernate5:7.1.0.M3 -> 7.2.2 (c) -| | | | +--- org.codehaus.groovy:groovy:3.0.9 -> 3.0.11 (c) -| | | | +--- org.codehaus.groovy:groovy-json:3.0.9 -> 3.0.11 (c) -| | | | +--- org.codehaus.groovy:groovy-sql:3.0.9 -> 3.0.11 (c) -| | | | +--- org.codehaus.groovy:groovy-templates:3.0.9 -> 3.0.11 (c) -| | | | +--- com.h2database:h2:1.4.200 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 (c) -| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 (c) -| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 (c) -| | | | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 (c) -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 (c) -| | | | +--- com.google.code.findbugs:jsr305:3.0.2 (c) -| | | | +--- ch.qos.logback:logback-classic:1.2.3 -> 1.2.11 (c) -| | | | +--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) -| | | | +--- io.micronaut.rxjava2:micronaut-rxjava2:1.1.0 -> 1.2.0 (c) -| | | | +--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.1.0 -> 1.2.0 (c) -| | | | +--- io.micronaut.spring:micronaut-spring:4.0.0 -> 4.5.0 (c) -| | | | +--- io.micronaut.spring:micronaut-spring-context:4.0.0 -> 4.5.0 (c) -| | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 (c) -| | | | +--- org.mongodb:mongodb-driver-core:4.3.0 -> 4.5.0 (c) -| | | | +--- org.mongodb:mongodb-driver-sync:4.3.0 -> 4.5.0 (c) -| | | | +--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-transport-native-epoll:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-transport-native-kqueue:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 (c) -| | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (c) -| | | | +--- io.reactivex.rxjava2:rxjava:2.2.10 -> 2.2.21 (c) -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 (c) -| | | | +--- org.yaml:snakeyaml:1.29 -> 1.30 (c) -| | | | +--- org.spockframework:spock-core:2.0-groovy-3.0 -> 2.1-groovy-3.0 (c) -| | | | +--- org.springframework:spring-core:5.3.9 -> 5.3.25 (c) -| | | | +--- org.springframework.boot:spring-boot-starter:2.5.3 -> 2.7.8 (c) -| | | | +--- org.springframework:spring-context:5.3.9 -> 5.3.25 (c) -| | | | +--- org.springframework:spring-jdbc:5.3.9 -> 5.3.25 (c) -| | | | +--- org.springframework:spring-orm:5.3.9 -> 5.3.25 (c) -| | | | +--- org.springframework:spring-tx:5.3.9 -> 5.3.25 (c) -| | | | +--- javax.validation:validation-api:2.0.1.Final (c) -| | | | \--- io.micronaut:micronaut-json-core:3.2.0 (c) -| | | +--- io.micronaut:micronaut-inject:3.5.4 -> 3.2.0 (*) -| | | +--- io.micronaut:micronaut-aop:3.5.4 -> 3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | | \--- io.micronaut:micronaut-core:3.2.0 (*) -| | | +--- io.micronaut:micronaut-http:3.5.4 -> 3.2.0 -| | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | | \--- io.micronaut:micronaut-core-reactive:3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-core:3.2.0 (*) -| | | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| | | \--- io.micronaut:micronaut-runtime:3.5.4 -> 3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | +--- io.micronaut:micronaut-aop:3.2.0 (*) -| | | +--- io.micronaut:micronaut-context:3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | | +--- io.micronaut:micronaut-aop:3.2.0 (*) -| | | | \--- javax.validation:validation-api:2.0.1.Final -| | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (*) -| | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 -| | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | | +--- io.micronaut:micronaut-json-core:3.2.0 -| | | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | | | +--- io.micronaut:micronaut-context:3.2.0 (*) -| | | | | | \--- io.micronaut:micronaut-http:3.2.0 (*) -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 -| | | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | | \--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 -| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) -| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | +--- javax.validation:validation-api:2.0.1.Final -| | | \--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) -| | +--- org.springframework:spring-framework-bom:5.3.25 -| | | +--- org.springframework:spring-aop:5.3.25 (c) -| | | +--- org.springframework:spring-beans:5.3.25 (c) -| | | +--- org.springframework:spring-context:5.3.25 (c) -| | | +--- org.springframework:spring-core:5.3.25 (c) -| | | +--- org.springframework:spring-expression:5.3.25 (c) -| | | +--- org.springframework:spring-jcl:5.3.25 (c) -| | | +--- org.springframework:spring-jdbc:5.3.25 (c) -| | | +--- org.springframework:spring-orm:5.3.25 (c) -| | | +--- org.springframework:spring-test:5.3.25 (c) -| | | +--- org.springframework:spring-tx:5.3.25 (c) -| | | +--- org.springframework:spring-web:5.3.25 (c) -| | | +--- org.springframework:spring-webmvc:5.3.25 (c) -| | | \--- org.springframework:spring-context-support:5.3.25 (c) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | +--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) -| | \--- io.micronaut.spring:micronaut-spring:4.5.0 -| | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) -| | +--- org.springframework:spring-framework-bom:5.3.25 (*) -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-tx:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | \--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) -| +--- io.micronaut.cache:micronaut-cache-core:3.5.0 (*) -| +--- io.micronaut:micronaut-runtime:3.8.4 -> 3.2.0 (*) -| +--- javax.persistence:javax.persistence-api:2.2 -| +--- javax.annotation:javax.annotation-api:1.3.2 -| +--- org.springframework.boot:spring-boot:2.7.8 (*) -| +--- org.springframework:spring-core:5.3.25 (*) -| +--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.springframework:spring-beans:5.3.25 (*) -| +--- org.springframework:spring-context:5.3.25 (*) -| +--- org.grails:grails-bootstrap:5.3.2 -> 5.3.3 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.codehaus.groovy:groovy-xml:3.0.11 -| | | \--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.codehaus.groovy:groovy-templates:3.0.11 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) -| | +--- org.yaml:snakeyaml:1.33 -> 1.30 -| | \--- io.micronaut:micronaut-inject:3.8.5 -> 3.2.0 (*) -| +--- org.grails:grails-spring:5.3.2 -> 5.3.3 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.springframework:spring-tx:5.3.25 (*) -| | +--- org.springframework:spring-web:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | \--- org.grails:grails-bootstrap:5.3.3 (*) -| +--- org.grails:grails-datastore-core:7.3.3 -| | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| | +--- org.javassist:javassist:3.29.2-GA -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- javax.transaction:jta:1.1 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- javax.persistence:javax.persistence-api:2.2 -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-beans:5.3.25 (*) -| | +--- org.springframework:spring-tx:5.3.25 (*) -| | \--- org.springframework:spring-context:5.3.25 (*) -| +--- org.apache.ant:ant:1.10.13 -| | \--- org.apache.ant:ant-launcher:1.10.13 -| +--- jline:jline:2.14.6 -| \--- org.fusesource.jansi:jansi:1.18 -+--- org.springframework.boot:spring-boot-starter-actuator -> 2.7.8 -| +--- org.springframework.boot:spring-boot-starter:2.7.8 -| | +--- org.springframework.boot:spring-boot:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot-starter-logging:2.7.8 (*) -| | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 -| | +--- org.springframework:spring-core:5.3.25 (*) -| | \--- org.yaml:snakeyaml:1.30 -| +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.7.8 -| | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4.2 (*) -| | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (*) -| | +--- org.springframework.boot:spring-boot-actuator:2.7.8 -| | | \--- org.springframework.boot:spring-boot:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot:2.7.8 (*) -| | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) -| \--- io.micrometer:micrometer-core:1.9.7 -| +--- org.hdrhistogram:HdrHistogram:2.1.12 -| \--- org.latencyutils:LatencyUtils:2.0.3 -+--- org.springframework.boot:spring-boot-starter-tomcat -> 2.7.8 -| +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 -| +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 -| +--- org.apache.tomcat.embed:tomcat-embed-el:9.0.71 -| \--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.71 -| \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 -+--- org.grails:grails-plugin-url-mappings -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 -| | \--- org.springframework:spring-core:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-web:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.grails:grails-web-common:5.3.3 -| | | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | +--- org.grails:grails-databinding:5.3.3 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) -| | | +--- org.grails:grails-encoder:5.3.3 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | | +--- org.codehaus.groovy:groovy-json:3.0.11 -| | | | | \--- org.codehaus.groovy:groovy:3.0.11 -| | | | \--- org.springframework:spring-web:5.3.25 (*) -| | | +--- org.grails:grails-gsp:5.2.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | +--- org.grails:grails-core:5.2.5 -> 5.3.2 (*) -| | | | +--- org.grails:grails-taglib:5.2.2 -| | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | | +--- org.grails:grails-core:5.2.5 -> 5.3.2 (*) -| | | | | \--- org.grails:grails-encoder:5.2.5 -> 5.3.3 (*) -| | | | \--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | | +--- org.springframework:spring-webmvc:5.3.25 -| | | | +--- org.springframework:spring-aop:5.3.25 (*) -| | | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | | +--- org.springframework:spring-context:5.3.25 (*) -| | | | +--- org.springframework:spring-core:5.3.25 (*) -| | | | +--- org.springframework:spring-expression:5.3.25 (*) -| | | | \--- org.springframework:spring-web:5.3.25 (*) -| | | \--- org.springframework:spring-context-support:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | +--- org.springframework:spring-context:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.grails:grails-web-databinding:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-databinding:5.3.3 (*) -| | | \--- org.grails:grails-web-common:5.3.3 (*) -| | +--- org.grails:grails-web-fileupload:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | \--- commons-fileupload:commons-fileupload:1.5 -| | | \--- commons-io:commons-io:2.11.0 -| | +--- org.grails:grails-web-url-mappings:5.3.3 -| | | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | | | \--- commons-validator:commons-validator:1.7 -| | | | \--- commons-collections:commons-collections:3.2.2 -| | | +--- org.fusesource.jansi:jansi:1.18 -| | | \--- jline:jline:2.14.6 -| | +--- org.grails:grails-web-mvc:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | +--- org.grails:grails-web-url-mappings:5.3.3 (*) -| | | \--- org.grails:grails-web-sitemesh:5.2.2 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | \--- opensymphony:sitemesh:2.4.2 -| | +--- org.grails:grails-web-gsp:5.2.2 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.grails:grails-gsp:5.2.2 (*) -| | | +--- org.grails:grails-web-common:5.2.5 -> 5.3.3 (*) -| | | +--- org.grails:grails-web-taglib:5.2.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | +--- org.grails:grails-web-common:5.2.5 -> 5.3.3 (*) -| | | | \--- org.grails:grails-taglib:5.2.2 (*) -| | | \--- org.grails:grails-web-sitemesh:5.2.2 (*) -| | \--- org.grails:grails-web-sitemesh:5.2.2 (*) -| +--- org.grails:grails-plugin-controllers:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | +--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-mimetypes:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | \--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-validation:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | \--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-domain-class:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | +--- org.grails:grails-spring:5.3.3 (*) -| | | +--- org.grails:grails-plugin-validation:5.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm:7.3.3 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- javax.el:javax.el-api:3.0.0 -> 3.0.1-b06 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) -| | | | \--- org.glassfish:javax.el:3.0.1-b12 -| | | +--- org.grails:grails-datastore-gorm-support:7.3.3 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-gorm:7.3.3 (*) -| | | | +--- org.grails:grails-core:5.2.4 -> 5.3.2 (*) -| | | | \--- org.grails:grails-bootstrap:5.2.4 -> 5.3.3 (*) -| | | \--- org.grails:grails-datastore-core:7.3.3 (*) -| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.9 -> 2.7.8 (*) -| | \--- org.grails:grails-plugin-i18n:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.grails:grails-web:5.3.3 (*) -| | \--- org.codehaus.groovy:groovy-ant:3.0.11 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.apache.ant:ant:1.10.12 -> 1.10.13 (*) -| | +--- org.apache.ant:ant-junit:1.10.12 -> 1.10.13 -| | | +--- org.apache.ant:ant:1.10.13 (*) -| | | \--- junit:junit:4.13.1 -> 4.13.2 -| | | \--- org.hamcrest:hamcrest-core:1.3 -> 2.2 -| | | \--- org.hamcrest:hamcrest:2.2 -| | +--- org.apache.ant:ant-launcher:1.10.12 -> 1.10.13 -| | +--- org.apache.ant:ant-antlr:1.10.12 -| | \--- org.codehaus.groovy:groovy-groovydoc:3.0.11 -| \--- junit:junit:4.13.2 (*) -+--- org.grails:grails-plugin-rest -> 5.3.3 -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- javax.xml.bind:jaxb-api:2.3.1 -| | \--- javax.activation:javax.activation-api:1.2.0 -| +--- org.grails:grails-web:5.3.3 (*) -| +--- org.grails:grails-plugin-controllers:5.3.3 (*) -| +--- org.grails:grails-plugin-datasource:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.springframework:spring-jdbc:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | +--- org.springframework:spring-core:5.3.25 (*) -| | | \--- org.springframework:spring-tx:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy-sql:3.0.11 -| | | \--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.springframework:spring-context:5.3.25 (*) -| | +--- org.grails:grails-datastore-gorm:7.3.3 (*) -| | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails.plugins:converters:4.0.0 -| \--- org.apache.commons:commons-lang3:3.0 -> 3.12.0 -+--- org.grails:grails-plugin-codecs -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-web:5.3.3 (*) -| +--- org.grails:grails-encoder:5.3.3 (*) -| \--- org.grails:grails-codecs:5.3.3 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| \--- commons-codec:commons-codec:1.15 -+--- org.grails:grails-plugin-interceptors -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-plugin-controllers:5.3.3 (*) -| \--- org.grails:grails-plugin-url-mappings:5.3.3 (*) -+--- org.grails:grails-plugin-services -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails:grails-plugin-datasource:5.3.3 (*) -+--- org.grails:grails-plugin-datasource -> 5.3.3 (*) -+--- org.grails:grails-plugin-databinding -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails:grails-web:5.3.3 (*) -+--- org.grails:grails-web-boot -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| \--- org.grails:grails-web-common:5.3.3 (*) -+--- org.grails:grails-logging -> 5.3.3 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -+--- org.grails.plugins:cache -> 5.0.1 -| +--- com.bertramlabs.plugins:asset-pipeline-grails:3.0.7 -| | \--- com.bertramlabs.plugins:asset-pipeline-core:3.0.7 -| | \--- commons-logging:commons-logging:1.1.1 -> 1.2 -| +--- gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.4 -| | +--- org.ysb33r.gradle:grolifant:0.11 -| | | \--- org.tukaani:xz:1.6 -| | \--- org.apache.maven:maven-artifact:3.6.3 -| | +--- org.codehaus.plexus:plexus-utils:3.2.1 -| | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 -| +--- org.codehaus.gpars:gpars:1.2.1 -| | +--- org.multiverse:multiverse-core:0.7.0 -| | \--- org.codehaus.jsr166-mirror:jsr166y:1.7.0 -| +--- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2 -| \--- org.javassist:javassist:3.27.0-GA -> 3.29.2-GA -+--- org.grails.plugins:async -> 4.0.0 -| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| +--- javax.annotation:javax.annotation-api:1.3.2 -| +--- org.grails:grails-plugin-controllers:4.0.0 -> 5.3.3 (*) -| +--- org.grails.plugins:events:4.0.0 -| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.grails:grails-core:4.0.0 -> 5.3.2 (*) -| | +--- org.grails:grails-events:4.0.0 -| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | +--- org.springframework:spring-context:5.1.8.RELEASE -> 5.3.25 (*) -| | | \--- org.springframework:spring-tx:5.1.8.RELEASE -> 5.3.25 (*) -| | +--- org.grails:grails-events-transform:4.0.0 -| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | +--- org.grails:grails-events:4.0.0 (*) -| | | \--- org.grails:grails-datastore-gorm:7.0.2.RELEASE -> 7.3.3 (*) -| | \--- org.grails:grails-events-compat:4.0.0 -| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.grails:grails-events:4.0.0 (*) -| | \--- org.grails:grails-events-transform:4.0.0 (*) -| \--- org.grails:grails-async:4.0.0 -| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| \--- javax.annotation:javax.annotation-api:1.3.2 -+--- org.grails.plugins:hibernate5 -> 7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.springframework.boot:spring-boot:2.7.0 -> 2.7.8 (*) -| +--- org.springframework:spring-orm:5.3.20 -> 5.3.25 -| | +--- org.springframework:spring-beans:5.3.25 (*) -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-jdbc:5.3.25 (*) -| | \--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.hibernate:hibernate-core:5.6.9.Final -> 5.6.11.Final -| | +--- org.jboss.logging:jboss-logging:3.4.3.Final -| | +--- javax.persistence:javax.persistence-api:2.2 -| | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 -| | +--- antlr:antlr:2.7.7 -| | +--- org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -| | +--- org.jboss:jandex:2.4.2.Final -| | +--- com.fasterxml:classmate:1.5.1 -| | +--- javax.activation:javax.activation-api:1.2.0 -| | +--- org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -| | | \--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.4.3.Final -| | +--- javax.xml.bind:jaxb-api:2.3.1 (*) -| | \--- org.glassfish.jaxb:jaxb-runtime:2.3.1 -> 2.3.7 -| | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 -| | | \--- jakarta.activation:jakarta.activation-api:1.2.2 -| | +--- org.glassfish.jaxb:txw2:2.3.7 -| | +--- com.sun.istack:istack-commons-runtime:3.0.12 -| | \--- com.sun.activation:jakarta.activation:1.2.2 -| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | +--- org.springframework:spring-web:5.3.25 (*) -| | \--- org.springframework:spring-context:5.3.25 (*) -| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) -| \--- org.grails:grails-datastore-gorm-hibernate5:7.3.0 -> 7.2.2 -| +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.grails:grails-datastore-gorm:7.2.1 -> 7.3.3 (*) -| +--- org.springframework:spring-orm:5.3.16 -> 5.3.25 (*) -| +--- org.hibernate:hibernate-core:5.6.5.Final -> 5.6.11.Final (*) -| +--- org.hibernate:hibernate-validator:6.2.3.Final -| | \--- org.hibernate.validator:hibernate-validator:6.2.3.Final -> 6.2.5.Final -| | +--- jakarta.validation:jakarta.validation-api:2.0.2 -| | +--- org.jboss.logging:jboss-logging:3.4.1.Final -> 3.4.3.Final -| | \--- com.fasterxml:classmate:1.5.1 -| +--- javax.validation:validation-api:2.0.1.Final -| +--- javax.el:javax.el-api:3.0.1-b06 -| +--- javax.xml.bind:jaxb-api:2.3.1 (*) -| \--- com.sun.xml.bind:jaxb-impl:2.3.1 -+--- org.hibernate:hibernate-core:5.6.11.Final (*) -+--- org.grails.plugins:mongodb -> 7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm-mongodb-ext:7.3.0 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | \--- org.mongodb:mongodb-driver-sync:4.5.0 -| | +--- org.mongodb:bson:4.5.0 -> 4.6.1 -| | \--- org.mongodb:mongodb-driver-core:4.5.0 -| | \--- org.mongodb:bson:4.5.0 -> 4.6.1 -| \--- org.grails:grails-datastore-gorm-mongodb:7.3.0 -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.mongodb:mongodb-driver-sync:4.5.0 (*) -| +--- org.grails:grails-datastore-gorm-validation:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) -| \--- org.grails:grails-datastore-gorm-bson:7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) -| \--- org.mongodb:bson:4.5.0 -> 4.6.1 -+--- org.grails.plugins:views-json -> 2.3.2 -| +--- org.grails:grails-core:5.1.8 -> 5.3.2 (*) -| \--- org.grails:views-core:2.3.2 -| +--- org.codehaus.groovy:groovy-bom:3.0.11 (*) -| +--- org.grails:grails-encoder:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-web-common:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-web-url-mappings:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-plugin-rest:5.1.8 -> 5.3.3 (*) -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| \--- javax.servlet:javax.servlet-api:4.0.1 -+--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 -| +--- io.micronaut:micronaut-bom:3.3.0 -> 3.2.0 (*) -| +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) -| +--- io.micronaut.rxjava2:micronaut-rxjava2:1.2.0 -| | +--- io.micronaut:micronaut-bom:3.3.0 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-runtime:3.3.0 -> 3.2.0 (*) -| | \--- io.reactivex.rxjava2:rxjava:2.2.21 -| | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| \--- io.micronaut:micronaut-http-client:3.3.0 -> 3.2.0 -| +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| +--- io.micronaut:micronaut-runtime:3.2.0 (*) -| +--- io.micronaut:micronaut-http-client-core:3.2.0 -| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | \--- io.micronaut:micronaut-runtime:3.2.0 (*) -| +--- io.micronaut:micronaut-websocket:3.2.0 -| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | +--- io.micronaut:micronaut-http-client-core:3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | \--- io.micronaut:micronaut-aop:3.2.0 (*) -| +--- io.micronaut:micronaut-http-netty:3.2.0 -| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | +--- io.micronaut:micronaut-websocket:3.2.0 (*) -| | +--- io.micronaut:micronaut-buffer-netty:3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-core:3.2.0 (*) -| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | \--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final -| | | \--- io.netty:netty-common:4.1.87.Final -| | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-resolver:4.1.87.Final -| | | | \--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-codec:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-transport:4.1.87.Final (*) -| | | \--- io.netty:netty-handler:4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-resolver:4.1.87.Final (*) -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-transport:4.1.87.Final (*) -| | | \--- io.netty:netty-codec:4.1.87.Final (*) -| | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | +--- io.netty:netty-codec:4.1.87.Final (*) -| | | +--- io.netty:netty-handler:4.1.87.Final (*) -| | | \--- io.netty:netty-codec-http:4.1.87.Final (*) -| | \--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (*) -| \--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final -| +--- io.netty:netty-common:4.1.87.Final -| +--- io.netty:netty-buffer:4.1.87.Final (*) -| +--- io.netty:netty-transport:4.1.87.Final (*) -| +--- io.netty:netty-codec:4.1.87.Final (*) -| +--- io.netty:netty-codec-socks:4.1.87.Final -| | +--- io.netty:netty-common:4.1.87.Final -| | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | +--- io.netty:netty-transport:4.1.87.Final (*) -| | \--- io.netty:netty-codec:4.1.87.Final (*) -| \--- io.netty:netty-codec-http:4.1.87.Final (*) -+--- org.grails.plugins:views-json-templates -> 2.3.2 -| \--- org.grails.plugins:views-json:2.3.2 (*) -+--- com.graphql-java:graphql-java:20.6 -| +--- com.graphql-java:java-dataloader:3.2.0 -| | \--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 -| +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| \--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 -+--- org.apache.commons:commons-compress:1.10 -+--- project :grails-plugin-gorm-graphql-plugin -| +--- project :gorm-graphql -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- com.graphql-java:graphql-java:20.6 (*) -| | +--- org.grails:grails-datastore-gorm:7.3.4 -> 7.3.3 (*) -| | +--- org.grails:grails-datastore-gorm:7.3.1 -> 7.3.3 (*) -| | +--- com.graphql-java:graphql-java-extended-scalars:20.2 -| | | \--- com.graphql-java:graphql-java:20.2 -> 20.6 (*) -| | +--- com.github.javaparser:javaparser-core:3.25.5 -| | +--- org.grails.plugins:views-json:2.3.2 (*) -| | \--- org.javassist:javassist:3.29.2-GA -| +--- com.graphql-java:graphql-java:20.6 (*) -| +--- org.grails:grails-datastore-gorm:7.3.4 -> 7.3.3 (*) -| +--- org.grails:grails-plugin-controllers -> 5.3.3 (*) -| +--- org.grails:grails-plugin-databinding -> 5.3.3 (*) -| +--- org.grails:grails-plugin-rest -> 5.3.3 (*) -| +--- org.grails:grails-plugin-url-mappings -> 5.3.3 (*) -| +--- org.grails.plugins:views-json:2.3.2 (*) -| +--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 (*) -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- io.micronaut:micronaut-http-client:3.2.0 (*) -| +--- org.grails.plugins:converters:3.3.1 -> 4.0.0 (*) -| \--- com.github.javaparser:javaparser-core:3.25.5 -+--- org.glassfish.web:el-impl:2.1.2-b03 -| \--- javax.el:el-api:2.1.2-b03 -+--- com.h2database:h2 -> 1.4.200 -+--- org.apache.tomcat:tomcat-jdbc -> 9.0.71 -| \--- org.apache.tomcat:tomcat-juli:9.0.71 -+--- org.grails:grails-test-mixins:3.3.0 -| +--- org.codehaus.groovy:groovy:2.4.11 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| +--- org.grails:grails-web-jsp:3.3.0 -| | +--- org.codehaus.groovy:groovy:2.4.11 -> 3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | +--- org.grails:grails-web-common:3.2.10 -> 5.3.3 (*) -| | \--- org.grails:grails-web-gsp:3.3.0 -> 5.2.2 (*) -| +--- org.grails.plugins:async:3.3.0 -> 4.0.0 (*) -| +--- org.grails:grails-test:3.3.0 -> 5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.springframework:spring-tx:5.3.25 (*) -| | +--- org.springframework.boot:spring-boot-test:2.7.9 -> 2.7.8 -| | | \--- org.springframework.boot:spring-boot:2.7.8 (*) -| | +--- org.codehaus.groovy:groovy-test-junit5:3.0.11 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 -| | | | +--- org.junit:junit-bom:5.8.2 (*) -| | | | +--- org.opentest4j:opentest4j:1.2.0 -| | | | \--- org.junit.platform:junit-platform-commons:1.8.2 -| | | | \--- org.junit:junit-bom:5.8.2 (*) -| | | +--- org.junit.platform:junit-platform-launcher:1.8.2 -| | | | +--- org.junit:junit-bom:5.8.2 (*) -| | | | \--- org.junit.platform:junit-platform-engine:1.8.2 -| | | | +--- org.junit:junit-bom:5.8.2 (*) -| | | | +--- org.opentest4j:opentest4j:1.2.0 -| | | | \--- org.junit.platform:junit-platform-commons:1.8.2 (*) -| | | \--- org.junit.jupiter:junit-jupiter-engine:5.8.2 -| | | +--- org.junit:junit-bom:5.8.2 (*) -| | | +--- org.junit.platform:junit-platform-engine:1.8.2 (*) -| | | \--- org.junit.jupiter:junit-jupiter-api:5.8.2 (*) -| | +--- org.codehaus.groovy:groovy-test:3.0.11 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | \--- junit:junit:4.13.2 (*) -| | +--- org.spockframework:spock-core:2.1-groovy-3.0 -| | +--- org.junit.platform:junit-platform-runner:1.9.2 -> 1.8.2 -| | | +--- org.junit.platform:junit-platform-suite-commons:1.8.2 -| | | | +--- org.junit.platform:junit-platform-engine:1.8.2 (*) -| | | | +--- org.junit.platform:junit-platform-suite-api:1.8.2 -| | | | | +--- org.junit:junit-bom:5.8.2 (*) -| | | | | \--- org.junit.platform:junit-platform-commons:1.8.2 (*) -| | | | +--- org.junit:junit-bom:5.8.2 (*) -| | | | \--- org.junit.platform:junit-platform-launcher:1.8.2 (*) -| | | +--- org.junit:junit-bom:5.8.2 (*) -| | | +--- junit:junit:4.13.2 (*) -| | | +--- org.junit.platform:junit-platform-launcher:1.8.2 (*) -| | | \--- org.junit.platform:junit-platform-suite-api:1.8.2 (*) -| | +--- org.grails.plugins:converters:4.0.0 (*) -| | +--- jline:jline:2.14.6 -| | +--- org.fusesource.jansi:jansi:1.18 -| | +--- org.apache.ant:ant:1.10.13 (*) -| | +--- org.apache.ant:ant-junit:1.10.13 (*) -| | \--- org.objenesis:objenesis:3.3 -| +--- org.grails:grails-datastore-gorm-test:6.1.6.RELEASE -> 7.3.3 -| | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.grails:grails-datastore-gorm:7.3.3 (*) -| | \--- org.grails:grails-datastore-core:7.3.3 (*) -| +--- org.grails:grails-logging:3.3.0 -> 5.3.3 (*) -| +--- javax.servlet:javax.servlet-api:3.1.0 -> 4.0.1 -| +--- org.springframework:spring-test:4.3.9.RELEASE -> 5.3.25 (*) -| +--- org.springframework.boot:spring-boot-starter-test:1.5.6.RELEASE -> 2.7.8 -| | +--- org.springframework.boot:spring-boot-starter:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot-test:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot-test-autoconfigure:2.7.8 -| | | +--- org.springframework.boot:spring-boot:2.7.8 (*) -| | | +--- org.springframework.boot:spring-boot-test:2.7.8 (*) -| | | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) -| | +--- com.jayway.jsonpath:json-path:2.7.0 -| | | +--- net.minidev:json-smart:2.4.7 -> 2.4.8 -| | | | \--- net.minidev:accessors-smart:2.4.8 -| | | | \--- org.ow2.asm:asm:9.1 -| | | \--- org.slf4j:slf4j-api:1.7.33 -> 1.7.36 -| | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 (*) -| | +--- org.assertj:assertj-core:3.22.0 -| | +--- org.hamcrest:hamcrest:2.2 -| | +--- org.junit.jupiter:junit-jupiter:5.8.2 -| | | +--- org.junit:junit-bom:5.8.2 (*) -| | | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 (*) -| | | +--- org.junit.jupiter:junit-jupiter-params:5.8.2 -| | | | +--- org.junit:junit-bom:5.8.2 (*) -| | | | \--- org.junit.jupiter:junit-jupiter-api:5.8.2 (*) -| | | \--- org.junit.jupiter:junit-jupiter-engine:5.8.2 (*) -| | +--- org.mockito:mockito-core:4.5.1 -| | | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 -| | | +--- net.bytebuddy:byte-buddy-agent:1.12.9 -> 1.12.22 -| | | \--- org.objenesis:objenesis:3.2 -> 3.3 -| | +--- org.mockito:mockito-junit-jupiter:4.5.1 -| | | +--- org.mockito:mockito-core:4.5.1 (*) -| | | \--- org.junit.jupiter:junit-jupiter-api:5.8.2 (*) -| | +--- org.skyscreamer:jsonassert:1.5.1 -| | | \--- com.vaadin.external.google:android-json:0.0.20131108.vaadin1 -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-test:5.3.25 (*) -| | \--- org.xmlunit:xmlunit-core:2.9.1 -| +--- org.spockframework:spock-spring:1.1-groovy-2.4 -> 2.1-groovy-3.0 -| +--- org.spockframework:spock-core:1.1-groovy-2.4 -> 2.1-groovy-3.0 -| +--- junit:junit:4.12 -> 4.13.2 (*) -| \--- cglib:cglib:2.2.2 -| \--- asm:asm:3.3.1 -+--- org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1 -| +--- org.seleniumhq.selenium:selenium-remote-driver:2.47.1 -> 4.1.4 -| | +--- com.beust:jcommander:1.82 -| | +--- com.google.auto.service:auto-service-annotations:1.0.1 -| | +--- com.google.auto.service:auto-service:1.0.1 -| | | +--- com.google.auto.service:auto-service-annotations:1.0.1 -| | | +--- com.google.auto:auto-common:1.2 -| | | | \--- com.google.guava:guava:31.0.1-jre -> 31.1-jre -| | | | +--- com.google.guava:failureaccess:1.0.1 -| | | | +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava -| | | | +--- com.google.code.findbugs:jsr305:3.0.2 -| | | | +--- org.checkerframework:checker-qual:3.12.0 -> 3.19.0 -| | | | +--- com.google.errorprone:error_prone_annotations:2.11.0 -| | | | \--- com.google.j2objc:j2objc-annotations:1.3 -| | | \--- com.google.guava:guava:31.0.1-jre -> 31.1-jre (*) -| | +--- com.google.guava:guava:31.1-jre (*) -| | +--- io.netty:netty-buffer:4.1.76.Final -> 4.1.87.Final (*) -| | +--- io.netty:netty-codec-http:4.1.76.Final -> 4.1.87.Final (*) -| | +--- io.netty:netty-common:4.1.76.Final -> 4.1.87.Final -| | +--- io.netty:netty-transport-classes-epoll:4.1.76.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | \--- io.netty:netty-transport-native-unix-common:4.1.87.Final (*) -| | +--- io.netty:netty-transport-classes-kqueue:4.1.76.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | \--- io.netty:netty-transport-native-unix-common:4.1.87.Final (*) -| | +--- io.netty:netty-transport-native-epoll:4.1.76.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final (*) -| | | \--- io.netty:netty-transport-classes-epoll:4.1.87.Final (*) -| | +--- io.netty:netty-transport-native-kqueue:4.1.76.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final (*) -| | | \--- io.netty:netty-transport-classes-kqueue:4.1.87.Final (*) -| | +--- io.netty:netty-transport-native-unix-common:4.1.76.Final -> 4.1.87.Final (*) -| | +--- io.netty:netty-transport:4.1.76.Final -> 4.1.87.Final (*) -| | +--- io.opentelemetry:opentelemetry-api:1.13.0 -| | | \--- io.opentelemetry:opentelemetry-context:1.13.0 -| | +--- io.opentelemetry:opentelemetry-context:1.13.0 -| | +--- io.opentelemetry:opentelemetry-exporter-logging:1.13.0 -| | | +--- io.opentelemetry:opentelemetry-sdk:1.13.0 -| | | | +--- io.opentelemetry:opentelemetry-sdk-metrics:1.13.0-alpha -| | | | | +--- io.opentelemetry:opentelemetry-api:1.13.0 (*) -| | | | | \--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 -| | | | | +--- io.opentelemetry:opentelemetry-semconv:1.13.0-alpha -| | | | | | \--- io.opentelemetry:opentelemetry-api:1.13.0 (*) -| | | | | \--- io.opentelemetry:opentelemetry-api:1.13.0 (*) -| | | | +--- io.opentelemetry:opentelemetry-sdk-logs:1.13.0-alpha -| | | | | \--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 (*) -| | | | +--- io.opentelemetry:opentelemetry-api:1.13.0 (*) -| | | | +--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 (*) -| | | | \--- io.opentelemetry:opentelemetry-sdk-trace:1.13.0 -| | | | +--- io.opentelemetry:opentelemetry-semconv:1.13.0-alpha (*) -| | | | +--- io.opentelemetry:opentelemetry-api:1.13.0 (*) -| | | | \--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 (*) -| | | +--- io.opentelemetry:opentelemetry-sdk-metrics:1.13.0-alpha (*) -| | | \--- io.opentelemetry:opentelemetry-sdk-logs:1.13.0-alpha (*) -| | +--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 (*) -| | +--- io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.13.0 -| | | +--- io.opentelemetry:opentelemetry-sdk-metrics:1.13.0-alpha (*) -| | | +--- io.opentelemetry:opentelemetry-sdk-logs:1.13.0-alpha (*) -| | | \--- io.opentelemetry:opentelemetry-sdk:1.13.0 (*) -| | +--- io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.13.0-alpha -| | | +--- io.opentelemetry:opentelemetry-semconv:1.13.0-alpha (*) -| | | +--- io.opentelemetry:opentelemetry-sdk:1.13.0 (*) -| | | +--- io.opentelemetry:opentelemetry-sdk-metrics:1.13.0-alpha (*) -| | | +--- io.opentelemetry:opentelemetry-sdk-logs:1.13.0-alpha (*) -| | | \--- io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.13.0 (*) -| | +--- io.opentelemetry:opentelemetry-sdk-trace:1.13.0 (*) -| | +--- io.opentelemetry:opentelemetry-sdk:1.13.0 (*) -| | +--- io.opentelemetry:opentelemetry-semconv:1.13.0-alpha (*) -| | +--- io.ous:jtoml:2.0.0 -| | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 -| | +--- org.apache.commons:commons-exec:1.3 -| | +--- org.asynchttpclient:async-http-client:2.12.3 -| | | +--- org.asynchttpclient:async-http-client-netty-utils:2.12.3 -| | | | +--- io.netty:netty-buffer:4.1.60.Final -> 4.1.87.Final (*) -| | | | +--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 -| | | | \--- com.sun.activation:jakarta.activation:1.2.2 -| | | +--- io.netty:netty-codec-http:4.1.60.Final -> 4.1.87.Final (*) -| | | +--- io.netty:netty-handler:4.1.60.Final -> 4.1.87.Final (*) -| | | +--- io.netty:netty-codec-socks:4.1.60.Final -> 4.1.87.Final (*) -| | | +--- io.netty:netty-handler-proxy:4.1.60.Final -> 4.1.87.Final (*) -| | | +--- io.netty:netty-transport-native-epoll:4.1.60.Final -> 4.1.87.Final (*) -| | | +--- io.netty:netty-transport-native-kqueue:4.1.60.Final -> 4.1.87.Final (*) -| | | +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| | | +--- com.typesafe.netty:netty-reactive-streams:2.0.4 -| | | | +--- io.netty:netty-handler:4.1.43.Final -> 4.1.87.Final (*) -| | | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| | | +--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 -| | | \--- com.sun.activation:jakarta.activation:1.2.2 -| | +--- org.seleniumhq.selenium:selenium-api:4.1.4 -| | +--- org.seleniumhq.selenium:selenium-http:4.1.4 -| | | +--- com.google.guava:guava:31.1-jre (*) -| | | +--- dev.failsafe:failsafe:3.2.3 -| | | +--- org.seleniumhq.selenium:selenium-api:4.1.4 -| | | \--- org.seleniumhq.selenium:selenium-json:4.1.4 -| | | \--- org.seleniumhq.selenium:selenium-api:4.1.4 -| | \--- org.seleniumhq.selenium:selenium-json:4.1.4 (*) -| +--- net.sourceforge.htmlunit:htmlunit:2.17 -> 2.18 -| | +--- xalan:xalan:2.7.2 -| | | \--- xalan:serializer:2.7.2 -| | | \--- xml-apis:xml-apis:1.3.04 -> 1.4.01 -| | +--- commons-collections:commons-collections:3.2.1 -> 3.2.2 -| | +--- org.apache.commons:commons-lang3:3.4 -> 3.12.0 -| | +--- org.apache.httpcomponents:httpclient:4.5 -> 4.5.14 -| | | +--- org.apache.httpcomponents:httpcore:4.4.16 -| | | +--- commons-logging:commons-logging:1.2 -| | | \--- commons-codec:commons-codec:1.11 -> 1.15 -| | +--- org.apache.httpcomponents:httpmime:4.5 -> 4.5.14 -| | | \--- org.apache.httpcomponents:httpclient:4.5.14 (*) -| | +--- commons-codec:commons-codec:1.10 -> 1.15 -| | +--- net.sourceforge.htmlunit:htmlunit-core-js:2.17 -| | +--- xerces:xercesImpl:2.11.0 -| | | \--- xml-apis:xml-apis:1.4.01 -| | +--- net.sourceforge.nekohtml:nekohtml:1.9.22 -| | +--- net.sourceforge.cssparser:cssparser:0.9.16 -| | | \--- org.w3c.css:sac:1.3 -| | +--- commons-io:commons-io:2.4 -> 2.11.0 -| | +--- commons-logging:commons-logging:1.2 -| | \--- org.eclipse.jetty.websocket:websocket-client:9.2.12.v20150709 -> 9.4.50.v20221201 -| | +--- org.eclipse.jetty:jetty-client:9.4.50.v20221201 -| | | +--- org.eclipse.jetty:jetty-http:9.4.50.v20221201 -| | | | +--- org.eclipse.jetty:jetty-util:9.4.50.v20221201 -| | | | \--- org.eclipse.jetty:jetty-io:9.4.50.v20221201 -| | | | \--- org.eclipse.jetty:jetty-util:9.4.50.v20221201 -| | | \--- org.eclipse.jetty:jetty-io:9.4.50.v20221201 (*) -| | +--- org.eclipse.jetty:jetty-util:9.4.50.v20221201 -| | +--- org.eclipse.jetty:jetty-io:9.4.50.v20221201 (*) -| | \--- org.eclipse.jetty.websocket:websocket-common:9.4.50.v20221201 -| | +--- org.eclipse.jetty.websocket:websocket-api:9.4.50.v20221201 -| | +--- org.eclipse.jetty:jetty-util:9.4.50.v20221201 -| | \--- org.eclipse.jetty:jetty-io:9.4.50.v20221201 (*) -| \--- org.apache.httpcomponents:httpclient:4.4.1 -> 4.5.14 (*) -\--- net.sourceforge.htmlunit:htmlunit:2.18 (*) - -integrationTestRuntimeOnly - Runtime only dependencies for source set 'integration test'. (n) -No dependencies - -productionRuntimeClasspath -+--- org.springframework.boot:spring-boot-starter-logging -> 2.7.8 -| +--- ch.qos.logback:logback-classic:1.2.11 -| | +--- ch.qos.logback:logback-core:1.2.11 -| | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| +--- org.apache.logging.log4j:log4j-to-slf4j:2.17.2 -| | +--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 -| | \--- org.apache.logging.log4j:log4j-api:2.17.2 -| \--- org.slf4j:jul-to-slf4j:1.7.36 -| \--- org.slf4j:slf4j-api:1.7.36 -+--- org.springframework.boot:spring-boot-autoconfigure -> 2.7.8 -| \--- org.springframework.boot:spring-boot:2.7.8 -| +--- org.springframework:spring-core:5.3.25 -| | \--- org.springframework:spring-jcl:5.3.25 -| \--- org.springframework:spring-context:5.3.25 -| +--- org.springframework:spring-aop:5.3.25 -| | +--- org.springframework:spring-beans:5.3.25 -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | \--- org.springframework:spring-core:5.3.25 (*) -| +--- org.springframework:spring-beans:5.3.25 (*) -| +--- org.springframework:spring-core:5.3.25 (*) -| \--- org.springframework:spring-expression:5.3.25 -| \--- org.springframework:spring-core:5.3.25 (*) -+--- org.grails:grails-core:5.3.2 -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 -| | +--- org.checkerframework:checker-qual:3.19.0 -| | \--- com.google.errorprone:error_prone_annotations:2.10.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 -| | \--- org.slf4j:slf4j-api:1.7.36 -| +--- io.micronaut:micronaut-inject:3.8.4 -> 3.2.0 -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- jakarta.inject:jakarta.inject-api:2.0.1 -| | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 -| | +--- io.micronaut:micronaut-core:3.2.0 -| | | \--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | \--- org.yaml:snakeyaml:1.29 -> 1.30 -| +--- javax.inject:javax.inject:1 -| +--- io.micronaut.spring:micronaut-spring-context:4.5.0 -| | +--- io.micronaut.cache:micronaut-cache-core:3.5.0 -| | | +--- io.projectreactor:reactor-core:3.4.21 -> 3.4.26 -| | | | \--- org.reactivestreams:reactive-streams:1.0.4 -| | | +--- io.micronaut:micronaut-bom:3.5.4 -> 3.2.0 -| | | | +--- org.codehaus.groovy:groovy-bom:3.0.9 -> 3.0.11 -| | | | | +--- org.codehaus.groovy:groovy:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-ant:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-json:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-sql:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-xml:3.0.11 (c) -| | | | | \--- org.codehaus.groovy:groovy-groovydoc:3.0.11 (c) -| | | | +--- io.grpc:grpc-bom:1.39.0 -| | | | +--- com.fasterxml.jackson:jackson-bom:2.12.4 -> 2.13.4 -| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) -| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) -| | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) -| | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) -| | | | +--- org.junit:junit-bom:5.7.2 -| | | | +--- org.jetbrains.kotlin:kotlin-bom:1.6.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.5.1 -| | | | +--- io.ktor:ktor-bom:1.6.1 -| | | | +--- io.micrometer:micrometer-bom:1.8.0 -| | | | | \--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) -| | | | +--- io.micronaut.aws:micronaut-aws-bom:3.0.4 -| | | | +--- io.micronaut.cache:micronaut-cache-bom:3.0.0 -| | | | | +--- io.micronaut.cache:micronaut-cache-core:3.0.0 -> 3.5.0 (c) -| | | | | \--- com.github.ben-manes.caffeine:caffeine:2.9.1 -> 2.9.3 (c) -| | | | +--- io.micronaut.coherence:micronaut-coherence-bom:3.0.1 -| | | | +--- io.micronaut.data:micronaut-data-bom:3.2.0 -| | | | +--- io.micronaut.groovy:micronaut-groovy-bom:3.0.0 -| | | | | \--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) -| | | | +--- io.micronaut.micrometer:micronaut-micrometer-bom:4.1.0 -| | | | | +--- io.micrometer:micrometer-bom:1.8.0 (*) -| | | | | \--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) -| | | | +--- io.micronaut.oraclecloud:micronaut-oraclecloud-bom:2.0.3 -| | | | +--- io.micronaut.r2dbc:micronaut-r2dbc-bom:2.0.0 -| | | | | \--- io.r2dbc:r2dbc-bom:Arabba-SR9 -| | | | +--- io.micronaut.sql:micronaut-sql-bom:4.0.4 -| | | | | +--- org.hibernate:hibernate-core:5.5.3.Final -> 5.6.11.Final (c) -| | | | | \--- org.apache.tomcat:tomcat-jdbc:10.0.8 -> 9.0.71 (c) -| | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 -| | | | | +--- org.junit:junit-bom:5.7.2 -| | | | | +--- org.spockframework:spock-bom:2.0-groovy-3.0 -| | | | | \--- org.hamcrest:hamcrest:2.2 (c) -| | | | +--- io.micronaut.views:micronaut-views-bom:3.0.1 -| | | | +--- io.netty:netty-bom:4.1.70.Final -| | | | | +--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-codec:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-codec-socks:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-common:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-resolver:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-transport:4.1.70.Final -> 4.1.87.Final (c) -| | | | | \--- io.netty:netty-transport-native-unix-common:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- com.google.protobuf:protobuf-bom:3.17.2 -| | | | +--- org.testcontainers:testcontainers-bom:1.16.1 -| | | | +--- io.micronaut:micronaut-aop:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-buffer-netty:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-context:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-core:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-http:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-http-client:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-http-client-core:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-http-netty:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-inject:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-runtime:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-websocket:3.2.0 (c) -| | | | +--- org.grails:grails-datastore-core:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-gorm:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-gorm-support:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-gorm-validation:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-web:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-gorm-hibernate5:7.1.0.M3 -> 7.2.2 (c) -| | | | +--- org.codehaus.groovy:groovy:3.0.9 -> 3.0.11 (c) -| | | | +--- org.codehaus.groovy:groovy-json:3.0.9 -> 3.0.11 (c) -| | | | +--- org.codehaus.groovy:groovy-sql:3.0.9 -> 3.0.11 (c) -| | | | +--- org.codehaus.groovy:groovy-templates:3.0.9 -> 3.0.11 (c) -| | | | +--- com.h2database:h2:1.4.200 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 (c) -| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 (c) -| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 (c) -| | | | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 (c) -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 (c) -| | | | +--- ch.qos.logback:logback-classic:1.2.3 -> 1.2.11 (c) -| | | | +--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) -| | | | +--- io.micronaut.rxjava2:micronaut-rxjava2:1.1.0 -> 1.2.0 (c) -| | | | +--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.1.0 -> 1.2.0 (c) -| | | | +--- io.micronaut.spring:micronaut-spring:4.0.0 -> 4.5.0 (c) -| | | | +--- io.micronaut.spring:micronaut-spring-context:4.0.0 -> 4.5.0 (c) -| | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 (c) -| | | | +--- org.mongodb:mongodb-driver-core:4.3.0 -> 4.5.0 (c) -| | | | +--- org.mongodb:mongodb-driver-sync:4.3.0 -> 4.5.0 (c) -| | | | +--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 (c) -| | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (c) -| | | | +--- io.reactivex.rxjava2:rxjava:2.2.10 -> 2.2.21 (c) -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 (c) -| | | | +--- org.yaml:snakeyaml:1.29 -> 1.30 (c) -| | | | +--- org.springframework:spring-core:5.3.9 -> 5.3.25 (c) -| | | | +--- org.springframework.boot:spring-boot-starter:2.5.3 -> 2.7.8 (c) -| | | | +--- org.springframework:spring-context:5.3.9 -> 5.3.25 (c) -| | | | +--- org.springframework:spring-jdbc:5.3.9 -> 5.3.25 (c) -| | | | +--- org.springframework:spring-orm:5.3.9 -> 5.3.25 (c) -| | | | +--- org.springframework:spring-tx:5.3.9 -> 5.3.25 (c) -| | | | +--- javax.validation:validation-api:2.0.1.Final (c) -| | | | \--- io.micronaut:micronaut-json-core:3.2.0 (c) -| | | +--- io.micronaut:micronaut-inject:3.5.4 -> 3.2.0 (*) -| | | +--- io.micronaut:micronaut-aop:3.5.4 -> 3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | | \--- io.micronaut:micronaut-core:3.2.0 (*) -| | | +--- io.micronaut:micronaut-http:3.5.4 -> 3.2.0 -| | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | | \--- io.micronaut:micronaut-core-reactive:3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-core:3.2.0 (*) -| | | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| | | \--- io.micronaut:micronaut-runtime:3.5.4 -> 3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | +--- io.micronaut:micronaut-aop:3.2.0 (*) -| | | +--- io.micronaut:micronaut-context:3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | | +--- io.micronaut:micronaut-aop:3.2.0 (*) -| | | | \--- javax.validation:validation-api:2.0.1.Final -| | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (*) -| | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 -| | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | | +--- io.micronaut:micronaut-json-core:3.2.0 -| | | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | | | +--- io.micronaut:micronaut-context:3.2.0 (*) -| | | | | | \--- io.micronaut:micronaut-http:3.2.0 (*) -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 -| | | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | | \--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 -| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) -| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | +--- javax.validation:validation-api:2.0.1.Final -| | | \--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) -| | +--- org.springframework:spring-framework-bom:5.3.25 -| | | +--- org.springframework:spring-aop:5.3.25 (c) -| | | +--- org.springframework:spring-beans:5.3.25 (c) -| | | +--- org.springframework:spring-context:5.3.25 (c) -| | | +--- org.springframework:spring-core:5.3.25 (c) -| | | +--- org.springframework:spring-expression:5.3.25 (c) -| | | +--- org.springframework:spring-jcl:5.3.25 (c) -| | | +--- org.springframework:spring-jdbc:5.3.25 (c) -| | | +--- org.springframework:spring-orm:5.3.25 (c) -| | | +--- org.springframework:spring-test:5.3.25 (c) -| | | +--- org.springframework:spring-tx:5.3.25 (c) -| | | +--- org.springframework:spring-web:5.3.25 (c) -| | | +--- org.springframework:spring-webmvc:5.3.25 (c) -| | | \--- org.springframework:spring-context-support:5.3.25 (c) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | +--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) -| | \--- io.micronaut.spring:micronaut-spring:4.5.0 -| | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) -| | +--- org.springframework:spring-framework-bom:5.3.25 (*) -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-tx:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | \--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) -| +--- io.micronaut.cache:micronaut-cache-core:3.5.0 (*) -| +--- io.micronaut:micronaut-runtime:3.8.4 -> 3.2.0 (*) -| +--- javax.persistence:javax.persistence-api:2.2 -| +--- javax.annotation:javax.annotation-api:1.3.2 -| +--- org.springframework.boot:spring-boot:2.7.8 (*) -| +--- org.springframework:spring-core:5.3.25 (*) -| +--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.springframework:spring-beans:5.3.25 (*) -| +--- org.springframework:spring-context:5.3.25 (*) -| +--- org.grails:grails-bootstrap:5.3.2 -> 5.3.3 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.codehaus.groovy:groovy-xml:3.0.11 -| | | \--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.codehaus.groovy:groovy-templates:3.0.11 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) -| | +--- org.yaml:snakeyaml:1.33 -> 1.30 -| | \--- io.micronaut:micronaut-inject:3.8.5 -> 3.2.0 (*) -| +--- org.grails:grails-spring:5.3.2 -> 5.3.3 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.springframework:spring-tx:5.3.25 (*) -| | +--- org.springframework:spring-web:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | \--- org.grails:grails-bootstrap:5.3.3 (*) -| +--- org.grails:grails-datastore-core:7.3.3 -| | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| | +--- org.javassist:javassist:3.29.2-GA -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- javax.transaction:jta:1.1 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- javax.persistence:javax.persistence-api:2.2 -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-beans:5.3.25 (*) -| | +--- org.springframework:spring-tx:5.3.25 (*) -| | \--- org.springframework:spring-context:5.3.25 (*) -| +--- org.apache.ant:ant:1.10.13 -| | \--- org.apache.ant:ant-launcher:1.10.13 -| +--- jline:jline:2.14.6 -| \--- org.fusesource.jansi:jansi:1.18 -+--- org.springframework.boot:spring-boot-starter-actuator -> 2.7.8 -| +--- org.springframework.boot:spring-boot-starter:2.7.8 -| | +--- org.springframework.boot:spring-boot:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot-starter-logging:2.7.8 (*) -| | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 -| | +--- org.springframework:spring-core:5.3.25 (*) -| | \--- org.yaml:snakeyaml:1.30 -| +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.7.8 -| | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4.2 (*) -| | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (*) -| | +--- org.springframework.boot:spring-boot-actuator:2.7.8 -| | | \--- org.springframework.boot:spring-boot:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot:2.7.8 (*) -| | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) -| \--- io.micrometer:micrometer-core:1.9.7 -| +--- org.hdrhistogram:HdrHistogram:2.1.12 -| \--- org.latencyutils:LatencyUtils:2.0.3 -+--- org.springframework.boot:spring-boot-starter-tomcat -> 2.7.8 -| +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 -| +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 -| +--- org.apache.tomcat.embed:tomcat-embed-el:9.0.71 -| \--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.71 -| \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 -+--- org.grails:grails-plugin-url-mappings -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 -| | \--- org.springframework:spring-core:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-web:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.grails:grails-web-common:5.3.3 -| | | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | +--- org.grails:grails-databinding:5.3.3 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) -| | | +--- org.grails:grails-encoder:5.3.3 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | | +--- org.codehaus.groovy:groovy-json:3.0.11 -| | | | | \--- org.codehaus.groovy:groovy:3.0.11 -| | | | \--- org.springframework:spring-web:5.3.25 (*) -| | | +--- org.grails:grails-gsp:5.2.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | +--- org.grails:grails-taglib:5.2.2 -| | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | \--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | | +--- org.springframework:spring-webmvc:5.3.25 -| | | | +--- org.springframework:spring-aop:5.3.25 (*) -| | | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | | +--- org.springframework:spring-context:5.3.25 (*) -| | | | +--- org.springframework:spring-core:5.3.25 (*) -| | | | +--- org.springframework:spring-expression:5.3.25 (*) -| | | | \--- org.springframework:spring-web:5.3.25 (*) -| | | \--- org.springframework:spring-context-support:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | +--- org.springframework:spring-context:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.grails:grails-web-databinding:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-databinding:5.3.3 (*) -| | | \--- org.grails:grails-web-common:5.3.3 (*) -| | +--- org.grails:grails-web-fileupload:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | \--- commons-fileupload:commons-fileupload:1.5 -| | | \--- commons-io:commons-io:2.11.0 -| | +--- org.grails:grails-web-url-mappings:5.3.3 -| | | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | | | \--- commons-validator:commons-validator:1.7 -| | | | \--- commons-collections:commons-collections:3.2.2 -| | | +--- org.fusesource.jansi:jansi:1.18 -| | | \--- jline:jline:2.14.6 -| | +--- org.grails:grails-web-mvc:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | +--- org.grails:grails-web-url-mappings:5.3.3 (*) -| | | \--- org.grails:grails-web-sitemesh:5.2.2 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | \--- opensymphony:sitemesh:2.4.2 -| | +--- org.grails:grails-web-gsp:5.2.2 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.grails:grails-gsp:5.2.2 (*) -| | | +--- org.grails:grails-web-taglib:5.2.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | \--- org.grails:grails-taglib:5.2.2 (*) -| | | \--- org.grails:grails-web-sitemesh:5.2.2 (*) -| | \--- org.grails:grails-web-sitemesh:5.2.2 (*) -| +--- org.grails:grails-plugin-controllers:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | +--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-mimetypes:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | \--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-validation:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | \--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-domain-class:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | +--- org.grails:grails-spring:5.3.3 (*) -| | | +--- org.grails:grails-plugin-validation:5.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm:7.3.3 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- javax.el:javax.el-api:3.0.0 -> 3.0.1-b06 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) -| | | | \--- org.glassfish:javax.el:3.0.1-b12 -| | | +--- org.grails:grails-datastore-gorm-support:7.3.3 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-gorm:7.3.3 (*) -| | | | +--- org.grails:grails-core:5.2.4 -> 5.3.2 (*) -| | | | \--- org.grails:grails-bootstrap:5.2.4 -> 5.3.3 (*) -| | | \--- org.grails:grails-datastore-core:7.3.3 (*) -| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.9 -> 2.7.8 (*) -| | \--- org.grails:grails-plugin-i18n:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.grails:grails-web:5.3.3 (*) -| | \--- org.codehaus.groovy:groovy-ant:3.0.11 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.apache.ant:ant:1.10.12 -> 1.10.13 (*) -| | +--- org.apache.ant:ant-junit:1.10.12 -| | | \--- org.apache.ant:ant:1.10.12 -> 1.10.13 (*) -| | +--- org.apache.ant:ant-launcher:1.10.12 -> 1.10.13 -| | +--- org.apache.ant:ant-antlr:1.10.12 -| | \--- org.codehaus.groovy:groovy-groovydoc:3.0.11 -| \--- junit:junit:4.13.2 -| \--- org.hamcrest:hamcrest-core:1.3 -> 2.2 -| \--- org.hamcrest:hamcrest:2.2 -+--- org.grails:grails-plugin-rest -> 5.3.3 -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- javax.xml.bind:jaxb-api:2.3.1 -| | \--- javax.activation:javax.activation-api:1.2.0 -| +--- org.grails:grails-web:5.3.3 (*) -| +--- org.grails:grails-plugin-controllers:5.3.3 (*) -| +--- org.grails:grails-plugin-datasource:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.springframework:spring-jdbc:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | +--- org.springframework:spring-core:5.3.25 (*) -| | | \--- org.springframework:spring-tx:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy-sql:3.0.11 -| | | \--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.springframework:spring-context:5.3.25 (*) -| | +--- org.grails:grails-datastore-gorm:7.3.3 (*) -| | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails.plugins:converters:4.0.0 -| \--- org.apache.commons:commons-lang3:3.0 -> 3.12.0 -+--- org.grails:grails-plugin-codecs -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-web:5.3.3 (*) -| +--- org.grails:grails-encoder:5.3.3 (*) -| \--- org.grails:grails-codecs:5.3.3 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| \--- commons-codec:commons-codec:1.15 -+--- org.grails:grails-plugin-interceptors -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-plugin-controllers:5.3.3 (*) -| \--- org.grails:grails-plugin-url-mappings:5.3.3 (*) -+--- org.grails:grails-plugin-services -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails:grails-plugin-datasource:5.3.3 (*) -+--- org.grails:grails-plugin-datasource -> 5.3.3 (*) -+--- org.grails:grails-plugin-databinding -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails:grails-web:5.3.3 (*) -+--- org.grails:grails-web-boot -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| \--- org.grails:grails-web-common:5.3.3 (*) -+--- org.grails:grails-logging -> 5.3.3 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -+--- org.grails.plugins:cache -> 5.0.1 -| +--- com.bertramlabs.plugins:asset-pipeline-grails:3.0.7 -| | \--- com.bertramlabs.plugins:asset-pipeline-core:3.0.7 -| | \--- commons-logging:commons-logging:1.1.1 -| +--- gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.4 -| | +--- org.ysb33r.gradle:grolifant:0.11 -| | | \--- org.tukaani:xz:1.6 -| | \--- org.apache.maven:maven-artifact:3.6.3 -| | +--- org.codehaus.plexus:plexus-utils:3.2.1 -| | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 -| +--- org.codehaus.gpars:gpars:1.2.1 -| | +--- org.multiverse:multiverse-core:0.7.0 -| | \--- org.codehaus.jsr166-mirror:jsr166y:1.7.0 -| +--- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2 -| \--- org.javassist:javassist:3.27.0-GA -> 3.29.2-GA -+--- org.grails.plugins:async -> 4.0.0 -| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| +--- javax.annotation:javax.annotation-api:1.3.2 -| +--- org.grails:grails-plugin-controllers:4.0.0 -> 5.3.3 (*) -| +--- org.grails.plugins:events:4.0.0 -| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.grails:grails-core:4.0.0 -> 5.3.2 (*) -| | +--- org.grails:grails-events:4.0.0 -| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | +--- org.springframework:spring-context:5.1.8.RELEASE -> 5.3.25 (*) -| | | \--- org.springframework:spring-tx:5.1.8.RELEASE -> 5.3.25 (*) -| | +--- org.grails:grails-events-transform:4.0.0 -| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | +--- org.grails:grails-events:4.0.0 (*) -| | | \--- org.grails:grails-datastore-gorm:7.0.2.RELEASE -> 7.3.3 (*) -| | \--- org.grails:grails-events-compat:4.0.0 -| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.grails:grails-events:4.0.0 (*) -| | \--- org.grails:grails-events-transform:4.0.0 (*) -| \--- org.grails:grails-async:4.0.0 -| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| \--- javax.annotation:javax.annotation-api:1.3.2 -+--- org.grails.plugins:hibernate5 -> 7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.springframework.boot:spring-boot:2.7.0 -> 2.7.8 (*) -| +--- org.springframework:spring-orm:5.3.20 -> 5.3.25 -| | +--- org.springframework:spring-beans:5.3.25 (*) -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-jdbc:5.3.25 (*) -| | \--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.hibernate:hibernate-core:5.6.9.Final -> 5.6.11.Final -| | +--- org.jboss.logging:jboss-logging:3.4.3.Final -| | +--- javax.persistence:javax.persistence-api:2.2 -| | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 -| | +--- antlr:antlr:2.7.7 -| | +--- org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -| | +--- org.jboss:jandex:2.4.2.Final -| | +--- com.fasterxml:classmate:1.5.1 -| | +--- javax.activation:javax.activation-api:1.2.0 -| | +--- org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -| | | \--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.4.3.Final -| | +--- javax.xml.bind:jaxb-api:2.3.1 (*) -| | \--- org.glassfish.jaxb:jaxb-runtime:2.3.1 -> 2.3.7 -| | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 -| | +--- org.glassfish.jaxb:txw2:2.3.7 -| | +--- com.sun.istack:istack-commons-runtime:3.0.12 -| | \--- com.sun.activation:jakarta.activation:1.2.2 -| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | +--- org.springframework:spring-web:5.3.25 (*) -| | \--- org.springframework:spring-context:5.3.25 (*) -| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) -| \--- org.grails:grails-datastore-gorm-hibernate5:7.3.0 -> 7.2.2 -| +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.grails:grails-datastore-gorm:7.2.1 -> 7.3.3 (*) -| +--- org.springframework:spring-orm:5.3.16 -> 5.3.25 (*) -| +--- org.hibernate:hibernate-core:5.6.5.Final -> 5.6.11.Final (*) -| +--- org.hibernate:hibernate-validator:6.2.3.Final -| | \--- org.hibernate.validator:hibernate-validator:6.2.3.Final -> 6.2.5.Final -| | +--- jakarta.validation:jakarta.validation-api:2.0.2 -| | +--- org.jboss.logging:jboss-logging:3.4.1.Final -> 3.4.3.Final -| | \--- com.fasterxml:classmate:1.5.1 -| +--- javax.validation:validation-api:2.0.1.Final -| +--- javax.el:javax.el-api:3.0.1-b06 -| +--- javax.xml.bind:jaxb-api:2.3.1 (*) -| \--- com.sun.xml.bind:jaxb-impl:2.3.1 -+--- org.hibernate:hibernate-core:5.6.11.Final (*) -+--- org.grails.plugins:mongodb -> 7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm-mongodb-ext:7.3.0 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | \--- org.mongodb:mongodb-driver-sync:4.5.0 -| | +--- org.mongodb:bson:4.5.0 -> 4.6.1 -| | \--- org.mongodb:mongodb-driver-core:4.5.0 -| | \--- org.mongodb:bson:4.5.0 -> 4.6.1 -| \--- org.grails:grails-datastore-gorm-mongodb:7.3.0 -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.mongodb:mongodb-driver-sync:4.5.0 (*) -| +--- org.grails:grails-datastore-gorm-validation:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) -| \--- org.grails:grails-datastore-gorm-bson:7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) -| \--- org.mongodb:bson:4.5.0 -> 4.6.1 -+--- org.grails.plugins:views-json -> 2.3.2 -| +--- org.grails:grails-core:5.1.8 -> 5.3.2 (*) -| \--- org.grails:views-core:2.3.2 -| +--- org.codehaus.groovy:groovy-bom:3.0.11 (*) -| +--- org.grails:grails-encoder:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-web-common:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-web-url-mappings:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-plugin-rest:5.1.8 -> 5.3.3 (*) -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| \--- javax.servlet:javax.servlet-api:4.0.1 -+--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 -| +--- io.micronaut:micronaut-bom:3.3.0 -> 3.2.0 (*) -| +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) -| +--- io.micronaut.rxjava2:micronaut-rxjava2:1.2.0 -| | +--- io.micronaut:micronaut-bom:3.3.0 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-runtime:3.3.0 -> 3.2.0 (*) -| | \--- io.reactivex.rxjava2:rxjava:2.2.21 -| | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| \--- io.micronaut:micronaut-http-client:3.3.0 -> 3.2.0 -| +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| +--- io.micronaut:micronaut-runtime:3.2.0 (*) -| +--- io.micronaut:micronaut-http-client-core:3.2.0 -| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | \--- io.micronaut:micronaut-runtime:3.2.0 (*) -| +--- io.micronaut:micronaut-websocket:3.2.0 -| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | +--- io.micronaut:micronaut-http-client-core:3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | \--- io.micronaut:micronaut-aop:3.2.0 (*) -| +--- io.micronaut:micronaut-http-netty:3.2.0 -| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | +--- io.micronaut:micronaut-websocket:3.2.0 (*) -| | +--- io.micronaut:micronaut-buffer-netty:3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-core:3.2.0 (*) -| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | \--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final -| | | \--- io.netty:netty-common:4.1.87.Final -| | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-resolver:4.1.87.Final -| | | | \--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-codec:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-transport:4.1.87.Final (*) -| | | \--- io.netty:netty-handler:4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-resolver:4.1.87.Final (*) -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-transport:4.1.87.Final (*) -| | | \--- io.netty:netty-codec:4.1.87.Final (*) -| | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | +--- io.netty:netty-codec:4.1.87.Final (*) -| | | +--- io.netty:netty-handler:4.1.87.Final (*) -| | | \--- io.netty:netty-codec-http:4.1.87.Final (*) -| | \--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (*) -| \--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final -| +--- io.netty:netty-common:4.1.87.Final -| +--- io.netty:netty-buffer:4.1.87.Final (*) -| +--- io.netty:netty-transport:4.1.87.Final (*) -| +--- io.netty:netty-codec:4.1.87.Final (*) -| +--- io.netty:netty-codec-socks:4.1.87.Final -| | +--- io.netty:netty-common:4.1.87.Final -| | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | +--- io.netty:netty-transport:4.1.87.Final (*) -| | \--- io.netty:netty-codec:4.1.87.Final (*) -| \--- io.netty:netty-codec-http:4.1.87.Final (*) -+--- org.grails.plugins:views-json-templates -> 2.3.2 -| \--- org.grails.plugins:views-json:2.3.2 (*) -+--- com.graphql-java:graphql-java:20.6 -| +--- com.graphql-java:java-dataloader:3.2.0 -| | \--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 -| +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| \--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 -+--- org.apache.commons:commons-compress:1.10 -+--- project :grails-plugin-gorm-graphql-plugin -| +--- project :gorm-graphql -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- com.graphql-java:graphql-java:20.6 (*) -| | +--- org.grails:grails-datastore-gorm:7.3.4 -> 7.3.3 (*) -| | +--- org.grails:grails-datastore-gorm:7.3.1 -> 7.3.3 (*) -| | +--- com.graphql-java:graphql-java-extended-scalars:20.2 -| | | \--- com.graphql-java:graphql-java:20.2 -> 20.6 (*) -| | +--- com.github.javaparser:javaparser-core:3.25.5 -| | +--- org.grails.plugins:views-json:2.3.2 (*) -| | \--- org.javassist:javassist:3.29.2-GA -| +--- com.graphql-java:graphql-java:20.6 (*) -| +--- org.grails:grails-datastore-gorm:7.3.4 -> 7.3.3 (*) -| +--- org.grails:grails-plugin-controllers -> 5.3.3 (*) -| +--- org.grails:grails-plugin-databinding -> 5.3.3 (*) -| +--- org.grails:grails-plugin-rest -> 5.3.3 (*) -| +--- org.grails:grails-plugin-url-mappings -> 5.3.3 (*) -| +--- org.grails.plugins:views-json:2.3.2 (*) -| +--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 (*) -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- io.micronaut:micronaut-http-client:3.2.0 (*) -| +--- org.grails.plugins:converters:3.3.1 -> 4.0.0 (*) -| \--- com.github.javaparser:javaparser-core:3.25.5 -+--- org.glassfish.web:el-impl:2.1.2-b03 -| \--- javax.el:el-api:2.1.2-b03 -+--- com.h2database:h2 -> 1.4.200 -\--- org.apache.tomcat:tomcat-jdbc -> 9.0.71 - \--- org.apache.tomcat:tomcat-juli:9.0.71 - -profile -\--- org.grails.profiles:rest-api -> 5.0.1 - \--- org.grails.profiles:base:5.0.2 -> 5.1.1 - -runtimeClasspath - Runtime classpath of source set 'main'. -+--- io.micronaut:micronaut-inject-groovy:3.2.0 -| +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| +--- io.micronaut:micronaut-inject:3.2.0 -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- jakarta.inject:jakarta.inject-api:2.0.1 -| | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 -| | +--- io.micronaut:micronaut-core:3.2.0 -| | | \--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | \--- org.yaml:snakeyaml:1.29 -> 1.30 -| +--- io.micronaut:micronaut-aop:3.2.0 -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | \--- io.micronaut:micronaut-core:3.2.0 (*) -| \--- org.codehaus.groovy:groovy:3.0.9 -> 3.0.11 -+--- org.springframework.boot:spring-boot-starter-logging -> 2.7.8 -| +--- ch.qos.logback:logback-classic:1.2.11 -| | +--- ch.qos.logback:logback-core:1.2.11 -| | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| +--- org.apache.logging.log4j:log4j-to-slf4j:2.17.2 -| | +--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 -| | \--- org.apache.logging.log4j:log4j-api:2.17.2 -| \--- org.slf4j:jul-to-slf4j:1.7.36 -| \--- org.slf4j:slf4j-api:1.7.36 -+--- org.springframework.boot:spring-boot-autoconfigure -> 2.7.8 -| \--- org.springframework.boot:spring-boot:2.7.8 -| +--- org.springframework:spring-core:5.3.25 -| | \--- org.springframework:spring-jcl:5.3.25 -| \--- org.springframework:spring-context:5.3.25 -| +--- org.springframework:spring-aop:5.3.25 -| | +--- org.springframework:spring-beans:5.3.25 -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | \--- org.springframework:spring-core:5.3.25 (*) -| +--- org.springframework:spring-beans:5.3.25 (*) -| +--- org.springframework:spring-core:5.3.25 (*) -| \--- org.springframework:spring-expression:5.3.25 -| \--- org.springframework:spring-core:5.3.25 (*) -+--- org.grails:grails-core:5.3.2 -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 -| | +--- org.checkerframework:checker-qual:3.19.0 -| | \--- com.google.errorprone:error_prone_annotations:2.10.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 -| | \--- org.slf4j:slf4j-api:1.7.36 -| +--- io.micronaut:micronaut-inject:3.8.4 -> 3.2.0 (*) -| +--- javax.inject:javax.inject:1 -| +--- io.micronaut.spring:micronaut-spring-context:4.5.0 -| | +--- io.micronaut.cache:micronaut-cache-core:3.5.0 -| | | +--- io.projectreactor:reactor-core:3.4.21 -> 3.4.26 -| | | | \--- org.reactivestreams:reactive-streams:1.0.4 -| | | +--- io.micronaut:micronaut-bom:3.5.4 -> 3.2.0 -| | | | +--- org.codehaus.groovy:groovy-bom:3.0.9 -> 3.0.11 -| | | | | +--- org.codehaus.groovy:groovy:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-ant:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-json:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-sql:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-xml:3.0.11 (c) -| | | | | \--- org.codehaus.groovy:groovy-groovydoc:3.0.11 (c) -| | | | +--- io.grpc:grpc-bom:1.39.0 -| | | | +--- com.fasterxml.jackson:jackson-bom:2.12.4 -> 2.13.4 -| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) -| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) -| | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) -| | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) -| | | | +--- org.junit:junit-bom:5.7.2 -| | | | +--- org.jetbrains.kotlin:kotlin-bom:1.6.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.5.1 -| | | | +--- io.ktor:ktor-bom:1.6.1 -| | | | +--- io.micrometer:micrometer-bom:1.8.0 -| | | | | \--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) -| | | | +--- io.micronaut.aws:micronaut-aws-bom:3.0.4 -| | | | +--- io.micronaut.cache:micronaut-cache-bom:3.0.0 -| | | | | +--- io.micronaut.cache:micronaut-cache-core:3.0.0 -> 3.5.0 (c) -| | | | | \--- com.github.ben-manes.caffeine:caffeine:2.9.1 -> 2.9.3 (c) -| | | | +--- io.micronaut.coherence:micronaut-coherence-bom:3.0.1 -| | | | +--- io.micronaut.data:micronaut-data-bom:3.2.0 -| | | | +--- io.micronaut.groovy:micronaut-groovy-bom:3.0.0 -| | | | | \--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) -| | | | +--- io.micronaut.micrometer:micronaut-micrometer-bom:4.1.0 -| | | | | +--- io.micrometer:micrometer-bom:1.8.0 (*) -| | | | | \--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) -| | | | +--- io.micronaut.oraclecloud:micronaut-oraclecloud-bom:2.0.3 -| | | | +--- io.micronaut.r2dbc:micronaut-r2dbc-bom:2.0.0 -| | | | | \--- io.r2dbc:r2dbc-bom:Arabba-SR9 -| | | | +--- io.micronaut.sql:micronaut-sql-bom:4.0.4 -| | | | | +--- org.hibernate:hibernate-core:5.5.3.Final -> 5.6.11.Final (c) -| | | | | \--- org.apache.tomcat:tomcat-jdbc:10.0.8 -> 9.0.71 (c) -| | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 -| | | | | +--- org.junit:junit-bom:5.7.2 -| | | | | +--- org.spockframework:spock-bom:2.0-groovy-3.0 -| | | | | \--- org.hamcrest:hamcrest:2.2 (c) -| | | | +--- io.micronaut.views:micronaut-views-bom:3.0.1 -| | | | +--- io.netty:netty-bom:4.1.70.Final -| | | | | +--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-codec:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-codec-socks:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-common:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-resolver:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-transport:4.1.70.Final -> 4.1.87.Final (c) -| | | | | \--- io.netty:netty-transport-native-unix-common:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- com.google.protobuf:protobuf-bom:3.17.2 -| | | | +--- org.testcontainers:testcontainers-bom:1.16.1 -| | | | +--- io.micronaut:micronaut-aop:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-buffer-netty:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-context:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-core:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-http:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-http-client:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-http-client-core:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-http-netty:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-inject:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-inject-groovy:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-runtime:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-websocket:3.2.0 (c) -| | | | +--- org.grails:grails-datastore-core:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-gorm:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-gorm-support:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-gorm-validation:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-web:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-gorm-hibernate5:7.1.0.M3 -> 7.2.2 (c) -| | | | +--- org.codehaus.groovy:groovy:3.0.9 -> 3.0.11 (c) -| | | | +--- org.codehaus.groovy:groovy-json:3.0.9 -> 3.0.11 (c) -| | | | +--- org.codehaus.groovy:groovy-sql:3.0.9 -> 3.0.11 (c) -| | | | +--- org.codehaus.groovy:groovy-templates:3.0.9 -> 3.0.11 (c) -| | | | +--- com.h2database:h2:1.4.200 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 (c) -| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 (c) -| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 (c) -| | | | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 (c) -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 (c) -| | | | +--- ch.qos.logback:logback-classic:1.2.3 -> 1.2.11 (c) -| | | | +--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) -| | | | +--- io.micronaut.rxjava2:micronaut-rxjava2:1.1.0 -> 1.2.0 (c) -| | | | +--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.1.0 -> 1.2.0 (c) -| | | | +--- io.micronaut.spring:micronaut-spring:4.0.0 -> 4.5.0 (c) -| | | | +--- io.micronaut.spring:micronaut-spring-context:4.0.0 -> 4.5.0 (c) -| | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 (c) -| | | | +--- org.mongodb:mongodb-driver-core:4.3.0 -> 4.5.0 (c) -| | | | +--- org.mongodb:mongodb-driver-sync:4.3.0 -> 4.5.0 (c) -| | | | +--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 (c) -| | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (c) -| | | | +--- io.reactivex.rxjava2:rxjava:2.2.10 -> 2.2.21 (c) -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 (c) -| | | | +--- org.yaml:snakeyaml:1.29 -> 1.30 (c) -| | | | +--- org.springframework:spring-core:5.3.9 -> 5.3.25 (c) -| | | | +--- org.springframework.boot:spring-boot-starter:2.5.3 -> 2.7.8 (c) -| | | | +--- org.springframework:spring-context:5.3.9 -> 5.3.25 (c) -| | | | +--- org.springframework:spring-jdbc:5.3.9 -> 5.3.25 (c) -| | | | +--- org.springframework:spring-orm:5.3.9 -> 5.3.25 (c) -| | | | +--- org.springframework:spring-tx:5.3.9 -> 5.3.25 (c) -| | | | +--- javax.validation:validation-api:2.0.1.Final (c) -| | | | \--- io.micronaut:micronaut-json-core:3.2.0 (c) -| | | +--- io.micronaut:micronaut-inject:3.5.4 -> 3.2.0 (*) -| | | +--- io.micronaut:micronaut-aop:3.5.4 -> 3.2.0 (*) -| | | +--- io.micronaut:micronaut-http:3.5.4 -> 3.2.0 -| | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | | \--- io.micronaut:micronaut-core-reactive:3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-core:3.2.0 (*) -| | | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| | | \--- io.micronaut:micronaut-runtime:3.5.4 -> 3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | +--- io.micronaut:micronaut-aop:3.2.0 (*) -| | | +--- io.micronaut:micronaut-context:3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | | +--- io.micronaut:micronaut-aop:3.2.0 (*) -| | | | \--- javax.validation:validation-api:2.0.1.Final -| | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (*) -| | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 -| | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | | +--- io.micronaut:micronaut-json-core:3.2.0 -| | | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | | | +--- io.micronaut:micronaut-context:3.2.0 (*) -| | | | | | \--- io.micronaut:micronaut-http:3.2.0 (*) -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 -| | | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | | \--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 -| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) -| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | +--- javax.validation:validation-api:2.0.1.Final -| | | \--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) -| | +--- org.springframework:spring-framework-bom:5.3.25 -| | | +--- org.springframework:spring-aop:5.3.25 (c) -| | | +--- org.springframework:spring-beans:5.3.25 (c) -| | | +--- org.springframework:spring-context:5.3.25 (c) -| | | +--- org.springframework:spring-core:5.3.25 (c) -| | | +--- org.springframework:spring-expression:5.3.25 (c) -| | | +--- org.springframework:spring-jcl:5.3.25 (c) -| | | +--- org.springframework:spring-jdbc:5.3.25 (c) -| | | +--- org.springframework:spring-orm:5.3.25 (c) -| | | +--- org.springframework:spring-test:5.3.25 (c) -| | | +--- org.springframework:spring-tx:5.3.25 (c) -| | | +--- org.springframework:spring-web:5.3.25 (c) -| | | +--- org.springframework:spring-webmvc:5.3.25 (c) -| | | \--- org.springframework:spring-context-support:5.3.25 (c) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | +--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) -| | \--- io.micronaut.spring:micronaut-spring:4.5.0 -| | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) -| | +--- org.springframework:spring-framework-bom:5.3.25 (*) -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-tx:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | \--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) -| +--- io.micronaut.cache:micronaut-cache-core:3.5.0 (*) -| +--- io.micronaut:micronaut-runtime:3.8.4 -> 3.2.0 (*) -| +--- javax.persistence:javax.persistence-api:2.2 -| +--- javax.annotation:javax.annotation-api:1.3.2 -| +--- org.springframework.boot:spring-boot:2.7.8 (*) -| +--- org.springframework:spring-core:5.3.25 (*) -| +--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.springframework:spring-beans:5.3.25 (*) -| +--- org.springframework:spring-context:5.3.25 (*) -| +--- org.grails:grails-bootstrap:5.3.2 -> 5.3.3 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.codehaus.groovy:groovy-xml:3.0.11 -| | | \--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.codehaus.groovy:groovy-templates:3.0.11 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) -| | +--- org.yaml:snakeyaml:1.33 -> 1.30 -| | \--- io.micronaut:micronaut-inject:3.8.5 -> 3.2.0 (*) -| +--- org.grails:grails-spring:5.3.2 -> 5.3.3 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.springframework:spring-tx:5.3.25 (*) -| | +--- org.springframework:spring-web:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | \--- org.grails:grails-bootstrap:5.3.3 (*) -| +--- org.grails:grails-datastore-core:7.3.3 -| | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| | +--- org.javassist:javassist:3.29.2-GA -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- javax.transaction:jta:1.1 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- javax.persistence:javax.persistence-api:2.2 -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-beans:5.3.25 (*) -| | +--- org.springframework:spring-tx:5.3.25 (*) -| | \--- org.springframework:spring-context:5.3.25 (*) -| +--- org.apache.ant:ant:1.10.13 -| | \--- org.apache.ant:ant-launcher:1.10.13 -| +--- jline:jline:2.14.6 -| \--- org.fusesource.jansi:jansi:1.18 -+--- org.springframework.boot:spring-boot-starter-actuator -> 2.7.8 -| +--- org.springframework.boot:spring-boot-starter:2.7.8 -| | +--- org.springframework.boot:spring-boot:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot-starter-logging:2.7.8 (*) -| | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 -| | +--- org.springframework:spring-core:5.3.25 (*) -| | \--- org.yaml:snakeyaml:1.30 -| +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.7.8 -| | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4.2 (*) -| | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (*) -| | +--- org.springframework.boot:spring-boot-actuator:2.7.8 -| | | \--- org.springframework.boot:spring-boot:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot:2.7.8 (*) -| | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) -| \--- io.micrometer:micrometer-core:1.9.7 -| +--- org.hdrhistogram:HdrHistogram:2.1.12 -| \--- org.latencyutils:LatencyUtils:2.0.3 -+--- org.springframework.boot:spring-boot-starter-tomcat -> 2.7.8 -| +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 -| +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 -| +--- org.apache.tomcat.embed:tomcat-embed-el:9.0.71 -| \--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.71 -| \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 -+--- org.grails:grails-plugin-url-mappings -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 -| | \--- org.springframework:spring-core:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-web:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.grails:grails-web-common:5.3.3 -| | | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | +--- org.grails:grails-databinding:5.3.3 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) -| | | +--- org.grails:grails-encoder:5.3.3 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | | +--- org.codehaus.groovy:groovy-json:3.0.11 -| | | | | \--- org.codehaus.groovy:groovy:3.0.11 -| | | | \--- org.springframework:spring-web:5.3.25 (*) -| | | +--- org.grails:grails-gsp:5.2.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | +--- org.grails:grails-taglib:5.2.2 -| | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | \--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | | +--- org.springframework:spring-webmvc:5.3.25 -| | | | +--- org.springframework:spring-aop:5.3.25 (*) -| | | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | | +--- org.springframework:spring-context:5.3.25 (*) -| | | | +--- org.springframework:spring-core:5.3.25 (*) -| | | | +--- org.springframework:spring-expression:5.3.25 (*) -| | | | \--- org.springframework:spring-web:5.3.25 (*) -| | | \--- org.springframework:spring-context-support:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | +--- org.springframework:spring-context:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.grails:grails-web-databinding:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-databinding:5.3.3 (*) -| | | \--- org.grails:grails-web-common:5.3.3 (*) -| | +--- org.grails:grails-web-fileupload:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | \--- commons-fileupload:commons-fileupload:1.5 -| | | \--- commons-io:commons-io:2.11.0 -| | +--- org.grails:grails-web-url-mappings:5.3.3 -| | | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | | | \--- commons-validator:commons-validator:1.7 -| | | | \--- commons-collections:commons-collections:3.2.2 -| | | +--- org.fusesource.jansi:jansi:1.18 -| | | \--- jline:jline:2.14.6 -| | +--- org.grails:grails-web-mvc:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | +--- org.grails:grails-web-url-mappings:5.3.3 (*) -| | | \--- org.grails:grails-web-sitemesh:5.2.2 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | \--- opensymphony:sitemesh:2.4.2 -| | +--- org.grails:grails-web-gsp:5.2.2 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.grails:grails-gsp:5.2.2 (*) -| | | +--- org.grails:grails-web-taglib:5.2.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | \--- org.grails:grails-taglib:5.2.2 (*) -| | | \--- org.grails:grails-web-sitemesh:5.2.2 (*) -| | \--- org.grails:grails-web-sitemesh:5.2.2 (*) -| +--- org.grails:grails-plugin-controllers:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | +--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-mimetypes:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | \--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-validation:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | \--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-domain-class:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | +--- org.grails:grails-spring:5.3.3 (*) -| | | +--- org.grails:grails-plugin-validation:5.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm:7.3.3 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- javax.el:javax.el-api:3.0.0 -> 3.0.1-b06 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) -| | | | \--- org.glassfish:javax.el:3.0.1-b12 -| | | +--- org.grails:grails-datastore-gorm-support:7.3.3 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-gorm:7.3.3 (*) -| | | | +--- org.grails:grails-core:5.2.4 -> 5.3.2 (*) -| | | | \--- org.grails:grails-bootstrap:5.2.4 -> 5.3.3 (*) -| | | \--- org.grails:grails-datastore-core:7.3.3 (*) -| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.9 -> 2.7.8 (*) -| | \--- org.grails:grails-plugin-i18n:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.grails:grails-web:5.3.3 (*) -| | \--- org.codehaus.groovy:groovy-ant:3.0.11 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.apache.ant:ant:1.10.12 -> 1.10.13 (*) -| | +--- org.apache.ant:ant-junit:1.10.12 -| | | \--- org.apache.ant:ant:1.10.12 -> 1.10.13 (*) -| | +--- org.apache.ant:ant-launcher:1.10.12 -> 1.10.13 -| | +--- org.apache.ant:ant-antlr:1.10.12 -| | \--- org.codehaus.groovy:groovy-groovydoc:3.0.11 -| \--- junit:junit:4.13.2 -| \--- org.hamcrest:hamcrest-core:1.3 -> 2.2 -| \--- org.hamcrest:hamcrest:2.2 -+--- org.grails:grails-plugin-rest -> 5.3.3 -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- javax.xml.bind:jaxb-api:2.3.1 -| | \--- javax.activation:javax.activation-api:1.2.0 -| +--- org.grails:grails-web:5.3.3 (*) -| +--- org.grails:grails-plugin-controllers:5.3.3 (*) -| +--- org.grails:grails-plugin-datasource:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.springframework:spring-jdbc:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | +--- org.springframework:spring-core:5.3.25 (*) -| | | \--- org.springframework:spring-tx:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy-sql:3.0.11 -| | | \--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.springframework:spring-context:5.3.25 (*) -| | +--- org.grails:grails-datastore-gorm:7.3.3 (*) -| | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails.plugins:converters:4.0.0 -| \--- org.apache.commons:commons-lang3:3.0 -> 3.12.0 -+--- org.grails:grails-plugin-codecs -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-web:5.3.3 (*) -| +--- org.grails:grails-encoder:5.3.3 (*) -| \--- org.grails:grails-codecs:5.3.3 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| \--- commons-codec:commons-codec:1.15 -+--- org.grails:grails-plugin-interceptors -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-plugin-controllers:5.3.3 (*) -| \--- org.grails:grails-plugin-url-mappings:5.3.3 (*) -+--- org.grails:grails-plugin-services -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails:grails-plugin-datasource:5.3.3 (*) -+--- org.grails:grails-plugin-datasource -> 5.3.3 (*) -+--- org.grails:grails-plugin-databinding -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails:grails-web:5.3.3 (*) -+--- org.grails:grails-web-boot -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| \--- org.grails:grails-web-common:5.3.3 (*) -+--- org.grails:grails-logging -> 5.3.3 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -+--- org.grails.plugins:cache -> 5.0.1 -| +--- com.bertramlabs.plugins:asset-pipeline-grails:3.0.7 -| | \--- com.bertramlabs.plugins:asset-pipeline-core:3.0.7 -| | \--- commons-logging:commons-logging:1.1.1 -| +--- gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.4 -| | +--- org.ysb33r.gradle:grolifant:0.11 -| | | \--- org.tukaani:xz:1.6 -| | \--- org.apache.maven:maven-artifact:3.6.3 -| | +--- org.codehaus.plexus:plexus-utils:3.2.1 -| | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 -| +--- org.codehaus.gpars:gpars:1.2.1 -| | +--- org.multiverse:multiverse-core:0.7.0 -| | \--- org.codehaus.jsr166-mirror:jsr166y:1.7.0 -| +--- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2 -| \--- org.javassist:javassist:3.27.0-GA -> 3.29.2-GA -+--- org.grails.plugins:async -> 4.0.0 -| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| +--- javax.annotation:javax.annotation-api:1.3.2 -| +--- org.grails:grails-plugin-controllers:4.0.0 -> 5.3.3 (*) -| +--- org.grails.plugins:events:4.0.0 -| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.grails:grails-core:4.0.0 -> 5.3.2 (*) -| | +--- org.grails:grails-events:4.0.0 -| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | +--- org.springframework:spring-context:5.1.8.RELEASE -> 5.3.25 (*) -| | | \--- org.springframework:spring-tx:5.1.8.RELEASE -> 5.3.25 (*) -| | +--- org.grails:grails-events-transform:4.0.0 -| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | +--- org.grails:grails-events:4.0.0 (*) -| | | \--- org.grails:grails-datastore-gorm:7.0.2.RELEASE -> 7.3.3 (*) -| | \--- org.grails:grails-events-compat:4.0.0 -| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.grails:grails-events:4.0.0 (*) -| | \--- org.grails:grails-events-transform:4.0.0 (*) -| \--- org.grails:grails-async:4.0.0 -| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| \--- javax.annotation:javax.annotation-api:1.3.2 -+--- org.grails.plugins:hibernate5 -> 7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.springframework.boot:spring-boot:2.7.0 -> 2.7.8 (*) -| +--- org.springframework:spring-orm:5.3.20 -> 5.3.25 -| | +--- org.springframework:spring-beans:5.3.25 (*) -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-jdbc:5.3.25 (*) -| | \--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.hibernate:hibernate-core:5.6.9.Final -> 5.6.11.Final -| | +--- org.jboss.logging:jboss-logging:3.4.3.Final -| | +--- javax.persistence:javax.persistence-api:2.2 -| | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 -| | +--- antlr:antlr:2.7.7 -| | +--- org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -| | +--- org.jboss:jandex:2.4.2.Final -| | +--- com.fasterxml:classmate:1.5.1 -| | +--- javax.activation:javax.activation-api:1.2.0 -| | +--- org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -| | | \--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.4.3.Final -| | +--- javax.xml.bind:jaxb-api:2.3.1 (*) -| | \--- org.glassfish.jaxb:jaxb-runtime:2.3.1 -> 2.3.7 -| | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 -| | +--- org.glassfish.jaxb:txw2:2.3.7 -| | +--- com.sun.istack:istack-commons-runtime:3.0.12 -| | \--- com.sun.activation:jakarta.activation:1.2.2 -| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | +--- org.springframework:spring-web:5.3.25 (*) -| | \--- org.springframework:spring-context:5.3.25 (*) -| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) -| \--- org.grails:grails-datastore-gorm-hibernate5:7.3.0 -> 7.2.2 -| +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.grails:grails-datastore-gorm:7.2.1 -> 7.3.3 (*) -| +--- org.springframework:spring-orm:5.3.16 -> 5.3.25 (*) -| +--- org.hibernate:hibernate-core:5.6.5.Final -> 5.6.11.Final (*) -| +--- org.hibernate:hibernate-validator:6.2.3.Final -| | \--- org.hibernate.validator:hibernate-validator:6.2.3.Final -> 6.2.5.Final -| | +--- jakarta.validation:jakarta.validation-api:2.0.2 -| | +--- org.jboss.logging:jboss-logging:3.4.1.Final -> 3.4.3.Final -| | \--- com.fasterxml:classmate:1.5.1 -| +--- javax.validation:validation-api:2.0.1.Final -| +--- javax.el:javax.el-api:3.0.1-b06 -| +--- javax.xml.bind:jaxb-api:2.3.1 (*) -| \--- com.sun.xml.bind:jaxb-impl:2.3.1 -+--- org.hibernate:hibernate-core:5.6.11.Final (*) -+--- org.grails.plugins:mongodb -> 7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm-mongodb-ext:7.3.0 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | \--- org.mongodb:mongodb-driver-sync:4.5.0 -| | +--- org.mongodb:bson:4.5.0 -> 4.6.1 -| | \--- org.mongodb:mongodb-driver-core:4.5.0 -| | \--- org.mongodb:bson:4.5.0 -> 4.6.1 -| \--- org.grails:grails-datastore-gorm-mongodb:7.3.0 -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.mongodb:mongodb-driver-sync:4.5.0 (*) -| +--- org.grails:grails-datastore-gorm-validation:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) -| \--- org.grails:grails-datastore-gorm-bson:7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) -| \--- org.mongodb:bson:4.5.0 -> 4.6.1 -+--- org.grails.plugins:views-json -> 2.3.2 -| +--- org.grails:grails-core:5.1.8 -> 5.3.2 (*) -| \--- org.grails:views-core:2.3.2 -| +--- org.codehaus.groovy:groovy-bom:3.0.11 (*) -| +--- org.grails:grails-encoder:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-web-common:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-web-url-mappings:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-plugin-rest:5.1.8 -> 5.3.3 (*) -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| \--- javax.servlet:javax.servlet-api:4.0.1 -+--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 -| +--- io.micronaut:micronaut-bom:3.3.0 -> 3.2.0 (*) -| +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) -| +--- io.micronaut.rxjava2:micronaut-rxjava2:1.2.0 -| | +--- io.micronaut:micronaut-bom:3.3.0 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-runtime:3.3.0 -> 3.2.0 (*) -| | \--- io.reactivex.rxjava2:rxjava:2.2.21 -| | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| \--- io.micronaut:micronaut-http-client:3.3.0 -> 3.2.0 -| +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| +--- io.micronaut:micronaut-runtime:3.2.0 (*) -| +--- io.micronaut:micronaut-http-client-core:3.2.0 -| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | \--- io.micronaut:micronaut-runtime:3.2.0 (*) -| +--- io.micronaut:micronaut-websocket:3.2.0 -| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | +--- io.micronaut:micronaut-http-client-core:3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | \--- io.micronaut:micronaut-aop:3.2.0 (*) -| +--- io.micronaut:micronaut-http-netty:3.2.0 -| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | +--- io.micronaut:micronaut-websocket:3.2.0 (*) -| | +--- io.micronaut:micronaut-buffer-netty:3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-core:3.2.0 (*) -| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | \--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final -| | | \--- io.netty:netty-common:4.1.87.Final -| | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-resolver:4.1.87.Final -| | | | \--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-codec:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-transport:4.1.87.Final (*) -| | | \--- io.netty:netty-handler:4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-resolver:4.1.87.Final (*) -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-transport:4.1.87.Final (*) -| | | \--- io.netty:netty-codec:4.1.87.Final (*) -| | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | +--- io.netty:netty-codec:4.1.87.Final (*) -| | | +--- io.netty:netty-handler:4.1.87.Final (*) -| | | \--- io.netty:netty-codec-http:4.1.87.Final (*) -| | \--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (*) -| \--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final -| +--- io.netty:netty-common:4.1.87.Final -| +--- io.netty:netty-buffer:4.1.87.Final (*) -| +--- io.netty:netty-transport:4.1.87.Final (*) -| +--- io.netty:netty-codec:4.1.87.Final (*) -| +--- io.netty:netty-codec-socks:4.1.87.Final -| | +--- io.netty:netty-common:4.1.87.Final -| | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | +--- io.netty:netty-transport:4.1.87.Final (*) -| | \--- io.netty:netty-codec:4.1.87.Final (*) -| \--- io.netty:netty-codec-http:4.1.87.Final (*) -+--- org.grails.plugins:views-json-templates -> 2.3.2 -| \--- org.grails.plugins:views-json:2.3.2 (*) -+--- com.graphql-java:graphql-java:20.6 -| +--- com.graphql-java:java-dataloader:3.2.0 -| | \--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 -| +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| \--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 -+--- org.apache.commons:commons-compress:1.10 -+--- project :grails-plugin-gorm-graphql-plugin -| +--- project :gorm-graphql -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- com.graphql-java:graphql-java:20.6 (*) -| | +--- org.grails:grails-datastore-gorm:7.3.4 -> 7.3.3 (*) -| | +--- org.grails:grails-datastore-gorm:7.3.1 -> 7.3.3 (*) -| | +--- com.graphql-java:graphql-java-extended-scalars:20.2 -| | | \--- com.graphql-java:graphql-java:20.2 -> 20.6 (*) -| | +--- com.github.javaparser:javaparser-core:3.25.5 -| | +--- org.grails.plugins:views-json:2.3.2 (*) -| | \--- org.javassist:javassist:3.29.2-GA -| +--- com.graphql-java:graphql-java:20.6 (*) -| +--- org.grails:grails-datastore-gorm:7.3.4 -> 7.3.3 (*) -| +--- org.grails:grails-plugin-controllers -> 5.3.3 (*) -| +--- org.grails:grails-plugin-databinding -> 5.3.3 (*) -| +--- org.grails:grails-plugin-rest -> 5.3.3 (*) -| +--- org.grails:grails-plugin-url-mappings -> 5.3.3 (*) -| +--- org.grails.plugins:views-json:2.3.2 (*) -| +--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 (*) -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- io.micronaut:micronaut-http-client:3.2.0 (*) -| +--- org.grails.plugins:converters:3.3.1 -> 4.0.0 (*) -| \--- com.github.javaparser:javaparser-core:3.25.5 -+--- org.glassfish.web:el-impl:2.1.2-b03 -| \--- javax.el:el-api:2.1.2-b03 -+--- com.h2database:h2 -> 1.4.200 -\--- org.apache.tomcat:tomcat-jdbc -> 9.0.71 - \--- org.apache.tomcat:tomcat-juli:9.0.71 - -runtimeElements - Elements of runtime for main. (n) -No dependencies - -runtimeOnly - Runtime only dependencies for source set 'main'. (n) -No dependencies - -testAnnotationProcessor - Annotation processors and their dependencies for source set 'test'. -No dependencies - -testCompileClasspath - Compile classpath for source set 'test'. -+--- org.springframework.boot:spring-boot-starter-logging -> 2.7.8 -| +--- ch.qos.logback:logback-classic:1.2.11 -| | +--- ch.qos.logback:logback-core:1.2.11 -| | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| +--- org.apache.logging.log4j:log4j-to-slf4j:2.17.2 -| | +--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 -| | \--- org.apache.logging.log4j:log4j-api:2.17.2 -| \--- org.slf4j:jul-to-slf4j:1.7.36 -| \--- org.slf4j:slf4j-api:1.7.36 -+--- org.springframework.boot:spring-boot-autoconfigure -> 2.7.8 -| \--- org.springframework.boot:spring-boot:2.7.8 -| +--- org.springframework:spring-core:5.3.25 -| | \--- org.springframework:spring-jcl:5.3.25 -| \--- org.springframework:spring-context:5.3.25 -| +--- org.springframework:spring-aop:5.3.25 -| | +--- org.springframework:spring-beans:5.3.25 -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | \--- org.springframework:spring-core:5.3.25 (*) -| +--- org.springframework:spring-beans:5.3.25 (*) -| +--- org.springframework:spring-core:5.3.25 (*) -| \--- org.springframework:spring-expression:5.3.25 -| \--- org.springframework:spring-core:5.3.25 (*) -+--- org.grails:grails-core:5.3.2 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 -| | \--- org.slf4j:slf4j-api:1.7.36 -| +--- io.micronaut:micronaut-inject:3.8.4 -> 3.2.0 -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- jakarta.inject:jakarta.inject-api:2.0.1 -| | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 -| | +--- io.micronaut:micronaut-core:3.2.0 -| | | \--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | \--- org.yaml:snakeyaml:1.29 -> 1.30 -| +--- javax.inject:javax.inject:1 -| +--- io.micronaut.spring:micronaut-spring-context:4.5.0 -| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) -| | +--- org.springframework:spring-framework-bom:5.3.25 -| | | +--- org.springframework:spring-aop:5.3.25 (c) -| | | +--- org.springframework:spring-beans:5.3.25 (c) -| | | +--- org.springframework:spring-context:5.3.25 (c) -| | | +--- org.springframework:spring-core:5.3.25 (c) -| | | +--- org.springframework:spring-expression:5.3.25 (c) -| | | +--- org.springframework:spring-jcl:5.3.25 (c) -| | | +--- org.springframework:spring-jdbc:5.3.25 (c) -| | | +--- org.springframework:spring-orm:5.3.25 (c) -| | | +--- org.springframework:spring-test:5.3.25 (c) -| | | +--- org.springframework:spring-tx:5.3.25 (c) -| | | +--- org.springframework:spring-web:5.3.25 (c) -| | | +--- org.springframework:spring-webmvc:5.3.25 (c) -| | | \--- org.springframework:spring-context-support:5.3.25 (c) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | +--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | \--- io.micronaut:micronaut-core:3.2.0 (*) -| | \--- io.micronaut.spring:micronaut-spring:4.5.0 -| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) -| | +--- org.springframework:spring-framework-bom:5.3.25 (*) -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-tx:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | \--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) -| +--- io.micronaut.cache:micronaut-cache-core:3.5.0 -| | +--- io.micronaut:micronaut-inject:3.5.4 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-aop:3.5.4 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-http:3.5.4 -> 3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | \--- io.micronaut:micronaut-core-reactive:3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-core:3.2.0 (*) -| | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| | \--- io.micronaut:micronaut-runtime:3.5.4 -> 3.2.0 -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | +--- io.micronaut:micronaut-aop:3.2.0 (*) -| | +--- io.micronaut:micronaut-context:3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | +--- io.micronaut:micronaut-aop:3.2.0 (*) -| | | \--- javax.validation:validation-api:2.0.1.Final -| | +--- io.micronaut:micronaut-core-reactive:3.2.0 (*) -| | +--- io.micronaut:micronaut-jackson-databind:3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-jackson-core:3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-json-core:3.2.0 -| | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | | +--- io.micronaut:micronaut-context:3.2.0 (*) -| | | | | \--- io.micronaut:micronaut-http:3.2.0 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 -| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) -| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) -| | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) -| | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) -| | | | \--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 -| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) -| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 -| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) -| | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) -| | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | \--- javax.validation:validation-api:2.0.1.Final -| +--- io.micronaut:micronaut-runtime:3.8.4 -> 3.2.0 (*) -| +--- javax.persistence:javax.persistence-api:2.2 -| +--- javax.annotation:javax.annotation-api:1.3.2 -| +--- org.springframework.boot:spring-boot:2.7.8 (*) -| +--- org.springframework:spring-core:5.3.25 (*) -| +--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.springframework:spring-beans:5.3.25 (*) -| +--- org.springframework:spring-context:5.3.25 (*) -| +--- org.grails:grails-bootstrap:5.3.2 -> 5.3.3 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.codehaus.groovy:groovy-xml:3.0.11 -| | | \--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.codehaus.groovy:groovy-templates:3.0.11 -| | | \--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.yaml:snakeyaml:1.33 -> 1.30 -| | \--- io.micronaut:micronaut-inject:3.8.5 -> 3.2.0 (*) -| +--- org.grails:grails-spring:5.3.2 -> 5.3.3 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.springframework:spring-tx:5.3.25 (*) -| | +--- org.springframework:spring-web:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | \--- org.grails:grails-bootstrap:5.3.3 (*) -| +--- org.grails:grails-datastore-core:7.3.3 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- javax.transaction:jta:1.1 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- javax.persistence:javax.persistence-api:2.2 -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-beans:5.3.25 (*) -| | +--- org.springframework:spring-tx:5.3.25 (*) -| | \--- org.springframework:spring-context:5.3.25 (*) -| +--- org.apache.ant:ant:1.10.13 -| | \--- org.apache.ant:ant-launcher:1.10.13 -| +--- jline:jline:2.14.6 -| \--- org.fusesource.jansi:jansi:1.18 -+--- org.springframework.boot:spring-boot-starter-actuator -> 2.7.8 -| +--- org.springframework.boot:spring-boot-starter:2.7.8 -| | +--- org.springframework.boot:spring-boot:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot-starter-logging:2.7.8 (*) -| | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 -| | +--- org.springframework:spring-core:5.3.25 (*) -| | \--- org.yaml:snakeyaml:1.30 -| +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.7.8 -| | +--- org.springframework.boot:spring-boot-actuator:2.7.8 -| | | \--- org.springframework.boot:spring-boot:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot:2.7.8 (*) -| | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) -| \--- io.micrometer:micrometer-core:1.9.7 -| \--- org.hdrhistogram:HdrHistogram:2.1.12 -+--- org.springframework.boot:spring-boot-starter-tomcat -> 2.7.8 -| +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 -| +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 -| +--- org.apache.tomcat.embed:tomcat-embed-el:9.0.71 -| \--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.71 -| \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 -+--- org.grails:grails-plugin-url-mappings -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 -| | \--- org.springframework:spring-core:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-web:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.grails:grails-web-common:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | +--- org.grails:grails-databinding:5.3.3 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) -| | | +--- org.grails:grails-encoder:5.3.3 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | | +--- org.codehaus.groovy:groovy-json:3.0.11 -| | | | | \--- org.codehaus.groovy:groovy:3.0.11 -| | | | \--- org.springframework:spring-web:5.3.25 (*) -| | | +--- org.grails:grails-gsp:5.2.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | +--- org.grails:grails-taglib:5.2.2 -| | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | \--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | | +--- org.springframework:spring-webmvc:5.3.25 -| | | | +--- org.springframework:spring-aop:5.3.25 (*) -| | | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | | +--- org.springframework:spring-context:5.3.25 (*) -| | | | +--- org.springframework:spring-core:5.3.25 (*) -| | | | +--- org.springframework:spring-expression:5.3.25 (*) -| | | | \--- org.springframework:spring-web:5.3.25 (*) -| | | \--- org.springframework:spring-context-support:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | +--- org.springframework:spring-context:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.grails:grails-web-databinding:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-databinding:5.3.3 (*) -| | | \--- org.grails:grails-web-common:5.3.3 (*) -| | +--- org.grails:grails-web-fileupload:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | \--- commons-fileupload:commons-fileupload:1.5 -| | | \--- commons-io:commons-io:2.11.0 -| | +--- org.grails:grails-web-url-mappings:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | | | \--- commons-validator:commons-validator:1.7 -| | | | \--- commons-collections:commons-collections:3.2.2 -| | | +--- org.fusesource.jansi:jansi:1.18 -| | | \--- jline:jline:2.14.6 -| | +--- org.grails:grails-web-mvc:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | +--- org.grails:grails-web-url-mappings:5.3.3 (*) -| | | \--- org.grails:grails-web-sitemesh:5.2.2 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | \--- opensymphony:sitemesh:2.4.2 -| | +--- org.grails:grails-web-gsp:5.2.2 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.grails:grails-gsp:5.2.2 (*) -| | | +--- org.grails:grails-web-taglib:5.2.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | \--- org.grails:grails-taglib:5.2.2 (*) -| | | \--- org.grails:grails-web-sitemesh:5.2.2 (*) -| | \--- org.grails:grails-web-sitemesh:5.2.2 (*) -| +--- org.grails:grails-plugin-controllers:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | +--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-mimetypes:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | \--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-validation:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | \--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-domain-class:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | +--- org.grails:grails-spring:5.3.3 (*) -| | | +--- org.grails:grails-plugin-validation:5.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm:7.3.3 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | | | \--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm-support:7.3.3 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-gorm:7.3.3 (*) -| | | | +--- org.grails:grails-core:5.2.4 -> 5.3.2 (*) -| | | | \--- org.grails:grails-bootstrap:5.2.4 -> 5.3.3 (*) -| | | \--- org.grails:grails-datastore-core:7.3.3 (*) -| | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.9 -> 2.7.8 (*) -| \--- junit:junit:4.13.2 -| \--- org.hamcrest:hamcrest-core:1.3 -> 2.2 -| \--- org.hamcrest:hamcrest:2.2 -+--- org.grails:grails-plugin-rest -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- javax.xml.bind:jaxb-api:2.3.1 -| | \--- javax.activation:javax.activation-api:1.2.0 -| +--- org.grails:grails-web:5.3.3 (*) -| +--- org.grails:grails-plugin-controllers:5.3.3 (*) -| +--- org.grails:grails-plugin-datasource:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.springframework:spring-jdbc:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | +--- org.springframework:spring-core:5.3.25 (*) -| | | \--- org.springframework:spring-tx:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy-sql:3.0.11 -| | | \--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.springframework:spring-context:5.3.25 (*) -| | +--- org.grails:grails-datastore-gorm:7.3.3 (*) -| | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails.plugins:converters:4.0.0 -| \--- org.apache.commons:commons-lang3:3.0 -> 3.12.0 -+--- org.grails:grails-plugin-codecs -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-web:5.3.3 (*) -| \--- org.grails:grails-encoder:5.3.3 (*) -+--- org.grails:grails-plugin-interceptors -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-plugin-controllers:5.3.3 (*) -| \--- org.grails:grails-plugin-url-mappings:5.3.3 (*) -+--- org.grails:grails-plugin-services -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails:grails-plugin-datasource:5.3.3 (*) -+--- org.grails:grails-plugin-datasource -> 5.3.3 (*) -+--- org.grails:grails-plugin-databinding -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails:grails-web:5.3.3 (*) -+--- org.grails:grails-web-boot -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| \--- org.grails:grails-web-common:5.3.3 (*) -+--- org.grails:grails-logging -> 5.3.3 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -+--- org.grails.plugins:cache -> 5.0.1 -| +--- com.bertramlabs.plugins:asset-pipeline-grails:3.0.7 -| +--- gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.4 -| | +--- org.ysb33r.gradle:grolifant:0.11 -| | \--- org.apache.maven:maven-artifact:3.6.3 -| | +--- org.codehaus.plexus:plexus-utils:3.2.1 -| | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 -| +--- org.codehaus.gpars:gpars:1.2.1 -| | +--- org.multiverse:multiverse-core:0.7.0 -| | \--- org.codehaus.jsr166-mirror:jsr166y:1.7.0 -| +--- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2 -| \--- org.javassist:javassist:3.27.0-GA -+--- org.grails.plugins:async -> 4.0.0 -| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| +--- javax.annotation:javax.annotation-api:1.3.2 -| +--- org.grails:grails-plugin-controllers:4.0.0 -> 5.3.3 (*) -| +--- org.grails.plugins:events:4.0.0 -| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.grails:grails-core:4.0.0 -> 5.3.2 (*) -| | +--- org.grails:grails-events:4.0.0 -| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | +--- org.springframework:spring-context:5.1.8.RELEASE -> 5.3.25 (*) -| | | \--- org.springframework:spring-tx:5.1.8.RELEASE -> 5.3.25 (*) -| | +--- org.grails:grails-events-transform:4.0.0 -| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | +--- org.grails:grails-events:4.0.0 (*) -| | | \--- org.grails:grails-datastore-gorm:7.0.2.RELEASE -> 7.3.3 (*) -| | \--- org.grails:grails-events-compat:4.0.0 -| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.grails:grails-events:4.0.0 (*) -| | \--- org.grails:grails-events-transform:4.0.0 (*) -| \--- org.grails:grails-async:4.0.0 -| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| \--- javax.annotation:javax.annotation-api:1.3.2 -+--- org.grails.plugins:hibernate5 -> 7.3.0 -| +--- org.springframework.boot:spring-boot:2.7.0 -> 2.7.8 (*) -| +--- org.springframework:spring-orm:5.3.20 -> 5.3.25 -| | +--- org.springframework:spring-beans:5.3.25 (*) -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-jdbc:5.3.25 (*) -| | \--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.hibernate:hibernate-core:5.6.9.Final -> 5.6.11.Final -| | +--- org.jboss.logging:jboss-logging:3.4.3.Final -| | +--- javax.persistence:javax.persistence-api:2.2 -| | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 -| | +--- antlr:antlr:2.7.7 -| | +--- org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -| | +--- org.jboss:jandex:2.4.2.Final -| | +--- com.fasterxml:classmate:1.5.1 -| | +--- javax.activation:javax.activation-api:1.2.0 -| | +--- org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -| | | \--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.4.3.Final -| | +--- javax.xml.bind:jaxb-api:2.3.1 (*) -| | \--- org.glassfish.jaxb:jaxb-runtime:2.3.1 -> 2.3.7 -| | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 -| | +--- org.glassfish.jaxb:txw2:2.3.7 -| | \--- com.sun.istack:istack-commons-runtime:3.0.12 -| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | +--- org.springframework:spring-web:5.3.25 (*) -| | \--- org.springframework:spring-context:5.3.25 (*) -| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) -| \--- org.grails:grails-datastore-gorm-hibernate5:7.3.0 -> 7.2.2 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 -| +--- org.grails:grails-datastore-gorm:7.2.1 -> 7.3.3 (*) -| +--- org.springframework:spring-orm:5.3.16 -> 5.3.25 (*) -| +--- org.hibernate:hibernate-core:5.6.5.Final -> 5.6.11.Final (*) -| +--- org.hibernate:hibernate-validator:6.2.3.Final -| | \--- org.hibernate.validator:hibernate-validator:6.2.3.Final -> 6.2.5.Final -| | +--- jakarta.validation:jakarta.validation-api:2.0.2 -| | +--- org.jboss.logging:jboss-logging:3.4.1.Final -> 3.4.3.Final -| | \--- com.fasterxml:classmate:1.5.1 -| \--- javax.validation:validation-api:2.0.1.Final -+--- org.hibernate:hibernate-core:5.6.11.Final (*) -+--- org.grails.plugins:mongodb -> 7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm-mongodb-ext:7.3.0 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | \--- org.mongodb:mongodb-driver-sync:4.5.0 -| | +--- org.mongodb:bson:4.5.0 -> 4.6.1 -| | \--- org.mongodb:mongodb-driver-core:4.5.0 -| | \--- org.mongodb:bson:4.5.0 -> 4.6.1 -| \--- org.grails:grails-datastore-gorm-mongodb:7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.mongodb:mongodb-driver-sync:4.5.0 (*) -| +--- org.grails:grails-datastore-gorm-validation:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) -| \--- org.grails:grails-datastore-gorm-bson:7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) -| \--- org.mongodb:bson:4.5.0 -> 4.6.1 -+--- org.grails.plugins:views-json -> 2.3.2 -| +--- org.grails:grails-core:5.1.8 -> 5.3.2 (*) -| \--- org.grails:views-core:2.3.2 -| +--- org.codehaus.groovy:groovy-bom:3.0.11 -| | +--- org.codehaus.groovy:groovy:3.0.11 (c) -| | +--- org.codehaus.groovy:groovy-json:3.0.11 (c) -| | +--- org.codehaus.groovy:groovy-sql:3.0.11 (c) -| | +--- org.codehaus.groovy:groovy-templates:3.0.11 (c) -| | \--- org.codehaus.groovy:groovy-xml:3.0.11 (c) -| +--- org.grails:grails-encoder:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-web-common:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-web-url-mappings:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-plugin-rest:5.1.8 -> 5.3.3 (*) -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 -| | +--- org.checkerframework:checker-qual:3.19.0 -| | \--- com.google.errorprone:error_prone_annotations:2.10.0 -| \--- javax.servlet:javax.servlet-api:4.0.1 -+--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 -| +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) -| +--- io.micronaut.rxjava2:micronaut-rxjava2:1.2.0 -| | +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-runtime:3.3.0 -> 3.2.0 (*) -| | \--- io.reactivex.rxjava2:rxjava:2.2.21 -| | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| \--- io.micronaut:micronaut-http-client:3.3.0 -> 3.2.0 -| +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| +--- io.micronaut:micronaut-runtime:3.2.0 (*) -| +--- io.micronaut:micronaut-http-client-core:3.2.0 -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | \--- io.micronaut:micronaut-runtime:3.2.0 (*) -| +--- io.micronaut:micronaut-websocket:3.2.0 -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | +--- io.micronaut:micronaut-http-client-core:3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | \--- io.micronaut:micronaut-aop:3.2.0 (*) -| +--- io.micronaut:micronaut-http-netty:3.2.0 -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | +--- io.micronaut:micronaut-websocket:3.2.0 (*) -| | +--- io.micronaut:micronaut-buffer-netty:3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-core:3.2.0 (*) -| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | \--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final -| | | \--- io.netty:netty-common:4.1.87.Final -| | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-resolver:4.1.87.Final -| | | | \--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-codec:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-transport:4.1.87.Final (*) -| | | \--- io.netty:netty-handler:4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-resolver:4.1.87.Final (*) -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-transport:4.1.87.Final (*) -| | | \--- io.netty:netty-codec:4.1.87.Final (*) -| | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | +--- io.netty:netty-codec:4.1.87.Final (*) -| | | +--- io.netty:netty-handler:4.1.87.Final (*) -| | | \--- io.netty:netty-codec-http:4.1.87.Final (*) -| | \--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (*) -| \--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final -| +--- io.netty:netty-common:4.1.87.Final -| +--- io.netty:netty-buffer:4.1.87.Final (*) -| +--- io.netty:netty-transport:4.1.87.Final (*) -| +--- io.netty:netty-codec:4.1.87.Final (*) -| +--- io.netty:netty-codec-socks:4.1.87.Final -| | +--- io.netty:netty-common:4.1.87.Final -| | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | +--- io.netty:netty-transport:4.1.87.Final (*) -| | \--- io.netty:netty-codec:4.1.87.Final (*) -| \--- io.netty:netty-codec-http:4.1.87.Final (*) -+--- org.grails.plugins:views-json-templates -> 2.3.2 -| \--- org.grails.plugins:views-json:2.3.2 (*) -+--- com.graphql-java:graphql-java:20.6 -| +--- com.graphql-java:java-dataloader:3.2.0 -| | \--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 -| \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -+--- org.apache.commons:commons-compress:1.10 -+--- project :grails-plugin-gorm-graphql-plugin -| \--- project :gorm-graphql -| +--- org.codehaus.groovy:groovy:3.0.11 -| \--- org.slf4j:slf4j-api:1.7.36 -\--- org.grails:grails-test-mixins:3.3.0 - -testCompileOnly - Compile only dependencies for source set 'test'. (n) -No dependencies - -testImplementation - Implementation only dependencies for source set 'test'. (n) -\--- org.grails:grails-test-mixins:3.3.0 (n) - -testRuntimeClasspath - Runtime classpath of source set 'test'. -+--- org.springframework.boot:spring-boot-starter-logging -> 2.7.8 -| +--- ch.qos.logback:logback-classic:1.2.11 -| | +--- ch.qos.logback:logback-core:1.2.11 -| | \--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| +--- org.apache.logging.log4j:log4j-to-slf4j:2.17.2 -| | +--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 -| | \--- org.apache.logging.log4j:log4j-api:2.17.2 -| \--- org.slf4j:jul-to-slf4j:1.7.36 -| \--- org.slf4j:slf4j-api:1.7.36 -+--- org.springframework.boot:spring-boot-autoconfigure -> 2.7.8 -| \--- org.springframework.boot:spring-boot:2.7.8 -| +--- org.springframework:spring-core:5.3.25 -| | \--- org.springframework:spring-jcl:5.3.25 -| \--- org.springframework:spring-context:5.3.25 -| +--- org.springframework:spring-aop:5.3.25 -| | +--- org.springframework:spring-beans:5.3.25 -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | \--- org.springframework:spring-core:5.3.25 (*) -| +--- org.springframework:spring-beans:5.3.25 (*) -| +--- org.springframework:spring-core:5.3.25 (*) -| \--- org.springframework:spring-expression:5.3.25 -| \--- org.springframework:spring-core:5.3.25 (*) -+--- org.grails:grails-core:5.3.2 -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 -| | +--- org.checkerframework:checker-qual:3.19.0 -| | \--- com.google.errorprone:error_prone_annotations:2.10.0 -> 2.11.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 -| | \--- org.slf4j:slf4j-api:1.7.36 -| +--- io.micronaut:micronaut-inject:3.8.4 -> 3.2.0 -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- jakarta.inject:jakarta.inject-api:2.0.1 -| | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 -| | +--- io.micronaut:micronaut-core:3.2.0 -| | | \--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | \--- org.yaml:snakeyaml:1.29 -> 1.30 -| +--- javax.inject:javax.inject:1 -| +--- io.micronaut.spring:micronaut-spring-context:4.5.0 -| | +--- io.micronaut.cache:micronaut-cache-core:3.5.0 -| | | +--- io.projectreactor:reactor-core:3.4.21 -> 3.4.26 -| | | | \--- org.reactivestreams:reactive-streams:1.0.4 -| | | +--- io.micronaut:micronaut-bom:3.5.4 -> 3.2.0 -| | | | +--- org.codehaus.groovy:groovy-bom:3.0.9 -> 3.0.11 -| | | | | +--- org.codehaus.groovy:groovy:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-ant:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-json:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-sql:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-test:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-test-junit5:3.0.11 (c) -| | | | | +--- org.codehaus.groovy:groovy-xml:3.0.11 (c) -| | | | | \--- org.codehaus.groovy:groovy-groovydoc:3.0.11 (c) -| | | | +--- io.grpc:grpc-bom:1.39.0 -| | | | +--- com.fasterxml.jackson:jackson-bom:2.12.4 -> 2.13.4 -| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (c) -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (c) -| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (c) -| | | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.4 (c) -| | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (c) -| | | | +--- org.junit:junit-bom:5.7.2 -> 5.8.2 -| | | | | +--- org.junit.jupiter:junit-jupiter:5.8.2 (c) -| | | | | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 (c) -| | | | | +--- org.junit.jupiter:junit-jupiter-engine:5.8.2 (c) -| | | | | +--- org.junit.jupiter:junit-jupiter-params:5.8.2 (c) -| | | | | +--- org.junit.platform:junit-platform-commons:1.8.2 (c) -| | | | | +--- org.junit.platform:junit-platform-engine:1.8.2 (c) -| | | | | +--- org.junit.platform:junit-platform-launcher:1.8.2 (c) -| | | | | +--- org.junit.platform:junit-platform-runner:1.8.2 (c) -| | | | | +--- org.junit.platform:junit-platform-suite-api:1.8.2 (c) -| | | | | \--- org.junit.platform:junit-platform-suite-commons:1.8.2 (c) -| | | | +--- org.jetbrains.kotlin:kotlin-bom:1.6.0 -| | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.5.1 -| | | | +--- io.ktor:ktor-bom:1.6.1 -| | | | +--- io.micrometer:micrometer-bom:1.8.0 -| | | | | \--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) -| | | | +--- io.micronaut.aws:micronaut-aws-bom:3.0.4 -| | | | +--- io.micronaut.cache:micronaut-cache-bom:3.0.0 -| | | | | +--- io.micronaut.cache:micronaut-cache-core:3.0.0 -> 3.5.0 (c) -| | | | | \--- com.github.ben-manes.caffeine:caffeine:2.9.1 -> 2.9.3 (c) -| | | | +--- io.micronaut.coherence:micronaut-coherence-bom:3.0.1 -| | | | +--- io.micronaut.data:micronaut-data-bom:3.2.0 -| | | | +--- io.micronaut.groovy:micronaut-groovy-bom:3.0.0 -| | | | | \--- org.codehaus.groovy:groovy-bom:3.0.8 -> 3.0.11 (*) -| | | | +--- io.micronaut.micrometer:micronaut-micrometer-bom:4.1.0 -| | | | | +--- io.micrometer:micrometer-bom:1.8.0 (*) -| | | | | \--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) -| | | | +--- io.micronaut.oraclecloud:micronaut-oraclecloud-bom:2.0.3 -| | | | +--- io.micronaut.r2dbc:micronaut-r2dbc-bom:2.0.0 -| | | | | \--- io.r2dbc:r2dbc-bom:Arabba-SR9 -| | | | +--- io.micronaut.sql:micronaut-sql-bom:4.0.4 -| | | | | +--- org.hibernate:hibernate-core:5.5.3.Final -> 5.6.11.Final (c) -| | | | | \--- org.apache.tomcat:tomcat-jdbc:10.0.8 -> 9.0.71 (c) -| | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 -| | | | | +--- org.junit:junit-bom:5.7.2 -> 5.8.2 (*) -| | | | | +--- org.spockframework:spock-bom:2.0-groovy-3.0 -| | | | | | +--- org.spockframework:spock-core:2.0-groovy-3.0 -> 2.1-groovy-3.0 (c) -| | | | | | \--- org.spockframework:spock-spring:2.0-groovy-3.0 -> 2.1-groovy-3.0 (c) -| | | | | +--- org.mockito:mockito-core:3.6.28 -> 4.5.1 (c) -| | | | | +--- org.mockito:mockito-junit-jupiter:3.6.28 -> 4.5.1 (c) -| | | | | +--- org.assertj:assertj-core:3.18.1 -> 3.22.0 (c) -| | | | | \--- org.hamcrest:hamcrest:2.2 (c) -| | | | +--- io.micronaut.views:micronaut-views-bom:3.0.1 -| | | | +--- io.netty:netty-bom:4.1.70.Final -| | | | | +--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-codec:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-codec-socks:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-common:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-resolver:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-transport:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-transport-native-unix-common:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-transport-classes-epoll:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-transport-native-epoll:4.1.70.Final -> 4.1.87.Final (c) -| | | | | +--- io.netty:netty-transport-classes-kqueue:4.1.70.Final -> 4.1.87.Final (c) -| | | | | \--- io.netty:netty-transport-native-kqueue:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- com.google.protobuf:protobuf-bom:3.17.2 -| | | | +--- org.testcontainers:testcontainers-bom:1.16.1 -| | | | +--- io.micronaut:micronaut-aop:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-buffer-netty:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-context:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-core:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-http:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-http-client:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-http-client-core:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-http-netty:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-inject:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-runtime:3.2.0 (c) -| | | | +--- io.micronaut:micronaut-websocket:3.2.0 (c) -| | | | +--- org.grails:grails-datastore-core:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-gorm:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-gorm-support:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-gorm-test:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-gorm-validation:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-web:7.1.0.M6 -> 7.3.3 (c) -| | | | +--- org.grails:grails-datastore-gorm-hibernate5:7.1.0.M3 -> 7.2.2 (c) -| | | | +--- org.codehaus.groovy:groovy:3.0.9 -> 3.0.11 (c) -| | | | +--- org.codehaus.groovy:groovy-json:3.0.9 -> 3.0.11 (c) -| | | | +--- org.codehaus.groovy:groovy-sql:3.0.9 -> 3.0.11 (c) -| | | | +--- org.codehaus.groovy:groovy-templates:3.0.9 -> 3.0.11 (c) -| | | | +--- com.h2database:h2:1.4.200 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 (c) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 (c) -| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 (c) -| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 (c) -| | | | +--- jakarta.annotation:jakarta.annotation-api:2.0.0 (c) -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 (c) -| | | | +--- com.google.code.findbugs:jsr305:3.0.2 (c) -| | | | +--- ch.qos.logback:logback-classic:1.2.3 -> 1.2.11 (c) -| | | | +--- io.micrometer:micrometer-core:1.8.0 -> 1.9.7 (c) -| | | | +--- io.micronaut.rxjava2:micronaut-rxjava2:1.1.0 -> 1.2.0 (c) -| | | | +--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.1.0 -> 1.2.0 (c) -| | | | +--- io.micronaut.spring:micronaut-spring:4.0.0 -> 4.5.0 (c) -| | | | +--- io.micronaut.spring:micronaut-spring-context:4.0.0 -> 4.5.0 (c) -| | | | +--- io.micronaut.test:micronaut-test-bom:3.0.2 (c) -| | | | +--- org.mongodb:mongodb-driver-core:4.3.0 -> 4.5.0 (c) -| | | | +--- org.mongodb:mongodb-driver-sync:4.3.0 -> 4.5.0 (c) -| | | | +--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-transport-native-epoll:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- io.netty:netty-transport-native-kqueue:4.1.70.Final -> 4.1.87.Final (c) -| | | | +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 (c) -| | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (c) -| | | | +--- io.reactivex.rxjava2:rxjava:2.2.10 -> 2.2.21 (c) -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 (c) -| | | | +--- org.yaml:snakeyaml:1.29 -> 1.30 (c) -| | | | +--- org.spockframework:spock-core:2.0-groovy-3.0 -> 2.1-groovy-3.0 (c) -| | | | +--- org.springframework:spring-core:5.3.9 -> 5.3.25 (c) -| | | | +--- org.springframework.boot:spring-boot-starter:2.5.3 -> 2.7.8 (c) -| | | | +--- org.springframework:spring-context:5.3.9 -> 5.3.25 (c) -| | | | +--- org.springframework:spring-jdbc:5.3.9 -> 5.3.25 (c) -| | | | +--- org.springframework:spring-orm:5.3.9 -> 5.3.25 (c) -| | | | +--- org.springframework:spring-tx:5.3.9 -> 5.3.25 (c) -| | | | +--- javax.validation:validation-api:2.0.1.Final (c) -| | | | \--- io.micronaut:micronaut-json-core:3.2.0 (c) -| | | +--- io.micronaut:micronaut-inject:3.5.4 -> 3.2.0 (*) -| | | +--- io.micronaut:micronaut-aop:3.5.4 -> 3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | | \--- io.micronaut:micronaut-core:3.2.0 (*) -| | | +--- io.micronaut:micronaut-http:3.5.4 -> 3.2.0 -| | | | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | | \--- io.micronaut:micronaut-core-reactive:3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-core:3.2.0 (*) -| | | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| | | \--- io.micronaut:micronaut-runtime:3.5.4 -> 3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | +--- io.micronaut:micronaut-aop:3.2.0 (*) -| | | +--- io.micronaut:micronaut-context:3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | | +--- io.micronaut:micronaut-aop:3.2.0 (*) -| | | | \--- javax.validation:validation-api:2.0.1.Final -| | | +--- io.micronaut:micronaut-core-reactive:3.2.0 (*) -| | | +--- io.micronaut:micronaut-jackson-databind:3.2.0 -| | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | +--- io.micronaut:micronaut-jackson-core:3.2.0 -| | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | | +--- io.micronaut:micronaut-json-core:3.2.0 -| | | | | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | | | | +--- io.micronaut:micronaut-context:3.2.0 (*) -| | | | | | \--- io.micronaut:micronaut-http:3.2.0 (*) -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.12.4 -> 2.13.4 -| | | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | | \--- com.fasterxml.jackson.core:jackson-annotations:2.12.4 -> 2.13.4 -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.12.4 -> 2.13.4.2 -| | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4 -> 2.13.4 -| | | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) -| | | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4 -> 2.13.4 -| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-core:2.13.4 (*) -| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4 -> 2.13.4.2 (*) -| | | | \--- com.fasterxml.jackson:jackson-bom:2.13.4 (*) -| | | +--- javax.validation:validation-api:2.0.1.Final -| | | \--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) -| | +--- org.springframework:spring-framework-bom:5.3.25 -| | | +--- org.springframework:spring-aop:5.3.25 (c) -| | | +--- org.springframework:spring-beans:5.3.25 (c) -| | | +--- org.springframework:spring-context:5.3.25 (c) -| | | +--- org.springframework:spring-core:5.3.25 (c) -| | | +--- org.springframework:spring-expression:5.3.25 (c) -| | | +--- org.springframework:spring-jcl:5.3.25 (c) -| | | +--- org.springframework:spring-jdbc:5.3.25 (c) -| | | +--- org.springframework:spring-orm:5.3.25 (c) -| | | +--- org.springframework:spring-test:5.3.25 (c) -| | | +--- org.springframework:spring-tx:5.3.25 (c) -| | | +--- org.springframework:spring-web:5.3.25 (c) -| | | +--- org.springframework:spring-webmvc:5.3.25 (c) -| | | \--- org.springframework:spring-context-support:5.3.25 (c) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | +--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) -| | \--- io.micronaut.spring:micronaut-spring:4.5.0 -| | +--- io.micronaut:micronaut-bom:3.8.1 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.8.1 -> 3.2.0 (*) -| | +--- org.springframework:spring-framework-bom:5.3.25 (*) -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-tx:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | \--- io.micronaut:micronaut-aop:3.8.1 -> 3.2.0 (*) -| +--- io.micronaut.cache:micronaut-cache-core:3.5.0 (*) -| +--- io.micronaut:micronaut-runtime:3.8.4 -> 3.2.0 (*) -| +--- javax.persistence:javax.persistence-api:2.2 -| +--- javax.annotation:javax.annotation-api:1.3.2 -| +--- org.springframework.boot:spring-boot:2.7.8 (*) -| +--- org.springframework:spring-core:5.3.25 (*) -| +--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.springframework:spring-beans:5.3.25 (*) -| +--- org.springframework:spring-context:5.3.25 (*) -| +--- org.grails:grails-bootstrap:5.3.2 -> 5.3.3 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.codehaus.groovy:groovy-xml:3.0.11 -| | | \--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.codehaus.groovy:groovy-templates:3.0.11 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) -| | +--- org.yaml:snakeyaml:1.33 -> 1.30 -| | \--- io.micronaut:micronaut-inject:3.8.5 -> 3.2.0 (*) -| +--- org.grails:grails-spring:5.3.2 -> 5.3.3 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.springframework:spring-tx:5.3.25 (*) -| | +--- org.springframework:spring-web:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-context:5.3.25 (*) -| | \--- org.grails:grails-bootstrap:5.3.3 (*) -| +--- org.grails:grails-datastore-core:7.3.3 -| | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| | +--- org.javassist:javassist:3.29.2-GA -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- javax.transaction:jta:1.1 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- javax.persistence:javax.persistence-api:2.2 -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-beans:5.3.25 (*) -| | +--- org.springframework:spring-tx:5.3.25 (*) -| | \--- org.springframework:spring-context:5.3.25 (*) -| +--- org.apache.ant:ant:1.10.13 -| | \--- org.apache.ant:ant-launcher:1.10.13 -| +--- jline:jline:2.14.6 -| \--- org.fusesource.jansi:jansi:1.18 -+--- org.springframework.boot:spring-boot-starter-actuator -> 2.7.8 -| +--- org.springframework.boot:spring-boot-starter:2.7.8 -| | +--- org.springframework.boot:spring-boot:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot-starter-logging:2.7.8 (*) -| | +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 -| | +--- org.springframework:spring-core:5.3.25 (*) -| | \--- org.yaml:snakeyaml:1.30 -| +--- org.springframework.boot:spring-boot-actuator-autoconfigure:2.7.8 -| | +--- com.fasterxml.jackson.core:jackson-databind:2.13.4.2 (*) -| | +--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.4 (*) -| | +--- org.springframework.boot:spring-boot-actuator:2.7.8 -| | | \--- org.springframework.boot:spring-boot:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot:2.7.8 (*) -| | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) -| \--- io.micrometer:micrometer-core:1.9.7 -| +--- org.hdrhistogram:HdrHistogram:2.1.12 -| \--- org.latencyutils:LatencyUtils:2.0.3 -+--- org.springframework.boot:spring-boot-starter-tomcat -> 2.7.8 -| +--- jakarta.annotation:jakarta.annotation-api:1.3.5 -> 2.0.0 -| +--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 -| +--- org.apache.tomcat.embed:tomcat-embed-el:9.0.71 -| \--- org.apache.tomcat.embed:tomcat-embed-websocket:9.0.71 -| \--- org.apache.tomcat.embed:tomcat-embed-core:9.0.71 -+--- org.grails:grails-plugin-url-mappings -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 -| | \--- org.springframework:spring-core:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-web:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.grails:grails-web-common:5.3.3 -| | | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | +--- org.grails:grails-databinding:5.3.3 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | \--- org.codehaus.groovy:groovy-xml:3.0.11 (*) -| | | +--- org.grails:grails-encoder:5.3.3 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | | +--- org.codehaus.groovy:groovy-json:3.0.11 -| | | | | \--- org.codehaus.groovy:groovy:3.0.11 -| | | | \--- org.springframework:spring-web:5.3.25 (*) -| | | +--- org.grails:grails-gsp:5.2.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | +--- org.grails:grails-core:5.2.5 -> 5.3.2 (*) -| | | | +--- org.grails:grails-taglib:5.2.2 -| | | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | | +--- org.grails:grails-core:5.2.5 -> 5.3.2 (*) -| | | | | \--- org.grails:grails-encoder:5.2.5 -> 5.3.3 (*) -| | | | \--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | | +--- org.springframework:spring-webmvc:5.3.25 -| | | | +--- org.springframework:spring-aop:5.3.25 (*) -| | | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | | +--- org.springframework:spring-context:5.3.25 (*) -| | | | +--- org.springframework:spring-core:5.3.25 (*) -| | | | +--- org.springframework:spring-expression:5.3.25 (*) -| | | | \--- org.springframework:spring-web:5.3.25 (*) -| | | \--- org.springframework:spring-context-support:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | +--- org.springframework:spring-context:5.3.25 (*) -| | | \--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.grails:grails-web-databinding:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-databinding:5.3.3 (*) -| | | \--- org.grails:grails-web-common:5.3.3 (*) -| | +--- org.grails:grails-web-fileupload:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | \--- commons-fileupload:commons-fileupload:1.5 -| | | \--- commons-io:commons-io:2.11.0 -| | +--- org.grails:grails-web-url-mappings:5.3.3 -| | | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | | | \--- commons-validator:commons-validator:1.7 -| | | | \--- commons-collections:commons-collections:3.2.2 -| | | +--- org.fusesource.jansi:jansi:1.18 -| | | \--- jline:jline:2.14.6 -| | +--- org.grails:grails-web-mvc:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-web-common:5.3.3 (*) -| | | +--- org.grails:grails-web-url-mappings:5.3.3 (*) -| | | \--- org.grails:grails-web-sitemesh:5.2.2 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | \--- opensymphony:sitemesh:2.4.2 -| | +--- org.grails:grails-web-gsp:5.2.2 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.grails:grails-gsp:5.2.2 (*) -| | | +--- org.grails:grails-web-common:5.2.5 -> 5.3.3 (*) -| | | +--- org.grails:grails-web-taglib:5.2.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.slf4j:slf4j-api:1.7.32 -> 1.7.36 -| | | | +--- org.grails:grails-web-common:5.2.5 -> 5.3.3 (*) -| | | | \--- org.grails:grails-taglib:5.2.2 (*) -| | | \--- org.grails:grails-web-sitemesh:5.2.2 (*) -| | \--- org.grails:grails-web-sitemesh:5.2.2 (*) -| +--- org.grails:grails-plugin-controllers:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | +--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-mimetypes:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | \--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-validation:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | \--- org.grails:grails-web:5.3.3 (*) -| | +--- org.grails:grails-plugin-domain-class:5.3.3 -| | | +--- javax.servlet:javax.servlet-api:4.0.1 -| | | +--- org.springframework:spring-test:5.3.25 (*) -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.36 -| | | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | | +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| | | +--- org.grails:grails-spring:5.3.3 (*) -| | | +--- org.grails:grails-plugin-validation:5.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) -| | | +--- org.grails:grails-datastore-gorm:7.3.3 -| | | | +--- org.slf4j:slf4j-api:1.7.36 -| | | | +--- javax.el:javax.el-api:3.0.0 -> 3.0.1-b06 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | | | +--- org.grails:grails-datastore-gorm-validation:7.3.3 (*) -| | | | \--- org.glassfish:javax.el:3.0.1-b12 -| | | +--- org.grails:grails-datastore-gorm-support:7.3.3 -| | | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | | +--- org.grails:grails-datastore-gorm:7.3.3 (*) -| | | | +--- org.grails:grails-core:5.2.4 -> 5.3.2 (*) -| | | | \--- org.grails:grails-bootstrap:5.2.4 -> 5.3.3 (*) -| | | \--- org.grails:grails-datastore-core:7.3.3 (*) -| | +--- org.springframework.boot:spring-boot-autoconfigure:2.7.9 -> 2.7.8 (*) -| | \--- org.grails:grails-plugin-i18n:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.grails:grails-web:5.3.3 (*) -| | \--- org.codehaus.groovy:groovy-ant:3.0.11 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.apache.ant:ant:1.10.12 -> 1.10.13 (*) -| | +--- org.apache.ant:ant-junit:1.10.12 -> 1.10.13 -| | | +--- org.apache.ant:ant:1.10.13 (*) -| | | \--- junit:junit:4.13.1 -> 4.13.2 -| | | \--- org.hamcrest:hamcrest-core:1.3 -> 2.2 -| | | \--- org.hamcrest:hamcrest:2.2 -| | +--- org.apache.ant:ant-launcher:1.10.12 -> 1.10.13 -| | +--- org.apache.ant:ant-antlr:1.10.12 -| | \--- org.codehaus.groovy:groovy-groovydoc:3.0.11 -| \--- junit:junit:4.13.2 (*) -+--- org.grails:grails-plugin-rest -> 5.3.3 -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- javax.xml.bind:jaxb-api:2.3.1 -| | \--- javax.activation:javax.activation-api:1.2.0 -| +--- org.grails:grails-web:5.3.3 (*) -| +--- org.grails:grails-plugin-controllers:5.3.3 (*) -| +--- org.grails:grails-plugin-datasource:5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.springframework:spring-jdbc:5.3.25 -| | | +--- org.springframework:spring-beans:5.3.25 (*) -| | | +--- org.springframework:spring-core:5.3.25 (*) -| | | \--- org.springframework:spring-tx:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy-sql:3.0.11 -| | | \--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.springframework:spring-context:5.3.25 (*) -| | +--- org.grails:grails-datastore-gorm:7.3.3 (*) -| | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails.plugins:converters:4.0.0 -| \--- org.apache.commons:commons-lang3:3.0 -> 3.12.0 -+--- org.grails:grails-plugin-codecs -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-web:5.3.3 (*) -| +--- org.grails:grails-encoder:5.3.3 (*) -| \--- org.grails:grails-codecs:5.3.3 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| \--- commons-codec:commons-codec:1.15 -+--- org.grails:grails-plugin-interceptors -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-plugin-controllers:5.3.3 (*) -| \--- org.grails:grails-plugin-url-mappings:5.3.3 (*) -+--- org.grails:grails-plugin-services -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails:grails-plugin-datasource:5.3.3 (*) -+--- org.grails:grails-plugin-datasource -> 5.3.3 (*) -+--- org.grails:grails-plugin-databinding -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| +--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -| \--- org.grails:grails-web:5.3.3 (*) -+--- org.grails:grails-web-boot -> 5.3.3 -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- org.springframework:spring-test:5.3.25 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| \--- org.grails:grails-web-common:5.3.3 (*) -+--- org.grails:grails-logging -> 5.3.3 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| \--- org.grails:grails-core:5.3.3 -> 5.3.2 (*) -+--- org.grails.plugins:cache -> 5.0.1 -| +--- com.bertramlabs.plugins:asset-pipeline-grails:3.0.7 -| | \--- com.bertramlabs.plugins:asset-pipeline-core:3.0.7 -| | \--- commons-logging:commons-logging:1.1.1 -> 1.2 -| +--- gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.4 -| | +--- org.ysb33r.gradle:grolifant:0.11 -| | | \--- org.tukaani:xz:1.6 -| | \--- org.apache.maven:maven-artifact:3.6.3 -| | +--- org.codehaus.plexus:plexus-utils:3.2.1 -| | \--- org.apache.commons:commons-lang3:3.8.1 -> 3.12.0 -| +--- org.codehaus.gpars:gpars:1.2.1 -| | +--- org.multiverse:multiverse-core:0.7.0 -| | \--- org.codehaus.jsr166-mirror:jsr166y:1.7.0 -| +--- com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2 -| \--- org.javassist:javassist:3.27.0-GA -> 3.29.2-GA -+--- org.grails.plugins:async -> 4.0.0 -| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| +--- javax.annotation:javax.annotation-api:1.3.2 -| +--- org.grails:grails-plugin-controllers:4.0.0 -> 5.3.3 (*) -| +--- org.grails.plugins:events:4.0.0 -| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.grails:grails-core:4.0.0 -> 5.3.2 (*) -| | +--- org.grails:grails-events:4.0.0 -| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | +--- org.springframework:spring-context:5.1.8.RELEASE -> 5.3.25 (*) -| | | \--- org.springframework:spring-tx:5.1.8.RELEASE -> 5.3.25 (*) -| | +--- org.grails:grails-events-transform:4.0.0 -| | | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | | +--- javax.annotation:javax.annotation-api:1.3.2 -| | | +--- org.grails:grails-events:4.0.0 (*) -| | | \--- org.grails:grails-datastore-gorm:7.0.2.RELEASE -> 7.3.3 (*) -| | \--- org.grails:grails-events-compat:4.0.0 -| | +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.grails:grails-events:4.0.0 (*) -| | \--- org.grails:grails-events-transform:4.0.0 (*) -| \--- org.grails:grails-async:4.0.0 -| +--- org.codehaus.groovy:groovy:2.5.6 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| \--- javax.annotation:javax.annotation-api:1.3.2 -+--- org.grails.plugins:hibernate5 -> 7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.springframework.boot:spring-boot:2.7.0 -> 2.7.8 (*) -| +--- org.springframework:spring-orm:5.3.20 -> 5.3.25 -| | +--- org.springframework:spring-beans:5.3.25 (*) -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-jdbc:5.3.25 (*) -| | \--- org.springframework:spring-tx:5.3.25 (*) -| +--- org.hibernate:hibernate-core:5.6.9.Final -> 5.6.11.Final -| | +--- org.jboss.logging:jboss-logging:3.4.3.Final -| | +--- javax.persistence:javax.persistence-api:2.2 -| | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 -| | +--- antlr:antlr:2.7.7 -| | +--- org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.1.1.Final -| | +--- org.jboss:jandex:2.4.2.Final -| | +--- com.fasterxml:classmate:1.5.1 -| | +--- javax.activation:javax.activation-api:1.2.0 -| | +--- org.hibernate.common:hibernate-commons-annotations:5.1.2.Final -| | | \--- org.jboss.logging:jboss-logging:3.3.2.Final -> 3.4.3.Final -| | +--- javax.xml.bind:jaxb-api:2.3.1 (*) -| | \--- org.glassfish.jaxb:jaxb-runtime:2.3.1 -> 2.3.7 -| | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 -| | | \--- jakarta.activation:jakarta.activation-api:1.2.2 -| | +--- org.glassfish.jaxb:txw2:2.3.7 -| | +--- com.sun.istack:istack-commons-runtime:3.0.12 -| | \--- com.sun.activation:jakarta.activation:1.2.2 -| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.grails:grails-datastore-core:7.3.3 (*) -| | +--- org.springframework:spring-web:5.3.25 (*) -| | \--- org.springframework:spring-context:5.3.25 (*) -| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) -| \--- org.grails:grails-datastore-gorm-hibernate5:7.3.0 -> 7.2.2 -| +--- org.codehaus.groovy:groovy:3.0.7 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.36 -| +--- org.grails:grails-datastore-gorm:7.2.1 -> 7.3.3 (*) -| +--- org.springframework:spring-orm:5.3.16 -> 5.3.25 (*) -| +--- org.hibernate:hibernate-core:5.6.5.Final -> 5.6.11.Final (*) -| +--- org.hibernate:hibernate-validator:6.2.3.Final -| | \--- org.hibernate.validator:hibernate-validator:6.2.3.Final -> 6.2.5.Final -| | +--- jakarta.validation:jakarta.validation-api:2.0.2 -| | +--- org.jboss.logging:jboss-logging:3.4.1.Final -> 3.4.3.Final -| | \--- com.fasterxml:classmate:1.5.1 -| +--- javax.validation:validation-api:2.0.1.Final -| +--- javax.el:javax.el-api:3.0.1-b06 -| +--- javax.xml.bind:jaxb-api:2.3.1 (*) -| \--- com.sun.xml.bind:jaxb-impl:2.3.1 -+--- org.hibernate:hibernate-core:5.6.11.Final (*) -+--- org.grails.plugins:mongodb -> 7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.grails:grails-datastore-web:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm-support:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm-mongodb-ext:7.3.0 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| | \--- org.mongodb:mongodb-driver-sync:4.5.0 -| | +--- org.mongodb:bson:4.5.0 -> 4.6.1 -| | \--- org.mongodb:mongodb-driver-core:4.5.0 -| | \--- org.mongodb:bson:4.5.0 -> 4.6.1 -| \--- org.grails:grails-datastore-gorm-mongodb:7.3.0 -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.mongodb:mongodb-driver-sync:4.5.0 (*) -| +--- org.grails:grails-datastore-gorm-validation:7.3.2 -> 7.3.3 (*) -| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) -| \--- org.grails:grails-datastore-gorm-bson:7.3.0 -| +--- org.codehaus.groovy:groovy:3.0.11 -| +--- org.codehaus.groovy:groovy-templates:3.0.11 (*) -| +--- org.grails:grails-datastore-gorm:7.3.2 -> 7.3.3 (*) -| \--- org.mongodb:bson:4.5.0 -> 4.6.1 -+--- org.grails.plugins:views-json -> 2.3.2 -| +--- org.grails:grails-core:5.1.8 -> 5.3.2 (*) -| \--- org.grails:views-core:2.3.2 -| +--- org.codehaus.groovy:groovy-bom:3.0.11 (*) -| +--- org.grails:grails-encoder:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-web-common:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-web-url-mappings:5.1.8 -> 5.3.3 (*) -| +--- org.grails:grails-plugin-rest:5.1.8 -> 5.3.3 (*) -| +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| \--- javax.servlet:javax.servlet-api:4.0.1 -+--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 -| +--- io.micronaut:micronaut-bom:3.3.0 -> 3.2.0 (*) -| +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) -| +--- io.micronaut.rxjava2:micronaut-rxjava2:1.2.0 -| | +--- io.micronaut:micronaut-bom:3.3.0 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.3.0 -> 3.2.0 (*) -| | +--- io.micronaut:micronaut-runtime:3.3.0 -> 3.2.0 (*) -| | \--- io.reactivex.rxjava2:rxjava:2.2.21 -| | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| \--- io.micronaut:micronaut-http-client:3.3.0 -> 3.2.0 -| +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| +--- io.micronaut:micronaut-runtime:3.2.0 (*) -| +--- io.micronaut:micronaut-http-client-core:3.2.0 -| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | \--- io.micronaut:micronaut-runtime:3.2.0 (*) -| +--- io.micronaut:micronaut-websocket:3.2.0 -| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | +--- io.micronaut:micronaut-http-client-core:3.2.0 (*) -| | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | \--- io.micronaut:micronaut-aop:3.2.0 (*) -| +--- io.micronaut:micronaut-http-netty:3.2.0 -| | +--- io.projectreactor:reactor-core:3.4.8 -> 3.4.26 (*) -| | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | +--- io.micronaut:micronaut-http:3.2.0 (*) -| | +--- io.micronaut:micronaut-websocket:3.2.0 (*) -| | +--- io.micronaut:micronaut-buffer-netty:3.2.0 -| | | +--- org.slf4j:slf4j-api:1.7.29 -> 1.7.36 -| | | +--- io.micronaut:micronaut-core:3.2.0 (*) -| | | +--- io.micronaut:micronaut-inject:3.2.0 (*) -| | | \--- io.netty:netty-buffer:4.1.70.Final -> 4.1.87.Final -| | | \--- io.netty:netty-common:4.1.87.Final -| | +--- io.netty:netty-codec-http:4.1.70.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-resolver:4.1.87.Final -| | | | \--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-codec:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-transport:4.1.87.Final (*) -| | | \--- io.netty:netty-handler:4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-resolver:4.1.87.Final (*) -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final -| | | | +--- io.netty:netty-common:4.1.87.Final -| | | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | | \--- io.netty:netty-transport:4.1.87.Final (*) -| | | \--- io.netty:netty-codec:4.1.87.Final (*) -| | +--- io.netty:netty-codec-http2:4.1.70.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | +--- io.netty:netty-codec:4.1.87.Final (*) -| | | +--- io.netty:netty-handler:4.1.87.Final (*) -| | | \--- io.netty:netty-codec-http:4.1.87.Final (*) -| | \--- io.netty:netty-handler:4.1.70.Final -> 4.1.87.Final (*) -| \--- io.netty:netty-handler-proxy:4.1.70.Final -> 4.1.87.Final -| +--- io.netty:netty-common:4.1.87.Final -| +--- io.netty:netty-buffer:4.1.87.Final (*) -| +--- io.netty:netty-transport:4.1.87.Final (*) -| +--- io.netty:netty-codec:4.1.87.Final (*) -| +--- io.netty:netty-codec-socks:4.1.87.Final -| | +--- io.netty:netty-common:4.1.87.Final -| | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | +--- io.netty:netty-transport:4.1.87.Final (*) -| | \--- io.netty:netty-codec:4.1.87.Final (*) -| \--- io.netty:netty-codec-http:4.1.87.Final (*) -+--- org.grails.plugins:views-json-templates -> 2.3.2 -| \--- org.grails.plugins:views-json:2.3.2 (*) -+--- com.graphql-java:graphql-java:20.6 -| +--- com.graphql-java:java-dataloader:3.2.0 -| | \--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 -| +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| \--- org.slf4j:slf4j-api:1.7.35 -> 1.7.36 -+--- org.apache.commons:commons-compress:1.10 -+--- project :grails-plugin-gorm-graphql-plugin -| +--- project :gorm-graphql -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- com.graphql-java:graphql-java:20.6 (*) -| | +--- org.grails:grails-datastore-gorm:7.3.4 -> 7.3.3 (*) -| | +--- org.grails:grails-datastore-gorm:7.3.1 -> 7.3.3 (*) -| | +--- com.graphql-java:graphql-java-extended-scalars:20.2 -| | | \--- com.graphql-java:graphql-java:20.2 -> 20.6 (*) -| | +--- com.github.javaparser:javaparser-core:3.25.5 -| | +--- org.grails.plugins:views-json:2.3.2 (*) -| | \--- org.javassist:javassist:3.29.2-GA -| +--- com.graphql-java:graphql-java:20.6 (*) -| +--- org.grails:grails-datastore-gorm:7.3.4 -> 7.3.3 (*) -| +--- org.grails:grails-plugin-controllers -> 5.3.3 (*) -| +--- org.grails:grails-plugin-databinding -> 5.3.3 (*) -| +--- org.grails:grails-plugin-rest -> 5.3.3 (*) -| +--- org.grails:grails-plugin-url-mappings -> 5.3.3 (*) -| +--- org.grails.plugins:views-json:2.3.2 (*) -| +--- io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0 (*) -| +--- javax.servlet:javax.servlet-api:4.0.1 -| +--- io.micronaut:micronaut-http-client:3.2.0 (*) -| +--- org.grails.plugins:converters:3.3.1 -> 4.0.0 (*) -| \--- com.github.javaparser:javaparser-core:3.25.5 -+--- org.glassfish.web:el-impl:2.1.2-b03 -| \--- javax.el:el-api:2.1.2-b03 -+--- com.h2database:h2 -> 1.4.200 -+--- org.apache.tomcat:tomcat-jdbc -> 9.0.71 -| \--- org.apache.tomcat:tomcat-juli:9.0.71 -+--- org.grails:grails-test-mixins:3.3.0 -| +--- org.codehaus.groovy:groovy:2.4.11 -> 3.0.11 -| +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| +--- org.grails:grails-web-jsp:3.3.0 -| | +--- org.codehaus.groovy:groovy:2.4.11 -> 3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.22 -> 1.7.36 -| | +--- org.grails:grails-web-common:3.2.10 -> 5.3.3 (*) -| | \--- org.grails:grails-web-gsp:3.3.0 -> 5.2.2 (*) -| +--- org.grails.plugins:async:3.3.0 -> 4.0.0 (*) -| +--- org.grails:grails-test:3.3.0 -> 5.3.3 -| | +--- javax.servlet:javax.servlet-api:4.0.1 -| | +--- org.springframework:spring-test:5.3.25 (*) -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.slf4j:slf4j-api:1.7.36 -| | +--- org.slf4j:jcl-over-slf4j:1.7.36 (*) -| | +--- org.springframework:spring-tx:5.3.25 (*) -| | +--- org.springframework.boot:spring-boot-test:2.7.9 -> 2.7.8 -| | | \--- org.springframework.boot:spring-boot:2.7.8 (*) -| | +--- org.codehaus.groovy:groovy-test-junit5:3.0.11 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 -| | | | +--- org.junit:junit-bom:5.8.2 (*) -| | | | +--- org.opentest4j:opentest4j:1.2.0 -| | | | \--- org.junit.platform:junit-platform-commons:1.8.2 -| | | | \--- org.junit:junit-bom:5.8.2 (*) -| | | +--- org.junit.platform:junit-platform-launcher:1.8.2 -| | | | +--- org.junit:junit-bom:5.8.2 (*) -| | | | \--- org.junit.platform:junit-platform-engine:1.8.2 -| | | | +--- org.junit:junit-bom:5.8.2 (*) -| | | | +--- org.opentest4j:opentest4j:1.2.0 -| | | | \--- org.junit.platform:junit-platform-commons:1.8.2 (*) -| | | \--- org.junit.jupiter:junit-jupiter-engine:5.8.2 -| | | +--- org.junit:junit-bom:5.8.2 (*) -| | | +--- org.junit.platform:junit-platform-engine:1.8.2 (*) -| | | \--- org.junit.jupiter:junit-jupiter-api:5.8.2 (*) -| | +--- org.codehaus.groovy:groovy-test:3.0.11 -| | | +--- org.codehaus.groovy:groovy:3.0.11 -| | | \--- junit:junit:4.13.2 (*) -| | +--- org.spockframework:spock-core:2.1-groovy-3.0 -| | +--- org.junit.platform:junit-platform-runner:1.9.2 -> 1.8.2 -| | | +--- org.junit.platform:junit-platform-suite-commons:1.8.2 -| | | | +--- org.junit.platform:junit-platform-engine:1.8.2 (*) -| | | | +--- org.junit.platform:junit-platform-suite-api:1.8.2 -| | | | | +--- org.junit:junit-bom:5.8.2 (*) -| | | | | \--- org.junit.platform:junit-platform-commons:1.8.2 (*) -| | | | +--- org.junit:junit-bom:5.8.2 (*) -| | | | \--- org.junit.platform:junit-platform-launcher:1.8.2 (*) -| | | +--- org.junit:junit-bom:5.8.2 (*) -| | | +--- junit:junit:4.13.2 (*) -| | | +--- org.junit.platform:junit-platform-launcher:1.8.2 (*) -| | | \--- org.junit.platform:junit-platform-suite-api:1.8.2 (*) -| | +--- org.grails.plugins:converters:4.0.0 (*) -| | +--- jline:jline:2.14.6 -| | +--- org.fusesource.jansi:jansi:1.18 -| | +--- org.apache.ant:ant:1.10.13 (*) -| | +--- org.apache.ant:ant-junit:1.10.13 (*) -| | \--- org.objenesis:objenesis:3.3 -| +--- org.grails:grails-datastore-gorm-test:6.1.6.RELEASE -> 7.3.3 -| | +--- com.github.ben-manes.caffeine:caffeine:2.9.3 (*) -| | +--- javax.annotation:javax.annotation-api:1.3.2 -| | +--- org.codehaus.groovy:groovy:3.0.11 -| | +--- org.grails:grails-datastore-gorm:7.3.3 (*) -| | \--- org.grails:grails-datastore-core:7.3.3 (*) -| +--- org.grails:grails-logging:3.3.0 -> 5.3.3 (*) -| +--- javax.servlet:javax.servlet-api:3.1.0 -> 4.0.1 -| +--- org.springframework:spring-test:4.3.9.RELEASE -> 5.3.25 (*) -| +--- org.springframework.boot:spring-boot-starter-test:1.5.6.RELEASE -> 2.7.8 -| | +--- org.springframework.boot:spring-boot-starter:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot-test:2.7.8 (*) -| | +--- org.springframework.boot:spring-boot-test-autoconfigure:2.7.8 -| | | +--- org.springframework.boot:spring-boot:2.7.8 (*) -| | | +--- org.springframework.boot:spring-boot-test:2.7.8 (*) -| | | \--- org.springframework.boot:spring-boot-autoconfigure:2.7.8 (*) -| | +--- com.jayway.jsonpath:json-path:2.7.0 -| | | +--- net.minidev:json-smart:2.4.7 -> 2.4.8 -| | | | \--- net.minidev:accessors-smart:2.4.8 -| | | | \--- org.ow2.asm:asm:9.1 -| | | \--- org.slf4j:slf4j-api:1.7.33 -> 1.7.36 -| | +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.3 (*) -| | +--- org.assertj:assertj-core:3.22.0 -| | +--- org.hamcrest:hamcrest:2.2 -| | +--- org.junit.jupiter:junit-jupiter:5.8.2 -| | | +--- org.junit:junit-bom:5.8.2 (*) -| | | +--- org.junit.jupiter:junit-jupiter-api:5.8.2 (*) -| | | +--- org.junit.jupiter:junit-jupiter-params:5.8.2 -| | | | +--- org.junit:junit-bom:5.8.2 (*) -| | | | \--- org.junit.jupiter:junit-jupiter-api:5.8.2 (*) -| | | \--- org.junit.jupiter:junit-jupiter-engine:5.8.2 (*) -| | +--- org.mockito:mockito-core:4.5.1 -| | | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 -| | | +--- net.bytebuddy:byte-buddy-agent:1.12.9 -> 1.12.22 -| | | \--- org.objenesis:objenesis:3.2 -> 3.3 -| | +--- org.mockito:mockito-junit-jupiter:4.5.1 -| | | +--- org.mockito:mockito-core:4.5.1 (*) -| | | \--- org.junit.jupiter:junit-jupiter-api:5.8.2 (*) -| | +--- org.skyscreamer:jsonassert:1.5.1 -| | | \--- com.vaadin.external.google:android-json:0.0.20131108.vaadin1 -| | +--- org.springframework:spring-core:5.3.25 (*) -| | +--- org.springframework:spring-test:5.3.25 (*) -| | \--- org.xmlunit:xmlunit-core:2.9.1 -| +--- org.spockframework:spock-spring:1.1-groovy-2.4 -> 2.1-groovy-3.0 -| +--- org.spockframework:spock-core:1.1-groovy-2.4 -> 2.1-groovy-3.0 -| +--- junit:junit:4.12 -> 4.13.2 (*) -| \--- cglib:cglib:2.2.2 -| \--- asm:asm:3.3.1 -+--- org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1 -| +--- org.seleniumhq.selenium:selenium-remote-driver:2.47.1 -> 4.1.4 -| | +--- com.beust:jcommander:1.82 -| | +--- com.google.auto.service:auto-service-annotations:1.0.1 -| | +--- com.google.auto.service:auto-service:1.0.1 -| | | +--- com.google.auto.service:auto-service-annotations:1.0.1 -| | | +--- com.google.auto:auto-common:1.2 -| | | | \--- com.google.guava:guava:31.0.1-jre -> 31.1-jre -| | | | +--- com.google.guava:failureaccess:1.0.1 -| | | | +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava -| | | | +--- com.google.code.findbugs:jsr305:3.0.2 -| | | | +--- org.checkerframework:checker-qual:3.12.0 -> 3.19.0 -| | | | +--- com.google.errorprone:error_prone_annotations:2.11.0 -| | | | \--- com.google.j2objc:j2objc-annotations:1.3 -| | | \--- com.google.guava:guava:31.0.1-jre -> 31.1-jre (*) -| | +--- com.google.guava:guava:31.1-jre (*) -| | +--- io.netty:netty-buffer:4.1.76.Final -> 4.1.87.Final (*) -| | +--- io.netty:netty-codec-http:4.1.76.Final -> 4.1.87.Final (*) -| | +--- io.netty:netty-common:4.1.76.Final -> 4.1.87.Final -| | +--- io.netty:netty-transport-classes-epoll:4.1.76.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | \--- io.netty:netty-transport-native-unix-common:4.1.87.Final (*) -| | +--- io.netty:netty-transport-classes-kqueue:4.1.76.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | \--- io.netty:netty-transport-native-unix-common:4.1.87.Final (*) -| | +--- io.netty:netty-transport-native-epoll:4.1.76.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final (*) -| | | \--- io.netty:netty-transport-classes-epoll:4.1.87.Final (*) -| | +--- io.netty:netty-transport-native-kqueue:4.1.76.Final -> 4.1.87.Final -| | | +--- io.netty:netty-common:4.1.87.Final -| | | +--- io.netty:netty-buffer:4.1.87.Final (*) -| | | +--- io.netty:netty-transport:4.1.87.Final (*) -| | | +--- io.netty:netty-transport-native-unix-common:4.1.87.Final (*) -| | | \--- io.netty:netty-transport-classes-kqueue:4.1.87.Final (*) -| | +--- io.netty:netty-transport-native-unix-common:4.1.76.Final -> 4.1.87.Final (*) -| | +--- io.netty:netty-transport:4.1.76.Final -> 4.1.87.Final (*) -| | +--- io.opentelemetry:opentelemetry-api:1.13.0 -| | | \--- io.opentelemetry:opentelemetry-context:1.13.0 -| | +--- io.opentelemetry:opentelemetry-context:1.13.0 -| | +--- io.opentelemetry:opentelemetry-exporter-logging:1.13.0 -| | | +--- io.opentelemetry:opentelemetry-sdk:1.13.0 -| | | | +--- io.opentelemetry:opentelemetry-sdk-metrics:1.13.0-alpha -| | | | | +--- io.opentelemetry:opentelemetry-api:1.13.0 (*) -| | | | | \--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 -| | | | | +--- io.opentelemetry:opentelemetry-semconv:1.13.0-alpha -| | | | | | \--- io.opentelemetry:opentelemetry-api:1.13.0 (*) -| | | | | \--- io.opentelemetry:opentelemetry-api:1.13.0 (*) -| | | | +--- io.opentelemetry:opentelemetry-sdk-logs:1.13.0-alpha -| | | | | \--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 (*) -| | | | +--- io.opentelemetry:opentelemetry-api:1.13.0 (*) -| | | | +--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 (*) -| | | | \--- io.opentelemetry:opentelemetry-sdk-trace:1.13.0 -| | | | +--- io.opentelemetry:opentelemetry-semconv:1.13.0-alpha (*) -| | | | +--- io.opentelemetry:opentelemetry-api:1.13.0 (*) -| | | | \--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 (*) -| | | +--- io.opentelemetry:opentelemetry-sdk-metrics:1.13.0-alpha (*) -| | | \--- io.opentelemetry:opentelemetry-sdk-logs:1.13.0-alpha (*) -| | +--- io.opentelemetry:opentelemetry-sdk-common:1.13.0 (*) -| | +--- io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.13.0 -| | | +--- io.opentelemetry:opentelemetry-sdk-metrics:1.13.0-alpha (*) -| | | +--- io.opentelemetry:opentelemetry-sdk-logs:1.13.0-alpha (*) -| | | \--- io.opentelemetry:opentelemetry-sdk:1.13.0 (*) -| | +--- io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.13.0-alpha -| | | +--- io.opentelemetry:opentelemetry-semconv:1.13.0-alpha (*) -| | | +--- io.opentelemetry:opentelemetry-sdk:1.13.0 (*) -| | | +--- io.opentelemetry:opentelemetry-sdk-metrics:1.13.0-alpha (*) -| | | +--- io.opentelemetry:opentelemetry-sdk-logs:1.13.0-alpha (*) -| | | \--- io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:1.13.0 (*) -| | +--- io.opentelemetry:opentelemetry-sdk-trace:1.13.0 (*) -| | +--- io.opentelemetry:opentelemetry-sdk:1.13.0 (*) -| | +--- io.opentelemetry:opentelemetry-semconv:1.13.0-alpha (*) -| | +--- io.ous:jtoml:2.0.0 -| | +--- net.bytebuddy:byte-buddy:1.12.9 -> 1.12.22 -| | +--- org.apache.commons:commons-exec:1.3 -| | +--- org.asynchttpclient:async-http-client:2.12.3 -| | | +--- org.asynchttpclient:async-http-client-netty-utils:2.12.3 -| | | | +--- io.netty:netty-buffer:4.1.60.Final -> 4.1.87.Final (*) -| | | | +--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 -| | | | \--- com.sun.activation:jakarta.activation:1.2.2 -| | | +--- io.netty:netty-codec-http:4.1.60.Final -> 4.1.87.Final (*) -| | | +--- io.netty:netty-handler:4.1.60.Final -> 4.1.87.Final (*) -| | | +--- io.netty:netty-codec-socks:4.1.60.Final -> 4.1.87.Final (*) -| | | +--- io.netty:netty-handler-proxy:4.1.60.Final -> 4.1.87.Final (*) -| | | +--- io.netty:netty-transport-native-epoll:4.1.60.Final -> 4.1.87.Final (*) -| | | +--- io.netty:netty-transport-native-kqueue:4.1.60.Final -> 4.1.87.Final (*) -| | | +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| | | +--- com.typesafe.netty:netty-reactive-streams:2.0.4 -| | | | +--- io.netty:netty-handler:4.1.43.Final -> 4.1.87.Final (*) -| | | | \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4 -| | | +--- org.slf4j:slf4j-api:1.7.30 -> 1.7.36 -| | | \--- com.sun.activation:jakarta.activation:1.2.2 -| | +--- org.seleniumhq.selenium:selenium-api:4.1.4 -| | +--- org.seleniumhq.selenium:selenium-http:4.1.4 -| | | +--- com.google.guava:guava:31.1-jre (*) -| | | +--- dev.failsafe:failsafe:3.2.3 -| | | +--- org.seleniumhq.selenium:selenium-api:4.1.4 -| | | \--- org.seleniumhq.selenium:selenium-json:4.1.4 -| | | \--- org.seleniumhq.selenium:selenium-api:4.1.4 -| | \--- org.seleniumhq.selenium:selenium-json:4.1.4 (*) -| +--- net.sourceforge.htmlunit:htmlunit:2.17 -> 2.18 -| | +--- xalan:xalan:2.7.2 -| | | \--- xalan:serializer:2.7.2 -| | | \--- xml-apis:xml-apis:1.3.04 -> 1.4.01 -| | +--- commons-collections:commons-collections:3.2.1 -> 3.2.2 -| | +--- org.apache.commons:commons-lang3:3.4 -> 3.12.0 -| | +--- org.apache.httpcomponents:httpclient:4.5 -> 4.5.14 -| | | +--- org.apache.httpcomponents:httpcore:4.4.16 -| | | +--- commons-logging:commons-logging:1.2 -| | | \--- commons-codec:commons-codec:1.11 -> 1.15 -| | +--- org.apache.httpcomponents:httpmime:4.5 -> 4.5.14 -| | | \--- org.apache.httpcomponents:httpclient:4.5.14 (*) -| | +--- commons-codec:commons-codec:1.10 -> 1.15 -| | +--- net.sourceforge.htmlunit:htmlunit-core-js:2.17 -| | +--- xerces:xercesImpl:2.11.0 -| | | \--- xml-apis:xml-apis:1.4.01 -| | +--- net.sourceforge.nekohtml:nekohtml:1.9.22 -| | +--- net.sourceforge.cssparser:cssparser:0.9.16 -| | | \--- org.w3c.css:sac:1.3 -| | +--- commons-io:commons-io:2.4 -> 2.11.0 -| | +--- commons-logging:commons-logging:1.2 -| | \--- org.eclipse.jetty.websocket:websocket-client:9.2.12.v20150709 -> 9.4.50.v20221201 -| | +--- org.eclipse.jetty:jetty-client:9.4.50.v20221201 -| | | +--- org.eclipse.jetty:jetty-http:9.4.50.v20221201 -| | | | +--- org.eclipse.jetty:jetty-util:9.4.50.v20221201 -| | | | \--- org.eclipse.jetty:jetty-io:9.4.50.v20221201 -| | | | \--- org.eclipse.jetty:jetty-util:9.4.50.v20221201 -| | | \--- org.eclipse.jetty:jetty-io:9.4.50.v20221201 (*) -| | +--- org.eclipse.jetty:jetty-util:9.4.50.v20221201 -| | +--- org.eclipse.jetty:jetty-io:9.4.50.v20221201 (*) -| | \--- org.eclipse.jetty.websocket:websocket-common:9.4.50.v20221201 -| | +--- org.eclipse.jetty.websocket:websocket-api:9.4.50.v20221201 -| | +--- org.eclipse.jetty:jetty-util:9.4.50.v20221201 -| | \--- org.eclipse.jetty:jetty-io:9.4.50.v20221201 (*) -| \--- org.apache.httpcomponents:httpclient:4.4.1 -> 4.5.14 (*) -\--- net.sourceforge.htmlunit:htmlunit:2.18 (*) - -testRuntimeOnly - Runtime only dependencies for source set 'test'. (n) -No dependencies - -(c) - dependency constraint -(*) - dependencies omitted (listed previously) - -(n) - Not resolved (configuration is not meant to be resolved) - -A web-based, searchable dependency report is available by adding the --scan option. - -Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0. -Use '--warning-mode all' to show the individual deprecation warnings. -See https://docs.gradle.org/6.9.3/userguide/command_line_interface.html#sec:command_line_warnings - -BUILD SUCCESSFUL in 3s -1 actionable task: 1 executed diff --git a/examples/grails-multi-datastore-app/grails-app/conf/application.yml b/examples/grails-multi-datastore-app/grails-app/conf/application.yml index 3a1e0c1d..240dd231 100755 --- a/examples/grails-multi-datastore-app/grails-app/conf/application.yml +++ b/examples/grails-multi-datastore-app/grails-app/conf/application.yml @@ -72,6 +72,7 @@ dataSource: driverClassName: org.h2.Driver username: sa password: '' + url: jdbc:h2:mem:devDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE environments: development: diff --git a/examples/grails-tenant-app/build.gradle b/examples/grails-tenant-app/build.gradle index 9b126175..48a97a54 100644 --- a/examples/grails-tenant-app/build.gradle +++ b/examples/grails-tenant-app/build.gradle @@ -31,6 +31,7 @@ dependencies { testImplementation "org.grails:grails-web-testing-support" testRuntime "org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1" testRuntime "net.sourceforge.htmlunit:htmlunit:2.18" + testImplementation "org.grails:grails-test-mixins:3.3.0" implementation project(":grails-plugin-gorm-graphql-plugin") diff --git a/examples/grails-tenant-app/src/integration-test/groovy/grails/tenant/app/UserIntegrationSpec.groovy b/examples/grails-tenant-app/src/integration-test/groovy/grails/tenant/app/UserIntegrationSpec.groovy index 84822325..1487d846 100644 --- a/examples/grails-tenant-app/src/integration-test/groovy/grails/tenant/app/UserIntegrationSpec.groovy +++ b/examples/grails-tenant-app/src/integration-test/groovy/grails/tenant/app/UserIntegrationSpec.groovy @@ -3,8 +3,6 @@ package grails.tenant.app import grails.testing.mixin.integration.Integration import org.grails.datastore.mapping.multitenancy.resolvers.SystemPropertyTenantResolver import org.grails.gorm.graphql.plugin.testing.GraphQLSpec -import org.grails.web.json.JSONArray -import org.grails.web.json.JSONObject import spock.lang.Specification import spock.lang.Stepwise diff --git a/gradle.properties b/gradle.properties index 4db677e8..c9498fe3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,9 +13,10 @@ grailsVersion=5.3.3 grailsGradlePluginVersion=5.3.0 grailsDocsVersion=3.3.2 groovyVersion=3.0.11 +junitJupiterVersion=5.9.3 slf4jVersion=1.7.36 spockVersion=2.1-groovy-3.0 -micronautVersion=3.2.0 +micronautVersion=3.8.5 graphqlJavaVersion=20.6 graphqlJavaScalarExtVersion=20.2 codenarcVersion=1.6.1 @@ -23,12 +24,12 @@ viewGradleVersion=2.0.0 viewsJsonVersion=2.3.2 servletApiVersion=4.0.1 cglibNodepVersion=3.2.9 -objenesisVersion=2.6 -jansiVersion=1.17.1 +objenesisVersion=3.3 +jansiVersion=1.18 hibernateEcacheVersion=5.6.7.Final hibernateCoreVersion=5.6.11.Final org.gradle.daemon=true org.gradle.parallel=true org.gradle.jvmargs=-Dfile.encoding=UTF-8 -Xmx1024M -junitJupiterVersion=5.9.3 + From 8cd1a0a6e6a85068ab3dc455c4da5eefeb696c98 Mon Sep 17 00:00:00 2001 From: Emma Richardson <49138186+Emrichardsone@users.noreply.github.com> Date: Wed, 4 Oct 2023 10:57:38 -0500 Subject: [PATCH 04/19] re-add compile static annotation, change signature method to specify resolution strategy --- .../gorm/graphql/entity/arguments/ComplexArgument.groovy | 3 ++- .../org/grails/gorm/graphql/entity/dsl/GraphQLMapping.groovy | 3 ++- .../gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy | 3 ++- .../org/grails/gorm/graphql/entity/dsl/helpers/Arguable.groovy | 3 ++- .../grails/gorm/graphql/entity/dsl/helpers/ComplexTyped.groovy | 3 ++- .../gorm/graphql/entity/dsl/helpers/ExecutesClosures.groovy | 3 +-- .../graphql/entity/property/impl/ComplexGraphQLProperty.groovy | 2 ++ .../entity/property/impl/PersistentGraphQLProperty.groovy | 2 ++ .../graphql/domain/hibernate/description/MappingComment.groovy | 1 - .../org/grails/gorm/graphql/plugin/GraphqlController.groovy | 2 -- 10 files changed, 15 insertions(+), 10 deletions(-) diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/arguments/ComplexArgument.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/arguments/ComplexArgument.groovy index 0aedf4a1..7837b889 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/arguments/ComplexArgument.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/arguments/ComplexArgument.groovy @@ -1,6 +1,7 @@ package org.grails.gorm.graphql.entity.arguments import graphql.schema.GraphQLInputType +import groovy.transform.CompileStatic import groovy.transform.InheritConstructors import org.grails.datastore.mapping.model.MappingContext import org.grails.gorm.graphql.entity.dsl.helpers.ComplexTyped @@ -13,7 +14,7 @@ import org.grails.gorm.graphql.types.GraphQLTypeManager * @author James Kleeh * @since 1.0.0 */ - +@CompileStatic @InheritConstructors class ComplexArgument extends CustomArgument implements ComplexTyped, ExecutesClosures { diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLMapping.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLMapping.groovy index 51eacc0c..69f1fc4d 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLMapping.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLMapping.groovy @@ -1,6 +1,7 @@ package org.grails.gorm.graphql.entity.dsl import groovy.transform.CompileDynamic +import groovy.transform.CompileStatic import org.grails.gorm.graphql.entity.dsl.helpers.Deprecatable import org.grails.gorm.graphql.entity.dsl.helpers.Describable import org.grails.gorm.graphql.entity.dsl.helpers.ExecutesClosures @@ -35,7 +36,7 @@ import org.springframework.validation.DataBinder * @author James Kleeh * @since 1.0.0 */ - +@CompileStatic class GraphQLMapping implements Describable, Deprecatable, ExecutesClosures { private List additional = [] diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy index addab7f6..87ac763f 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy @@ -1,12 +1,13 @@ package org.grails.gorm.graphql.entity.dsl +import groovy.transform.CompileStatic import groovy.transform.builder.Builder import groovy.transform.builder.SimpleStrategy import org.grails.gorm.graphql.entity.dsl.helpers.Deprecatable import org.grails.gorm.graphql.entity.dsl.helpers.Describable import org.grails.gorm.graphql.entity.dsl.helpers.ExecutesClosures import org.grails.gorm.graphql.entity.dsl.helpers.Named - +@CompileStatic /** * Builder to provide GraphQL specific data for a GORM entity property * diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/Arguable.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/Arguable.groovy index 81cfd4d2..c3d4a7ef 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/Arguable.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/Arguable.groovy @@ -1,6 +1,7 @@ package org.grails.gorm.graphql.entity.dsl.helpers import graphql.schema.GraphQLArgument +import groovy.transform.CompileStatic import org.grails.datastore.mapping.model.MappingContext import org.grails.gorm.graphql.entity.arguments.ComplexArgument import org.grails.gorm.graphql.entity.arguments.CustomArgument @@ -14,7 +15,7 @@ import org.grails.gorm.graphql.types.GraphQLTypeManager * @author James Kleeh * @since 1.0.0 */ - +@CompileStatic trait Arguable extends ExecutesClosures { List arguments = [] diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ComplexTyped.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ComplexTyped.groovy index 6076f083..638b6ac5 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ComplexTyped.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ComplexTyped.groovy @@ -1,6 +1,7 @@ package org.grails.gorm.graphql.entity.dsl.helpers import graphql.schema.* +import groovy.transform.CompileStatic import org.grails.datastore.mapping.model.MappingContext import org.grails.gorm.graphql.entity.fields.ComplexField import org.grails.gorm.graphql.entity.fields.Field @@ -17,7 +18,7 @@ import static graphql.schema.GraphQLInputObjectField.newInputObjectField * @author James Kleeh * @since 1.0.0 */ - +@CompileStatic trait ComplexTyped extends ExecutesClosures { boolean collection = false diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ExecutesClosures.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ExecutesClosures.groovy index 305f2efa..f1a70dd0 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ExecutesClosures.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ExecutesClosures.groovy @@ -12,7 +12,7 @@ import groovy.transform.CompileStatic @CompileStatic trait ExecutesClosures { - static void withDelegate(Closure closure, Object delegate) { + static void withDelegate(@DelegatesTo(strategy = Closure.DELEGATE_ONLY) Closure closure, Object delegate) { if (closure != null) { closure.resolveStrategy = Closure.DELEGATE_ONLY closure.delegate = delegate @@ -24,6 +24,5 @@ trait ExecutesClosures { } } } - } diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/ComplexGraphQLProperty.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/ComplexGraphQLProperty.groovy index 80cfd46f..ad299b14 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/ComplexGraphQLProperty.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/ComplexGraphQLProperty.groovy @@ -2,6 +2,7 @@ package org.grails.gorm.graphql.entity.property.impl import graphql.schema.GraphQLType import groovy.transform.AutoClone +import groovy.transform.CompileStatic import org.grails.gorm.graphql.entity.dsl.helpers.ComplexTyped import org.grails.gorm.graphql.entity.dsl.helpers.ExecutesClosures import org.grails.gorm.graphql.types.GraphQLOperationType @@ -15,6 +16,7 @@ import org.grails.gorm.graphql.types.GraphQLTypeManager * @since 1.0.0 */ @AutoClone +@CompileStatic class ComplexGraphQLProperty extends CustomGraphQLProperty implements ExecutesClosures { String typeName diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy index 3cccff78..ae1b2c93 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy @@ -4,6 +4,7 @@ import grails.gorm.validation.ConstrainedProperty import grails.gorm.validation.PersistentEntityValidator import graphql.schema.DataFetcher import graphql.schema.GraphQLType +import groovy.transform.CompileStatic import org.grails.datastore.mapping.model.MappingContext import org.grails.datastore.mapping.model.PersistentEntity import org.grails.datastore.mapping.model.PersistentProperty @@ -32,6 +33,7 @@ import static graphql.schema.GraphQLList.list * @author James Kleeh * @since 1.0.0 */ +@CompileStatic class PersistentGraphQLProperty extends OrderedGraphQLProperty { final Integer order diff --git a/core/src/test/groovy/org/grails/gorm/graphql/domain/hibernate/description/MappingComment.groovy b/core/src/test/groovy/org/grails/gorm/graphql/domain/hibernate/description/MappingComment.groovy index 078469e8..3e322c2d 100644 --- a/core/src/test/groovy/org/grails/gorm/graphql/domain/hibernate/description/MappingComment.groovy +++ b/core/src/test/groovy/org/grails/gorm/graphql/domain/hibernate/description/MappingComment.groovy @@ -3,7 +3,6 @@ package org.grails.gorm.graphql.domain.hibernate.description import grails.gorm.annotation.Entity import grails.gorm.hibernate.mapping.MappingBuilder - @Entity class MappingComment { diff --git a/plugin/grails-app/controllers/org/grails/gorm/graphql/plugin/GraphqlController.groovy b/plugin/grails-app/controllers/org/grails/gorm/graphql/plugin/GraphqlController.groovy index d66796e9..eef63756 100644 --- a/plugin/grails-app/controllers/org/grails/gorm/graphql/plugin/GraphqlController.groovy +++ b/plugin/grails-app/controllers/org/grails/gorm/graphql/plugin/GraphqlController.groovy @@ -6,8 +6,6 @@ import graphql.ExecutionInput import graphql.ExecutionResult import graphql.GraphQL import groovy.transform.CompileStatic - - import org.springframework.context.MessageSource import org.springframework.http.HttpMethod From 49a1f7869dd3baa321c280f035fe61d29804ad65 Mon Sep 17 00:00:00 2001 From: Emma Richardson <49138186+Emrichardsone@users.noreply.github.com> Date: Wed, 4 Oct 2023 10:59:50 -0500 Subject: [PATCH 05/19] remove sdkman file --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 78dbde08..5a50d27e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ **/.gradle/ **/build **/out +*.sdkmanrc \ No newline at end of file From c818931061f0c38697ffdbc9769b03f04c6a4e90 Mon Sep 17 00:00:00 2001 From: Emma Richardson <49138186+Emrichardsone@users.noreply.github.com> Date: Wed, 4 Oct 2023 11:00:44 -0500 Subject: [PATCH 06/19] remove sdkman file --- .sdkmanrc | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 .sdkmanrc diff --git a/.sdkmanrc b/.sdkmanrc deleted file mode 100644 index 207ddffa..00000000 --- a/.sdkmanrc +++ /dev/null @@ -1,3 +0,0 @@ -# Enable auto-env through the sdkman_auto_env config -# Add key=value pairs of SDKs to use below -java=8.0.372-amzn From b2e8524ce8d6ff5ebbafaf0f765ae1d89ac771ee Mon Sep 17 00:00:00 2001 From: Emma Richardson <49138186+Emrichardsone@users.noreply.github.com> Date: Mon, 9 Oct 2023 10:21:30 -0500 Subject: [PATCH 07/19] static checking compile errors --- .../org/grails/gorm/graphql/entity/dsl/GraphQLMapping.groovy | 2 +- .../org/grails/gorm/graphql/entity/dsl/helpers/Arguable.groovy | 2 +- .../grails/gorm/graphql/entity/dsl/helpers/ComplexTyped.groovy | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLMapping.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLMapping.groovy index 69f1fc4d..c6238e35 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLMapping.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLMapping.groovy @@ -246,7 +246,7 @@ class GraphQLMapping implements Describable, Deprecatable extends ExecutesClosures { List arguments = [] - private void handleArgumentClosure(CustomArgument argument, Closure closure) { + private void handleArgumentClosure(CustomArgument argument, @DelegatesTo(strategy = Closure.DELEGATE_ONLY)Closure closure) { withDelegate(closure, (Object)argument) argument.validate() arguments.add(argument) diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ComplexTyped.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ComplexTyped.groovy index 638b6ac5..5c4fab38 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ComplexTyped.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ComplexTyped.groovy @@ -105,7 +105,7 @@ trait ComplexTyped extends ExecutesClosures { customInputType } - private void handleField(Closure closure, Field field) { + private void handleField(@DelegatesTo(strategy = Closure.DELEGATE_ONLY)Closure closure, Field field) { field.nullable(defaultNull) withDelegate(closure, (Object)field) handleField(field) From 05cd142ddd0033d5e8dbe2b44ec15f7b071780d9 Mon Sep 17 00:00:00 2001 From: Puneet Behl Date: Wed, 11 Oct 2023 19:06:13 +0530 Subject: [PATCH 08/19] Fix compile errors Explicitly cast to the `org.grails.datastore.mapping.config.Property` class --- .../gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy | 3 ++- .../entity/property/impl/PersistentGraphQLProperty.groovy | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy index 87ac763f..ada0ad26 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy @@ -7,7 +7,7 @@ import org.grails.gorm.graphql.entity.dsl.helpers.Deprecatable import org.grails.gorm.graphql.entity.dsl.helpers.Describable import org.grails.gorm.graphql.entity.dsl.helpers.ExecutesClosures import org.grails.gorm.graphql.entity.dsl.helpers.Named -@CompileStatic + /** * Builder to provide GraphQL specific data for a GORM entity property * @@ -36,6 +36,7 @@ import org.grails.gorm.graphql.entity.dsl.helpers.Named * @author James Kleeh * @since 1.0.0 */ +@CompileStatic @Builder(builderStrategy = SimpleStrategy, prefix = '') class GraphQLPropertyMapping implements Describable, Deprecatable, Named, ExecutesClosures { diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy index ae1b2c93..4591d827 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy @@ -5,6 +5,7 @@ import grails.gorm.validation.PersistentEntityValidator import graphql.schema.DataFetcher import graphql.schema.GraphQLType import groovy.transform.CompileStatic +import org.grails.datastore.mapping.config.Property import org.grails.datastore.mapping.model.MappingContext import org.grails.datastore.mapping.model.PersistentEntity import org.grails.datastore.mapping.model.PersistentProperty @@ -63,7 +64,7 @@ class PersistentGraphQLProperty extends OrderedGraphQLProperty { this.nullable = mapping.nullable } else { - this.nullable = property.mapping.mappedForm.nullable + this.nullable = ((Property) property.mapping.mappedForm).nullable } this.output = mapping.output this.input = mapping.input From 7c32876467b5e5833f6b98d9f35a50a07a94644f Mon Sep 17 00:00:00 2001 From: Emma Richardson <49138186+Emrichardsone@users.noreply.github.com> Date: Wed, 11 Oct 2023 08:38:07 -0500 Subject: [PATCH 09/19] dependency updates to run integration tests --- .../entity/dsl/GraphQLPropertyMapping.groovy | 4 +- .../dsl/helpers/ExecutesClosures.groovy | 2 +- .../impl/PersistentGraphQLProperty.groovy | 3 +- examples/grails-docs-app/build.gradle | 3 ++ .../grails-app/conf/application.yml | 10 +++-- .../grails-app/conf/logback.groovy | 36 ----------------- .../grails-app/conf/logback.xml | 19 +++++++++ examples/grails-tenant-app/build.gradle | 4 ++ .../grails-app/conf/application.yml | 6 +-- .../grails-app/conf/logback.groovy | 36 ----------------- .../grails-app/conf/logback.xml | 19 +++++++++ examples/grails-test-app/build.gradle | 4 ++ .../grails-app/conf/application.yml | 11 ++++-- .../grails-app/conf/logback.groovy | 39 ------------------- .../grails-app/conf/logback.xml | 19 +++++++++ examples/spring-boot-app/build.gradle | 8 +++- .../demo/AuthorIntegrationTests.groovy | 6 ++- plugin/build.gradle | 4 ++ 18 files changed, 106 insertions(+), 127 deletions(-) delete mode 100644 examples/grails-docs-app/grails-app/conf/logback.groovy create mode 100644 examples/grails-docs-app/grails-app/conf/logback.xml delete mode 100644 examples/grails-tenant-app/grails-app/conf/logback.groovy create mode 100644 examples/grails-tenant-app/grails-app/conf/logback.xml delete mode 100644 examples/grails-test-app/grails-app/conf/logback.groovy create mode 100644 examples/grails-test-app/grails-app/conf/logback.xml diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy index 87ac763f..dfc3e624 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/GraphQLPropertyMapping.groovy @@ -7,7 +7,7 @@ import org.grails.gorm.graphql.entity.dsl.helpers.Deprecatable import org.grails.gorm.graphql.entity.dsl.helpers.Describable import org.grails.gorm.graphql.entity.dsl.helpers.ExecutesClosures import org.grails.gorm.graphql.entity.dsl.helpers.Named -@CompileStatic + /** * Builder to provide GraphQL specific data for a GORM entity property * @@ -36,6 +36,8 @@ import org.grails.gorm.graphql.entity.dsl.helpers.Named * @author James Kleeh * @since 1.0.0 */ + +@CompileStatic @Builder(builderStrategy = SimpleStrategy, prefix = '') class GraphQLPropertyMapping implements Describable, Deprecatable, Named, ExecutesClosures { diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ExecutesClosures.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ExecutesClosures.groovy index f1a70dd0..be94b8e4 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ExecutesClosures.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/dsl/helpers/ExecutesClosures.groovy @@ -12,7 +12,7 @@ import groovy.transform.CompileStatic @CompileStatic trait ExecutesClosures { - static void withDelegate(@DelegatesTo(strategy = Closure.DELEGATE_ONLY) Closure closure, Object delegate) { + static void withDelegate(@DelegatesTo(strategy = Closure.DELEGATE_ONLY)Closure closure, Object delegate) { if (closure != null) { closure.resolveStrategy = Closure.DELEGATE_ONLY closure.delegate = delegate diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy index ae1b2c93..6486659b 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/property/impl/PersistentGraphQLProperty.groovy @@ -4,7 +4,6 @@ import grails.gorm.validation.ConstrainedProperty import grails.gorm.validation.PersistentEntityValidator import graphql.schema.DataFetcher import graphql.schema.GraphQLType -import groovy.transform.CompileStatic import org.grails.datastore.mapping.model.MappingContext import org.grails.datastore.mapping.model.PersistentEntity import org.grails.datastore.mapping.model.PersistentProperty @@ -33,7 +32,7 @@ import static graphql.schema.GraphQLList.list * @author James Kleeh * @since 1.0.0 */ -@CompileStatic +//@CompileStatic class PersistentGraphQLProperty extends OrderedGraphQLProperty { final Integer order diff --git a/examples/grails-docs-app/build.gradle b/examples/grails-docs-app/build.gradle index 0610743c..68578d76 100644 --- a/examples/grails-docs-app/build.gradle +++ b/examples/grails-docs-app/build.gradle @@ -36,3 +36,6 @@ bootRun { jvmArgs('-Dspring.output.ansi.enabled=always') sourceResources sourceSets.main } +tasks.withType(Test) { + useJUnitPlatform() +} \ No newline at end of file diff --git a/examples/grails-docs-app/grails-app/conf/application.yml b/examples/grails-docs-app/grails-app/conf/application.yml index 78d0ea87..24d0847c 100644 --- a/examples/grails-docs-app/grails-app/conf/application.yml +++ b/examples/grails-docs-app/grails-app/conf/application.yml @@ -21,6 +21,8 @@ spring: groovy: template: check-template-location: false + + management: endpoints: enabled-by-default: false @@ -67,6 +69,7 @@ hibernate: queries: false use_second_level_cache: false use_query_cache: false + dataSource: pooled: true jmxExport: true @@ -78,15 +81,15 @@ environments: development: dataSource: dbCreate: create-drop - url: jdbc:h2:mem:devDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE + url: jdbc:h2:mem:devDb;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE test: dataSource: dbCreate: update - url: jdbc:h2:mem:testDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE + url: jdbc:h2:mem:testDb;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE production: dataSource: dbCreate: none - url: jdbc:h2:./prodDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE + url: jdbc:h2:./prodDb;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE properties: jmxEnabled: true initialSize: 5 @@ -105,3 +108,4 @@ environments: testOnReturn: false jdbcInterceptors: ConnectionState defaultTransactionIsolation: 2 # TRANSACTION_READ_COMMITTED + diff --git a/examples/grails-docs-app/grails-app/conf/logback.groovy b/examples/grails-docs-app/grails-app/conf/logback.groovy deleted file mode 100644 index 20f85e19..00000000 --- a/examples/grails-docs-app/grails-app/conf/logback.groovy +++ /dev/null @@ -1,36 +0,0 @@ -import grails.util.BuildSettings -import grails.util.Environment -import org.springframework.boot.logging.logback.ColorConverter -import org.springframework.boot.logging.logback.WhitespaceThrowableProxyConverter - -import java.nio.charset.Charset - -conversionRule 'clr', ColorConverter -conversionRule 'wex', WhitespaceThrowableProxyConverter - -// See http://logback.qos.ch/manual/groovy.html for details on configuration -appender('STDOUT', ConsoleAppender) { - encoder(PatternLayoutEncoder) { - charset = Charset.forName('UTF-8') - - pattern = - '%clr(%d{yyyy-MM-dd HH:mm:ss.SSS}){faint} ' + // Date - '%clr(%5p) ' + // Log level - '%clr(---){faint} %clr([%15.15t]){faint} ' + // Thread - '%clr(%-40.40logger{39}){cyan} %clr(:){faint} ' + // Logger - '%m%n%wex' // Message - } -} - -def targetDir = BuildSettings.TARGET_DIR -if (Environment.isDevelopmentMode() && targetDir != null) { - appender("FULL_STACKTRACE", FileAppender) { - file = "${targetDir}/stacktrace.log" - append = true - encoder(PatternLayoutEncoder) { - pattern = "%level %logger - %msg%n" - } - } - logger("StackTrace", ERROR, ['FULL_STACKTRACE'], false) -} -root(ERROR, ['STDOUT']) diff --git a/examples/grails-docs-app/grails-app/conf/logback.xml b/examples/grails-docs-app/grails-app/conf/logback.xml new file mode 100644 index 00000000..c00bb3dc --- /dev/null +++ b/examples/grails-docs-app/grails-app/conf/logback.xml @@ -0,0 +1,19 @@ + + + + + + %d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n + + + + + + + + + + + + + \ No newline at end of file diff --git a/examples/grails-tenant-app/build.gradle b/examples/grails-tenant-app/build.gradle index 48a97a54..5eb5eb43 100644 --- a/examples/grails-tenant-app/build.gradle +++ b/examples/grails-tenant-app/build.gradle @@ -41,3 +41,7 @@ bootRun { jvmArgs('-Dspring.output.ansi.enabled=always') sourceResources sourceSets.main } + +tasks.withType(Test) { + useJUnitPlatform() +} \ No newline at end of file diff --git a/examples/grails-tenant-app/grails-app/conf/application.yml b/examples/grails-tenant-app/grails-app/conf/application.yml index 3aef57c6..823b2c80 100644 --- a/examples/grails-tenant-app/grails-app/conf/application.yml +++ b/examples/grails-tenant-app/grails-app/conf/application.yml @@ -83,15 +83,15 @@ environments: development: dataSource: dbCreate: create-drop - url: jdbc:h2:mem:devDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE + url: jdbc:h2:mem:devDb;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE test: dataSource: dbCreate: update - url: jdbc:h2:mem:testDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE + url: jdbc:h2:mem:testDb;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE production: dataSource: dbCreate: none - url: jdbc:h2:./prodDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE + url: jdbc:h2:./prodDb;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE properties: jmxEnabled: true initialSize: 5 diff --git a/examples/grails-tenant-app/grails-app/conf/logback.groovy b/examples/grails-tenant-app/grails-app/conf/logback.groovy deleted file mode 100644 index 20f85e19..00000000 --- a/examples/grails-tenant-app/grails-app/conf/logback.groovy +++ /dev/null @@ -1,36 +0,0 @@ -import grails.util.BuildSettings -import grails.util.Environment -import org.springframework.boot.logging.logback.ColorConverter -import org.springframework.boot.logging.logback.WhitespaceThrowableProxyConverter - -import java.nio.charset.Charset - -conversionRule 'clr', ColorConverter -conversionRule 'wex', WhitespaceThrowableProxyConverter - -// See http://logback.qos.ch/manual/groovy.html for details on configuration -appender('STDOUT', ConsoleAppender) { - encoder(PatternLayoutEncoder) { - charset = Charset.forName('UTF-8') - - pattern = - '%clr(%d{yyyy-MM-dd HH:mm:ss.SSS}){faint} ' + // Date - '%clr(%5p) ' + // Log level - '%clr(---){faint} %clr([%15.15t]){faint} ' + // Thread - '%clr(%-40.40logger{39}){cyan} %clr(:){faint} ' + // Logger - '%m%n%wex' // Message - } -} - -def targetDir = BuildSettings.TARGET_DIR -if (Environment.isDevelopmentMode() && targetDir != null) { - appender("FULL_STACKTRACE", FileAppender) { - file = "${targetDir}/stacktrace.log" - append = true - encoder(PatternLayoutEncoder) { - pattern = "%level %logger - %msg%n" - } - } - logger("StackTrace", ERROR, ['FULL_STACKTRACE'], false) -} -root(ERROR, ['STDOUT']) diff --git a/examples/grails-tenant-app/grails-app/conf/logback.xml b/examples/grails-tenant-app/grails-app/conf/logback.xml new file mode 100644 index 00000000..c00bb3dc --- /dev/null +++ b/examples/grails-tenant-app/grails-app/conf/logback.xml @@ -0,0 +1,19 @@ + + + + + + %d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n + + + + + + + + + + + + + \ No newline at end of file diff --git a/examples/grails-test-app/build.gradle b/examples/grails-test-app/build.gradle index 78f11e17..b59afa66 100644 --- a/examples/grails-test-app/build.gradle +++ b/examples/grails-test-app/build.gradle @@ -38,3 +38,7 @@ bootRun { jvmArgs('-Dspring.output.ansi.enabled=always') sourceResources sourceSets.main } + +tasks.withType(Test) { + useJUnitPlatform() +} \ No newline at end of file diff --git a/examples/grails-test-app/grails-app/conf/application.yml b/examples/grails-test-app/grails-app/conf/application.yml index b1be5516..21c4bc0f 100644 --- a/examples/grails-test-app/grails-app/conf/application.yml +++ b/examples/grails-test-app/grails-app/conf/application.yml @@ -84,15 +84,15 @@ environments: development: dataSource: dbCreate: create-drop - url: jdbc:h2:mem:devDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE + url: jdbc:h2:mem:devDb;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE test: dataSource: dbCreate: update - url: jdbc:h2:mem:testDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE + url: jdbc:h2:mem:testDb;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE production: dataSource: dbCreate: none - url: jdbc:h2:./prodDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE + url: jdbc:h2:./prodDb;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE properties: jmxEnabled: true initialSize: 5 @@ -111,3 +111,8 @@ environments: testOnReturn: false jdbcInterceptors: ConnectionState defaultTransactionIsolation: 2 # TRANSACTION_READ_COMMITTED +spring: + jpa: + properties: + hibernate: + dialect: sql diff --git a/examples/grails-test-app/grails-app/conf/logback.groovy b/examples/grails-test-app/grails-app/conf/logback.groovy deleted file mode 100644 index e782932a..00000000 --- a/examples/grails-test-app/grails-app/conf/logback.groovy +++ /dev/null @@ -1,39 +0,0 @@ -import grails.util.BuildSettings -import grails.util.Environment -import org.springframework.boot.logging.logback.ColorConverter -import org.springframework.boot.logging.logback.WhitespaceThrowableProxyConverter - -import java.nio.charset.Charset - -conversionRule 'clr', ColorConverter -conversionRule 'wex', WhitespaceThrowableProxyConverter - -// See http://logback.qos.ch/manual/groovy.html for details on configuration -appender('STDOUT', ConsoleAppender) { - encoder(PatternLayoutEncoder) { - charset = Charset.forName('UTF-8') - - pattern = - '%clr(%d{yyyy-MM-dd HH:mm:ss.SSS}){faint} ' + // Date - '%clr(%5p) ' + // Log level - '%clr(---){faint} %clr([%15.15t]){faint} ' + // Thread - '%clr(%-40.40logger{39}){cyan} %clr(:){faint} ' + // Logger - '%m%n%wex' // Message - } -} - -def targetDir = BuildSettings.TARGET_DIR -if (Environment.isDevelopmentMode() && targetDir != null) { - appender('FULL_STACKTRACE', FileAppender) { - file = "${targetDir}/stacktrace.log" - append = true - encoder(PatternLayoutEncoder) { - pattern = '%level %logger - %msg%n' - } - } - logger('StackTrace', ERROR, ['FULL_STACKTRACE'], false) -} - -logger('graphql.execution', WARN, ['STDOUT'], false) - -root(ERROR, ['STDOUT']) diff --git a/examples/grails-test-app/grails-app/conf/logback.xml b/examples/grails-test-app/grails-app/conf/logback.xml new file mode 100644 index 00000000..c00bb3dc --- /dev/null +++ b/examples/grails-test-app/grails-app/conf/logback.xml @@ -0,0 +1,19 @@ + + + + + + %d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n + + + + + + + + + + + + + \ No newline at end of file diff --git a/examples/spring-boot-app/build.gradle b/examples/spring-boot-app/build.gradle index d94a8d1e..720f2c54 100644 --- a/examples/spring-boot-app/build.gradle +++ b/examples/spring-boot-app/build.gradle @@ -27,6 +27,7 @@ dependencies { implementation 'jakarta.transaction:jakarta.transaction-api:2.0.1' implementation 'com.github.javaparser:javaparser-core:3.25.5' implementation "com.graphql-java:graphql-java:$graphqlJavaVersion" + implementation 'junit:junit:4.13.1' runtimeOnly 'com.h2database:h2:2.1.214' runtimeOnly 'org.apache.tomcat:tomcat-jdbc:10.1.9' runtimeOnly "org.apache.tomcat.embed:tomcat-embed-logging-log4j:8.5.0" @@ -37,7 +38,8 @@ dependencies { testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.spockframework:spock-core:2.3-groovy-3.0' - testImplementation 'junit:junit:4.12' + testImplementation 'junit:junit:4.13.2' + @@ -46,3 +48,7 @@ dependencies { repositories { mavenCentral() } + +tasks.withType(Test) { + useJUnitPlatform() +} \ No newline at end of file diff --git a/examples/spring-boot-app/src/test/groovy/com/example/demo/AuthorIntegrationTests.groovy b/examples/spring-boot-app/src/test/groovy/com/example/demo/AuthorIntegrationTests.groovy index b6324b6a..1b818942 100644 --- a/examples/spring-boot-app/src/test/groovy/com/example/demo/AuthorIntegrationTests.groovy +++ b/examples/spring-boot-app/src/test/groovy/com/example/demo/AuthorIntegrationTests.groovy @@ -1,13 +1,15 @@ package com.example.demo +import org.junit.runner.RunWith import org.springframework.beans.factory.annotation.Autowired import org.springframework.boot.test.context.SpringBootTest import org.springframework.boot.test.web.client.TestRestTemplate import org.springframework.http.ResponseEntity -import spock.lang.Specification +import org.springframework.test.context.junit4.SpringRunner +@RunWith(SpringRunner) @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) -class AuthorIntegrationTests extends Specification { +class AuthorIntegrationTests { @Autowired private TestRestTemplate restTemplate diff --git a/plugin/build.gradle b/plugin/build.gradle index 8f35b6d5..70817b1e 100644 --- a/plugin/build.gradle +++ b/plugin/build.gradle @@ -38,4 +38,8 @@ dependencies { compileGsonViews { packageName = "gorm-graphql" +} + +tasks.withType(Test) { + useJUnitPlatform() } \ No newline at end of file From 79f508fd9d9db63b6d7e75a3e4d3560d6d42a3f9 Mon Sep 17 00:00:00 2001 From: Puneet Behl Date: Wed, 11 Oct 2023 19:15:20 +0530 Subject: [PATCH 10/19] Configure Gradle Enterpise & Update Java CI Workflow --- .github/workflows/gradle.yml | 61 ++++++++++++++---------------------- settings.gradle | 29 +++++++++++++++++ 2 files changed, 52 insertions(+), 38 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index b25567c9..27976453 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -2,49 +2,25 @@ name: Java CI on: push: branches: - - master - '[2-9]+.[0-9]+.x' pull_request: branches: - - master - '[2-9]+.[0-9]+.x' workflow_dispatch: - inputs: - message: - description: 'Snapshot information (e.g. New Core Snapshot Tue Dec 15 00:07:18 UTC 2020 f212f54)' - required: true jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - java: ['8'] env: WORKSPACE: ${{ github.workspace }} GRADLE_OPTS: -Xmx1500m -Dfile.encoding=UTF-8 steps: - - name: Print Dispatch Information - if: github.event_name == 'workflow_dispatch' - env: - DISPATCH_INFORMATION: ${{ github.event.inputs.message }} - run: echo $DISPATCH_INFORMATION - uses: actions/checkout@v3 - name: Set up JDK uses: actions/setup-java@v3 with: distribution: 'adopt' - java-version: ${{ matrix.java }} - - name: Run Tests - if: github.event_name == 'pull_request' - id: tests - uses: gradle/gradle-build-action@v2 - with: - arguments: check -Dgeb.env=chromeHeadless - env: - GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER }} - GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY }} + java-version: '8' - name: Run Build - if: github.event_name == 'push' id: build uses: gradle/gradle-build-action@v2 env: @@ -53,36 +29,45 @@ jobs: GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY }} with: arguments: build -Dgeb.env=chromeHeadless - - name: Publish Test Report - if: steps.build.outcome == 'failure' || steps.tests.outcome == 'failure' - uses: scacap/action-surefire-report@v1 + publish: + if: github.event_name == 'push' + needs: ['build'] + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up JDK + uses: actions/setup-java@v3 with: - github_token: ${{ secrets.GITHUB_TOKEN }} - report_paths: '**/build/test-results/test/TEST-*.xml' - - name: Publish to repo.grails.org + distribution: 'adopt' + java-version: '8' + - name: Publish Artifacts (repo.grails.org) id: publish uses: gradle/gradle-build-action@v2 - if: steps.build.outcome == 'success' && github.event_name == 'push' && matrix.java == '8' env: ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} + GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} + GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER }} + GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY }} with: arguments: -Dorg.gradle.internal.publish.checksums.insecure=true publish - name: Build Docs - id: docs - if: steps.build.outcome == 'success' && github.event_name == 'push' && matrix.java == '8' + if: success() uses: gradle/gradle-build-action@v2 with: arguments: docs:docs + env: + GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} + GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER }} + GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY }} - name: Publish to Github Pages - if: steps.docs.outcome == 'success' && github.event_name == 'push' && matrix.java == '8' - uses: micronaut-projects/github-pages-deploy-action@master + if: success() + uses: micronaut-projects/github-pages-deploy-action@grails env: TARGET_REPOSITORY: ${{ github.repository }} GH_TOKEN: ${{ secrets.GH_TOKEN }} BRANCH: gh-pages FOLDER: docs/build/docs - DOC_SUB_FOLDER: hibernate DOC_FOLDER: gh-pages COMMIT_EMAIL: behlp@objectcomputing.com - COMMIT_NAME: Puneet Behl + COMMIT_NAME: Puneet Behl \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index 4721f14f..cbe3ad70 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,3 +1,32 @@ +plugins { + id "com.gradle.enterprise" version "3.15.1" + id 'com.gradle.common-custom-user-data-gradle-plugin' version '1.11.3' +} + +gradleEnterprise { + server = 'https://ge.grails.org' + buildScan { + publishAlwaysIf(System.getenv('CI') == 'true') + publishIfAuthenticated() + uploadInBackground = System.getenv("CI") == null + capture { + taskInputFiles = true + } + } +} + +buildCache { + local { enabled = System.getenv('CI') != 'true' } + remote(HttpBuildCache) { + push = System.getenv('CI') == 'true' + enabled = true + url = 'https://ge.grails.org/cache/' + credentials { + username = System.getenv('GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER') + password = System.getenv('GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY') + } + }} + include 'core' include 'plugin' include 'docs' From e0e6222beeed14b997a044ce55c74157887c46d7 Mon Sep 17 00:00:00 2001 From: Puneet Behl Date: Wed, 11 Oct 2023 19:47:58 +0530 Subject: [PATCH 11/19] Update logback.xml --- .../grails-app/conf/logback.xml | 22 +++++++++---------- .../grails-app/conf/logback.xml | 22 +++++++++---------- .../grails-app/conf/logback.xml | 22 +++++++++---------- 3 files changed, 30 insertions(+), 36 deletions(-) diff --git a/examples/grails-docs-app/grails-app/conf/logback.xml b/examples/grails-docs-app/grails-app/conf/logback.xml index c00bb3dc..f4e77836 100644 --- a/examples/grails-docs-app/grails-app/conf/logback.xml +++ b/examples/grails-docs-app/grails-app/conf/logback.xml @@ -1,19 +1,17 @@ + - - - - %d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n - - - + + - - - + + + UTF-8 + '%clr(%d{yyyy-MM-dd HH:mm:ss.SSS}){faint} %clr(%5p) %clr(---){faint} %clr([%15.15t]){faint} %clr(%-40.40logger{39}){cyan} %clr(:){faint} %m%n%wex' + + - + - \ No newline at end of file diff --git a/examples/grails-tenant-app/grails-app/conf/logback.xml b/examples/grails-tenant-app/grails-app/conf/logback.xml index c00bb3dc..f4e77836 100644 --- a/examples/grails-tenant-app/grails-app/conf/logback.xml +++ b/examples/grails-tenant-app/grails-app/conf/logback.xml @@ -1,19 +1,17 @@ + - - - - %d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n - - - + + - - - + + + UTF-8 + '%clr(%d{yyyy-MM-dd HH:mm:ss.SSS}){faint} %clr(%5p) %clr(---){faint} %clr([%15.15t]){faint} %clr(%-40.40logger{39}){cyan} %clr(:){faint} %m%n%wex' + + - + - \ No newline at end of file diff --git a/examples/grails-test-app/grails-app/conf/logback.xml b/examples/grails-test-app/grails-app/conf/logback.xml index c00bb3dc..f4e77836 100644 --- a/examples/grails-test-app/grails-app/conf/logback.xml +++ b/examples/grails-test-app/grails-app/conf/logback.xml @@ -1,19 +1,17 @@ + - - - - %d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n - - - + + - - - + + + UTF-8 + '%clr(%d{yyyy-MM-dd HH:mm:ss.SSS}){faint} %clr(%5p) %clr(---){faint} %clr([%15.15t]){faint} %clr(%-40.40logger{39}){cyan} %clr(:){faint} %m%n%wex' + + - + - \ No newline at end of file From 7a4ee30bc84a13bf7b049f67b85c88b01443af49 Mon Sep 17 00:00:00 2001 From: Guillermo Calvo Date: Mon, 23 Oct 2023 12:54:33 +0200 Subject: [PATCH 12/19] Add test property `Artist.paintings` as output only --- .../grails-app/domain/grails/test/app/Artist.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/grails-test-app/grails-app/domain/grails/test/app/Artist.groovy b/examples/grails-test-app/grails-app/domain/grails/test/app/Artist.groovy index 607240a7..65a463a0 100644 --- a/examples/grails-test-app/grails-app/domain/grails/test/app/Artist.groovy +++ b/examples/grails-test-app/grails-app/domain/grails/test/app/Artist.groovy @@ -9,6 +9,7 @@ class Artist { static graphql = GraphQLMapping.build { add('paintings', [Painting]) { + input(false) dataFetcher { return [new Painting(name: 'test', artistName: 'Picasso', heightCm: 60, widthCm: 120)] } From df6745ada95959e2ab170cbab1a4eff6015e5a2d Mon Sep 17 00:00:00 2001 From: Guillermo Calvo Date: Mon, 23 Oct 2023 13:16:37 +0200 Subject: [PATCH 13/19] Update tests (error message checks) --- .../grails/test/app/BookIntegrationSpec.groovy | 2 +- .../grails/test/app/PaymentIntegrationSpec.groovy | 7 ++++--- .../grails/test/app/UserIntegrationSpec.groovy | 12 ++++++++---- .../grails/test/app/UserRoleIntegrationSpec.groovy | 2 +- 4 files changed, 14 insertions(+), 9 deletions(-) diff --git a/examples/grails-test-app/src/integration-test/groovy/grails/test/app/BookIntegrationSpec.groovy b/examples/grails-test-app/src/integration-test/groovy/grails/test/app/BookIntegrationSpec.groovy index 3a60094f..85e6d569 100644 --- a/examples/grails-test-app/src/integration-test/groovy/grails/test/app/BookIntegrationSpec.groovy +++ b/examples/grails-test-app/src/integration-test/groovy/grails/test/app/BookIntegrationSpec.groovy @@ -21,7 +21,7 @@ class BookIntegrationSpec extends Specification implements GraphQLSpec { then: result.errors.size() == 1 - result.errors[0].message == "Validation error of type FieldUndefined: Field 'bookList' in type 'Query' is undefined @ 'bookList'" + result.errors[0].message == "Validation error (FieldUndefined@[bookList]) : Field 'bookList' in type 'Query' is undefined" } } diff --git a/examples/grails-test-app/src/integration-test/groovy/grails/test/app/PaymentIntegrationSpec.groovy b/examples/grails-test-app/src/integration-test/groovy/grails/test/app/PaymentIntegrationSpec.groovy index 3d8a4f1e..885b6f40 100644 --- a/examples/grails-test-app/src/integration-test/groovy/grails/test/app/PaymentIntegrationSpec.groovy +++ b/examples/grails-test-app/src/integration-test/groovy/grails/test/app/PaymentIntegrationSpec.groovy @@ -25,7 +25,7 @@ class PaymentIntegrationSpec extends Specification implements GraphQLSpec { then: result.errors.size() == 1 - result.errors[0].message == "Validation error of type FieldUndefined: Field 'paymentCreate' in type 'Mutation' is undefined @ 'paymentCreate'" + result.errors[0].message == "Validation error (FieldUndefined@[paymentCreate]) : Field 'paymentCreate' in type 'Mutation' is undefined" } void "test creating a credit card payment"() { @@ -108,7 +108,7 @@ class PaymentIntegrationSpec extends Specification implements GraphQLSpec { then: 'An error is returned' obj.data == null obj.errors.size() == 1 - obj.errors[0].message == "Validation error of type FieldUndefined: Field 'cardNumber' in type 'Payment' is undefined @ 'payment/cardNumber'" + obj.errors[0].message == "Validation error (FieldUndefined@[payment/cardNumber]) : Field 'cardNumber' in type 'Payment' is undefined" } void "test querying a list of credit card payments"() { @@ -196,7 +196,8 @@ class PaymentIntegrationSpec extends Specification implements GraphQLSpec { then: 'An error is thrown' obj.data == null obj.errors.size() == 1 - obj.errors[0].message.startsWith('Validation error of type WrongType') + obj.errors[0].message.startsWith('Validation error (WrongType@[paymentUpdate])') + obj.errors[0].message.endsWith("contains a field not in 'PaymentUpdate': 'cardNumber'") when: resp = graphQL.graphql(""" diff --git a/examples/grails-test-app/src/integration-test/groovy/grails/test/app/UserIntegrationSpec.groovy b/examples/grails-test-app/src/integration-test/groovy/grails/test/app/UserIntegrationSpec.groovy index 1bc71df8..7e2fb959 100644 --- a/examples/grails-test-app/src/integration-test/groovy/grails/test/app/UserIntegrationSpec.groovy +++ b/examples/grails-test-app/src/integration-test/groovy/grails/test/app/UserIntegrationSpec.groovy @@ -36,7 +36,8 @@ class UserIntegrationSpec extends Specification implements GraphQLSpec { then: obj.data == null obj.errors.size() == 1 - obj.errors[0].message.startsWith('Validation error of type WrongType') + obj.errors[0].message.startsWith('Validation error (WrongType@[userCreate])') + obj.errors[0].message.endsWith("is missing required fields '[profile]'") when: 'The profile is provided, but missing a required field' resp = graphQL.graphql(""" @@ -63,7 +64,8 @@ class UserIntegrationSpec extends Specification implements GraphQLSpec { then: obj.data == null obj.errors.size() == 1 - obj.errors[0].message.startsWith('Validation error of type WrongType') + obj.errors[0].message.startsWith('Validation error (WrongType@[userCreate])') + obj.errors[0].message.endsWith("is missing required fields '[lastName]'") } void "test creating a user without an address"() { @@ -88,7 +90,8 @@ class UserIntegrationSpec extends Specification implements GraphQLSpec { then: obj.data == null obj.errors.size() == 1 - obj.errors[0].message.startsWith('Validation error of type WrongType') + obj.errors[0].message.startsWith('Validation error (WrongType@[userCreate])') + obj.errors[0].message.endsWith("is missing required fields '[address]'") when: 'The address is provided, but missing a required field' resp = graphQL.graphql(""" @@ -115,7 +118,8 @@ class UserIntegrationSpec extends Specification implements GraphQLSpec { then: obj.data == null obj.errors.size() == 1 - obj.errors[0].message.startsWith('Validation error of type WrongType') + obj.errors[0].message.startsWith('Validation error (WrongType@[userCreate])') + obj.errors[0].message.endsWith("is missing required fields '[zip]'") } void "test creating the top level manager"() { diff --git a/examples/grails-test-app/src/integration-test/groovy/grails/test/app/UserRoleIntegrationSpec.groovy b/examples/grails-test-app/src/integration-test/groovy/grails/test/app/UserRoleIntegrationSpec.groovy index a876f45b..5af670e7 100644 --- a/examples/grails-test-app/src/integration-test/groovy/grails/test/app/UserRoleIntegrationSpec.groovy +++ b/examples/grails-test-app/src/integration-test/groovy/grails/test/app/UserRoleIntegrationSpec.groovy @@ -165,7 +165,7 @@ class UserRoleIntegrationSpec extends Specification implements GraphQLSpec { then: result.errors.size() == 1 - result.errors[0].message == "Validation error of type FieldUndefined: Field 'userRoleUpdate' in type 'Mutation' is undefined @ 'userRoleUpdate'" + result.errors[0].message == "Validation error (FieldUndefined@[userRoleUpdate]) : Field 'userRoleUpdate' in type 'Mutation' is undefined" } void "test listing entities with a complex composite id"() { From 2e9bce0bb312302398bb10db7d4affb278690a7b Mon Sep 17 00:00:00 2001 From: Puneet Behl Date: Thu, 23 Nov 2023 14:30:58 +0530 Subject: [PATCH 14/19] Correct dependency scopes --- core/build.gradle | 12 ++++++------ plugin/build.gradle | 25 ++++++++++++------------- 2 files changed, 18 insertions(+), 19 deletions(-) diff --git a/core/build.gradle b/core/build.gradle index 874856e1..4cf74e79 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -7,12 +7,12 @@ apply plugin: 'codenarc' dependencies { documentation "org.codehaus.groovy:groovy-cli-picocli:$groovyVersion" - implementation "org.grails:grails-datastore-gorm:${gormVersion}" - implementation "com.graphql-java:graphql-java:$graphqlJavaVersion" - implementation "com.graphql-java:graphql-java-extended-scalars:$graphqlJavaScalarExtVersion" - implementation 'com.github.javaparser:javaparser-core:3.25.5' - implementation "org.grails.plugins:views-json:2.3.2" - implementation 'org.javassist:javassist:3.29.2-GA' + api "org.grails:grails-datastore-gorm:${gormVersion}" + api "com.graphql-java:graphql-java:$graphqlJavaVersion" + api "com.graphql-java:graphql-java-extended-scalars:$graphqlJavaScalarExtVersion" + api 'com.github.javaparser:javaparser-core:3.25.5' + api "org.grails.plugins:views-json:2.3.2" + api 'org.javassist:javassist:3.29.2-GA' codenarc "org.codenarc:CodeNarc:$codenarcVersion" diff --git a/plugin/build.gradle b/plugin/build.gradle index 70817b1e..e5092768 100644 --- a/plugin/build.gradle +++ b/plugin/build.gradle @@ -15,25 +15,24 @@ apply plugin:"org.grails.grails-plugin" apply plugin:"org.grails.plugins.views-json" dependencies { - - implementation "org.grails:grails-plugin-controllers" - implementation "org.grails:grails-plugin-databinding" - implementation("org.grails:grails-plugin-rest") { + api "org.grails:grails-plugin-controllers" + api "org.grails:grails-plugin-databinding" + api("org.grails:grails-plugin-rest") { exclude group: 'org.grails.plugins', module: 'converters' } - implementation "org.grails:grails-plugin-url-mappings" - implementation "org.grails.plugins:views-json:$viewsJsonVersion" - implementation 'io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0' - implementation "javax.servlet:javax.servlet-api:$servletApiVersion" - implementation "io.micronaut:micronaut-http-client:$micronautVersion" - implementation "org.grails.plugins:converters:3.3.1" - implementation 'com.github.javaparser:javaparser-core:3.25.5' - implementation "com.graphql-java:graphql-java:$graphqlJavaVersion" + api "org.grails:grails-plugin-url-mappings" + api "org.grails.plugins:views-json:$viewsJsonVersion" + api 'io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0' + api "javax.servlet:javax.servlet-api:$servletApiVersion" + api "io.micronaut:micronaut-http-client:$micronautVersion" + api "org.grails.plugins:converters:3.3.1" + api 'com.github.javaparser:javaparser-core:3.25.5' + api "com.graphql-java:graphql-java:$graphqlJavaVersion" testImplementation "org.grails:grails-web-testing-support" testImplementation "cglib:cglib-nodep:3.3.0" profile "org.grails.profiles:web-plugin" - compile project(":gorm-graphql") + api project(":gorm-graphql") } compileGsonViews { From 30a0d7f3aa1bc7577279b7eb106e9b1ad3b1dd48 Mon Sep 17 00:00:00 2001 From: Puneet Behl Date: Thu, 23 Nov 2023 18:22:16 +0530 Subject: [PATCH 15/19] Apply Java Library Gradle Plugin --- build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 5f4dc9db..5460e4e9 100644 --- a/build.gradle +++ b/build.gradle @@ -17,7 +17,7 @@ repositories { version project.projectVersion ext { - commonBuild = 'https://raw.githubusercontent.com/grails/grails-common-build/master' + commonBuild = 'https://raw.githubusercontent.com/grails/grails-common-build/v2.0.0' } subprojects { @@ -62,6 +62,10 @@ subprojects { } if (isGrailsPlugin) { + apply plugin: 'groovy' + apply plugin: 'eclipse' + apply plugin: 'idea' + apply plugin: 'java-library' apply plugin: "org.grails.grails-plugin" } else { apply from: "${commonBuild}/common-project.gradle" From f2ab6c95c40ac0e8c9d3056c3f5161ffb75a47f4 Mon Sep 17 00:00:00 2001 From: Guillermo Calvo Date: Fri, 24 Nov 2023 15:06:50 +0100 Subject: [PATCH 16/19] Correct more dependency scopes --- examples/grails-multi-datastore-app/build.gradle | 4 ++-- examples/grails-tenant-app/build.gradle | 6 +++--- examples/grails-test-app/build.gradle | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/grails-multi-datastore-app/build.gradle b/examples/grails-multi-datastore-app/build.gradle index 42d8b514..6c5e5a37 100755 --- a/examples/grails-multi-datastore-app/build.gradle +++ b/examples/grails-multi-datastore-app/build.gradle @@ -36,8 +36,8 @@ dependencies { compileOnly "org.grails:grails-gorm-testing-support" compileOnly "org.grails.plugins:geb" compileOnly "org.grails:grails-web-testing-support" - testRuntime "org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1" - testRuntime "net.sourceforge.htmlunit:htmlunit:2.18" + testRuntimeOnly "org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1" + testRuntimeOnly "net.sourceforge.htmlunit:htmlunit:2.18" testImplementation "org.grails:grails-test-mixins:3.3.0" testImplementation "org.grails:grails-gorm-testing-support" implementation project(":grails-plugin-gorm-graphql-plugin") diff --git a/examples/grails-tenant-app/build.gradle b/examples/grails-tenant-app/build.gradle index 5eb5eb43..7b554038 100644 --- a/examples/grails-tenant-app/build.gradle +++ b/examples/grails-tenant-app/build.gradle @@ -23,14 +23,14 @@ dependencies { implementation 'io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0' console "org.grails:grails-console" profile "org.grails.profiles:rest-api" - runtime "org.glassfish.web:el-impl:2.1.2-b03" + runtimeOnly "org.glassfish.web:el-impl:2.1.2-b03" runtimeOnly "com.h2database:h2" runtimeOnly "org.apache.tomcat:tomcat-jdbc" testImplementation "org.grails:grails-gorm-testing-support" testImplementation "org.grails.plugins:geb" testImplementation "org.grails:grails-web-testing-support" - testRuntime "org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1" - testRuntime "net.sourceforge.htmlunit:htmlunit:2.18" + testRuntimeOnly "org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1" + testRuntimeOnly "net.sourceforge.htmlunit:htmlunit:2.18" testImplementation "org.grails:grails-test-mixins:3.3.0" diff --git a/examples/grails-test-app/build.gradle b/examples/grails-test-app/build.gradle index b59afa66..6a285b25 100644 --- a/examples/grails-test-app/build.gradle +++ b/examples/grails-test-app/build.gradle @@ -24,9 +24,9 @@ dependencies { implementation 'io.micronaut.rxjava2:micronaut-rxjava2-http-client:1.2.0' console "org.grails:grails-console" profile "org.grails.profiles:rest-api" - runtime "org.glassfish.web:el-impl:2.1.2-b03" - runtime "com.h2database:h2" - runtime "org.apache.tomcat:tomcat-jdbc" + runtimeOnly "org.glassfish.web:el-impl:2.1.2-b03" + runtimeOnly "com.h2database:h2" + runtimeOnly "org.apache.tomcat:tomcat-jdbc" testImplementation "org.grails:grails-gorm-testing-support" testImplementation "org.grails:grails-web-testing-support" testImplementation "org.grails:grails-test-mixins:3.3.0" From 82b17871a00a51967b21fc960813ea978081262b Mon Sep 17 00:00:00 2001 From: Guillermo Calvo Date: Fri, 24 Nov 2023 14:58:33 +0100 Subject: [PATCH 17/19] Upgrade Gradle wrapper to version 6.9.4 --- gradle/wrapper/gradle-wrapper.jar | Bin 59203 -> 59536 bytes gradle/wrapper/gradle-wrapper.properties | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index e708b1c023ec8b20f512888fe07c5bd3ff77bb8f..7454180f2ae8848c63b8b4dea2cb829da983f2fa 100644 GIT binary patch delta 18435 zcmY&<19zBR)MXm8v2EM7ZQHi-#I|kQZfv7Tn#Q)%81v4zX3d)U4d4 zYYc!v@NU%|U;_sM`2z(4BAilWijmR>4U^KdN)D8%@2KLcqkTDW%^3U(Wg>{qkAF z&RcYr;D1I5aD(N-PnqoEeBN~JyXiT(+@b`4Pv`;KmkBXYN48@0;iXuq6!ytn`vGp$ z6X4DQHMx^WlOek^bde&~cvEO@K$oJ}i`T`N;M|lX0mhmEH zuRpo!rS~#&rg}ajBdma$$}+vEhz?JAFUW|iZEcL%amAg_pzqul-B7Itq6Y_BGmOCC zX*Bw3rFz3R)DXpCVBkI!SoOHtYstv*e-May|+?b80ZRh$MZ$FerlC`)ZKt} zTd0Arf9N2dimjs>mg5&@sfTPsRXKXI;0L~&t+GH zkB<>wxI9D+k5VHHcB7Rku{Z>i3$&hgd9Mt_hS_GaGg0#2EHzyV=j=u5xSyV~F0*qs zW{k9}lFZ?H%@4hII_!bzao!S(J^^ZZVmG_;^qXkpJb7OyR*sPL>))Jx{K4xtO2xTr@St!@CJ=y3q2wY5F`77Tqwz8!&Q{f7Dp zifvzVV1!Dj*dxG%BsQyRP6${X+Tc$+XOG zzvq5xcC#&-iXlp$)L=9t{oD~bT~v^ZxQG;FRz|HcZj|^L#_(VNG)k{=_6|6Bs-tRNCn-XuaZ^*^hpZ@qwi`m|BxcF6IWc?_bhtK_cDZRTw#*bZ2`1@1HcB`mLUmo_>@2R&nj7&CiH zF&laHkG~7#U>c}rn#H)q^|sk+lc!?6wg0xy`VPn!{4P=u@cs%-V{VisOxVqAR{XX+ zw}R;{Ux@6A_QPka=48|tph^^ZFjSHS1BV3xfrbY84^=?&gX=bmz(7C({=*oy|BEp+ zYgj;<`j)GzINJA>{HeSHC)bvp6ucoE`c+6#2KzY9)TClmtEB1^^Mk)(mXWYvup02e%Ghm9qyjz#fO3bNGBX} zFiB>dvc1+If!>I10;qZk`?6pEd*(?bI&G*3YLt;MWw&!?=Mf7%^Op?qnyXWur- zwX|S^P>jF?{m9c&mmK-epCRg#WB+-VDe!2d2~YVoi%7_q(dyC{(}zB${!ElKB2D}P z7QNFM!*O^?FrPMGZ}wQ0TrQAVqZy!weLhu_Zq&`rlD39r*9&2sJHE(JT0EY5<}~x@ z1>P0!L2IFDqAB!($H9s2fI`&J_c+5QT|b#%99HA3@zUWOuYh(~7q7!Pf_U3u!ij5R zjFzeZta^~RvAmd_TY+RU@e}wQaB_PNZI26zmtzT4iGJg9U(Wrgrl>J%Z3MKHOWV(? zj>~Ph$<~8Q_sI+)$DOP^9FE6WhO09EZJ?1W|KidtEjzBX3RCLUwmj9qH1CM=^}MaK z59kGxRRfH(n|0*lkE?`Rpn6d^u5J6wPfi0WF(rucTv(I;`aW)3;nY=J=igkjsn?ED ztH&ji>}TW8)o!Jg@9Z}=i2-;o4#xUksQHu}XT~yRny|kg-$Pqeq!^78xAz2mYP9+4 z9gwAoti2ICvUWxE&RZ~}E)#M8*zy1iwz zHqN%q;u+f6Ti|SzILm0s-)=4)>eb5o-0K zbMW8ecB4p^6OuIX@u`f{>Yn~m9PINEl#+t*jqalwxIx=TeGB9(b6jA}9VOHnE$9sC zH`;epyH!k-3kNk2XWXW!K`L_G!%xOqk0ljPCMjK&VweAxEaZ==cT#;!7)X&C|X{dY^IY(e4D#!tx^vV3NZqK~--JW~wtXJ8X19adXim?PdN(|@o(OdgH3AiHts~?#QkolO?*=U_buYC&tQ3sc(O5HGHN~=6wB@dgIAVT$ z_OJWJ^&*40Pw&%y^t8-Wn4@l9gOl`uU z{Uda_uk9!Iix?KBu9CYwW9Rs=yt_lE11A+k$+)pkY5pXpocxIEJe|pTxwFgB%Kpr&tH;PzgOQ&m|(#Otm?@H^r`v)9yiR8v&Uy>d#TNdRfyN4Jk;`g zp+jr5@L2A7TS4=G-#O<`A9o;{En5!I8lVUG?!PMsv~{E_yP%QqqTxxG%8%KxZ{uwS zOT+EA5`*moN8wwV`Z=wp<3?~f#frmID^K?t7YL`G^(X43gWbo!6(q*u%HxWh$$^2EOq`Hj zp=-fS#Av+s9r-M)wGIggQ)b<@-BR`R8l1G@2+KODmn<_$Tzb7k35?e8;!V0G>`(!~ zY~qZz!6*&|TupOcnvsQYPbcMiJ!J{RyfezB^;fceBk znpA1XS)~KcC%0^_;ihibczSxwBuy;^ksH7lwfq7*GU;TLt*WmUEVQxt{ zKSfJf;lk$0XO8~48Xn2dnh8tMC9WHu`%DZj&a`2!tNB`5%;Md zBs|#T0Ktf?vkWQ)Y+q!At1qgL`C|nbzvgc(+28Q|4N6Geq)Il%+I5c@t02{9^=QJ?=h2BTe`~BEu=_u3xX2&?^zwcQWL+)7dI>JK0g8_`W1n~ zMaEP97X>Ok#=G*nkPmY`VoP8_{~+Rp7DtdSyWxI~?TZHxJ&=6KffcO2Qx1?j7=LZA z?GQt`oD9QpXw+s7`t+eeLO$cpQpl9(6h3_l9a6OUpbwBasCeCw^UB6we!&h9Ik@1zvJ`j4i=tvG9X8o34+N|y(ay~ho$f=l z514~mP>Z>#6+UxM<6@4z*|hFJ?KnkQBs_9{H(-v!_#Vm6Z4(xV5WgWMd3mB9A(>@XE292#k(HdI7P zJkQ2)`bQXTKlr}{VrhSF5rK9TsjtGs0Rs&nUMcH@$ZX_`Hh$Uje*)(Wd&oLW($hZQ z_tPt`{O@f8hZ<}?aQc6~|9iHt>=!%We3=F9yIfiqhXqp=QUVa!@UY@IF5^dr5H8$R zIh{=%S{$BHG+>~a=vQ={!B9B=<-ID=nyjfA0V8->gN{jRL>Qc4Rc<86;~aY+R!~Vs zV7MI~gVzGIY`B*Tt@rZk#Lg}H8sL39OE31wr_Bm%mn}8n773R&N)8B;l+-eOD@N$l zh&~Wz`m1qavVdxwtZLACS(U{rAa0;}KzPq9r76xL?c{&GaG5hX_NK!?)iq`t7q*F# zFoKI{h{*8lb>&sOeHXoAiqm*vV6?C~5U%tXR8^XQ9Y|(XQvcz*>a?%HQ(Vy<2UhNf zVmGeOO#v159KV@1g`m%gJ)XGPLa`a|?9HSzSSX{j;)xg>G(Ncc7+C>AyAWYa(k}5B3mtzg4tsA=C^Wfezb1&LlyrBE1~kNfeiubLls{C)!<%#m@f}v^o+7<VZ6!FZ;JeiAG@5vw7Li{flC8q1%jD_WP2ApBI{fQ}kN zhvhmdZ0bb5(qK@VS5-)G+@GK(tuF6eJuuV5>)Odgmt?i_`tB69DWpC~e8gqh!>jr_ zL1~L0xw@CbMSTmQflpRyjif*Y*O-IVQ_OFhUw-zhPrXXW>6X}+73IoMsu2?uuK3lT>;W#38#qG5tDl66A7Y{mYh=jK8Se!+f=N7%nv zYSHr6a~Nxd`jqov9VgII{%EpC_jFCEc>>SND0;}*Ja8Kv;G)MK7?T~h((c&FEBcQq zvUU1hW2^TX(dDCeU@~a1LF-(+#lz3997A@pipD53&Dr@III2tlw>=!iGabjXzbyUJ z4Hi~M1KCT-5!NR#I%!2Q*A>mqI{dpmUa_mW)%SDs{Iw1LG}0y=wbj@0ba-`q=0!`5 zr(9q1p{#;Rv2CY!L#uTbs(UHVR5+hB@m*zEf4jNu3(Kj$WwW|v?YL*F_0x)GtQC~! zzrnZRmBmwt+i@uXnk05>uR5&1Ddsx1*WwMrIbPD3yU*2By`71pk@gt{|H0D<#B7&8 z2dVmXp*;B)SWY)U1VSNs4ds!yBAj;P=xtatUx^7_gC5tHsF#vvdV;NmKwmNa1GNWZ zi_Jn-B4GnJ%xcYWD5h$*z^haku#_Irh818x^KB)3-;ufjf)D0TE#6>|zFf@~pU;Rs zNw+}c9S+6aPzxkEA6R%s*xhJ37wmgc)-{Zd1&mD5QT}4BQvczWr-Xim>(P^)52`@R z9+Z}44203T5}`AM_G^Snp<_KKc!OrA(5h7{MT^$ZeDsSr(R@^kI?O;}QF)OU zQ9-`t^ys=6DzgLcWt0U{Q(FBs22=r zKD%fLQ^5ZF24c-Z)J{xv?x$&4VhO^mswyb4QTIofCvzq+27*WlYm;h@;Bq%i;{hZA zM97mHI6pP}XFo|^pRTuWQzQs3B-8kY@ajLV!Fb?OYAO3jFv*W-_;AXd;G!CbpZt04iW`Ie^_+cQZGY_Zd@P<*J9EdRsc>c=edf$K|;voXRJ zk*aC@@=MKwR120(%I_HX`3pJ+8GMeO>%30t?~uXT0O-Tu-S{JA;zHoSyXs?Z;fy58 zi>sFtI7hoxNAdOt#3#AWFDW)4EPr4kDYq^`s%JkuO7^efX+u#-qZ56aoRM!tC^P6O zP(cFuBnQGjhX(^LJ(^rVe4-_Vk*3PkBCj!?SsULdmVr0cGJM^=?8b0^DuOFq>0*yA zk1g|C7n%pMS0A8@Aintd$fvRbH?SNdRaFrfoAJ=NoX)G5Gr}3-$^IGF+eI&t{I-GT zp=1fj)2|*ur1Td)+s&w%p#E6tDXX3YYOC{HGHLiCvv?!%%3DO$B$>A}aC;8D0Ef#b z{7NNqC8j+%1n95zq8|hFY`afAB4E)w_&7?oqG0IPJZv)lr{MT}>9p?}Y`=n+^CZ6E zKkjIXPub5!82(B-O2xQojW^P(#Q*;ETpEr^+Wa=qDJ9_k=Wm@fZB6?b(u?LUzX(}+ zE6OyapdG$HC& z&;oa*ALoyIxVvB2cm_N&h&{3ZTuU|aBrJlGOLtZc3KDx)<{ z27@)~GtQF@%6B@w3emrGe?Cv_{iC@a#YO8~OyGRIvp@%RRKC?fclXMP*6GzBFO z5U4QK?~>AR>?KF@I;|(rx(rKxdT9-k-anYS+#S#e1SzKPslK!Z&r8iomPsWG#>`Ld zJ<#+8GFHE!^wsXt(s=CGfVz5K+FHYP5T0E*?0A-z*lNBf)${Y`>Gwc@?j5{Q|6;Bl zkHG1%r$r&O!N^><8AEL+=y(P$7E6hd=>BZ4ZZ9ukJ2*~HR4KGvUR~MUOe$d>E5UK3 z*~O2LK4AnED}4t1Fs$JgvPa*O+WeCji_cn1@Tv7XQ6l@($F1K%{E$!naeX)`bfCG> z8iD<%_M6aeD?a-(Qqu61&fzQqC(E8ksa%CulMnPvR35d{<`VsmaHyzF+B zF6a@1$CT0xGVjofcct4SyxA40uQ`b#9kI)& z?B67-12X-$v#Im4CVUGZHXvPWwuspJ610ITG*A4xMoRVXJl5xbk;OL(;}=+$9?H`b z>u2~yd~gFZ*V}-Q0K6E@p}mtsri&%Zep?ZrPJmv`Qo1>94Lo||Yl)nqwHXEbe)!g( zo`w|LU@H14VvmBjjkl~=(?b{w^G$~q_G(HL`>|aQR%}A64mv0xGHa`S8!*Wb*eB}` zZh)&rkjLK!Rqar)UH)fM<&h&@v*YyOr!Xk2OOMV%$S2mCRdJxKO1RL7xP_Assw)bb z9$sQ30bapFfYTS`i1PihJZYA#0AWNmp>x(;C!?}kZG7Aq?zp!B+gGyJ^FrXQ0E<>2 zCjqZ(wDs-$#pVYP3NGA=en<@_uz!FjFvn1&w1_Igvqs_sL>ExMbcGx4X5f%`Wrri@ z{&vDs)V!rd=pS?G(ricfwPSg(w<8P_6=Qj`qBC7_XNE}1_5>+GBjpURPmvTNE7)~r)Y>ZZecMS7Ro2` z0}nC_GYo3O7j|Wux?6-LFZs%1IV0H`f`l9or-8y0=5VGzjPqO2cd$RRHJIY06Cnh- ztg@Pn1OeY=W`1Mv3`Ti6!@QIT{qcC*&vptnX4Pt1O|dWv8u2s|(CkV`)vBjAC_U5` zCw1f&c4o;LbBSp0=*q z3Y^horBAnR)u=3t?!}e}14%K>^562K!)Vy6r~v({5{t#iRh8WIL|U9H6H97qX09xp zjb0IJ^9Lqxop<-P*VA0By@In*5dq8Pr3bTPu|ArID*4tWM7w+mjit0PgmwLV4&2PW z3MnIzbdR`3tPqtUICEuAH^MR$K_u8~-U2=N1)R=l>zhygus44>6V^6nJFbW-`^)f} zI&h$FK)Mo*x?2`0npTD~jRd}5G~-h8=wL#Y-G+a^C?d>OzsVl7BFAaM==(H zR;ARWa^C3J)`p~_&FRsxt|@e+M&!84`eq)@aO9yBj8iifJv0xVW4F&N-(#E=k`AwJ z3EFXWcpsRlB%l_0Vdu`0G(11F7( zsl~*@XP{jS@?M#ec~%Pr~h z2`M*lIQaolzWN&;hkR2*<=!ORL(>YUMxOzj(60rQfr#wTrkLO!t{h~qg% zv$R}0IqVIg1v|YRu9w7RN&Uh7z$ijV=3U_M(sa`ZF=SIg$uY|=NdC-@%HtkUSEqJv zg|c}mKTCM=Z8YmsFQu7k{VrXtL^!Cts-eb@*v0B3M#3A7JE*)MeW1cfFqz~^S6OXFOIP&iL;Vpy z4dWKsw_1Wn%Y;eW1YOfeP_r1s4*p1C(iDG_hrr~-I%kA>ErxnMWRYu{IcG{sAW;*t z9T|i4bI*g)FXPpKM@~!@a7LDVVGqF}C@mePD$ai|I>73B+9!Ks7W$pw;$W1B%-rb; zJ*-q&ljb=&41dJ^*A0)7>Wa@khGZ;q1fL(2qW=|38j43mTl_;`PEEw07VKY%71l6p z@F|jp88XEnm1p~<5c*cVXvKlj0{THF=n3sU7g>Ki&(ErR;!KSmfH=?49R5(|c_*xw z4$jhCJ1gWT6-g5EV)Ahg?Nw=}`iCyQ6@0DqUb%AZEM^C#?B-@Hmw?LhJ^^VU>&phJ zlB!n5&>I>@sndh~v$2I2Ue23F?0!0}+9H~jg7E`?CS_ERu75^jSwm%!FTAegT`6s7 z^$|%sj2?8wtPQR>@D3sA0-M-g-vL@47YCnxdvd|1mPymvk!j5W1jHnVB&F-0R5e-vs`@u8a5GKdv`LF7uCfKncI4+??Z4iG@AxuX7 z6+@nP^TZ5HX#*z(!y+-KJ3+Ku0M90BTY{SC^{ z&y2#RZPjfX_PE<<>XwGp;g4&wcXsQ0T&XTi(^f+}4qSFH1%^GYi+!rJo~t#ChTeAX zmR0w(iODzQOL+b&{1OqTh*psAb;wT*drr^LKdN?c?HJ*gJl+%kEH&48&S{s28P=%p z7*?(xFW_RYxJxxILS!kdLIJYu@p#mnQ(?moGD1)AxQd66X6b*KN?o&e`u9#N4wu8% z^Gw#G!@|>c740RXziOR=tdbkqf(v~wS_N^CS^1hN-N4{Dww1lvSWcBTX*&9}Cz|s@ z*{O@jZ4RVHq19(HC9xSBZI0M)E;daza+Q*zayrX~N5H4xJ33BD4gn5Ka^Hj{995z4 zzm#Eo?ntC$q1a?)dD$qaC_M{NW!5R!vVZ(XQqS67xR3KP?rA1^+s3M$60WRTVHeTH z6BJO$_jVx0EGPXy}XK_&x597 zt(o6ArN8vZX0?~(lFGHRtHP{gO0y^$iU6Xt2e&v&ugLxfsl;GD)nf~3R^ACqSFLQ< zV7`cXgry((wDMJB55a6D4J;13$z6pupC{-F+wpToW%k1qKjUS^$Mo zN3@}T!ZdpiV7rkNvqP3KbpEn|9aB;@V;gMS1iSb@ zwyD7!5mfj)q+4jE1dq3H`sEKgrVqk|y8{_vmn8bMOi873!rmnu5S=1=-DFx+Oj)Hi zx?~ToiJqOrvSou?RVALltvMADodC7BOg7pOyc4m&6yd(qIuV5?dYUpYzpTe!BuWKi zpTg(JHBYzO&X1e{5o|ZVU-X5e?<}mh=|eMY{ldm>V3NsOGwyxO2h)l#)rH@BI*TN; z`yW26bMSp=k6C4Ja{xB}s`dNp zE+41IwEwo>7*PA|7v-F#jLN>h#a`Er9_86!fwPl{6yWR|fh?c%qc44uP~Ocm2V*(* zICMpS*&aJjxutxKC0Tm8+FBz;3;R^=ajXQUB*nTN*Lb;mruQHUE<&=I7pZ@F-O*VMkJbI#FOrBM8`QEL5Uy=q5e2 z_BwVH%c0^uIWO0*_qD;0jlPoA@sI7BPwOr-mrp7y`|EF)j;$GYdOtEPFRAKyUuUZS z(N4)*6R*ux8s@pMdC*TP?Hx`Zh{{Ser;clg&}CXriXZCr2A!wIoh;j=_eq3_%n7V} za?{KhXg2cXPpKHc90t6=`>s@QF-DNcTJRvLTS)E2FTb+og(wTV7?$kI?QZYgVBn)& zdpJf@tZ{j>B;<MVHiPl_U&KlqBT)$ic+M0uUQWK|N1 zCMl~@o|}!!7yyT%7p#G4?T^Azxt=D(KP{tyx^lD_(q&|zNFgO%!i%7T`>mUuU^FeR zHP&uClWgXm6iXgI8*DEA!O&X#X(zdrNctF{T#pyax16EZ5Lt5Z=RtAja!x+0Z31U8 zjfaky?W)wzd+66$L>o`n;DISQNs09g{GAv%8q2k>2n8q)O^M}=5r#^WR^=se#WSCt zQ`7E1w4qdChz4r@v6hgR?nsaE7pg2B6~+i5 zcTTbBQ2ghUbC-PV(@xvIR(a>Kh?{%YAsMV#4gt1nxBF?$FZ2~nFLKMS!aK=(`WllA zHS<_7ugqKw!#0aUtQwd#A$8|kPN3Af?Tkn)dHF?_?r#X68Wj;|$aw)Wj2Dkw{6)*^ zZfy!TWwh=%g~ECDCy1s8tTgWCi}F1BvTJ9p3H6IFq&zn#3FjZoecA_L_bxGWgeQup zAAs~1IPCnI@H>g|6Lp^Bk)mjrA3_qD4(D(65}l=2RzF-8@h>|Aq!2K-qxt(Q9w7c^ z;gtx`I+=gKOl;h=#fzSgw-V*YT~2_nnSz|!9hIxFb{~dKB!{H zSi??dnmr@%(1w^Be=*Jz5bZeofEKKN&@@uHUMFr-DHS!pb1I&;x9*${bmg6=2I4Zt zHb5LSvojY7ubCNGhp)=95jQ00sMAC{IZdAFsN!lAVQDeiec^HAu=8);2AKqNTT!&E zo+FAR`!A1#T6w@0A+o%&*yzkvxsrqbrfVTG+@z8l4+mRi@j<&)U9n6L>uZoezW>qS zA4YfO;_9dQSyEYpkWnsk0IY}Nr2m(ql@KuQjLgY-@g z4=$uai6^)A5+~^TvLdvhgfd+y?@+tRE^AJabamheJFnpA#O*5_B%s=t8<;?I;qJ}j z&g-9?hbwWEez-!GIhqpB>nFvyi{>Yv>dPU=)qXnr;3v-cd`l}BV?6!v{|cHDOx@IG z;TSiQQ(8=vlH^rCEaZ@Yw}?4#a_Qvx=}BJuxACxm(E7tP4hki^jU@8A zUS|4tTLd)gr@T|F$1eQXPY%fXb7u}(>&9gsd3It^B{W#6F2_g40cgo1^)@-xO&R5X z>qKon+Nvp!4v?-rGQu#M_J2v+3e+?N-WbgPQWf`ZL{Xd9KO^s{uIHTJ6~@d=mc7i z+##ya1p+ZHELmi%3C>g5V#yZt*jMv( zc{m*Y;7v*sjVZ-3mBuaT{$g+^sbs8Rp7BU%Ypi+c%JxtC4O}|9pkF-p-}F{Z7-+45 zDaJQx&CNR)8x~0Yf&M|-1rw%KW3ScjWmKH%J1fBxUp(;F%E+w!U470e_3%+U_q7~P zJm9VSWmZ->K`NfswW(|~fGdMQ!K2z%k-XS?Bh`zrjZDyBMu74Fb4q^A=j6+Vg@{Wc zPRd5Vy*-RS4p1OE-&8f^Fo}^yDj$rb+^>``iDy%t)^pHSV=En5B5~*|32#VkH6S%9 zxgIbsG+|{-$v7mhOww#v-ejaS>u(9KV9_*X!AY#N*LXIxor9hDv%aie@+??X6@Et=xz>6ev9U>6Pn$g4^!}w2Z%Kpqpp+M%mk~?GE-jL&0xLC zy(`*|&gm#mLeoRU8IU?Ujsv=;ab*URmsCl+r?%xcS1BVF*rP}XRR%MO_C!a9J^fOe>U;Y&3aj3 zX`3?i12*^W_|D@VEYR;h&b^s#Kd;JMNbZ#*x8*ZXm(jgw3!jyeHo14Zq!@_Q`V;Dv zKik~!-&%xx`F|l^z2A92aCt4x*I|_oMH9oeqsQgQDgI0j2p!W@BOtCTK8Jp#txi}7 z9kz);EX-2~XmxF5kyAa@n_$YYP^Hd4UPQ>O0-U^-pw1*n{*kdX`Jhz6{!W=V8a$0S z9mYboj#o)!d$gs6vf8I$OVOdZu7L5%)Vo0NhN`SwrQFhP3y4iXe2uV@(G{N{yjNG( zKvcN{k@pXkxyB~9ucR(uPSZ7{~sC=lQtz&V(^A^HppuN!@B4 zS>B=kb14>M-sR>{`teApuHlca6YXs6&sRvRV;9G!XI08CHS~M$=%T~g5Xt~$exVk` zWP^*0h{W%`>K{BktGr@+?ZP}2t0&smjKEVw@3=!rSjw5$gzlx`{dEajg$A58m|Okx zG8@BTPODSk@iqLbS*6>FdVqk}KKHuAHb0UJNnPm!(XO{zg--&@#!niF4T!dGVdNif z3_&r^3+rfQuV^8}2U?bkI5Ng*;&G>(O4&M<86GNxZK{IgKNbRfpg>+32I>(h`T&uv zUN{PRP&onFj$tn1+Yh|0AF330en{b~R+#i9^QIbl9fBv>pN|k&IL2W~j7xbkPyTL^ z*TFONZUS2f33w3)fdzr?)Yg;(s|||=aWZV(nkDaACGSxNCF>XLJSZ=W@?$*` z#sUftY&KqTV+l@2AP5$P-k^N`Bme-xcWPS|5O~arUq~%(z8z87JFB|llS&h>a>Som zC34(_uDViE!H2jI3<@d+F)LYhY)hoW6)i=9u~lM*WH?hI(yA$X#ip}yYld3RAv#1+sBt<)V_9c4(SN9Fn#$}_F}A-}P>N+8io}I3mh!}> z*~*N}ZF4Zergb;`R_g49>ZtTCaEsCHiFb(V{9c@X0`YV2O^@c6~LXg2AE zhA=a~!ALnP6aO9XOC^X15(1T)3!1lNXBEVj5s*G|Wm4YBPV`EOhU&)tTI9-KoLI-U zFI@adu6{w$dvT(zu*#aW*4F=i=!7`P!?hZy(9iL;Z^De3?AW`-gYTPALhrZ*K2|3_ zfz;6xQN9?|;#_U=4t^uS2VkQ8$|?Ub5CgKOj#Ni5j|(zX>x#K(h7LgDP-QHwok~-I zOu9rn%y97qrtKdG=ep)4MKF=TY9^n6CugQ3#G2yx;{))hvlxZGE~rzZ$qEHy-8?pU#G;bwufgSN6?*BeA!7N3RZEh{xS>>-G1!C(e1^ zzd#;39~PE_wFX3Tv;zo>5cc=md{Q}(Rb?37{;YPtAUGZo7j*yHfGH|TOVR#4ACaM2 z;1R0hO(Gl}+0gm9Bo}e@lW)J2OU4nukOTVKshHy7u)tLH^9@QI-jAnDBp(|J8&{fKu=_97$v&F67Z zq+QsJ=gUx3_h_%=+q47msQ*Ub=gMzoSa@S2>`Y9Cj*@Op4plTc!jDhu51nSGI z^sfZ(4=yzlR}kP2rcHRzAY9@T7f`z>fdCU0zibx^gVg&fMkcl)-0bRyWe12bT0}<@ z^h(RgGqS|1y#M;mER;8!CVmX!j=rfNa6>#_^j{^C+SxGhbSJ_a0O|ae!ZxiQCN2qA zKs_Z#Zy|9BOw6x{0*APNm$6tYVG2F$K~JNZ!6>}gJ_NLRYhcIsxY1z~)mt#Yl0pvC zO8#Nod;iow5{B*rUn(0WnN_~~M4|guwfkT(xv;z)olmj=f=aH#Y|#f_*d1H!o( z!EXNxKxth9w1oRr0+1laQceWfgi8z`YS#uzg#s9-QlTT7y2O^^M1PZx z3YS7iegfp6Cs0-ixlG93(JW4wuE7)mfihw}G~Uue{Xb+#F!BkDWs#*cHX^%(We}3% zT%^;m&Juw{hLp^6eyM}J({luCL_$7iRFA6^8B!v|B9P{$42F>|M`4Z_yA{kK()WcM zu#xAZWG%QtiANfX?@+QQOtbU;Avr*_>Yu0C2>=u}zhH9VLp6M>fS&yp*-7}yo8ZWB z{h>ce@HgV?^HgwRThCYnHt{Py0MS=Ja{nIj5%z;0S@?nGQ`z`*EVs&WWNwbzlk`(t zxDSc)$dD+4G6N(p?K>iEKXIk>GlGKTH{08WvrehnHhh%tgpp&8db4*FLN zETA@<$V=I7S^_KxvYv$Em4S{gO>(J#(Wf;Y%(NeECoG3n+o;d~Bjme-4dldKukd`S zRVAnKxOGjWc;L#OL{*BDEA8T=zL8^`J=2N)d&E#?OMUqk&9j_`GX*A9?V-G zdA5QQ#(_Eb^+wDkDiZ6RXL`fck|rVy%)BVv;dvY#`msZ}{x5fmd! zInmWSxvRgXbJ{unxAi*7=Lt&7_e0B#8M5a=Ad0yX#0rvMacnKnXgh>4iiRq<&wit93n!&p zeq~-o37qf)L{KJo3!{l9l9AQb;&>)^-QO4RhG>j`rBlJ09~cbfNMR_~pJD1$UzcGp zOEGTzz01j$=-kLC+O$r8B|VzBotz}sj(rUGOa7PDYwX~9Tum^sW^xjjoncxSz;kqz z$Pz$Ze|sBCTjk7oM&`b5g2mFtuTx>xl{dj*U$L%y-xeQL~|i>KzdUHeep-Yd@}p&L*ig< zgg__3l9T=nbM3bw0Sq&Z2*FA)P~sx0h634BXz0AxV69cED7QGTbK3?P?MENkiy-mV zZ1xV5ry3zIpy>xmThBL0Q!g+Wz@#?6fYvzmEczs(rcujrfCN=^!iWQ6$EM zaCnRThqt~gI-&6v@KZ78unqgv9j6-%TOxpbV`tK{KaoBbhc}$h+rK)5h|bT6wY*t6st-4$e99+Egb#3ip+ERbve08G@Ref&hP)qB&?>B94?eq5i3k;dOuU#!y-@+&5>~!FZik=z4&4|YHy=~!F254 zQAOTZr26}Nc7jzgJ;V~+9ry#?7Z0o*;|Q)k+@a^87lC}}1C)S))f5tk+lMNqw>vh( z`A9E~5m#b9!ZDBltf7QIuMh+VheCoD7nCFhuzThlhA?|8NCt3w?oWW|NDin&&eDU6 zwH`aY=))lpWG?{fda=-auXYp1WIPu&3 zwK|t(Qiqvc@<;1_W#ALDJ}bR;3&v4$9rP)eAg`-~iCte`O^MY+SaP!w%~+{{1tMo` zbp?T%ENs|mHP)Lsxno=nWL&qizR+!Ib=9i%4=B@(Umf$|7!WVxkD%hfRjvxV`Co<; zG*g4QG_>;RE{3V_DOblu$GYm&!+}%>G*yO{-|V9GYG|bH2JIU2iO}ZvY>}Fl%1!OE zZFsirH^$G>BDIy`8;R?lZl|uu@qWj2T5}((RG``6*05AWsVVa2Iu>!F5U>~7_Tlv{ zt=Dpgm~0QVa5mxta+fUt)I0gToeEm9eJX{yYZ~3sLR&nCuyuFWuiDIVJ+-lwViO(E zH+@Rg$&GLueMR$*K8kOl>+aF84Hss5p+dZ8hbW$=bWNIk0paB!qEK$xIm5{*^ad&( zgtA&gb&6FwaaR2G&+L+Pp>t^LrG*-B&Hv;-s(h0QTuYWdnUObu8LRSZoAVd7SJ;%$ zh%V?58mD~3G2X<$H7I)@x?lmbeeSY7X~QiE`dfQ5&K^FB#9e!6!@d9vrSt!);@ZQZ zO#84N5yH$kjm9X4iY#f+U`FKhg=x*FiDoUeu1O5LcC2w&$~5hKB9ZnH+8BpbTGh5T zi_nfmyQY$vQh%ildbR7T;7TKPxSs#vhKR|uup`qi1PufMa(tNCjRbllakshQgn1)a8OO-j8W&aBc_#q1hKDF5-X$h`!CeT z+c#Ial~fDsGAenv7~f@!icm(~)a3OKi((=^zcOb^qH$#DVciGXslUwTd$gt{7)&#a`&Lp ze%AnL0#U?lAl8vUkv$n>bxH*`qOujO0HZkPWZnE0;}0DSEu1O!hg-d9#{&#B1Dm)L zvN%r^hdEt1vR<4zwshg*0_BNrDWjo65be1&_82SW8#iKWs7>TCjUT;-K~*NxpG2P% zovXUo@S|fMGudVSRQrP}J3-Wxq;4xIxJJC|Y#TQBr>pwfy*%=`EUNE*dr-Y?9y9xK zmh1zS@z{^|UL}v**LNYY!?1qIRPTvr!gNXzE{%=-`oKclPrfMKwn` zUwPeIvLcxkIV>(SZ-SeBo-yw~{p!<&_}eELG?wxp zee-V59%@BtB+Z&Xs=O(@P$}v_qy1m=+`!~r^aT> zY+l?+6(L-=P%m4ScfAYR8;f9dyVw)@(;v{|nO#lAPI1xDHXMYt~-BGiP&9y2OQsYdh7-Q1(vL<$u6W0nxVn-qh=nwuRk}{d!uACozccRGx6~xZQ;=#JCE?OuA@;4 zadp$sm}jfgW4?La(pb!3f0B=HUI{5A4b$2rsB|ZGb?3@CTA{|zBf07pYpQ$NM({C6Srv6%_{rVkCndT=1nS}qyEf}Wjtg$e{ng7Wgz$7itYy0sWW_$qld);iUm85GBH)fk3b=2|5mvflm?~inoVo zDH_%e;y`DzoNj|NgZ`U%a9(N*=~8!qqy0Etkxo#`r!!{|(NyT0;5= z8nVZ6AiM+SjMG8J@6c4_f-KXd_}{My?Se1GWP|@wROFpD^5_lu?I%CBzpwi(`x~xh B8dv}T delta 17845 zcmV)CK*GO}(F4QI1F(Jx4W$DjNjn4p0N4ir06~)x5+0MO2`GQvQyWzj|J`gh3(E#l zNGO!HfVMRRN~%`0q^)g%XlN*vP!O#;m*h5VyX@j-1N|HN;8S1vqEAj=eCdn`)tUB9 zXZjcT^`bL6qvL}gvXj%9vrOD+x!Gc_0{$Zg+6lTXG$bmoEBV z*%y^c-mV0~Rjzv%e6eVI)yl>h;TMG)Ft8lqpR`>&IL&`>KDi5l$AavcVh9g;CF0tY zw_S0eIzKD?Nj~e4raA8wxiiImTRzv6;b6|LFmw)!E4=CiJ4I%&axSey4zE-MIh@*! z*P;K2Mx{xVYPLeagKA}Hj=N=1VrWU`ukuBnc14iBG?B}Uj>?=2UMk4|42=()8KOnc zrJzAxxaEIfjw(CKV6F$35u=1qyf(%cY8fXaS9iS?yetY{mQ#Xyat*7sSoM9fJlZqq zyasQ3>D>6p^`ck^Y|kYYZB*G})uAbQ#7)Jeb~glGz@2rPu}zBWDzo5K$tP<|meKV% z{Swf^eq6NBioF)v&~9NLIxHMTKe6gJ@QQ^A6fA!n#u1C&n`aG7TDXKM1Jly-DwTB` z+6?=Y)}hj;C#r5>&x;MCM4U13nuXVK*}@yRY~W3X%>U>*CB2C^K6_OZsXD!nG2RSX zQg*0)$G3%Es$otA@p_1N!hIPT(iSE=8OPZG+t)oFyD~{nevj0gZen$p>U<7}uRE`t5Mk1f4M0K*5 zbn@3IG5I2mk;8K>*RZ zPV6iL006)S001s%0eYj)9hu1 z9o)iQT9(v*sAuZ|ot){RrZ0Qw4{E0A+!Yx_M~#Pj&OPUM&i$RU=Uxu}e*6Sr2ror= z&?lmvFCO$)BY+^+21E>ENWe`I0{02H<-lz&?})gIVFyMWxX0B|0b?S6?qghp3lDgz z2?0|ALJU=7s-~Lb3>9AA5`#UYCl!Xeh^i@bxs5f&SdiD!WN}CIgq&WI4VCW;M!UJL zX2};d^sVj5oVl)OrkapV-C&SrG)*x=X*ru!2s04TjZ`pY$jP)4+%)7&MlpiZ`lgoF zo_p>^4qGz^(Y*uB10dY2kcIbt=$FIdYNqk;~47wf@)6|nJp z1cocL3zDR9N2Pxkw)dpi&_rvMW&Dh0@T*_}(1JFSc0S~Ph2Sr=vy)u*=TY$i_IHSo zR+&dtWFNxHE*!miRJ%o5@~GK^G~4$LzEYR-(B-b(L*3jyTq}M3d0g6sdx!X3-m&O% zK5g`P179KHJKXpIAAX`A2MFUA;`nXx^b?mboVbQgigIHTU8FI>`q53AjWaD&aowtj z{XyIX>c)*nLO~-WZG~>I)4S1d2q@&?nwL)CVSWqWi&m1&#K1!gt`g%O4s$u^->Dwq ziKc&0O9KQ7000OG0000%03-m(e&Y`S09YWC4iYDSty&3q8^?8ij|8zxaCt!zCFq1@ z9TX4Hl68`nY>}cQNW4Ullqp$~SHO~l1!CdFLKK}ij_t^a?I?C^CvlvnZkwiVn>dl2 z2$V(JN{`5`-8ShF_ek6HNRPBlPuIPYu>TAeAV5O2)35r3*_k(Q-h1+h5pb(Zu%oJ__pBsW0n5ILw`!&QR&YV`g0Fe z(qDM!FX_7;`U3rxX#QHT{f%h;)Eursw=*#qvV)~y%^Uo^% zi-%sMe^uz;#Pe;@{JUu05zT*i=u7mU9{MkT`ft(vPdQZoK&2mg=tnf8FsaNQ+QcPg zB>vP8Rd6Z0JoH5_Q`zldg;hx4azQCq*rRZThqlqTRMzn1O3_rQTrHk8LQ<{5UYN~` zM6*~lOGHyAnx&#yCK{i@%N1Us@=6cw=UQxpSE;<(LnnES%6^q^QhBYQ-VCSmIu8wh z@_LmwcFDfAhIn>`%h7L{)iGBzu`Md4dj-m3C8mA9+BL*<>q z#$7^ttIBOE-=^|zmG`K8yUKT{yjLu2SGYsreN0*~9yhFxn4U};Nv1XXj1fH*v-g=3 z@tCPc`YdzQGLp%zXwo*o$m9j-+~nSWls#s|?PyrHO%SUGdk**X9_=|b)Y%^j_V$3S z>mL2A-V)Q}qb(uZipEFVm?}HWc+%G6_K+S+87g-&RkRQ8-{0APDil115eG|&>WQhU zufO*|e`hFks^cJJmx_qNx{ltSp3aT|XgD5-VxGGXb7gkiOG$w^qMVBDjR8%!Sbh72niHRDV* ziFy8LE+*$j?t^6aZP9qt-ow;hzkmhvy*Hn-X^6?yVMbtNbyqZQ^rXg58`gk+I%Wv} zn_)dRq+3xjc8D%}EQ%nnTF7L7m}o9&*^jf`_qvUhVKY7w9Zgxr-0YHWFRd3$l_6UX zpXt^U&TiC*qZWx#pOG6k?3Tg)pra*fw(O6_45>lUBN1U5Qmc>^DHt)5b~Ntjsw!NI z1n4{$HWFeIi)*qvgK^ui;(81VQc1(wJ8C#tjR>Dkjf{xYC^_B^#qrdCc)uZxtgua6 zk98UGQF|;;k`c+0_z)tQ&9DwLB~&12@D1!*mTz_!3Mp=cg;B7Oq4cKN>5v&dW7q@H zal=g6Ipe`siZN4NZiBrkJCU*x216gmbV(FymgHuG@%%|8sgD?gR&0*{y4n=pukZnd z4=Nl~_>jVfbIehu)pG)WvuUpLR}~OKlW|)=S738Wh^a&L+Vx~KJU25o6%G7+Cy5mB zgmYsgkBC|@K4Jm_PwPoz`_|5QSk}^p`XV`649#jr4Lh^Q>Ne~#6Cqxn$7dNMF=%Va z%z9Ef6QmfoXAlQ3)PF8#3Y% zadcE<1`fd1&Q9fMZZnyI;&L;YPuy#TQ8b>AnXr*SGY&xUb>2678A+Y z8K%HOdgq_4LRFu_M>Ou|kj4W%sPPaV)#zDzN~25klE!!PFz_>5wCxglj7WZI13U5| zEq_YLKPH;v8sEhyG`dV_jozR);a6dBvkauhC;1dk%mr+J*Z6MMH9jqxFk@)&h{mHl zrf^i_d-#mTF=6-T8Rk?(1+rPGgl$9=j%#dkf@x6>czSc`jk7$f!9SrV{do%m!t8{? z_iAi$Qe&GDR#Nz^#uJ>-_?(E$ns)(3)X3cYY)?gFvU+N>nnCoBSmwB2<4L|xH19+4 z`$u#*Gt%mRw=*&|em}h_Y`Pzno?k^8e*hEwfM`A_yz-#vJtUfkGb=s>-!6cHfR$Mz z`*A8jVcz7T{n8M>ZTb_sl{EZ9Ctau4naX7TX?&g^VLE?wZ+}m)=YW4ODRy*lV4%-0 zG1XrPs($mVVfpnqoSihnIFkLdxG9um&n-U|`47l{bnr(|8dmglO7H~yeK7-wDwZXq zaHT($Qy2=MMuj@lir(iyxI1HnMlaJwpX86je}e=2n|Esb6hB?SmtDH3 z2qH6o`33b{;M{mDa5@@~1or8+Zcio*97pi1Jkx6v5MXCaYsb~Ynq)eWpKnF{n)FXZ z?Xd;o7ESu&rtMFr5(yJ(B7V>&0gnDdL*4MZH&eO+r*t!TR98ssbMRaw`7;`SLI8mT z=)hSAt~F=mz;JbDI6g~J%w!;QI(X14AnOu;uve^4wyaP3>(?jSLp+LQ7uU(iib%IyB(d&g@+hg;78M>h7yAeq$ALRoHGkKXA+E z$Sk-hd$Fs2nL4w9p@O*Y$c;U)W#d~)&8Js;i^Dp^* z0*7*zEGj~VehF4sRqSGny*K_CxeF=T^8;^lb}HF125G{kMRV?+hYktZWfNA^Mp7y8 zK~Q?ycf%rr+wgLaHQ|_<6z^eTG7izr@99SG9Q{$PCjJabSz`6L_QJJe7{LzTc$P&pwTy<&3RRUlSHmK;?}=QAhQaDW3#VWcNAH3 zeBPRTDf3?3mfdI$&WOg(nr9Gyzg`&u^o!f2rKJ57D_>p z6|?Vg?h(@(*X=o071{g^le>*>qSbVam`o}sAK8>b|11%e&;%`~b2OP7--q%0^2YDS z`2M`{2QYr1VC)sIW9WOu8<~7Q>^$*Og{KF+kI;wFegvaIDkB%3*%PWtWKSq7l`1YcDxQQ2@nv{J!xWV?G+w6C zhUUxUYVf%(Q(40_xrZB@rbxL=Dj3RV^{*yHd>4n-TOoHVRnazDOxxkS9kiZyN}IN3 zB^5N=* zRSTO+rA<{*P8-$GZdyUNOB=MzddG$*@q>mM;pUIiQ_z)hbE#Ze-IS)9G}Rt$5PSB{ zZZ;#h9nS7Rf1ecW&n(Gpu9}{vXQZ-f`UHIvD?cTbF`YvH*{rgE(zE22pLAQfhg-`U zuh612EpByB(~{w7svCylrBk%5$LCIyuhrGi=yOfca`=8ltKxHcSNfDRt@62QH^R_0 z&eQL6rRk>Dvf6rjMQv5ZXzg}S`HqV69hJT^pPHtdhqsrPJWs|IT9>BvpQa@*(FX6v zG}TYjreQCnH(slMt5{NgUf)qsS1F&Bb(M>$X}tWI&yt2I&-rJbqveuj?5J$`Dyfa2 z)m6Mq0XH@K)Y2v8X=-_4=4niodT&Y7W?$KLQhjA<+R}WTdYjX9>kD+SRS^oOY1{A= zZTId-(@wF^UEWso($wZtrs%e7t<}YaC_;#@`r0LUzKY&|qPJz*y~RHG`E6bypP5AX zN!p0^AUu8uDR>xM-ALFzBxXM~Q3z=}fHWCIG>0&I6x2Iu7&U)49j7qeMI&?qb$=4I zdMmhAJrO%@0f%YW! z^gLByEGSk+R0v4*d4w*N$Ju6z#j%HBI}6y$2en=-@S3=6+yZX94m&1j@s- z7T6|#0$c~dYq9IkA!P)AGkp~S$zYJ1SXZ#RM0|E~Q0PSm?DsT4N3f^)b#h(u9%_V5 zX*&EIX|gD~P!vtx?ra71pl%v)F!W~X2hcE!h8cu@6uKURdmo1-7icN4)ej4H1N~-C zjXgOK+mi#aJv4;`DZ%QUbVVZclkx;9`2kgbAhL^d{@etnm+5N8pB#fyH)bxtZGCAv z(%t0kPgBS{Q2HtjrfI0B$$M0c?{r~2T=zeXo7V&&aprCzww=i*}Atu7g^(*ivauMz~kkB%Vt{Wydlz%%2c26%>0PAbZO zVHx%tK(uzDl#ZZK`cW8TD2)eD77wB@gum{B2bO_jnqGl~01EF_^jx4Uqu1yfA~*&g zXJ`-N?D-n~5_QNF_5+Un-4&l$1b zVlHFqtluoN85b^C{A==lp#hS9J(npJ#6P4aY41r) zzCmv~c77X5L}H%sj>5t&@0heUDy;S1gSOS>JtH1v-k5l}z2h~i3^4NF6&iMb;ZYVE zMw*0%-9GdbpF1?HHim|4+)Zed=Fk<2Uz~GKc^P(Ig@x0&XuX0<-K(gA*KkN&lY2Xu zG054Q8wbK~$jE32#Ba*Id2vkqmfV{U$Nx9vJ;jeI`X+j1kh7hB8$CBTe@ANmT^tI8 z%U>zrTKuECin-M|B*gy(SPd`(_xvxjUL?s137KOyH>U{z01cBcFFt=Fp%d+BK4U;9 zQG_W5i)JASNpK)Q0wQpL<+Ml#cei41kCHe&P9?>p+KJN>I~`I^vK1h`IKB7k^xi`f z$H_mtr_+@M>C5+_xt%v}{#WO{86J83;VS@Ei3JLtp<*+hsY1oGzo z0?$?OJO$79;{|@aP!fO6t9TJ!?8i&|c&UPWRMbkwT3nEeFH`Yyyh6b%Rm^nBuTt@9 z+$&-4lf!G|@LCo3<8=yN@5dYbc%uq|Hz|0tiiLQKiUoM9g14zyECKGv0}3AWv2WJ zUAXGUhvkNk`0-H%ACsRSmy4fJ@kxBD3ZKSj6g(n1KPw?g{v19phcBr3BEF>J%lL|d zud3LNuL;cR*xS+;X+N^Br+x2{&hDMhb-$6_fKU(Pt0FQUXgNrZvzsVCnsFqv?#L z4-FYsQ-?D>;LdjHu_TT1CHN~aGkmDjWJkJg4G^!+V_APd%_48tErDv6BW5;ji^UDD zRu5Sw7wwplk`w{OGEKWJM&61c-AWn!SeUP8G#+beH4_Ov*)NUV?eGw&GHNDI6G(1Y zTfCv?T*@{QyK|!Q09wbk5koPD>=@(cA<~i4pSO?f(^5sSbdhUc+K$DW#_7^d7i%At z?KBg#vm$?P4h%?T=XymU;w*AsO_tJr)`+HUll+Uk_zx6vNw>G3jT){w3ck+Z=>7f0 zZVkM*!k^Z_E@_pZK6uH#|vzoL{-j1VFlUHP&5~q?j=UvJJNQG ztQdiCF$8_EaN_Pu8+afN6n8?m5UeR_p_6Log$5V(n9^W)-_vS~Ws`RJhQNPb1$C?| zd9D_ePe*`aI9AZ~Ltbg)DZ;JUo@-tu*O7CJ=T)ZI1&tn%#cisS85EaSvpS~c#CN9B z#Bx$vw|E@gm{;cJOuDi3F1#fxWZ9+5JCqVRCz5o`EDW890NUfNCuBn)3!&vFQE{E$L`Cf7FMSSX%ppLH+Z}#=p zSow$)$z3IL7frW#M>Z4|^9T!=Z8}B0h*MrWXXiVschEA=$a|yX9T~o!=%C?T+l^Cc zJx&MB$me(a*@lLLWZ=>PhKs!}#!ICa0! zq%jNgnF$>zrBZ3z%)Y*yOqHbKzEe_P=@<5$u^!~9G2OAzi#}oP&UL9JljG!zf{JIK z++G*8j)K=$#57N)hj_gSA8golO7xZP|KM?elUq)qLS)i(?&lk{oGMJh{^*FgklBY@Xfl<_Q zXP~(}ST6V01$~VfOmD6j!Hi}lsE}GQikW1YmBH)`f_+)KI!t#~B7=V;{F*`umxy#2Wt8(EbQ~ks9wZS(KV5#5Tn3Ia90r{}fI%pfbqBAG zhZ)E7)ZzqA672%@izC5sBpo>dCcpXi$VNFztSQnmI&u`@zQ#bqFd9d&ls?RomgbSh z9a2rjfNiKl2bR!$Y1B*?3Ko@s^L5lQN|i6ZtiZL|w5oq%{Fb@@E*2%%j=bcma{K~9 z*g1%nEZ;0g;S84ZZ$+Rfurh;Nhq0;{t~(EIRt}D@(Jb7fbe+_@H=t&)I)gPCtj*xI z9S>k?WEAWBmJZ|gs}#{3*pR`-`!HJ)1Dkx8vAM6Tv1bHZhH=MLI;iC#Y!$c|$*R>h zjP{ETat(izXB{@tTOAC4nWNhh1_%7AVaf!kVI5D=Jf5I1!?}stbx_Yv23hLf$iUTb z-)WrTtd2X+;vBW_q*Z6}B!10fs=2FA=3gy*dljsE43!G*3Uw(Is>(-a*5E!T4}b-Y zfvOC)-HYjNfcpi`=kG%(X3XcP?;p&=pz+F^6LKqRom~pA}O* zitR+Np{QZ(D2~p_Jh-k|dL!LPmexLM?tEqI^qRDq9Mg z5XBftj3z}dFir4oScbB&{m5>s{v&U=&_trq#7i&yQN}Z~OIu0}G)>RU*`4<}@7bB% zKYxGx0#L#u199YKSWZwV$nZd>D>{mDTs4qDNyi$4QT6z~D_%Bgf?>3L#NTtvX;?2D zS3IT*2i$Snp4fjDzR#<)A``4|dA(}wv^=L?rB!;kiotwU_gma`w+@AUtkSyhwp{M} z!e`jbUR3AG4XvnBVcyIZht6Vi~?pCC!$XF2 z*V~)DBVm8H7$*OZQJYl3482hadhsI2NCz~_NINtpC?|KI6H3`SG@1d%PsDdw{u}hq zN;OU~F7L1jT&KAitilb&Fl3X12zfSuFm;X)xQWOHL&7d)Q5wgn{78QJ6k5J;is+XP zCPO8_rlGMJB-kuQ*_=Yo1TswG4xnZd&eTjc8=-$6J^8TAa~kEnRQ@Zp-_W&B(4r@F zA==}0vBzsF1mB~743XqBmL9=0RSkGn$cvHf*hyc{<2{@hW+jKjbC|y%CNupHY_NC% zivz^btBLP-cDyV8j>u)=loBs>HoI5ME)xg)oK-Q0wAy|8WD$fm>K{-`0|W{H00;;G z000j`0OWQ8aHA9e04^;603eeQIvtaXMG=2tcr1y8Fl-J;AS+=<0%DU8Bp3oEEDhA^ zOY)M8%o5+cF$rC?trfMcty*f)R;^v=f~}||Xe!#;T3eTDZELN&-50xk+J1heP5AQ>h5O#S_uO;O@;~REd*_G$x$hVeE#bchX)otXQy|S5(oB)2a2%Sc(iDHm z=d>V|a!BLp9^#)o7^EQ2kg=K4%nI^sK2w@-kmvB+ARXYdq?xC2age6)e4$^UaY=wn zgLD^{X0A+{ySY+&7RpldwpC6=E zSPq?y(rl8ZN%(A*sapd4PU+dIakIwT0=zxIJEUW0kZSo|(zFEWdETY*ZjIk9uNMUA ze11=mHu8lUUlgRx!hItf0dAF#HfdIB+#aOuY--#QN9Ry zbx|XkG?PrBb@l6Owl{9Oa9w{x^R}%GwcEEfY;L-6OU8|9RXvu`-ECS`jcO1x1MP{P zcr;Bw##*Dod9K@pEx9z9G~MiNi>8v1OU-}vk*HbI)@CM? zn~b=jWUF%HP=CS+VCP>GiAU_UOz$aq3%%Z2laq^Gx`WAEmuNScCN)OlW>YHGYFgV2 z42lO5ZANs5VMXLS-RZTvBJkWy*OeV#L;7HwWg51*E|RpFR=H}h(|N+79g)tIW!RBK ze08bg^hlygY$C2`%N>7bDm`UZ(5M~DTanh3d~dg+OcNdUanr8azO?})g}EfnUB;5- zE1FX=ru?X=zAk4_6@__o1fE+ml1r&u^f1Kb24Jf-)zKla%-dbd>UZ1 zrj3!RR!Jg`ZnllKJ)4Yfg)@z>(fFepeOcp=F-^VHv?3jSxfa}-NB~*qkJ5Uq(yn+( z<8)qbZh{C!xnO@-XC~XMNVnr-Z+paowv!$H7>`ypMwA(X4(knx7z{UcWWe-wXM!d? zYT}xaVy|7T@yCbNOoy)$D=E%hUNTm(lPZqL)?$v+-~^-1P8m@Jm2t^L%4#!JK#Vtg zyUjM+Y*!$);1<)0MUqL00L0*EZcsE&usAK-?|{l|-)b7|PBKl}?TM6~#j9F+eZq25_L&oSl}DOMv^-tacpDI)l*Ws3u+~jO@;t(T)P=HCEZ#s_5q=m zOsVY!QsOJn)&+Ge6Tm)Ww_Bd@0PY(78ZJ)7_eP-cnXYk`>j9q`x2?Xc6O@55wF+6R zUPdIX!2{VGA;FSivN@+;GNZ7H2(pTDnAOKqF*ARg+C54vZ@Ve`i?%nDDvQRh?m&`1 zq46gH)wV=;UrwfCT3F(m!Q5qYpa!#f6qr0wF=5b9rk%HF(ITc!*R3wIFaCcftGwPt z(kzx{$*>g5L<;u}HzS4XD%ml zmdStbJcY@pn`!fUmkzJ8N>*8Y+DOO^r}1f4ix-`?x|khoRvF%jiA)8)P{?$8j2_qN zcl3Lm9-s$xdYN9)>3j6BPFK)Jbovl|Sf_p((CHe!4hx@F)hd&&*Xb&{TBj>%pT;-n z{3+hA^QZYnjXxtF2XwxPZ`S#J8h>5qLwtwM-{5abbEnRS z`9_`Zq8FJiI#0syE_V_3M&trw$P=ezkHosV$8&I5c0(*-9KBE5DJOC-Xv zw}1bq~AD0_Xerm`%ryiG9_$S z5G|btfiAUNdV09SO2l9v+e#(H6HYOdQs=^ z@xwZQU)~;p1L*~ciC}9ao{nQ-@B>rpUzKBxv=cUusOP5Trs3QnvHxGh9e>s7AM{V1|HfYe z3QwH;nHHR49fYzuGc3W3l5xrDAI392SFXx>lWE3V9Ds9il3PyZaN5>oC3>9W-^7vC z3~KZ-@iD?tIkhg+6t{m;RGk2%>@I0&kf)o$+-^ls0(YABNbM(=l#ad@nKp_j=b~Xs ziR;xu_+)lxy6|+af!@}gO2H_x)p;nZ-tYxW5Omq=l`GzMp*GTLr>vZN1?e}^C$t*Z zvzEdIc2|HA2RFN_4#EkzMqKnbbw!?!?%B@M0^^5Z;K?x-%lg?Z>}wMV8zEqHZ$cr~Y#Wv>9+)KMUZatUqbRU8 z8t9qrek(H^C0Tuzq|cP2$WL7tzj+Dj5y^2SF1D154CnsB$xbz`$wV||n-cG%rsT$p z+3RHdadK(3-noj(2L#8c5lODg)V8pv(GEnNb@F>dEHQr>!qge@L>#qg)RAUtiOYqF ziiV_ETExwD)bQ<))?-9$)E(FiRBYyC@}issHS!j9n)~I1tarxnQ2LfjdIJ)*jp{0E z&1oTd%!Qbw$W58s!6ms>F z=p0!~_Mv~8jyaicOS*t(ntw`5uFi0Bc4*mH8kSkk$>!f0;FM zX_t14I55!ZVsg0O$D2iuEDb7(J>5|NKW^Z~kzm@dax z9(|As$U7^}LF%#`6r&UPB*6`!Rf74h~*C=ami6xUxYCwiJxdr$+`z zKSC4A%8!s%R&j*2si(OEc*fy!q)?%=TjDZJ2}O zxT6o>jlKXz_7_Y$N})}IG`*#KfMzs#R(SI#)3*ZEzCv%_tu(VTZ5J| zw2$5kK)xTa>xGFgS0?X(NecjzFVKG%VVn?neu=&eQ+DJ1APlY1E?Q1s!Kk=yf7Uho z>8mg_!U{cKqpvI3ucSkC2V`!d^XMDk;>GG~>6>&X_z75-kv0UjevS5ORHV^e8r{tr z-9z*y&0eq3k-&c_AKw~<`8dtjsP0XgFv6AnG?0eo5P14T{xW#b*Hn2gEnt5-KvN1z zy!TUSi>IRbD3u+h@;fn7fy{F&hAKx7dG4i!c?5_GnvYV|_d&F16p;)pzEjB{zL-zr z(0&AZUkQ!(A>ghC5U-)t7(EXb-3)tNgb=z`>8m8n+N?vtl-1i&*ftMbE~0zsKG^I$ zSbh+rUiucsb!Ax@yB}j>yGeiKIZk1Xj!i#K^I*LZW_bWQIA-}FmJ~^}>p=K$bX9F{}z{s^KWc~OK(zl_X57aB^J9v}yQ5h#BE$+C)WOglV)nd0WWtaF{7`_Ur`my>4*NleQG#xae4fIo(b zW(&|g*#YHZNvDtE|6}yHvu(hDekJ-t*f!2RK;FZHRMb*l@Qwkh*~CqQRNLaepXypX z1?%ATf_nHIu3z6gK<7Dmd;{`0a!|toT0ck|TL$U;7Wr-*piO@R)KrbUz8SXO0vr1K z>76arfrqImq!ny+VkH!4?x*IR$d6*;ZA}Mhro(mzUa?agrFZpHi*)P~4~4N;XoIvH z9N%4VK|j4mV2DRQUD!_-9fmfA2(YVYyL#S$B;vqu7fnTbAFMqH``wS7^B5=|1O&fL z)qq(oV6_u4x(I(**#mD}MnAy(C&B4a1n6V%$&=vrIDq^F_KhE5Uw8_@{V`_#M0vCu zaNUXB=n0HT@D+ppDXi8-vp{tj)?7+k>1j}VvEKRgQ~DWva}8*pp`W8~KRo*kJ*&X} zP!~2fxQr@dM*q0dI|)Fux=pZWBk==RI7i{^BQf`kWlD2%|@R9!JA7& zLbM$uJ12y}_62$|T|{)@OJZtzfpL^t@1nMTYHutrF#D+^?~CN~9`YQ@#&&@c_Zf)( zbC~y8!2LO8jHwQXv>G~1q?c68ipT*%dY&c{8wd_!Y#~tMJ7yk!F8| zt?m_CLVw6cU@@p(#h4cY&Qsfz2Xp3w^4Cg%m03Tmq~9n%hyoMH^KY7{(QkRyn_!YB zzZa!Tgr~5$MAG$x)Fs71#6j}Kvcv3=9VUX8CH< zbP3|fY8f#$K*<5JQ7whM(v=GN2k26Xsh)#0!HKS(koLgAp-;)8z0w&_Z=nG4v6n8u z&Tm0Fi){4_!Y5Kp?!zv$FKfUifQ{%c82uYfrvE{%ejUd72aNYmI*0z3-a-EYr+bB->oH3#t(AY3 zV{Z=(SJr;D#0(`u*dc*~9T7D8Pudw894%!>c4wU&V1m<~0InidR6fbi?yPl(z+sKa zdF*kS>_4^1UO>y4T%Ar>epSr5&vp`$KdY7B(F%P0@VyHk@1fJ=6X0=aGjD-)BrOJD zW}IU@hg~^2r>a1fQvjTtvL*mKJ7q;pfP*U2=URL`VB_Y_JojbZ+MS=vaVN0C6L_MV zG1#5=35-E`KsD%r>-Q_ndvJ2tOYcMMP9f*t0iJ`(Z`^+YP)h>@lR(@Wvrt-`0tHG+ zuP2R@@mx=T@fPoQ1s`e^1I0H*kQPBGDky@!ZQG@8jY-+2ihreG5q$6i{3vmDTg0j$ zzRb*-nKN@{_wD`V6+i*YS)?$XfrA-sW?js?SYU8#vXxxQCc|*K!EbpWfu)3~jwq6_@KC0m;3A%jH^18_a0;ksC2DEwa@2{9@{ z9@T??<4QwR69zk{UvcHHX;`ICOwrF;@U;etd@YE)4MzI1WCsadP=`%^B>xPS-{`=~ zZ+2im8meb#4p~XIL9}ZOBg7D8R=PC8V}ObDcxEEK(4yGKcyCQWUe{9jCs+@k!_y|I z%s{W(&>P4w@hjQ>PQL$zY+=&aDU6cWr#hG)BVCyfP)h>@3IG5I2mk;8K>)Ppba*!h z005B=001VF5fT=Y4_ytCUk`sv8hJckqSy&Gc2Jx^WJ$J~08N{il-M$fz_ML$)Cpil z(nOv_nlZB^c4s&&O3h=OLiCz&(|f0 zxWU_-JZy>hxP*gvR>CLnNeQ1~g;6{g#-}AbkIzWR;j=8=6!AHpKQCbjFYxf9h%bov zVi;eNa1>t-<14KERUW>^KwoF+8zNo`Y*WiQwq}3m0_2RYtL9Wmu`JaRaQMQ)`Si^6+VbM`!rH~T?DX2=(n4nT zf`G`(Rpq*pDk*v~wMYPZ@vMNZDMPnxMYmU!lA{Xfo?n=Ibb4y3eyY1@Dut4|Y^ml& zqs$r}jAo=B(Ml>ogeEjyv(E`=kBzPf2uv9TQtO$~bamD#=Tv`lNy(K|w$J2O6jS51 zzZtOCHDWz7W0=L1XDW5WR5mtLGc~W+>*vX5{e~U@rE~?7e>vKU-v8bj;F4#abtcV(3ZtwXo9ia93HiETyQXwW4a-0){;$OU*l` zW^bjkyZTJ6_DL^0}`*)#EZ|2nvKRzMLH9-~@Z6$v#t8Dm%(qpP+DgzNe6d)1q zBqhyF$jJTyYFvl_=a>#I8jhJ)d6SBNPg#xg2^kZ3NX8kQ74ah(Y5Z8mlXyzTD&}Q8 ziY(pj-N-V2f>&hZQJ`Di%wp2fN(I%F@l)3M8GcSdNy+#HuO{$I8NXubRlFkL)cY@b z#`v{}-^hRXEq*8B_cG=%PZvI$eo(|8Wc(2o8L#0_GX9L$1@yV>%7mGk)QTD1R*OvS z4OW;ym1)%k9Bfem0tOqq3yyAUWp&q|LsN!RDnxa|j;>R|Mm2rIv7=tej5GFaa+`#| z;7u9Z_^XV+vD@2hF8Xe63+Qd`oig6S9jX(*DbjzPb*K-H7c^7E-(~!R6E%TrgW;RvG;WS{Ziv*W*a*`9Bb;$Er3?MyF~5GcXv`k>U)n}lwv$Sp+H@IKA5$mKk0g*4Ln{!tfvITeY zzr%8JJ5BdcEYsR9eGzJ4B&$}4FMmbRU6{8{_w7Kl77@PNe7|Bc#c?5(C5&Z=kJ#(oM90D4`rh2S!|^L!P#e#1hkD5@~-- z`63GV0~*rOZSqw7k^#-Y$Q4z3Oa2SPRURqEahB1B^h{7~+p03SwzqL9QU#$3-X zdYtQ?-K5xDAdfomEd6(yPtZ!yY_<35bMedeq`z2JWorljz5-f9<^93HM-$#+acw%9r!JOM%O<|BR`W& zd-%j_?b^q7Kl6{q^N{cg2u;11rFB5EP+oqG9&pHD#_Mo@aNMj;LUvsl&nK(ca(hT( zzFc2oHC6WQv8g7jo+3ZSwK+9G$cvfRnql)?g=XeQ3+LTh3)79nhEle8OqS3T$qn(> z(=5Bg?EWq-ldEywgzXW965%H(9^ik*rH(8dNdkbcS9|ow&_r`X~R^R?B+(oTiMzzlx8KnHqUi z8Rh-)VAnS-CO+3}yxqm8)X+N+uzieFVm-F#syP#M1p5&$wX3MJ8 z+R@grZ*5G^Uh4I@VT=>C4RJNc^~3mx$kS1F{L?3)BzdduD2MZKdu#jNno&f2&d{?` zW(>$oktzY@GO{|Ln~Bt^A4)(%?l-&(Dm!iL#$K_xOyhwAf=K2<+Bom zw7|hl6E5}B$d%n0sfZvfQRy9Fyz2~ z83#=#LaHnf1th^k*p|ux8!!8pfHE!)x*%=_hAddl)P%4h4%&8!5-W#xqqb}c=H(i|wqcIS&oDQ{ zhI7N-$f$ra3=RjPmMh?-IEkJYQ<}R9Z!}wmp$#~Uc%u1oh#TP}wF*kJJmQX2#27kL z_dz(yKufo<=m71bZfLp^Ll#t3(IHkrgMcvx@~om%Ib(h(<$Da7urTI`x|%`wD--sN zJEEa>4DGSEG?0ulkosfj8IMNN4)B=ZtvGG{|4Fp=Xhg!wPNgYzS>{Bp%%Qa+624X@ X49Luk)baa85H9$5YCsTPT`SVRWMtMW diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index d355f4c4..53b9e380 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.4-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists From 8f4de349e50aedc8dfb445d2b19f3c5904cbc91c Mon Sep 17 00:00:00 2001 From: Guillermo Calvo Date: Mon, 27 Nov 2023 11:26:06 +0100 Subject: [PATCH 18/19] Clean up build scripts --- build.gradle | 2 ++ gradle.properties | 2 +- plugin/build.gradle | 18 ++++-------------- 3 files changed, 7 insertions(+), 15 deletions(-) diff --git a/build.gradle b/build.gradle index 5460e4e9..1c7abd52 100644 --- a/build.gradle +++ b/build.gradle @@ -4,6 +4,8 @@ buildscript { } dependencies { classpath "org.grails:grails-gradle-plugin:$grailsGradlePluginVersion" + classpath "org.grails.plugins:views-gradle:$viewGradleVersion" + classpath "org.grails.plugins:views-json:$viewsJsonVersion" classpath "org.grails:grails-docs:${project.ext.properties.grailsDocsVersion ?: grailsVersion}" classpath "io.github.gradle-nexus:publish-plugin:1.1.0" } diff --git a/gradle.properties b/gradle.properties index c9498fe3..542fd968 100644 --- a/gradle.properties +++ b/gradle.properties @@ -20,7 +20,7 @@ micronautVersion=3.8.5 graphqlJavaVersion=20.6 graphqlJavaScalarExtVersion=20.2 codenarcVersion=1.6.1 -viewGradleVersion=2.0.0 +viewGradleVersion=2.3.2 viewsJsonVersion=2.3.2 servletApiVersion=4.0.1 cglibNodepVersion=3.2.9 diff --git a/plugin/build.gradle b/plugin/build.gradle index e5092768..cb68c2e9 100644 --- a/plugin/build.gradle +++ b/plugin/build.gradle @@ -1,18 +1,8 @@ -repositories { - mavenCentral() -} -buildscript { - repositories { - maven { url "https://repo.grails.org/grails/core" } - } - dependencies { - classpath "org.grails:grails-gradle-plugin:$grailsGradlePluginVersion" - classpath "org.grails.plugins:views-gradle:$viewGradleVersion" - } -} -apply plugin:"org.grails.grails-plugin" -apply plugin:"org.grails.plugins.views-json" +plugins { + id "org.grails.grails-plugin" + id "org.grails.plugins.views-json" +} dependencies { api "org.grails:grails-plugin-controllers" From 9cf375c98330cb3fe17ca4736e278b78fd59c2cc Mon Sep 17 00:00:00 2001 From: Puneet Behl Date: Wed, 29 Nov 2023 00:11:38 +0530 Subject: [PATCH 19/19] Add CompileStatic to ComplexOperation --- .../gorm/graphql/entity/operations/ComplexOperation.groovy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/main/groovy/org/grails/gorm/graphql/entity/operations/ComplexOperation.groovy b/core/src/main/groovy/org/grails/gorm/graphql/entity/operations/ComplexOperation.groovy index bd3c9f15..f8b74b82 100644 --- a/core/src/main/groovy/org/grails/gorm/graphql/entity/operations/ComplexOperation.groovy +++ b/core/src/main/groovy/org/grails/gorm/graphql/entity/operations/ComplexOperation.groovy @@ -1,6 +1,7 @@ package org.grails.gorm.graphql.entity.operations import graphql.schema.GraphQLOutputType +import groovy.transform.CompileStatic import org.grails.datastore.mapping.model.MappingContext import org.grails.gorm.graphql.entity.dsl.helpers.ComplexTyped import org.grails.gorm.graphql.entity.dsl.helpers.ExecutesClosures @@ -13,6 +14,7 @@ import org.grails.gorm.graphql.types.GraphQLTypeManager * @since 1.0.0 */ +@CompileStatic class ComplexOperation extends CustomOperation implements ExecutesClosures { String typeName