You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/02/17 18:19:59 UTC

[commons-parent] branch master updated: Add profile java-1.13.

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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-parent.git


The following commit(s) were added to refs/heads/master by this push:
     new 8fa6d74  Add profile java-1.13.
8fa6d74 is described below

commit 8fa6d74071692ea6d05db414a7344ed784c28bf4
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Feb 17 13:19:55 2020 -0500

    Add profile java-1.13.
---
 pom.xml | 26 ++++++++++++++++++++------
 1 file changed, 20 insertions(+), 6 deletions(-)

diff --git a/pom.xml b/pom.xml
index 52c59d5..0049a25 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1602,7 +1602,7 @@
     </profile>
 
     <!--
-      Profile for running the build using JDK 1.7
+      Profile for running the build using JDK 7
       (JAVA_1_7_HOME needs to be defined, e.g. in settings.xml or an environment variable)
     -->
     <profile>
@@ -1616,7 +1616,7 @@
     </profile>
 
     <!--
-      Profile for running the build using JDK 1.8
+      Profile for running the build using JDK 8
       (JAVA_1_8_HOME needs to be defined, e.g. in settings.xml or an environment variable)
     -->
     <profile>
@@ -1630,7 +1630,7 @@
     </profile>
 
     <!--
-      Profile for running the build using JDK 1.9
+      Profile for running the build using JDK 9
       (JAVA_1_9_HOME needs to be defined, e.g. in settings.xml or an environment variable)
     -->
     <profile>
@@ -1644,7 +1644,7 @@
     </profile>
 
     <!--
-      Profile for running the build using JDK 1.10
+      Profile for running the build using JDK 10
       (JAVA_1_10_HOME needs to be defined, e.g. in settings.xml or an environment variable)
     -->
     <profile>
@@ -1658,7 +1658,7 @@
     </profile>
 
     <!--
-      Profile for running the build using JDK 1.11
+      Profile for running the build using JDK 11
       (JAVA_1_11_HOME needs to be defined, e.g. in settings.xml or an environment variable)
     -->
     <profile>
@@ -1672,7 +1672,7 @@
     </profile>
 
     <!--
-      Profile for running the build using JDK 1.12
+      Profile for running the build using JDK 12
       (JAVA_1_12_HOME needs to be defined, e.g. in settings.xml or an environment variable)
     -->
     <profile>
@@ -1685,6 +1685,20 @@
       </properties>
     </profile>
 
+    <!--
+      Profile for running the build using JDK 13
+      (JAVA_1_13_HOME needs to be defined, e.g. in settings.xml or an environment variable)
+    -->
+    <profile>
+      <id>java-1.13</id>
+      <properties>
+        <commons.compiler.fork>true</commons.compiler.fork>
+        <commons.compiler.compilerVersion>1.13</commons.compiler.compilerVersion>
+        <commons.compiler.javac>${JAVA_1_13_HOME}/bin/javac</commons.compiler.javac>
+        <commons.surefire.java>${JAVA_1_13_HOME}/bin/java</commons.surefire.java>
+      </properties>
+    </profile>
+
     <!-- N.B. when adding new java profiles, be sure to update
       the _removeheaders list in the maven_bundle_plugin configuration -->