Re: using subant with multiple projects with specific build order

2010-06-03 Thread videophool
e name="./M2TSTools/build.xml"/> <file name="./AsfTools/build.xml"/> <file name="./Mp4Tools/build.xml"/> <file name="./TimedTextTools/build.xml"/> </filelist> <target name="dev-all"&

Re: using subant with multiple projects with specific build order

2010-06-03 Thread videophool
ng it for multiple targets. Thanks. > > The manual has information about declaring & using references. > The manual, wow! Thanks for the great info. -- View this message in context: http://old.nabble.com/using-subant-with-multiple-projects-with-specific-build-order-tp28771184p287

Re: using subant with multiple projects with specific build order

2010-06-03 Thread Jeffrey E Care
videophool wrote on 06/03/2010 02:40:12 PM: > > IIRC you can use a filelist to enforce ordering. > > > > Any details or sample code would be greatly appreciated. Especially > declaring the filelist once and using it for multiple targets. Thanks. The manual has information about declaring & u

Re: using subant with multiple projects with specific build order

2010-06-03 Thread videophool
this message in context: http://old.nabble.com/using-subant-with-multiple-projects-with-specific-build-order-tp28771184p28771415.html Sent from the Ant - Dev mailing list archive at Nabble.com. - To unsubscribe, e-mai

Re: using subant with multiple projects with specific build order

2010-06-03 Thread Jeffrey E Care
videophool wrote on 06/03/2010 02:16:30 PM: > I am new to ant, and am setting up a master build.xml. There are several > projects (each with build.xml) that the master will build, and there is a > dependency chain so that they must be built in a specific order. All of the > sub

using subant with multiple projects with specific build order

2010-06-03 Thread videophool
I am new to ant, and am setting up a master build.xml. There are several projects (each with build.xml) that the master will build, and there is a dependency chain so that they must be built in a specific order. All of the subant examples that I find use dirset which does not allow control of

Re: SubAnt performance

2009-09-25 Thread Raja Nagendra Kumar
>Then I'd think subant is the wrong task in that context. I don't > understand why you'd be calling subant "on yourself" anyway. we have a target like 'clean' which deletes current directories 'build' folder and calls all the sub directories

Re: SubAnt performance

2009-09-25 Thread Stefan Bodewig
On 2009-09-25, Raja Nagendra Kumar wrote: >> isolation between the calling and thecalled project. > stefan, it is true of inherit* properties, however here are some > scenarios Then I'd think subant is the wrong task in that context. I don't understand why you'd be

Re: SubAnt performance

2009-09-24 Thread Raja Nagendra Kumar
ore interested in current module only (as there would be no sub build.xml files any way) 2. the inherit properties are set to true only and isolation is not a concern in such scenario. I know does complicate subant to be little context aware.. but if there are no side effects as in the above context, it co

Re: SubAnt performance

2009-09-24 Thread Stefan Bodewig
ect (inheritRefs), may not see the properties (inheritAll) may see temporarily redefined values for properties (nested param tags) - and nothing the called project does to references or properties has any effect on the calling project. All of that wouldn't be possible if subant was using the s

SubAnt performance

2009-09-24 Thread Raja Nagendra Kumar
://www.nabble.com/SubAnt-performance-tp25605193p25605193.html Sent from the Ant - Dev mailing list archive at Nabble.com. - To unsubscribe, e-mail: dev-unsubscr...@ant.apache.org For additional commands, e-mail: dev-h

AW: buildlist/subant in parallel

2009-01-28 Thread Jan.Materne
>> > Of particular concern is logging: your logger must be able to deal >with the >> > fact that you have projects running in parallel or your >logs will be >an >> > incomprehensible jumble. >> >> Thanks for the tip! Prefixing logging lines, and/or writing to >> separate log files per project l

Re: buildlist/subant in parallel

2009-01-28 Thread Jeffrey E Care
> > Of particular concern is logging: your logger must be able to deal with the > > fact that you have projects running in parallel or your logs will be an > > incomprehensible jumble. > > Thanks for the tip! Prefixing logging lines, and/or writing to > separate log files per project look like r

Re: buildlist/subant in parallel

2009-01-28 Thread Alex Iliev
On Wed, Jan 28, 2009 at 2:50 AM, Jeffrey E Care wrote: > Of particular concern is logging: your logger must be able to deal with the > fact that you have projects running in parallel or your logs will be an > incomprehensible jumble. Thanks for the tip! Prefixing logging lines, and/or writing to

