svn commit: r381934 - /ant/core/trunk/docs/manual/cover.html

2006-02-28 Thread jhm
Author: jhm Date: Tue Feb 28 23:00:02 2006 New Revision: 381934 URL: http://svn.apache.org/viewcvs?rev=381934&view=rev Log: Fix the "strange" bahaviour reported by Steve Meredith. Modified: ant/core/trunk/docs/manual/cover.html Modified: ant/core/trunk/docs/manual/cover.html URL: http://svn

Re: svn commit: r381780 - in /ant/core/trunk: WHATSNEW docs/manual/OptionalTasks/junit.html src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTestRunner.java src/main/org/apache/tools/ant/tas

2006-02-28 Thread Stefan Bodewig
On Tue, 28 Feb 2006, <[EMAIL PROTECTED]> wrote: > +Class junit4TestAdapterClass = null; > +// Note that checking for JDK 5 directly won't work; under > JDK 4, this will already have failed. > +try { > +if (loader == null) { > +

DO NOT REPLY [Bug 38811] New: - Support JUnit 4

2006-02-28 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 38811] - Support JUnit 4

2006-02-28 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 38811] - Support JUnit 4

2006-02-28 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

svn commit: r381780 - in /ant/core/trunk: WHATSNEW docs/manual/OptionalTasks/junit.html src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTestRunner.java src/main/org/apache/tools/ant/taskdef

2006-02-28 Thread jglick
Author: jglick Date: Tue Feb 28 13:07:15 2006 New Revision: 381780 URL: http://svn.apache.org/viewcvs?rev=381780&view=rev Log: #38811: support for JUnit 4.0. Modified: ant/core/trunk/WHATSNEW ant/core/trunk/docs/manual/OptionalTasks/junit.html ant/core/trunk/src/main/org/apache/tools

Re: Target

2006-02-28 Thread Stefan Bodewig
On Tue, 28 Feb 2006, Martijn Kruithof <[EMAIL PROTECTED]> wrote: > Anybody know why a Target isn't a ProjectComponent? Probably because Target predates ProjectComponent by far. Another reason might be that then you'd need special code that prevents targets from being added as nested elements of

Target

2006-02-28 Thread Martijn Kruithof
Hi Anybody know why a Target isn't a ProjectComponent? Martijn - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: svn commit: r381467 - in /ant/core/trunk: ./ docs/manual/ docs/manual/OptionalTasks/ src/main/org/apache/tools/ant/ src/main/org/apache/tools/ant/taskdefs/optional/junit/ xdocs/

2006-02-28 Thread Jesse Glick
Martijn Kruithof wrote: If it was working before it _should_ work the same way now (I hope!), For eclipse it was NOT working before (at least not without configuring junit to be available to ant in the preferences screen) That's what I meant by "working before" - that if you did include jun

svn commit: r381709 - /ant/core/trunk/docs/manual/CoreTasks/tar.html

2006-02-28 Thread jhm
Author: jhm Date: Tue Feb 28 09:10:04 2006 New Revision: 381709 URL: http://svn.apache.org/viewcvs?rev=381709&view=rev Log: extends not itself. Modified: ant/core/trunk/docs/manual/CoreTasks/tar.html Modified: ant/core/trunk/docs/manual/CoreTasks/tar.html URL: http://svn.apache.org/viewc

Re: Adding equals() and hashCode() methods to Task and Target

2006-02-28 Thread Steve Loughran
Robert Smith wrote: Hi Steve, Yes, I'm aware of it, its on the general list of "abuses of Ant", but on the mild scale compared to GridAnt or (possibly) Askalon. Ouch! Where can I find this list, and what can I do to get off of it? Its in my head. All you have to do is remember that ant is a

Re: Adding equals() and hashCode() methods to Task and Target

2006-02-28 Thread Robert Smith
Hi Steve, > Yes, I'm aware of it, its on the general list of "abuses of Ant", but on > the mild scale compared to GridAnt or (possibly) Askalon. Ouch! Where can I find this list, and what can I do to get off of it? > If its just the logger, dont you really need a special remote task > logger ins

Re: Adding equals() and hashCode() methods to Task and Target

