This is an automated email from the ASF dual-hosted git repository.
dashorst pushed a commit to branch wicket-9.x
in repository https://gitbox.apache.org/repos/asf/wicket.git
The following commit(s) were added to refs/heads/wicket-9.x by this push:
new a0ea2efe96 Upgrade archetype pom plugins
a0ea2efe96 is described below
commit a0ea2efe9665fda53166a520d455e829b8ad0a6b
Author: Martijn Dashorst <[email protected]>
AuthorDate: Tue Sep 13 22:14:15 2022 +0200
Upgrade archetype pom plugins
- maven-war-plugin from 2.2 (non-working) to 3.2.2 (working).
- removed the maven-eclipse-plugin that is obsolete by years
- upgraded maven-compiler plugiin
---
.../src/main/resources/archetype-resources/pom.xml | 18 +++++++-----------
1 file changed, 7 insertions(+), 11 deletions(-)
diff --git
a/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml
b/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml
index 1a41d1f418..a8488ad9ec 100644
--- a/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml
+++ b/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml
@@ -138,10 +138,10 @@
</testResources>
<plugins>
<plugin>
- <inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.0</version>
+ <version>3.10.1</version>
+ <inherited>true</inherited>
<configuration>
<source>11</source>
<target>11</target>
@@ -150,6 +150,11 @@
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-war-plugin</artifactId>
+ <version>3.3.2</version>
+ </plugin>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
@@ -164,15 +169,6 @@
<jettyXml>${project.basedir}/src/test/jetty/jetty.xml,${project.basedir}/src/test/jetty/jetty-ssl.xml,${project.basedir}/src/test/jetty/jetty-http.xml,${project.basedir}/src/test/jetty/jetty-https.xml</jettyXml>
</configuration>
</plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-eclipse-plugin</artifactId>
- <version>2.10</version>
- <configuration>
- <downloadSources>true</downloadSources>
- <wtpversion>${wtp.version}</wtpversion>
- </configuration>
- </plugin>
</plugins>
</build>