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.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
vaadin-spring-addon-eventbus
Hello, I'm trying to use this maven dependensy in my project:
<groupId>org.vaadin.spring.addons</groupId>
<artifactId>vaadin-spring-addon-eventbus</artifactId>
<version>0.0.7.RELEASE</version>
but when I add this dependency, i get en error on
import com.vaadin.spring.annotation.SpringViewDisplay;
SpringViewDisplay is not found, because version of com.vaadin:vaadin-spring turns into 1.0.0
instead of 1.2.0
how can I fix it?
i have found how to exclude unwanted dependency, it's very simple:
<dependency>
<groupId>org.vaadin.spring.addons</groupId>
<artifactId>vaadin-spring-addon-eventbus</artifactId>
<version>0.0.7.RELEASE</version>
<exclusions>
<exclusion>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-spring</artifactId>
</exclusion>
</exclusions>
</dependency>
Hi Andrey,
if you are working with Vaadin 7 you should probably use 0.0.8-SNAPSHOT. I know it's not a release, but as far as I know 0.0.7 does not work well with the latest vaadin-spring version (1.2)
If you want to upgrade to Vaadin 8 you should use 2.0.0-SNAPSHOT.
Best regards,
Samuel