Re: buildlist/subant in parallel

2009-01-28 Thread Alex Iliev
> I have written an executor which tries to parallelize a "normal" Ant > build. > http://svn.apache.org/repos/asf/ant/sandbox/parallelexecutor/ Thanks! I'll check it out. What is the policy for using Java 5 language features and APIs in ant? I wouldn't want to use wait/notify here - would have t

Re: buildlist/subant in parallel

2009-01-28 Thread Alex Iliev
> You might also have the ensure that your sub project can indeed be > build in parallel. The kind of issue you might have to solve are : > - Thread safety issue in some tasks > - Current access to some external ressources (database, repository, > file system, ...) I read about the non-reentrancy

AW: buildlist/subant in parallel

2009-01-28 Thread Jan.Materne
>I'm not aware of any implementation, but I think it might be an >excellent idea. It would be a good step in the direction of >concurrent build. > >However, note that implement the ivy-parallel-subant is not the only >thing you will have to do. >You might also hav

Re: buildlist/subant in parallel

2009-01-28 Thread Gilles Scokart
I'm not aware of any implementation, but I think it might be an excellent idea. It would be a good step in the direction of concurrent build. However, note that implement the ivy-parallel-subant is not the only thing you will have to do. You might also have the ensure that your sub projec

Re: buildlist/subant in parallel

2009-01-27 Thread Jeffrey E Care
n 01/27/2009 04:51:44 PM: > [image removed] > > buildlist/subant in parallel > > Alex Iliev > > to: > > dev > > 01/27/2009 04:53 PM > > Please respond to "Ant Developers List" > > I was thinking that the combination of ivy:buildlist and

Re: buildlist/subant in parallel

2009-01-27 Thread Petar Tahchiev
Hi Alex, I am not aware of anything in progress right now, but I think the idea is worth a shot. +1 from me :-) Cheers, Petar 2009/1/27 Alex Iliev > I was thinking that the combination of ivy:buildlist and subant is a > perfect candidate for parallelization: the dependency graph te

Re: buildlist/subant in parallel

2009-01-27 Thread Ivan "Rambius" Ivanov
Hello Alex, It is possible to introduce parallelism with ivy:buildlist and subant. I have not done it in this way explicitly. Instead we are using a customized version of CruiseControl that is able to sort out the projects using their ivy descriptors and then we run the CruiseControl builds in

buildlist/subant in parallel

2009-01-27 Thread Alex Iliev
I was thinking that the combination of ivy:buildlist and subant is a perfect candidate for parallelization: the dependency graph tells us exactly which Ivy modules can be built in parallel. I'd be interested in implementing some such functionality. Any thoughts from the list on whether some

Re: ivy settings classpath always creates new classloader when used with subant

2008-10-29 Thread Derek Baum
suggesting: 1) if I satisfy the prerequisite, then I won't need my suggested patch, or 2) my patch will only work if the prerequisite is satisfied? Assuming 1), I tried this, but when I didn't explicitly load ivysettings, a default was loaded instead and the build failed. Here&#

Re: ivy settings classpath always creates new classloader when used with subant

2008-10-17 Thread Derek Baum
ed instead and the build failed. Here's my subant target for the example multi-project/build.xml: description="compile, jar and publish all projects in the right order"> Here's the Ivy taskdef:

Re: ivy settings classpath always creates new classloader when used with subant

2008-10-17 Thread Gilles Scokart
There will be a prerequisite for that to work : You must be sure that that ivy itself is not loaded in two ClassLoader. For that, your taskdef for ivy should itself use a loaderRef, and the subant must have the right options that make the id shared accross the projects. And if that prerequisite

ivy settings classpath always creates new classloader when used with subant

2008-10-16 Thread Derek Baum
Hi, I have a custom Ivy resolver that keeps a static cache because it is time-consuming to initialise. However, this cache doesn't work in a multi-project build, because the ivysettings/classpath command is creating a new URLClassLoader for each subant iteration, so all static class f

DO NOT REPLY [Bug 42263] - built-in property ${ant.version} not set in a call with subant

2007-06-21 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 42263] - built-in property ${ant.version} not set in a call with subant

2007-06-21 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 42482] - ant and subant improperly passes references to macrodefs and scriptdefs to the child script

2007-05-22 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 42483] New: - subant incorrectly complaining about circular references

