You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by ad...@apache.org on 2019/04/07 13:47:20 UTC

[wicket] branch master updated: Updated archetype pom to Java 11

This is an automated email from the ASF dual-hosted git repository.

adelbene pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
     new 290aad2  Updated archetype pom to Java 11
290aad2 is described below

commit 290aad22add48aa5663eae1b4aa25279047e7834
Author: Andrea Del Bene <ad...@apache.org>
AuthorDate: Sun Apr 7 15:46:37 2019 +0200

    Updated archetype pom to Java 11
---
 .../quickstart/src/main/resources/archetype-resources/pom.xml       | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml b/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml
index 3d49b04..1a41d1f 100644
--- a/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml
+++ b/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml
@@ -141,10 +141,10 @@
 				<inherited>true</inherited>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-compiler-plugin</artifactId>
-				<version>3.7.0</version>
+				<version>3.8.0</version>
 				<configuration>
-					<source>9</source>
-					<target>9</target>
+					<source>11</source>
+					<target>11</target>
 					<encoding>UTF-8</encoding>
 					<showWarnings>true</showWarnings>
 					<showDeprecation>true</showDeprecation>