Vaadin Start - Project base spring

I am having a challenge with start project for the project base spring. I am getting an error in the pom file:

Failed to read artifact descriptor for com.vaadin:vaadin-spring-boot-starter:jar:unknown less… (⌘F1)
Inspection info: Inspects a Maven model for resolution problems.

I am following the example for the vaadin chat tutorial.

Teddy L.

Do you use https://github.com/vaadin/skeleton-starter-flow-spring as is ?
Without any modifications ?

Denis Anisimov:
Do you use https://github.com/vaadin/skeleton-starter-flow-spring as is ?
Without any modifications ?

Yep used it without modification. I want to run the original app but its having challenges find the version of the maven plugin:

<groupId>com.vaadin</groupId>
         <artifactId>vaadin-maven-plugin</artifactId>
<version>${vaadin.version}</version> <!-- translates to 12.0.2 -->

The current version in the pom is 12.0.2 but the maven is failing to install dependencies even spring depemndencies are not being downloaded. The highted version that is available is 12.0.0.beta2.

I have attached the downloaded app.

Teddy L.

17437461.png
17437464.zip (53.7 KB)

Everything works fine for me.

May be you have some issues with maven.
Check your cache in your home .m2 repository.
Try to run with mvn dependency:purge-local-repository.

Denis Anisimov:
Everything works fine for me.

May be you have some issues with maven.
Check your cache in your home .m2 repository.
Try to run with mvn dependency:purge-local-repository.

Looks good. I did a mvn package and it working now. Thanks.