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 2021/01/20 15:23:40 UTC

[commons-bsf] branch master updated: Update from Java 1.3 to 7 to allow building in the simplest manner.

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-bsf.git


The following commit(s) were added to refs/heads/master by this push:
     new bbf70da  Update from Java 1.3 to 7 to allow building in the simplest manner.
bbf70da is described below

commit bbf70da2c22cb159741a2fef232297a346ac7a70
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Jan 20 10:23:35 2021 -0500

    Update from Java 1.3 to 7 to allow building in the simplest manner.
    
    The current version of Java (15) only supports compiling to Java 7 and
    up.
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 134e1db..802fb66 100644
--- a/pom.xml
+++ b/pom.xml
@@ -40,8 +40,8 @@
   <properties>
     <project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-    <maven.compiler.source>1.6</maven.compiler.source>
-    <maven.compiler.target>1.6</maven.compiler.target>
+    <maven.compiler.source>1.7</maven.compiler.source>
+    <maven.compiler.target>1.7</maven.compiler.target>
     <commons.componentid>bsf</commons.componentid>
     <commons.module.name>org.apache.commons.bsf</commons.module.name>
     <commons.release.version>2.4.0</commons.release.version>