vaadin / platform

Vaadin platform 10+ is a Java web development platform based on Vaadin web components. If you don't know to which repository your bug report should be filed, use this and we'll move it to the right one.
https://vaadin.com
551 stars 78 forks source link

24.4.2, maven enforcer error for dependency convergence during a vaadin based project build #6515

Closed raydac closed 2 months ago

raydac commented 3 months ago

Describe the bug

detected different library versions for vaadin 24.4.2 components, it breaks build of a maven project if dependency convergence check on

[INFO] --- maven-enforcer-plugin:3.1.0:enforce (maven-enforcer) @ ******* ---
[WARNING]
Dependency convergence error for com.github.javaparser:javaparser-symbol-solver-core:jar:3.25.8:compile paths to dependency are:
+-************************
  +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.2:compile
    +-com.vaadin:vaadin-core:jar:24.4.2:compile
      +-com.vaadin:vaadin-dev:jar:24.4.2:compile
        +-com.vaadin:copilot:jar:24.4.1:compile
          +-com.github.javaparser:javaparser-symbol-solver-core:jar:3.25.8:compile
and
+-************************
  +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.2:compile
    +-com.vaadin:hilla:jar:24.4.1:compile
      +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
        +-com.github.javaparser:javaparser-symbol-solver-core:jar:3.25.10:compile

Expected-behavior

all vaadin same version components use the same version of third part libraries

Reproduction

System Info

windows 10

ZheSun88 commented 3 months ago

Hi, Thanks for the ticket, i will check and add the enforcer plugin into our validation in case the same issue happens again.

ZheSun88 commented 3 months ago

Hi there @raydac , we have released Vaadin 24.4.3 with the version fix for your mentioned dependency. May I ask you to try again?

raydac commented 3 months ago

I have tried the new version and got another error from maven

Dependency convergence error for org.javassist:javassist:jar:3.28.0-GA:compile paths to dependency are:
+-*******************************
  +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
    +-com.vaadin:vaadin-spring:jar:24.4.2:compile
      +-org.reflections:reflections:jar:0.10.2:compile
        +-org.javassist:javassist:jar:3.28.0-GA:compile
and
+-************************
  +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
    +-com.vaadin:hilla:jar:24.4.1:compile
      +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
        +-com.github.javaparser:javaparser-symbol-solver-core:jar:3.25.10:compile
          +-org.javassist:javassist:jar:3.30.2-GA:compile
ZheSun88 commented 3 months ago

Hi, thanks for the reply, is javassist dependency the only error you got from your build? besides this one, i can see also one error from

Dependency convergence error for commons-io:commons-io:jar:2.11.0 paths to dependency are:

we are going take care of both

raydac commented 3 months ago

you can use the pom to check vaadin spring for errors, looks like a lot of convergence errors

<project xmlns="http://maven.apache.org/POM/4.0.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

  <modelVersion>4.0.0</modelVersion>
  <groupId>com.vaadin.test</groupId>
  <artifactId>test-comvergences</artifactId>
  <version>0-SNAPSHOT</version>
  <packaging>pom</packaging>

  <dependencies>
    <dependency>
      <groupId>com.vaadin</groupId>
      <artifactId>vaadin-spring-boot-starter</artifactId>
      <version>24.4.3</version>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-enforcer-plugin</artifactId>
        <version>3.5.0</version>
        <executions>
          <execution>
            <id>enforce</id>
            <configuration>
              <rules>
                <dependencyConvergence />
              </rules>
            </configuration>
            <goals>
              <goal>enforce</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

</project>  
ZheSun88 commented 3 months ago

I have added the maven-enforcer-plugin into the skeleton-starter running with vaadin 24.4.3 there are two dependencies causing the convergence error. they are org.javassist:javassist:jar:3.28.0-GA and commons-io:commons-io:jar:2.11.0 here is my project skeleton-starter-flow-spring.zip

raydac commented 3 months ago

the pom which I provided above, during build complains for listed convergence errors

