Skip to content

Commit

Permalink
Fix vaadin-uitest POM file errors (#12519)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
thevaadinman committed Apr 26, 2024
1 parent f2ac6ef commit 518da78
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion uitest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down Expand Up @@ -237,6 +237,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>
Expand Down Expand Up @@ -430,6 +435,7 @@
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<skip>true</skip>
Expand Down

0 comments on commit 518da78

Please sign in to comment.