diff options
author | Patrik Lindström <99639133+thevaadinman@users.noreply.github.com> | 2024-04-26 16:33:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-26 16:33:30 +0300 |
commit | 518da788f6b16ca2070759800abc8f80055c249a (patch) | |
tree | f5313c7c6751e3f1a06ec4cb25da4c2757b1a878 | |
parent | f2ac6efffb8cdcf7bed128049e6c06a46e023942 (diff) | |
download | vaadin-framework-518da788f6b16ca2070759800abc8f80055c249a.tar.gz vaadin-framework-518da788f6b16ca2070759800abc8f80055c249a.zip |
Fix vaadin-uitest POM file errors (#12519)7.7.43
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.
-rw-r--r-- | uitest/pom.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/uitest/pom.xml b/uitest/pom.xml index b75cc3deb8..d00c38c138 100644 --- a/uitest/pom.xml +++ b/uitest/pom.xml @@ -175,7 +175,7 @@ <!-- Jetty requires 3.1.0 --> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> - <version>3.1.0</version> + <version>3.1.0</version> <!--$NO-MVN-MAN-VER$--> <scope>provided</scope> </dependency> @@ -238,6 +238,11 @@ <plugins> <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-war-plugin</artifactId> + <version>3.3.1</version> + </plugin> + <plugin> <groupId>com.vaadin</groupId> <artifactId>vaadin-maven-plugin</artifactId> <configuration> @@ -430,6 +435,7 @@ </configuration> </plugin> <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <skip>true</skip> |