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 2022/09/18 12:38:27 UTC

[commons-parent] branch master updated: Drop Maven profiles for Java 1.3 through 1.6

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 abddf33  Drop Maven profiles for Java 1.3 through 1.6
abddf33 is described below

commit abddf33ca90aa023ea8a18cec4cd441981169e76
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Sep 18 08:38:23 2022 -0400

    Drop Maven profiles for Java 1.3 through 1.6
---
 pom.xml | 62 --------------------------------------------------------------
 1 file changed, 62 deletions(-)

diff --git a/pom.xml b/pom.xml
index b3906a5..3a47620 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1689,68 +1689,6 @@
       </build>
     </profile>
 
-    <!--
-      Profile for running the build using JDK 1.3
-      (JAVA_1_3_HOME needs to be defined, e.g. in settings.xml or an environment variable)
-    -->
-    <profile>
-      <id>java-1.3</id>
-      <properties>
-        <commons.compiler.fork>true</commons.compiler.fork>
-        <commons.compiler.compilerVersion>1.3</commons.compiler.compilerVersion>
-        <commons.compiler.javac>${JAVA_1_3_HOME}/bin/javac</commons.compiler.javac>
-        <commons.compiler.javadoc>${JAVA_1_3_HOME}/bin/javadoc</commons.compiler.javadoc>
-        <commons.surefire.java>${JAVA_1_3_HOME}/bin/java</commons.surefire.java>
-      </properties>
-    </profile>
-
-    <!--
-      Profile for running the build using JDK 1.4
-      (JAVA_1_4_HOME needs to be defined, e.g. in settings.xml or an environment variable)
-    -->
-    <profile>
-      <id>java-1.4</id>
-      <properties>
-        <commons.compiler.fork>true</commons.compiler.fork>
-        <commons.compiler.compilerVersion>1.4</commons.compiler.compilerVersion>
-        <commons.compiler.javac>${JAVA_1_4_HOME}/bin/javac</commons.compiler.javac>
-        <commons.compiler.javadoc>${JAVA_1_4_HOME}/bin/javadoc</commons.compiler.javadoc>
-        <commons.surefire.java>${JAVA_1_4_HOME}/bin/java</commons.surefire.java>
-        <!-- later versions of surefire don't support Java 1.4 -->
-        <commons.surefire.version>2.11</commons.surefire.version>
-      </properties>
-    </profile>
-
-    <!--
-      Profile for running the build using JDK 1.5
-      (JAVA_1_5_HOME needs to be defined, e.g. in settings.xml or an environment variable)
-    -->
-    <profile>
-      <id>java-1.5</id>
-      <properties>
-        <commons.compiler.fork>true</commons.compiler.fork>
-        <commons.compiler.compilerVersion>1.5</commons.compiler.compilerVersion>
-        <commons.compiler.javac>${JAVA_1_5_HOME}/bin/javac</commons.compiler.javac>
-        <commons.compiler.javadoc>${JAVA_1_5_HOME}/bin/javadoc</commons.compiler.javadoc>
-        <commons.surefire.java>${JAVA_1_5_HOME}/bin/java</commons.surefire.java>
-      </properties>
-    </profile>
-
-    <!--
-      Profile for running the build using JDK 1.6
-      (JAVA_1_6_HOME needs to be defined, e.g. in settings.xml or an environment variable)
-    -->
-    <profile>
-      <id>java-1.6</id>
-      <properties>
-        <commons.compiler.fork>true</commons.compiler.fork>
-        <commons.compiler.compilerVersion>1.6</commons.compiler.compilerVersion>
-        <commons.compiler.javac>${JAVA_1_6_HOME}/bin/javac</commons.compiler.javac>
-        <commons.compiler.javadoc>${JAVA_1_6_HOME}/bin/javadoc</commons.compiler.javadoc>
-        <commons.surefire.java>${JAVA_1_6_HOME}/bin/java</commons.surefire.java>
-      </properties>
-    </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)