2007-05-21 Thread bugzilla
gzilla/show_bug.cgi?id=42483 Summary: subant incorrectly complaining about circular references Product: Ant Version: 1.7.0 Platform: Other OS/Version: other Status: NEW Severity: normal Priority: P2 Component: Core

DO NOT REPLY [Bug 42482] New: - ant and subant improperly passes references to macrodefs and scriptdefs to the child script

2007-05-21 Thread bugzilla
gzilla/show_bug.cgi?id=42482 Summary: ant and subant improperly passes references to macrodefs and scriptdefs to the child script Product: Ant Version: 1.7.0 Platform: Other OS/Version: other Status: NEW Se

svn commit: r539841 - /ant/core/trunk/src/tests/antunit/taskdefs/subant-test.xml

2007-05-20 Thread kevj
Author: kevj Date: Sun May 20 00:57:42 2007 New Revision: 539841 URL: http://svn.apache.org/viewvc?view=rev&rev=539841 Log: -remove extra whitespace Modified: ant/core/trunk/src/tests/antunit/taskdefs/subant-test.xml Modified: ant/core/trunk/src/tests/antunit/taskdefs/subant-test.xml

DO NOT REPLY [Bug 42263] - built-in property ${ant.version} not set in a call with subant

2007-05-17 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 42263] - built-in property ${ant.version} not set in a call with subant

2007-05-17 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: r538995 - in /ant/core/trunk: WHATSNEW src/main/org/apache/tools/ant/Project.java src/main/org/apache/tools/ant/taskdefs/Ant.java src/tests/antunit/taskdefs/subant-test.xml

2007-05-17 Thread stevel
Author: stevel Date: Thu May 17 09:16:16 2007 New Revision: 538995 URL: http://svn.apache.org/viewvc?view=rev&rev=538995 Log: bugzilla bug 42263: ${ant.version} not set in Added: ant/core/trunk/src/tests/antunit/taskdefs/subant-test.xml Modified: ant/core/trunk/WHATSNEW ant/

DO NOT REPLY [Bug 42263] - built-in property ${ant.version} not set in a call with subant

2007-05-17 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 42263] - built-in property ${ant.version} not set in a call with subant

2007-05-17 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 42263] - built-in property ${ant.version} not set in a call with subant

2007-05-17 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 42263] - built-in property ${ant.version} not set in a call with subant

2007-05-17 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 42263] - built-in property ${ant.version} not set in a call with subant

2007-05-16 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 42263] - built-in property ${ant.version} not set in a call with subant

2007-05-14 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 42263] - built-in property ${ant.version} not set in a call with subant

2007-05-14 Thread bugzilla
gzilla/show_bug.cgi?id=42263 --- Additional Comments From [EMAIL PROTECTED] 2007-05-14 07:37 --- (In reply to comment #2) > as you can see, we dont get ant.version passed down in subant, more importanly > we dont get any other ant built in props handed down. > ] > What#s happeni

DO NOT REPLY [Bug 42263] - built-in property ${ant.version} not set in a call with subant

2007-05-14 Thread bugzilla
gzilla/show_bug.cgi?id=42263 --- Additional Comments From [EMAIL PROTECTED] 2007-05-14 07:24 --- as you can see, we dont get ant.version passed down in subant, more importanly we dont get any other ant built in props handed down. ] What#s happening is that the Ant init code creates a new p

DO NOT REPLY [Bug 42263] - built-in property ${ant.version} not set in a call with subant

2007-05-14 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 42263] New: - built-in property ${ant.version} not set in a call with subant

2007-04-26 Thread bugzilla
gzilla/show_bug.cgi?id=42263 Summary: built-in property ${ant.version} not set in a call with subant Product: Ant Version: 1.7.0 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priori

DO NOT REPLY [Bug 30569] - basedir is not set correctly when calling subant task through ant task

2007-02-10 Thread bugzilla
gzilla/show_bug.cgi?id=30569 --- Additional Comments From [EMAIL PROTECTED] 2007-02-10 08:50 --- Created an attachment (id=19566) --> (http://issues.apache.org/bugzilla/attachment.cgi?id=19566&action=view) 1.7.0 SubAnt.execute() Fix Same fix applied to the 1.7.0 version of SubAnt.

DO NOT REPLY [Bug 32815] - Invalid Subant BuildException: "subant task calling a target that depends on its parent target" incorectly handles task scope

2007-01-07 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 18391] - RFE : ignoreMissingBuildFiles option for subant

