Project Vaadin error in "pom.xml"

1

I created a Maven project and I was putting the dependencies, I got the error in the pom related to the servlet dependency .

<dependency>
   <groupId>javax.servlet</groupId>
   <artifactId>servlet-api</artifactId>
   <version>3.0.1</version>
   <scope>provided</scope>
</dependency>

I'm using Java 7, Tomcat 7 and Vaadin 7.3.4

    
asked by anonymous 11.11.2014 / 18:11

1 answer

0

Version 3.0.1 does not yet exist, looking in the central repository , I believe you want to version 3.0-alpha-1 .

Use dependency like this:

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>servlet-api</artifactId>
    <version>3.0-alpha-1</version>
    <scope>provided</scope>
</dependency>
    
11.11.2014 / 18:24