]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix vaadin-uitest POM file errors (#12519) 7.7.43
authorPatrik Lindström <99639133+thevaadinman@users.noreply.github.com>
Fri, 26 Apr 2024 13:33:30 +0000 (16:33 +0300)
committerGitHub <noreply@github.com>
Fri, 26 Apr 2024 13:33:30 +0000 (16:33 +0300)
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.

uitest/pom.xml

index b75cc3deb895286239956bed11aa60ed63fc7a1e..d00c38c13855378fcdd6b142dd295ee06e3871f4 100644 (file)
             <!-- 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>
 
 
 
         <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>
                 </plugin>
                 <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-javadoc-plugin</artifactId>
                     <configuration>
                         <skip>true</skip>