2006-12-19 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 31665] - [PATCH] set filename of default buildfile to allow for convienience and dynamic ant and subant calls

2006-12-19 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 30569] - basedir is not set correctly when calling subant task through ant task

2006-11-30 Thread bugzilla
s a blocker, i.e. SubAnt does not function at all as intended. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug, or are watching t

DO NOT REPLY [Bug 18391] - RFE : ignoreMissingBuildFiles option for subant

2006-11-12 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 31665] - [PATCH] set filename of default buildfile to allow for convienience and dynamic ant and subant calls

2006-11-12 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 18391] - RFE : ignoreMissingBuildFiles option for subant

2006-10-15 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 31665] - [PATCH] set filename of default buildfile to allow for convienience and dynamic ant and subant calls

2006-10-15 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 18391] - RFE : ignoreMissingBuildFiles option for subant

2006-09-17 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 31665] - [PATCH] set filename of default buildfile to allow for convienience and dynamic ant and subant calls

2006-09-17 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 31665] - [PATCH] set filename of default buildfile to allow for convienience and dynamic ant and subant calls

2006-08-27 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 18391] - RFE : ignoreMissingBuildFiles option for subant

2006-08-27 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: r420569 - in /ant/core/trunk: docs/manual/CoreTasks/ src/etc/testcases/taskdefs/ src/etc/testcases/taskdefs/subant/subant-test1/ src/etc/testcases/taskdefs/subant/subant-test2/ src/main/or

2006-07-10 Thread jhm
.xml ant/core/trunk/src/etc/testcases/taskdefs/subant/subant-test1/mysubant.xml ant/core/trunk/src/etc/testcases/taskdefs/subant/subant-test2/mysubant.xml ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/SubAnt.java ant/core/trunk/src/testcases/org/apache/tools/ant/task

DO NOT REPLY [Bug 30569] - basedir is not set correctly when calling subant task through ant task

2006-05-08 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 30569] - basedir is not set correctly when calling subant task through ant task

2006-05-08 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 30569] - basedir is not set correctly when calling subant task through ant task

2006-05-08 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 39280] - Add log of target and build file a subant executes them

2006-04-12 Thread bugzilla
gzilla/show_bug.cgi?id=39280 --- Additional Comments From [EMAIL PROTECTED] 2006-04-12 15:52 --- (In reply to comment #2) The problem with verbose is that it's so...verbose. We see a need to have this information on every run of subant. Could we add a new flag that just controls this

DO NOT REPLY [Bug 39280] - Add log of target and build file a subant executes them

2006-04-12 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 39280] - Add log of target and build file a subant executes them

2006-04-12 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 39280] New: - Add log of target and build file a subant executes them

2006-04-12 Thread bugzilla
gzilla/show_bug.cgi?id=39280 Summary: Add log of target and build file a subant executes them Product: Ant Version: 1.6.5 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P2 Component: Core

Re: Parallel processing option for subant? - Parallel Ant Subsystem?

2005-10-12 Thread Kyle R. Burton
nson <[EMAIL PROTECTED]> wrote: > --- Jeffrey E Care <[EMAIL PROTECTED]> wrote: > > > Steve Loughran <[EMAIL PROTECTED]> wrote on > > 10/12/2005 07:50:04 AM: > [SNIP] > > > to an extent is the most prone to race > > conditions, as it is > > >

Re: Parallel processing option for subant?

2005-10-12 Thread Alexey N. Solofnenko
Yes, I believe executor should be a parameter to all these tasks. Now, have anybody any problems recently bootstrapping on Solaris? After we switched to svn, I cannot build any more. - Alexey. Matt Benson wrote: Alexey, I first thought it was different as well. But for example, if we added

Re: Parallel processing option for subant?