2006-02-28 Thread Robert Smith
That's an excellent question! I haven't dug into the Ant code deeply enough to answer that. It's been years since I wrote the remote extensions. Does a Target or Task class exist for the lifetime of the project, or are references to them created when the Task/Target is started and removed when th

Re: Adding equals() and hashCode() methods to Task and Target

2006-02-28 Thread Steve Loughran
Robert Smith wrote: Hi all, Quite some time ago, I wrote a RemoteAnt implementation to allow portions of an Ant build to run remotely with synchronous logging back to the main Ant instance. You can find it at http://confluence.public.thoughtworks.org/display/CC/RobertsRemoteAnt. Yes, I'm aware

Re: Adding equals() and hashCode() methods to Task and Target

2006-02-28 Thread Martijn Kruithof
What would be the criteria for two taks / targets to be equal in the normal ant context? Normally I would say two distinct tasks / targets are never equal? Martijn Robert Smith schreef: Hi all, Quite some time ago, I wrote a RemoteAnt implementation to allow portions of an Ant build to run

Adding equals() and hashCode() methods to Task and Target

2006-02-28 Thread Robert Smith
Hi all, Quite some time ago, I wrote a RemoteAnt implementation to allow portions of an Ant build to run remotely with synchronous logging back to the main Ant instance. You can find it at http://confluence.public.thoughtworks.org/display/CC/RobertsRemoteAnt. I've hit a problem with the XmlLogger

Re: svn commit: r381467 - in /ant/core/trunk: ./ docs/manual/ docs/manual/OptionalTasks/ src/main/org/apache/tools/ant/ src/main/org/apache/tools/ant/taskdefs/optional/junit/ xdocs/

2006-02-28 Thread Martijn Kruithof
Jesse Glick schreef: If it was working before it _should_ work the same way now (I hope!), especially if both IDEA and Eclipse launch Ant out of VM (which I think they do but I'm not positive). -J. Hi For eclipse it was NOT working before (at least not without configuring junit to be av

Re: svn commit: r381467 - in /ant/core/trunk: ./ docs/manual/ docs/manual/OptionalTasks/ src/main/org/apache/tools/ant/ src/main/org/apache/tools/ant/taskdefs/optional/junit/ xdocs/

2006-02-28 Thread Jesse Glick
Steve Loughran wrote: I'll try running under IntelliJ idea to see how well it copes. Is there any Eclipse user out there who wants to do the same? If it was working before it _should_ work the same way now (I hope!), especially if both IDEA and Eclipse launch Ant out of VM (which I think they

DO NOT REPLY [Bug 38807] - Add an errorproperty parameter to task, like the junit task's

2006-02-28 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 38807] New: - Add an errorproperty parameter to task, like the junit task's

2006-02-28 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

svn commit: r381642 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/LoadFile.java

2006-02-28 Thread jkf
Author: jkf Date: Tue Feb 28 04:21:01 2006 New Revision: 381642 URL: http://svn.apache.org/viewcvs?rev=381642&view=rev Log: Removal of trailing ; Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/LoadFile.java Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Load

Re: svn commit: r381467 - in /ant/core/trunk: ./ docs/manual/ docs/manual/OptionalTasks/ src/main/org/apache/tools/ant/ src/main/org/apache/tools/ant/taskdefs/optional/junit/ xdocs/

2006-02-28 Thread Martijn Kruithof
Steve Loughran wrote: [EMAIL PROTECTED] wrote: Author: jglick Date: Mon Feb 27 14:24:26 2006 New Revision: 381467 URL: http://svn.apache.org/viewcvs?rev=381467&view=rev Log: #38799: task should work so long as junit.jar present in even if not among Ant libs. Added: ant/core/trunk/src/

Re: svn commit: r381467 - in /ant/core/trunk: ./ docs/manual/ docs/manual/OptionalTasks/ src/main/org/apache/tools/ant/ src/main/org/apache/tools/ant/taskdefs/optional/junit/ xdocs/

2006-02-28 Thread Steve Loughran
[EMAIL PROTECTED] wrote: Author: jglick Date: Mon Feb 27 14:24:26 2006 New Revision: 381467 URL: http://svn.apache.org/viewcvs?rev=381467&view=rev Log: #38799: task should work so long as junit.jar present in even if not among Ant libs. Added: ant/core/trunk/src/main/org/apache/tools/ant