Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

TUTORIALVaadin lets you build secure, UX-first PWAs entirely in Java.
Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Calling javascript synchronously by Enver Haase, 1 month ago
maven vaadin-bom not pulling in vaadin-client?
I am working on a vaadin spring boot project.
I have the following dependency management section in my pom:
<vaadin.version>7.6.2</vaadin.version>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-bom</artifactId>
<version>${vaadin.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement
When working with the CapsLockWarningConnector example from Book of Vaadin, it cannot find com.vaadin.client, com.google.gwt.event.dom, and com.google.gwt.user.client.ui classes. I have to add the following for it to find those classes:
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-client</artifactId>
<version>${vaadin.version}</version>
<scope>provided</scope>
</dependency
Shouldn't it be able to find it automatically given the dependency management section? I am using the vaadin-spring-boot-starter as well in case that makes a difference?
Last updated on
You cannot reply to this thread.