2005-10-12 Thread Matt Benson
Alexey, I first thought it was different as well. But for example, if we added to and friends the ability to specify the executor type to use (I haven't thought that through, it could be a bad idea), then your parallel executor could be made to work for , , , etc... right, or not? -Matt --- "A

Re: Parallel processing option for subant?

2005-10-12 Thread Alexey N. Solofnenko
This may be different. It is more like parallel in . - Alexey. Stefan Bodewig wrote: On Mon, 10 Oct 2005, Jeffrey E. Care <[EMAIL PROTECTED]> wrote: I have been considering enhancing the task to allow it to process builds in parallel. I think Alexey had started work on this using a

Re: Parallel processing option for subant?

2005-10-12 Thread Steve Loughran
Matt Benson wrote: --- Jeffrey E Care <[EMAIL PROTECTED]> wrote: Steve Loughran <[EMAIL PROTECTED]> wrote on 10/12/2005 07:50:04 AM: [SNIP] to an extent is the most prone to race conditions, as it is running stuff in the same project. a subant running in parallel is

Re: Parallel processing option for subant?

2005-10-12 Thread Matt Benson
--- Jeffrey E Care <[EMAIL PROTECTED]> wrote: > Steve Loughran <[EMAIL PROTECTED]> wrote on > 10/12/2005 07:50:04 AM: [SNIP] > > to an extent is the most prone to race > conditions, as it is > > running stuff in the same project. a subant > running in parall

RE: Parallel processing option for subant?

2005-10-12 Thread Jose Alberto Fernandez
t use it. It would have to be documented in > the manual that using parallel subant to build projects that use the input > task would be verboten. > Well, I think that it should be quite clear to people that it only makes sense to parallelize code that does not require manual user interventi

Re: Parallel processing option for subant?

2005-10-12 Thread Jeffrey E Care
ur custom logger to do thread > > correlation & buffering; these changes should easily map to Ant's > > DefaultLogger. > > Input is another issue. That is certainly true; I had not considered the task, mostly because in WAS we don't/can't use it. It would

Re: Parallel processing option for subant?

2005-10-12 Thread Steve Loughran
Jeffrey E Care wrote: This may sound naive, but honestly I would not expect many. Ant already has the task, which of course is running things in other threads; additionally in the WAS build tools we already have what is essentially the equivalent to a parallel subant, and it&#

Re: Parallel processing option for subant?

2005-10-12 Thread Jeffrey E Care
> > This may sound naive, but honestly I would not expect many. > > > > Ant already has the task, which of course is running things in > > other threads; additionally in the WAS build tools we already have what is > > essentially the equivalent to a parallel

Re: Parallel processing option for subant?

2005-10-12 Thread Steve Loughran
Jeffrey E Care wrote: This may sound naive, but honestly I would not expect many. Ant already has the task, which of course is running things in other threads; additionally in the WAS build tools we already have what is essentially the equivalent to a parallel subant, and it's working

Re: Parallel processing option for subant?

2005-10-11 Thread Stefan Bodewig
On Mon, 10 Oct 2005, Jeffrey E. Care <[EMAIL PROTECTED]> wrote: > I have been considering enhancing the task to allow it to > process builds in parallel. I think Alexey had started work on this using a custom Executor. You should coordinate with him - Alexey? Cheers Stefan --

Re: Parallel processing option for subant?

2005-10-11 Thread Jeffrey E Care
This may sound naive, but honestly I would not expect many. Ant already has the task, which of course is running things in other threads; additionally in the WAS build tools we already have what is essentially the equivalent to a parallel subant, and it's working fine. Would you expect

Re: Parallel processing option for subant?

2005-10-11 Thread Steve Loughran
Jeffrey E Care wrote: All: I have been considering enhancing the task to allow it to process builds in parallel. I'm willing to make the changes & submit a patch for review, but I wanted to gauge interest & solicit comments first. I could see how it could be interesting in some use cases. B

Re: Parallel processing option for subant?

2005-10-10 Thread Matt Benson
--- Jeffrey E Care <[EMAIL PROTECTED]> wrote: > All: > > I have been considering enhancing the task > to allow it to process > builds in parallel. I'm willing to make the changes > & submit a patch for > review, but I wanted to gauge interest & solicit > comments first. > +0 here (i.e. go ah

Parallel processing option for subant?

2005-10-10 Thread Jeffrey E Care
All: I have been considering enhancing the task to allow it to process builds in parallel. I'm willing to make the changes & submit a patch for review, but I wanted to gauge interest & solicit comments first. JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere B

DO NOT REPLY [Bug 30569] - basedir is not set correctly when calling subant task through ant task

2005-07-15 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 30569] - basedir is not set correctly when calling subant task through ant task

2005-07-15 Thread bugzilla
also, for the case when a specific build file is invoked from subant. else directory = file.getAbsoluteFile().getParentFile(); -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for th

DO NOT REPLY [Bug 30569] - basedir is not set correctly when calling subant task through ant task

2005-07-15 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 35142] - subant page doesn't adapt browser width; inconsistent with rest of manual

