I have a working project with Dropwizard and Vaadin7. I need to use Vaadin8 with the existing environment without removing vaadin7 code. Can I run my project by using Vaadin7 and Vaadin8 both version? As I am new to the Vaadin can anybody help me with some direction about how to solve this issue?
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-themes</artifactId>
<version>7.5.10</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-client-compiled</artifactId>
<version>7.5.10</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-client</artifactId>
<version>7.5.10</version>
</dependency>
This is my current vaadin configuration