You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2021/06/14 12:03:06 UTC

[wicket] branch master updated: Add a profile for JDK 18

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

mgrigorov 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 f378888  Add a profile for JDK 18
f378888 is described below

commit f37888823f8e5a33e07658687000fcbd34932ad5
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
AuthorDate: Mon Jun 14 15:02:25 2021 +0300

    Add a profile for JDK 18
    
    (cherry picked from commit a81a499cd0b223842c77b4f0423f04efc49c837b)
---
 pom.xml | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/pom.xml b/pom.xml
index b7cd085..bfbee5a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1554,6 +1554,32 @@
 				</plugins>
 			</build>
 		</profile>
+		<profile>
+			<id>java18</id>
+			<build>
+				<plugins>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-toolchains-plugin</artifactId>
+						<version>${maven-toolchains-plugin.version}</version>
+						<executions>
+							<execution>
+								<goals>
+									<goal>toolchain</goal>
+								</goals>
+							</execution>
+						</executions>
+						<configuration>
+							<toolchains>
+								<jdk>
+									<version>18</version>
+								</jdk>
+							</toolchains>
+						</configuration>
+					</plugin>
+				</plugins>
+			</build>
+		</profile>
 	</profiles>
 	<reporting>
 		<plugins>