I am using Vaadin 8 and want to add-on latest 3.0.0.beta1 vaadin-context-menu. The maven update and build works fine but Tomcat fails to start with
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-context-menu</artifactId>
<version>3.0.0.beta1</version>
</dependency>
I am getting Error with Message "java.util.zip.ZipException: invalid LOC header (bad signature)"
However, I able to successfully implement Context Menu for version 2.1.0
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-context-menu</artifactId>
<version>2.1.0</version>
</dependency>