com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.17.0
org.springframework:spring-aop:jar:6.1.8
org.springframework:spring-core:jar:6.1.8
org.javassist:javassist:jar:3.28.0-GA
org.springframework:spring-context:jar:6.1.8
com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.17.0
org.springframework:spring-beans:jar:6.1.8
com.fasterxml.jackson.core:jackson-core:jar:2.17.0
io.projectreactor:reactor-core:jar:3.5.16
jakarta.validation:jakarta.validation-api:jar:3.0.2
org.slf4j:slf4j-api:jar:2.0.13
com.vaadin:flow-server:jar:24.4.2
com.fasterxml.jackson.core:jackson-annotations:jar:2.17.0
commons-io:commons-io:jar:2.13.0
org.springframework:spring-expression:jar:6.1.8
io.micrometer:micrometer-observation:jar:1.12.6
com.fasterxml.jackson.core:jackson-databind:jar:2.17.0

full log

[ERROR] Dependency convergence error for com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.17.0 paths to dependency are:
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR]         +-com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.17.0:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.vaadin:hilla-engine-core:jar:24.4.1:compile
[ERROR]           +-com.vaadin:hilla-parser-jvm-plugin-backbone:jar:24.4.1:compile
[ERROR]             +-com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.15.4:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.15.4:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.vaadin:hilla-parser-jvm-utils:jar:24.4.1:compile
[ERROR]           +-com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.15.4:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-org.springframework.boot:spring-boot-starter-web:jar:3.2.6:compile
[ERROR]       +-org.springframework.boot:spring-boot-starter-json:jar:3.2.6:compile
[ERROR]         +-com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.15.4:compile
[ERROR] 
[ERROR] 
[ERROR] Dependency convergence error for org.springframework:spring-aop:jar:6.1.8 paths to dependency are:
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.springframework:spring-webmvc:jar:6.1.8:compile
[ERROR]         +-org.springframework:spring-aop:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.springframework:spring-webmvc:jar:6.1.8:compile
[ERROR]         +-org.springframework:spring-context:jar:6.1.8:compile
[ERROR]           +-org.springframework:spring-aop:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-org.springframework.security:spring-security-core:jar:6.2.4:compile
[ERROR]           +-org.springframework:spring-aop:jar:6.1.6:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-org.springframework:spring-aop:jar:6.1.8:compile
[ERROR] 
[ERROR] 
[ERROR] Dependency convergence error for org.springframework:spring-core:jar:6.1.8 paths to dependency are:
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.springframework:spring-webmvc:jar:6.1.8:compile
[ERROR]         +-org.springframework:spring-aop:jar:6.1.8:compile
[ERROR]           +-org.springframework:spring-core:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.springframework:spring-webmvc:jar:6.1.8:compile
[ERROR]         +-org.springframework:spring-beans:jar:6.1.8:compile
[ERROR]           +-org.springframework:spring-core:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.springframework:spring-webmvc:jar:6.1.8:compile
[ERROR]         +-org.springframework:spring-context:jar:6.1.8:compile
[ERROR]           +-org.springframework:spring-core:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.springframework:spring-webmvc:jar:6.1.8:compile
[ERROR]         +-org.springframework:spring-core:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.springframework:spring-webmvc:jar:6.1.8:compile
[ERROR]         +-org.springframework:spring-expression:jar:6.1.8:compile
[ERROR]           +-org.springframework:spring-core:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.springframework:spring-websocket:jar:6.1.8:compile
[ERROR]         +-org.springframework:spring-core:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-org.springframework.data:spring-data-commons:jar:3.2.6:compile
[ERROR]           +-org.springframework:spring-core:jar:6.1.7:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-org.springframework.security:spring-security-core:jar:6.2.4:compile
[ERROR]           +-org.springframework:spring-core:jar:6.1.6:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-org.springframework:spring-core:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-org.springframework.boot:spring-boot-starter-web:jar:3.2.6:compile
[ERROR]       +-org.springframework.boot:spring-boot-starter:jar:3.2.6:compile
[ERROR]         +-org.springframework.boot:spring-boot:jar:3.2.6:compile
[ERROR]           +-org.springframework:spring-core:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-org.springframework.boot:spring-boot-starter-web:jar:3.2.6:compile
[ERROR]       +-org.springframework.boot:spring-boot-starter:jar:3.2.6:compile
[ERROR]         +-org.springframework:spring-core:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-org.springframework.boot:spring-boot-starter-web:jar:3.2.6:compile
[ERROR]       +-org.springframework:spring-web:jar:6.1.8:compile
[ERROR]         +-org.springframework:spring-core:jar:6.1.8:compile
[ERROR] 
[ERROR] 
[ERROR] Dependency convergence error for org.javassist:javassist:jar:3.28.0-GA paths to dependency are:
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.reflections:reflections:jar:0.10.2:compile
[ERROR]         +-org.javassist:javassist:jar:3.28.0-GA:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.github.javaparser:javaparser-symbol-solver-core:jar:3.25.10:compile
[ERROR]           +-org.javassist:javassist:jar:3.30.2-GA:compile
[ERROR] 
[ERROR] 
[ERROR] Dependency convergence error for org.springframework:spring-context:jar:6.1.8 paths to dependency are:
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.springframework:spring-webmvc:jar:6.1.8:compile
[ERROR]         +-org.springframework:spring-context:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.springframework:spring-websocket:jar:6.1.8:compile
[ERROR]         +-org.springframework:spring-context:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-org.springframework.security:spring-security-core:jar:6.2.4:compile
[ERROR]           +-org.springframework:spring-context:jar:6.1.6:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-org.springframework:spring-context:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-org.springframework.boot:spring-boot-starter-web:jar:3.2.6:compile
[ERROR]       +-org.springframework.boot:spring-boot-starter:jar:3.2.6:compile
[ERROR]         +-org.springframework.boot:spring-boot:jar:3.2.6:compile
[ERROR]           +-org.springframework:spring-context:jar:6.1.8:compile
[ERROR] 
[ERROR] 
[ERROR] Dependency convergence error for com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.17.0 paths to dependency are:
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.vaadin:hilla-engine-core:jar:24.4.1:compile
[ERROR]           +-com.vaadin:hilla-parser-jvm-core:jar:24.4.1:compile
[ERROR]             +-com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.17.0:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.vaadin:hilla-parser-jvm-utils:jar:24.4.1:compile
[ERROR]           +-io.swagger.core.v3:swagger-core:jar:2.2.22:compile
[ERROR]             +-com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.16.2:compile
[ERROR] 
[ERROR] 
[ERROR] Dependency convergence error for org.springframework:spring-beans:jar:6.1.8 paths to dependency are:
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.springframework:spring-webmvc:jar:6.1.8:compile
[ERROR]         +-org.springframework:spring-aop:jar:6.1.8:compile
[ERROR]           +-org.springframework:spring-beans:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.springframework:spring-webmvc:jar:6.1.8:compile
[ERROR]         +-org.springframework:spring-beans:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.springframework:spring-webmvc:jar:6.1.8:compile
[ERROR]         +-org.springframework:spring-context:jar:6.1.8:compile
[ERROR]           +-org.springframework:spring-beans:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-org.springframework.data:spring-data-commons:jar:3.2.6:compile
[ERROR]           +-org.springframework:spring-beans:jar:6.1.7:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-org.springframework.security:spring-security-core:jar:6.2.4:compile
[ERROR]           +-org.springframework:spring-beans:jar:6.1.6:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-org.springframework:spring-beans:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-org.springframework.boot:spring-boot-starter-web:jar:3.2.6:compile
[ERROR]       +-org.springframework:spring-web:jar:6.1.8:compile
[ERROR]         +-org.springframework:spring-beans:jar:6.1.8:compile
[ERROR] 
[ERROR] 
[ERROR] Dependency convergence error for com.fasterxml.jackson.core:jackson-core:jar:2.17.0 paths to dependency are:
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR]         +-com.fasterxml.jackson.core:jackson-core:jar:2.17.0:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR]         +-com.fasterxml.jackson.core:jackson-databind:jar:2.17.0:compile
[ERROR]           +-com.fasterxml.jackson.core:jackson-core:jar:2.17.0:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR]         +-com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.17.0:compile
[ERROR]           +-com.fasterxml.jackson.core:jackson-core:jar:2.17.0:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.vaadin:hilla-engine-core:jar:24.4.1:compile
[ERROR]           +-com.vaadin:hilla-parser-jvm-core:jar:24.4.1:compile
[ERROR]             +-com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.17.0:compile
[ERROR]               +-com.fasterxml.jackson.core:jackson-core:jar:2.17.0:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.fasterxml.jackson.core:jackson-core:jar:2.15.4:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.15.4:compile
[ERROR]           +-com.fasterxml.jackson.core:jackson-core:jar:2.15.4:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.15.4:compile
[ERROR]           +-com.fasterxml.jackson.core:jackson-core:jar:2.15.4:compile
[ERROR] 
[ERROR] 
[ERROR] Dependency convergence error for io.projectreactor:reactor-core:jar:3.5.16 paths to dependency are:
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-core:jar:24.4.3:compile
[ERROR]       +-com.vaadin:vaadin-dev:jar:24.4.3:compile
[ERROR]         +-com.vaadin:copilot:jar:24.4.3:compile
[ERROR]           +-io.projectreactor.netty:reactor-netty:jar:1.1.18:compile
[ERROR]             +-io.projectreactor.netty:reactor-netty-core:jar:1.1.18:compile
[ERROR]               +-io.projectreactor:reactor-core:jar:3.5.16:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-core:jar:24.4.3:compile
[ERROR]       +-com.vaadin:vaadin-dev:jar:24.4.3:compile
[ERROR]         +-com.vaadin:copilot:jar:24.4.3:compile
[ERROR]           +-io.projectreactor.netty:reactor-netty:jar:1.1.18:compile
[ERROR]             +-io.projectreactor.netty:reactor-netty-http:jar:1.1.18:compile
[ERROR]               +-io.projectreactor:reactor-core:jar:3.5.16:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-io.projectreactor:reactor-core:jar:3.6.6:compile
[ERROR] 
[ERROR] 
[ERROR] Dependency convergence error for jakarta.validation:jakarta.validation-api:jar:3.0.2 paths to dependency are:
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.hibernate.validator:hibernate-validator:jar:8.0.1.Final:compile
[ERROR]         +-jakarta.validation:jakarta.validation-api:jar:3.0.2:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-jakarta.validation:jakarta.validation-api:jar:3.0.2:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.vaadin:hilla-parser-jvm-utils:jar:24.4.1:compile
[ERROR]           +-io.swagger.core.v3:swagger-core:jar:2.2.22:compile
[ERROR]             +-jakarta.validation:jakarta.validation-api:jar:2.0.2:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.vaadin:hilla-runtime-plugin-transfertypes:jar:24.4.1:compile
[ERROR]           +-jakarta.validation:jakarta.validation-api:jar:3.0.2:compile
[ERROR] 
[ERROR] 
[ERROR] Dependency convergence error for org.slf4j:slf4j-api:jar:2.0.13 paths to dependency are:
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR]         +-org.slf4j:slf4j-api:jar:2.0.13:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR]         +-com.helger:ph-css:jar:7.0.2:compile
[ERROR]           +-com.helger.commons:ph-commons:jar:11.1.5:compile
[ERROR]             +-org.slf4j:slf4j-api:jar:2.0.9:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR]         +-com.helger:ph-css:jar:7.0.2:compile
[ERROR]           +-org.slf4j:slf4j-api:jar:2.0.9:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-com.vaadin:flow-push:jar:24.4.2:compile
[ERROR]         +-com.vaadin.external.atmosphere:atmosphere-runtime:jar:3.0.5.slf4jvaadin1:compile
[ERROR]           +-org.slf4j:slf4j-api:jar:1.7.35:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.reflections:reflections:jar:0.10.2:compile
[ERROR]         +-org.slf4j:slf4j-api:jar:1.7.32:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-core:jar:24.4.3:compile
[ERROR]       +-com.vaadin:vaadin-dev:jar:24.4.3:compile
[ERROR]         +-com.vaadin:vaadin-dev-server:jar:24.4.2:compile
[ERROR]           +-com.vaadin:license-checker:jar:1.12.12:compile
[ERROR]             +-com.github.oshi:oshi-core:jar:6.4.10:compile
[ERROR]               +-org.slf4j:slf4j-api:jar:2.0.9:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-core:jar:24.4.3:compile
[ERROR]       +-com.vaadin:vaadin-dev:jar:24.4.3:compile
[ERROR]         +-com.vaadin:vaadin-dev-server:jar:24.4.2:compile
[ERROR]           +-com.vaadin:license-checker:jar:1.12.12:compile
[ERROR]             +-org.slf4j:slf4j-api:jar:1.7.36:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-core:jar:24.4.3:compile
[ERROR]       +-com.vaadin:vaadin-dev:jar:24.4.3:compile
[ERROR]         +-com.vaadin:vaadin-dev-server:jar:24.4.2:compile
[ERROR]           +-io.methvin:directory-watcher:jar:0.18.0:compile
[ERROR]             +-org.slf4j:slf4j-api:jar:1.7.36:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-org.springframework.data:spring-data-commons:jar:3.2.6:compile
[ERROR]           +-org.slf4j:slf4j-api:jar:2.0.2:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.vaadin:hilla-parser-jvm-utils:jar:24.4.1:compile
[ERROR]           +-io.swagger.core.v3:swagger-core:jar:2.2.22:compile
[ERROR]             +-org.slf4j:slf4j-api:jar:2.0.9:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-org.springframework.boot:spring-boot-starter-web:jar:3.2.6:compile
[ERROR]       +-org.springframework.boot:spring-boot-starter:jar:3.2.6:compile
[ERROR]         +-org.springframework.boot:spring-boot-starter-logging:jar:3.2.6:compile
[ERROR]           +-ch.qos.logback:logback-classic:jar:1.4.14:compile
[ERROR]             +-org.slf4j:slf4j-api:jar:2.0.7:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-org.springframework.boot:spring-boot-starter-web:jar:3.2.6:compile
[ERROR]       +-org.springframework.boot:spring-boot-starter:jar:3.2.6:compile
[ERROR]         +-org.springframework.boot:spring-boot-starter-logging:jar:3.2.6:compile
[ERROR]           +-org.apache.logging.log4j:log4j-to-slf4j:jar:2.21.1:compile
[ERROR]             +-org.slf4j:slf4j-api:jar:1.7.36:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-org.springframework.boot:spring-boot-starter-web:jar:3.2.6:compile
[ERROR]       +-org.springframework.boot:spring-boot-starter:jar:3.2.6:compile
[ERROR]         +-org.springframework.boot:spring-boot-starter-logging:jar:3.2.6:compile
[ERROR]           +-org.slf4j:jul-to-slf4j:jar:2.0.13:compile
[ERROR]             +-org.slf4j:slf4j-api:jar:2.0.13:compile
[ERROR] 
[ERROR] 
[ERROR] Dependency convergence error for com.vaadin:flow-server:jar:24.4.2 paths to dependency are:
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-core:jar:24.4.3:compile
[ERROR]       +-com.vaadin:vaadin-core-internal:jar:24.4.3:compile
[ERROR]         +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-core:jar:24.4.3:compile
[ERROR]       +-com.vaadin:vaadin-core-internal:jar:24.4.3:compile
[ERROR]         +-com.vaadin:flow-lit-template:jar:24.4.2:compile
[ERROR]           +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-core:jar:24.4.3:compile
[ERROR]       +-com.vaadin:vaadin-core-internal:jar:24.4.3:compile
[ERROR]         +-com.vaadin:flow-react:jar:24.4.2:compile
[ERROR]           +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-core:jar:24.4.3:compile
[ERROR]       +-com.vaadin:vaadin-core-internal:jar:24.4.3:compile
[ERROR]         +-com.vaadin:flow-html-components:jar:24.4.2:compile
[ERROR]           +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-core:jar:24.4.3:compile
[ERROR]       +-com.vaadin:vaadin-core-internal:jar:24.4.3:compile
[ERROR]         +-com.vaadin:flow-data:jar:24.4.2:compile
[ERROR]           +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-core:jar:24.4.3:compile
[ERROR]       +-com.vaadin:vaadin-core-internal:jar:24.4.3:compile
[ERROR]         +-com.vaadin:flow-dnd:jar:24.4.2:compile
[ERROR]           +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-core:jar:24.4.3:compile
[ERROR]       +-com.vaadin:vaadin-core-internal:jar:24.4.3:compile
[ERROR]         +-com.vaadin:vaadin-confirm-dialog-flow:jar:24.4.3:compile
[ERROR]           +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-core:jar:24.4.3:compile
[ERROR]       +-com.vaadin:vaadin-dev:jar:24.4.3:compile
[ERROR]         +-com.vaadin:vaadin-dev-server:jar:24.4.2:compile
[ERROR]           +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.vaadin:flow-server:jar:24.4.1:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.vaadin:hilla-engine-core:jar:24.4.1:compile
[ERROR]           +-com.vaadin:flow-server:jar:24.4.1:compile
[ERROR] 
[ERROR] 
[ERROR] Dependency convergence error for com.fasterxml.jackson.core:jackson-annotations:jar:2.17.0 paths to dependency are:
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR]         +-com.fasterxml.jackson.core:jackson-databind:jar:2.17.0:compile
[ERROR]           +-com.fasterxml.jackson.core:jackson-annotations:jar:2.17.0:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR]         +-com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.17.0:compile
[ERROR]           +-com.fasterxml.jackson.core:jackson-annotations:jar:2.17.0:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.vaadin:hilla-engine-core:jar:24.4.1:compile
[ERROR]           +-com.vaadin:hilla-parser-jvm-core:jar:24.4.1:compile
[ERROR]             +-com.fasterxml.jackson.core:jackson-annotations:jar:2.17.0:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.vaadin:hilla-engine-core:jar:24.4.1:compile
[ERROR]           +-com.vaadin:hilla-parser-jvm-plugin-backbone:jar:24.4.1:compile
[ERROR]             +-com.fasterxml.jackson.core:jackson-annotations:jar:2.17.0:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.vaadin:hilla-parser-jvm-utils:jar:24.4.1:compile
[ERROR]           +-io.swagger.core.v3:swagger-core:jar:2.2.22:compile
[ERROR]             +-com.fasterxml.jackson.core:jackson-annotations:jar:2.16.2:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.vaadin:hilla-parser-jvm-utils:jar:24.4.1:compile
[ERROR]           +-io.swagger.core.v3:swagger-models:jar:2.2.22:compile
[ERROR]             +-com.fasterxml.jackson.core:jackson-annotations:jar:2.16.2:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.vaadin:hilla-parser-jvm-utils:jar:24.4.1:compile
[ERROR]           +-com.fasterxml.jackson.core:jackson-annotations:jar:2.17.0:compile
[ERROR] 
[ERROR] 
[ERROR] Dependency convergence error for commons-io:commons-io:jar:2.13.0 paths to dependency are:
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR]         +-org.apache.commons:commons-fileupload2-jakarta:jar:2.0.0-M1:compile
[ERROR]           +-org.apache.commons:commons-fileupload2-core:jar:2.0.0-M1:compile
[ERROR]             +-commons-io:commons-io:jar:2.13.0:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR]         +-org.apache.commons:commons-fileupload2-jakarta:jar:2.0.0-M1:compile
[ERROR]           +-commons-io:commons-io:jar:2.13.0:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR]         +-commons-io:commons-io:jar:2.16.1:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR]         +-org.apache.commons:commons-compress:jar:1.26.1:compile
[ERROR]           +-commons-io:commons-io:jar:2.15.1:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-core:jar:24.4.3:compile
[ERROR]       +-com.vaadin:vaadin-dev:jar:24.4.3:compile
[ERROR]         +-com.vaadin:vaadin-dev-server:jar:24.4.2:compile
[ERROR]           +-com.vaadin:open:jar:8.5.0:compile
[ERROR]             +-commons-io:commons-io:jar:2.11.0:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-commons-io:commons-io:jar:2.13.0:compile
[ERROR] 
[ERROR] 
[ERROR] Dependency convergence error for org.springframework:spring-expression:jar:6.1.8 paths to dependency are:
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.springframework:spring-webmvc:jar:6.1.8:compile
[ERROR]         +-org.springframework:spring-context:jar:6.1.8:compile
[ERROR]           +-org.springframework:spring-expression:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.springframework:spring-webmvc:jar:6.1.8:compile
[ERROR]         +-org.springframework:spring-expression:jar:6.1.8:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-org.springframework.security:spring-security-core:jar:6.2.4:compile
[ERROR]           +-org.springframework:spring-expression:jar:6.1.6:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-org.springframework:spring-expression:jar:6.1.8:compile
[ERROR] 
[ERROR] 
[ERROR] Dependency convergence error for io.micrometer:micrometer-observation:jar:1.12.6 paths to dependency are:
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-org.springframework:spring-webmvc:jar:6.1.8:compile
[ERROR]         +-org.springframework:spring-context:jar:6.1.8:compile
[ERROR]           +-io.micrometer:micrometer-observation:jar:1.12.6:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-org.springframework.security:spring-security-core:jar:6.2.4:compile
[ERROR]           +-io.micrometer:micrometer-observation:jar:1.12.5:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-org.springframework.boot:spring-boot-starter-web:jar:3.2.6:compile
[ERROR]       +-org.springframework:spring-web:jar:6.1.8:compile
[ERROR]         +-io.micrometer:micrometer-observation:jar:1.12.6:compile
[ERROR] 
[ERROR] 
[ERROR] Dependency convergence error for com.fasterxml.jackson.core:jackson-databind:jar:2.17.0 paths to dependency are:
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR]         +-com.fasterxml.jackson.core:jackson-databind:jar:2.17.0:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:vaadin-spring:jar:24.4.2:compile
[ERROR]       +-com.vaadin:flow-server:jar:24.4.2:compile
[ERROR]         +-com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.17.0:compile
[ERROR]           +-com.fasterxml.jackson.core:jackson-databind:jar:2.17.0:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.vaadin:hilla-engine-core:jar:24.4.1:compile
[ERROR]           +-com.vaadin:hilla-parser-jvm-core:jar:24.4.1:compile
[ERROR]             +-com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:jar:2.17.0:compile
[ERROR]               +-com.fasterxml.jackson.core:jackson-databind:jar:2.17.0:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.fasterxml.jackson.core:jackson-databind:jar:2.15.4:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.15.4:compile
[ERROR]           +-com.fasterxml.jackson.core:jackson-databind:jar:2.15.4:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-com.vaadin:hilla:jar:24.4.1:compile
[ERROR]       +-com.vaadin:hilla-endpoint:jar:24.4.1:compile
[ERROR]         +-com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.15.4:compile
[ERROR]           +-com.fasterxml.jackson.core:jackson-databind:jar:2.15.4:compile
[ERROR] and
[ERROR] +-com.vaadin.test:test-comvergences:pom:0-SNAPSHOT
[ERROR]   +-com.vaadin:vaadin-spring-boot-starter:jar:24.4.3:compile
[ERROR]     +-org.springframework.boot:spring-boot-starter-web:jar:3.2.6:compile
[ERROR]       +-org.springframework.boot:spring-boot-starter-json:jar:3.2.6:compile
[ERROR]         +-com.fasterxml.jackson.core:jackson-databind:jar:2.15.4:compile
mcollovati commented 3 months ago

Most of the convergence issues disappear when using spring-boot-dependencies and vaadin-bom BOMs in dependency management. But still, there are problems with org.javassist:javassist and commons-io:commons-io, as mentioned by Zhe

ZheSun88 commented 2 months ago

have tested, with Vaadin 24.4.5, mention the dependency convergence issue has been resolved. it is recommended to use vaadin-bom as your dependencyMangement.

i close this ticket for now.