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 3712bd7 INFRA-18619 Add toolchain profile for Java 14
3712bd7 is described below
commit 3712bd74da8ce58919299ab4fd6d157e96af5412
Author: Martin Tzvetanov Grigorov <[email protected]>
AuthorDate: Sun Jun 16 09:41:18 2019 +0300
INFRA-18619 Add toolchain profile for Java 14
Once INFRA-18619 is resolved we need to change our Buildbot config to make
use of it
---
pom.xml | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/pom.xml b/pom.xml
index 5bc50a6..747732f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1423,6 +1423,32 @@
</plugins>
</build>
</profile>
+ <profile>
+ <id>java14</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>14</version>
+ </jdk>
+ </toolchains>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
</profiles>
<reporting>
<plugins>