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

mbien 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 fc01ac3  javac wrapper module should clean its "external" folder.
     new 6cf2bda  Merge pull request #3392 from mbien/javac-clean
fc01ac3 is described below

commit fc01ac3c86178e5f5e76bbff3a055f367780005f
Author: Michael Bien <[email protected]>
AuthorDate: Tue Dec 28 20:42:57 2021 +0100

    javac wrapper module should clean its "external" folder.
    
     - caused compiler errors since several javac versions were in cp
     - removed javac.source property since the module has no sources anyway
---
 java/libs.javacapi/build.xml                    | 7 +++++++
 java/libs.javacapi/nbproject/project.properties | 1 -
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/java/libs.javacapi/build.xml b/java/libs.javacapi/build.xml
index a5f1abb..1831229 100644
--- a/java/libs.javacapi/build.xml
+++ b/java/libs.javacapi/build.xml
@@ -32,4 +32,11 @@
         <antcall target="projectized.-release.files" />
     </target>
     <target name="-release.files" 
depends="-check-nb-javac-exists,-release.files-build-javac,-release.files-delegate"
 />
+    <target name="clean" depends="projectized.clean">
+        <delete failonerror="false">
+            <fileset dir="external">
+                <include name="*.jar"/>
+            </fileset>
+        </delete>
+    </target>
 </project>
diff --git a/java/libs.javacapi/nbproject/project.properties 
b/java/libs.javacapi/nbproject/project.properties
index 1d9e90f..419b78c 100644
--- a/java/libs.javacapi/nbproject/project.properties
+++ b/java/libs.javacapi/nbproject/project.properties
@@ -17,7 +17,6 @@
 build.compiler.debug=false
 build.compiler.deprecation=false
 is.autoload=true
-javac.source=1.6
 javadoc.title=Javac API
 nbm.homepage=http://jackpot.netbeans.org/
 nbm.module.author=Petr Hrebejk

---------------------------------------------------------------------
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