Re: AW: Building Ant 1.7beta

2006-08-29 Thread Kev Jackson
> Especially: you know only the Ant src-version present (the current > version). > You dont know which binary-version of Ant is installed (Ant 1.6.5, 1.5, > 14?) > That means your buildfile must be "very" bwc ... Basically we improve Ant and add new features so that we can refactor the ant build.

[EMAIL PROTECTED]: Project dotnet-antlib-test (in module ant-antlibs) failed

2006-08-29 Thread Gump Integration Build
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project dotnet-antlib-test has an issue affecting its community integration. This issue a

DO NOT REPLY [Bug 38732] - rmic task doesn't work with -Xnew and JDK 6.0

2006-08-29 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 40342] New: - Regression: rmic generates 1.1 stubs by default

2006-08-29 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

[EMAIL PROTECTED]: Project svn-antlib-test (in module ant-antlibs) failed

2006-08-29 Thread Gump Integration Build
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project svn-antlib-test has an issue affecting its community integration. This issue affe

svn commit: r438045 - /ant/site/generated/

2006-08-29 Thread antoine
Author: antoine Date: Tue Aug 29 03:54:36 2006 New Revision: 438045 URL: http://svn.apache.org/viewvc?rev=438045&view=rev Log: added a link to the manual of the beta version Modified: ant/site/generated/ (props changed) Propchange: ant/site/generated/ --

svn commit: r438046 - in /ant/core/trunk: docs/index.html xdocs/index.xml

2006-08-29 Thread antoine
Author: antoine Date: Tue Aug 29 04:03:21 2006 New Revision: 438046 URL: http://svn.apache.org/viewvc?rev=438046&view=rev Log: added a link to the manual of the beta Modified: ant/core/trunk/docs/index.html ant/core/trunk/xdocs/index.xml Modified: ant/core/trunk/docs/index.html URL: htt

Re: [site] Separate svn directoy for WebSite?

2006-08-29 Thread Antoine Levy-Lambert
Stefan Bodewig wrote: > If you are talking about the site directory in svn, this really just > holds a build.xml, a lib directory populated by hand, an empty > directory and two svn:externals. I haven't finished work on it (but > do have a plan 8-). Can you tell us what is your plan ? Maybe some

DO NOT REPLY [Bug 38732] - rmic task doesn't work with -Xnew and JDK 6.0

2006-08-29 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: r438081 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java

2006-08-29 Thread mbenson
Author: mbenson Date: Tue Aug 29 07:43:54 2006 New Revision: 438081 URL: http://svn.apache.org/viewvc?rev=438081&view=rev Log: moved space append so that final deletion is unnecessary. Minor javadoc and formatting changes. Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Manife

Re: classloader for 1.7