2005-06-01 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 35142] - subant page doesn't adapt browser width; inconsistent with rest of manual

2005-05-31 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 35142] - subant page doesn't adapt browser width; inconsistent with rest of manual

2005-05-31 Thread bugzilla
ONTFIX Summary|whichresource page doesn't |subant page doesn't adapt |adapt browser width;|browser width; inconsistent |inconsistent with rest of |with rest of manual |manual | --- Addition

DO NOT REPLY [Bug 30569] - basedir is not set correctly when calling subant task through ant task

2005-05-27 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: [PATCH] SubAnt verbose attribute

2005-03-01 Thread craig ryan
: With complex build systems in particular I've found it useful to define a new verbose boolean attribute for the subant task, eg: which results in output indicating the entry/exit of each sub-direcrtory recusively. For example: [subant] Entering directory: /my/src/daemons myt

Re: [PATCH] SubAnt verbose attribute

2005-03-01 Thread craig ryan
seful to define a new verbose boolean attribute for the subant task, eg: which results in output indicating the entry/exit of each sub-direcrtory recusively. For example: [subant] Entering directory: /my/src/daemons mytarget: [subant] Exiting directory: /my/src/daemons att

[PATCH] SubAnt verbose attribute

2005-02-11 Thread craig ryan
With complex build systems in particular I've found it useful to define a new verbose boolean attribute for the subant task, eg: which results in output indicating the entry/exit of each sub-direcrtory recusively. For example: [subant] Entering directory: /my/src/daemons myt

DO NOT REPLY [Bug 32815] - Invalid Subant BuildException: "subant task calling a target that depends on its parent target" incorectly handles task scope

2005-01-14 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 32815] New: - Invalid Subant BuildException: "subant task calling a target that depends on its parent target" incorectly handles task scope

2004-12-23 Thread bugzilla
gzilla/show_bug.cgi?id=32815 Summary: Invalid Subant BuildException: "subant task calling a target that depends on its parent target" incorectly handles task scope Product: Ant Version: 1.6.2 Platform: PC

DO NOT REPLY [Bug 31665] - [PATCH] set filename of default buildfile to allow for convienience and dynamic ant and subant calls

2004-10-13 Thread bugzilla
gzilla/show_bug.cgi?id=31665 [PATCH] set filename of default buildfile to allow for convienience and dynamic ant and subant calls [EMAIL PROTECTED] changed: What|Removed |Added S

DO NOT REPLY [Bug 31665] - set filename of default buildfile to allow for convienience and dynamic ant and subant calls

2004-10-12 Thread bugzilla
gzilla/show_bug.cgi?id=31665 set filename of default buildfile to allow for convienience and dynamic ant and subant calls --- Additional Comments From [EMAIL PROTECTED] 2004-10-12 12:29 --- Created an attachment (id=13042) patch file to set filename for default bui

DO NOT REPLY [Bug 31665] New: - set filename of default buildfile to allow for convienience and dynamic ant and subant calls

2004-10-12 Thread bugzilla
gzilla/show_bug.cgi?id=31665 set filename of default buildfile to allow for convienience and dynamic ant and subant calls Summary: set filename of default buildfile to allow for convienience and dynamic ant and subant calls Product: Ant Version: 1.

DO NOT REPLY [Bug 30569] - basedir is not set correctly when calling subant task through ant task

2004-08-20 Thread bugzilla
gzilla/show_bug.cgi?id=30569 basedir is not set correctly when calling subant task through ant task --- Additional Comments From [EMAIL PROTECTED] 2004-08-20 14:52 --- The workaround i have found for this is to use instead of ( it is a superset of the functionality ). Howerver: A

DO NOT REPLY [Bug 30569] New: - basedir is not set correctly when calling subant task through ant task

2004-08-10 Thread bugzilla
gzilla/show_bug.cgi?id=30569 basedir is not set correctly when calling subant task through ant task Summary: basedir is not set correctly when calling subant task through ant task Product: Ant Version: 1.6.2 Platform: Sun OS/V

RE: basedir not set corretly in subant task...

2004-07-15 Thread Jose Alberto Fernandez
> From: Dominique Devienne [mailto:[EMAIL PROTECTED] > > > Thus I come back to my question about why basedir override > was implemented in the first place. I didn't get an answer I > liked so far. Maybe it's because I always design my > build/subbuilds in such a way that any basedir override

  1   2   >