You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2023/01/23 15:29:55 UTC

[commons-jelly] branch master updated: Replace stale java version with variable reference

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 275b6889 Replace stale java version with variable reference
275b6889 is described below

commit 275b6889386c16b4a12d6b9ffa7f66cc96fb16c2
Author: Sebb <se...@apache.org>
AuthorDate: Mon Jan 23 15:29:49 2023 +0000

    Replace stale java version with variable reference
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index c35a967f..6b5bc018 100644
--- a/pom.xml
+++ b/pom.xml
@@ -343,8 +343,8 @@
             <debug>true</debug>
             <optimize>false</optimize>
             <showDeprecation>true</showDeprecation>
-            <source>1.5</source>
-            <target>1.5</target>
+            <source>${maven.compiler.source}</source>
+            <target>${maven.compiler.source}</target>
           </configuration>
         </plugin>
         <plugin>