2006-08-29 Thread Peter Reilly
I can see some problems with this approach. The classloader hierarchy currently is: (using bootstrap (rt.jar etc) extension (jre/lib/ext/*.jar) system loader (ant-launcher.jar) project (ant.jar + contents of $ANT_HOME/lib + ~/.ant/lib) taskdef ... For netbeans the hierarchy is similar: bootstr

Re: classloader for 1.7

2006-08-29 Thread Peter Reilly
On 8/25/06, Stephen McConnell <[EMAIL PROTECTED]> wrote: Given that a solution that limits mutation to the system classloaderprovides the potential solution for all requirements - I think it is thesafer next step (i.e. update the class in SCN to handle a URLClassLoader, with formal documented e

RE: classloader for 1.7

2006-08-29 Thread Stephen McConnell
_ From: Peter Reilly [mailto:[EMAIL PROTECTED] Sent: Wednesday, 30 August 2006 2:20 AM To: Ant Developers List Subject: Re: classloader for 1.7 On 8/25/06, Stephen McConnell <[EMAIL PROTECTED]> wrote: Given that a solution that limits mutation to the system classloader prov

Re: svn commit: r438081 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java

2006-08-29 Thread Dominique Devienne
On 8/29/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: moved space append so that final deletion is unnecessary. Minor javadoc and formatting changes. for (int i = 0; i < elements.length; ++i) { +if (i > 0) { +buffer.append(' '); +} ...

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

2006-08-29 Thread mbenson
Author: mbenson Date: Tue Aug 29 11:51:27 2006 New Revision: 438159 URL: http://svn.apache.org/viewvc?rev=438159&view=rev Log: compromise with DD Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java Modified: ant/core/trunk/src/main/org/apache/tools/ant/tas

Re: svn commit: r438159 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java

2006-08-29 Thread Matt Benson
How about this, DD? -Matt --- [EMAIL PROTECTED] wrote: > Author: mbenson > Date: Tue Aug 29 11:51:27 2006 > New Revision: 438159 > > URL: > http://svn.apache.org/viewvc?rev=438159&view=rev > Log: > compromise with DD > > Modified: > > ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/M

Re: svn commit: r438159 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java

2006-08-29 Thread Dominique Devienne
On 8/29/06, Matt Benson <[EMAIL PROTECTED]> wrote: How about this, DD? You didn't need to change it back Matt. I was simply expressing my opinion on the matter, and it's a style issue really. The latest version is less code and it's clean, but unlike the setLength call on StringBuffer, it's not

[Ant Wiki] Update of "ExternalResources" by LudovicFernandez

2006-08-29 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ant Wiki" for change notification. The following page has been changed by LudovicFernandez: http://wiki.apache.org/ant/ExternalResources -- * [h

DO NOT REPLY [Bug 25704] - Support for Sun Solaris' Tar Format for long file name

2006-08-29 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 25704] - Support for Sun Solaris' Tar Format for long file name

2006-08-29 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

Re: classloader for 1.7

2006-08-29 Thread Jesse Glick
Peter Reilly wrote: So what would be the hier for the secondary class loader? if it is bootstrap->ext->system->project->secondary, Yes. it would meant that the classes in project would not be able to see the secondary classes. Correct. Why is this a problem? Ant core classes should not be r

Re: Building Ant 1.7beta

2006-08-29 Thread Jesse Glick
Stefan Bodewig wrote: Sometimes we build new features that are useful enough to apply the right away in Ant's own build file. Obviously. But it seems to me that the convenience of the many users of Ant (sources) outstrips the convenience of the few Ant developers. For example, it is impossibl

Re: Building Ant 1.7beta

2006-08-29 Thread Alexey Solofnenko
Bootstrapping works fine. Maybe there are bugs and it should be smarter, but it seems reasonable. - Alexey. On 8/29/06, Jesse Glick <[EMAIL PROTECTED]> wrote: Stefan Bodewig wrote: > Sometimes we build new features that are useful enough to apply the > right away in Ant's own build file. Obvi

Re: Building Ant 1.7beta

2006-08-29 Thread Antoine Levy-Lambert
Hello Jesse, when someone is developing ant inside an IDE, I believe that the IDE's default functionality is good enough to work, because ant is for the most part a java library. you can modify ant classes in the IDE, then run the corresponding JUnit tests, and you do not need all the boo

Bug# 36903

2006-08-29 Thread DHARNA, AJAY [AG/1000]
I wanted to know if anyone found a solution to this bug issue - I am using Ant 1.6.1 and have the waitfor task: This doesn't stop after the default max wait time of 3 minutes - if I was to take the url and put it in a web browser, the URL does not get returned at all - is there a work

Re: Building Ant 1.7beta

2006-08-29 Thread Stefan Bodewig
On Tue, 29 Aug 2006, Kev Jackson <[EMAIL PROTECTED]> wrote: > OT slightly, does ant build maven in gump? No. Well, for Maven 1 it tries but never managed to do so. I don't think you can build Maven 2 with Ant at all, it bootstraps itself much like Ant does. Stefan

Re: Building Ant 1.7beta

2006-08-29 Thread Stefan Bodewig
On Tue, 29 Aug 2006, Jesse Glick <[EMAIL PROTECTED]> wrote: > Stefan Bodewig wrote: >> Sometimes we build new features that are useful enough to apply the >> right away in Ant's own build file. > > Obviously. But it seems to me that the convenience of the many users > of Ant (sources) outstrips th

svn commit: r438375 - in /ant/core/trunk: docs/antlibs/bindownload.cgi docs/antlibs/bindownload.html docs/antlibs/srcdownload.cgi docs/antlibs/srcdownload.html xdocs/antlibs/bindownload.xml xdocs/antl

2006-08-29 Thread bodewig
Author: bodewig Date: Tue Aug 29 22:21:54 2006 New Revision: 438375 URL: http://svn.apache.org/viewvc?rev=438375&view=rev Log: Prepare for Antlib releases, not linked from anywhere, yet Added: ant/core/trunk/docs/antlibs/bindownload.cgi - copied unchanged from r438371, ant/core/trunk/do