You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2017/01/13 05:55:30 UTC

[1/2] ant git commit: Eclipse tries to write to systemClasspath - PR 60582

Repository: ant
Updated Branches:
  refs/heads/master fae6f19f4 -> f64dbc053


Eclipse tries to write to systemClasspath - PR 60582

thanks to @ebourg https://github.com/apache/ant/commit/984a03d1ceb6e4b5d194e4d639d0b0fca46d92be


Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/1348ebb9
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/1348ebb9
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/1348ebb9

Branch: refs/heads/master
Commit: 1348ebb91c17cbc8506d2a1e323c3bff408348c8
Parents: 0c38fb6
Author: Stefan Bodewig <bo...@apache.org>
Authored: Fri Jan 13 06:52:11 2017 +0100
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Fri Jan 13 06:54:02 2017 +0100

----------------------------------------------------------------------
 WHATSNEW                                      | 7 +++++++
 src/main/org/apache/tools/ant/types/Path.java | 3 ++-
 2 files changed, 9 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant/blob/1348ebb9/WHATSNEW
----------------------------------------------------------------------
diff --git a/WHATSNEW b/WHATSNEW
index e259f39..b8b10d2 100644
--- a/WHATSNEW
+++ b/WHATSNEW
@@ -1,6 +1,13 @@
 Changes from Ant 1.9.8 TO Ant 1.9.9
 ===================================
 
+Fixed bugs:
+-----------
+
+ * Ant 1.9.8 made Path#systemClasspath final which broke the Eclipse
+   integration.
+   Bugzilla Report 60582
+
 Changes from Ant 1.9.7 TO Ant 1.9.8
 ===================================
 

http://git-wip-us.apache.org/repos/asf/ant/blob/1348ebb9/src/main/org/apache/tools/ant/types/Path.java
----------------------------------------------------------------------
diff --git a/src/main/org/apache/tools/ant/types/Path.java b/src/main/org/apache/tools/ant/types/Path.java
index c4f244c..16270e3 100644
--- a/src/main/org/apache/tools/ant/types/Path.java
+++ b/src/main/org/apache/tools/ant/types/Path.java
@@ -66,8 +66,9 @@ import org.apache.tools.ant.util.JavaEnvUtils;
 public class Path extends DataType implements Cloneable, ResourceCollection {
     // CheckStyle:VisibilityModifier OFF - bc
 
+    // non-final as some IDE integrations (at least Eclipse) want to override it
     /** The system classpath as a Path object */
-    public static final Path systemClasspath =
+    public static Path systemClasspath = //NOSONAR
         new Path(null, System.getProperty("java.class.path"));
 
 


[2/2] ant git commit: Merge branch '1.9.x'

Posted by bo...@apache.org.
Merge branch '1.9.x'


Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/f64dbc05
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/f64dbc05
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/f64dbc05

Branch: refs/heads/master
Commit: f64dbc053813d0d908b1e2a8219f20d79d913d3e
Parents: fae6f19 1348ebb
Author: Stefan Bodewig <bo...@apache.org>
Authored: Fri Jan 13 06:55:12 2017 +0100
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Fri Jan 13 06:55:12 2017 +0100

----------------------------------------------------------------------
 WHATSNEW                                      | 7 +++++++
 src/main/org/apache/tools/ant/types/Path.java | 3 ++-
 2 files changed, 9 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant/blob/f64dbc05/WHATSNEW
----------------------------------------------------------------------
diff --cc WHATSNEW
index 540bc1c,b8b10d2..be10fa7
--- a/WHATSNEW
+++ b/WHATSNEW
@@@ -1,18 -1,15 +1,25 @@@
 -Changes from Ant 1.9.8 TO Ant 1.9.9
 -===================================
 +Changes from Ant 1.10.0 TO Ant 1.10.1
 +=====================================
  
+ Fixed bugs:
+ -----------
+ 
+  * Ant 1.9.8 made Path#systemClasspath final which broke the Eclipse
+    integration.
+    Bugzilla Report 60582
+ 
 -Changes from Ant 1.9.7 TO Ant 1.9.8
 -===================================
 +Other changes:
 +--------------
 +
 + * new tasks <xz> and <unxz> and resource <xzresource> for XZ
 +   compression. Also the compression attribute of <tar>/<untar> now
 +   accepts "xz" as valid value.
 +   The tasks and type are contained in the new ant-xz.jar and require
 +   the library XZ for Java to be on the CLASSPATH.
 +   Bugzilla Report 60350
 +
 +Changes from Ant 1.9.7 TO Ant 1.10.0
 +====================================
  
  Changes that could break older environments:
  -------------------------------------------