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 dfd1d25 Remove old Java version cruft and keep existing Java LTS entries dfd1d25 is described below commit dfd1d25b1b7711a943aec9c3d7ce089d1d698756 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Jul 21 17:33:18 2023 -0400 Remove old Java version cruft and keep existing Java LTS entries --- pom.xml | 75 ----------------------------------------------------------------- 1 file changed, 75 deletions(-) diff --git a/pom.xml b/pom.xml index 3b96e03..d1e74f4 100644 --- a/pom.xml +++ b/pom.xml @@ -1685,21 +1685,6 @@ </build> </profile> - <!-- - 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> - <id>java-1.7</id> - <properties> - <commons.compiler.fork>true</commons.compiler.fork> - <commons.compiler.compilerVersion>1.7</commons.compiler.compilerVersion> - <commons.compiler.javac>${JAVA_1_7_HOME}/bin/javac</commons.compiler.javac> - <commons.compiler.javadoc>${JAVA_1_7_HOME}/bin/javadoc</commons.compiler.javadoc> - <commons.surefire.java>${JAVA_1_7_HOME}/bin/java</commons.surefire.java> - </properties> - </profile> - <!-- 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) @@ -1715,36 +1700,6 @@ </properties> </profile> - <!-- - 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> - <id>java-1.9</id> - <properties> - <commons.compiler.fork>true</commons.compiler.fork> - <commons.compiler.compilerVersion>1.9</commons.compiler.compilerVersion> - <commons.compiler.javac>${JAVA_1_9_HOME}/bin/javac</commons.compiler.javac> - <commons.compiler.javadoc>${JAVA_1_9_HOME}/bin/javadoc</commons.compiler.javadoc> - <commons.surefire.java>${JAVA_1_9_HOME}/bin/java</commons.surefire.java> - </properties> - </profile> - - <!-- - 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> - <id>java-1.10</id> - <properties> - <commons.compiler.fork>true</commons.compiler.fork> - <commons.compiler.compilerVersion>1.10</commons.compiler.compilerVersion> - <commons.compiler.javac>${JAVA_1_10_HOME}/bin/javac</commons.compiler.javac> - <commons.compiler.javadoc>${JAVA_1_10_HOME}/bin/javadoc</commons.compiler.javadoc> - <commons.surefire.java>${JAVA_1_10_HOME}/bin/java</commons.surefire.java> - </properties> - </profile> - <!-- 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) @@ -1760,36 +1715,6 @@ </properties> </profile> - <!-- - 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> - <id>java-1.12</id> - <properties> - <commons.compiler.fork>true</commons.compiler.fork> - <commons.compiler.compilerVersion>1.12</commons.compiler.compilerVersion> - <commons.compiler.javac>${JAVA_1_12_HOME}/bin/javac</commons.compiler.javac> - <commons.compiler.javadoc>${JAVA_1_12_HOME}/bin/javadoc</commons.compiler.javadoc> - <commons.surefire.java>${JAVA_1_12_HOME}/bin/java</commons.surefire.java> - </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.compiler.javadoc>${JAVA_1_13_HOME}/bin/javadoc</commons.compiler.javadoc> - <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 -->