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

matthiasblaesing pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
     new 640e4e6  [NETBEANS-2639] Compile mavensrc to Java 7, not 8.
     new 6417f2f  Merge pull request #1281 from jglick/NbEventSpy-NETBEANS-2639
640e4e6 is described below

commit 640e4e64cf7171192faf8bd90821ee65f2cf5ffe
Author: Jesse Glick <[email protected]>
AuthorDate: Tue Jun 4 11:23:57 2019 -0400

    [NETBEANS-2639] Compile mavensrc to Java 7, not 8.
---
 java/maven/build.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/java/maven/build.xml b/java/maven/build.xml
index 756f254..d406bde 100644
--- a/java/maven/build.xml
+++ b/java/maven/build.xml
@@ -30,8 +30,8 @@
         <javac srcdir="mavensrc" destdir="build/mavenclasses" 
             debug="${build.compiler.debug}" 
             deprecation="${build.compiler.deprecation}" 
-            source="${javac.source}" 
-            target="${javac.target}" 
+            source="1.7"
+            target="1.7"
             includeantruntime="false">
             <classpath>
                 <fileset dir="${maven.embedder.dir}/maven/lib">


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to