Browse Source

Fix vaadin-uitest POM file errors

Maven complains about errors in the POM for uitest - "could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer" and about the 'skip' option being incorrect for maven-javadoc-plugin (because it was missing a groupid declaration). Also silenced error for explicitly set javax.servlet-api version.
pull/12519/head
Patrik Lindström 2 years ago
parent
commit
b9af66e6e6
1 changed files with 7 additions and 1 deletions
  1. 7
    1
      uitest/pom.xml

+ 7
- 1
uitest/pom.xml View File

<!-- Jetty requires 3.1.0 --> <!-- Jetty requires 3.1.0 -->
<groupId>javax.servlet</groupId> <groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId> <artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<version>3.1.0</version> <!--$NO-MVN-MAN-VER$-->
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>






<plugins> <plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin> <plugin>
<groupId>com.vaadin</groupId> <groupId>com.vaadin</groupId>
<artifactId>vaadin-maven-plugin</artifactId> <artifactId>vaadin-maven-plugin</artifactId>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>maven-javadoc-plugin</artifactId>
<configuration> <configuration>
<skip>true</skip> <skip>true</skip>

Loading…
Cancel
Save