Re: task missing in Ant 1.8

2010-06-08 Thread cowwoc
cowwoc wrote: > > I'm surprised I didn't find any posts about this. Where did the > task go in Ant 1.8? > > Thanks, > Gili > Nevermind. I found it. I didn't notice it at http://ant.apache.org/manual/index.html for some reason. Gili -- View this messag

task missing in Ant 1.8

2010-06-08 Thread cowwoc
I'm surprised I didn't find any posts about this. Where did the task go in Ant 1.8? Thanks, Gili -- View this message in context: http://old.nabble.com/%3Cdepend%3E-task-missing-in-Ant-1.8-tp28824029p28824029.html Sent from the Ant - Users mailing list archive at Nabble.com.

Re: Maven2 POM is corrupt

2009-07-06 Thread cowwoc
Also, please include the Ant source-code in the POM because this will improve code-completion in IDEs. Thank you, Gili cowwoc wrote: > > Hi, > > Can someone please fix the Maven2 POM? It seems to be corrupt. Please see > the latest few posts at > http://www.pro

Maven2 POM is corrupt

2009-07-06 Thread cowwoc
Hi, Can someone please fix the Maven2 POM? It seems to be corrupt. Please see the latest few posts at http://www.projectzero.org/forum/viewtopic.php?f=4&t=1286 for more information. According to http://www.nabble.com/Maven2-POM-is-corrupt-tp24360372p24360626.html the Xerces commiters did not pos

Ant Thread-Context ClassLoader causing problems

2008-08-28 Thread cowwoc
Hi, My custom Ant task uses Logback under the hood. Logback uses the thread-context ClassLoader to find its configuration file (logback.xml). The problem is that Ant sets the TCCL to org.apache.tools.ant.module.bridge.AntBridge$MaskedClassLoader and that CL does not contain my task's JAR file whi

Re: Enforcing "depends" order for 3rd-party targets?

2008-08-22 Thread cowwoc
rue" > inheritrefs="true"/> > > > The "inheritall" allows the called target to inherit all properties > set. This is suppose to be the default. The "inheritrefs" allows for > all references to be inherited too. This is false by default. &

Re: Initializing Task variables at taskdef time?

2008-08-19 Thread cowwoc
setdef when calling the task instead of the > original one. Is this what you want? > > On Tue, Aug 19, 2008 at 3:56 PM, cowwoc <[EMAIL PROTECTED]> wrote: > >> >> Hi, >> >> This seems like such an obvious use-case but from what I read in this >> forum &g

Initializing Task variables at taskdef time?

2008-08-19 Thread cowwoc
Hi, This seems like such an obvious use-case but from what I read in this forum there doesn't seem to be a way to do it... is there a way for me to pass parameters to my custom task at taskdef (initialization time)? One obvious use-case is grabbing the classpath used in the taskdef during the ta

Re: Enforcing "depends" order for 3rd-party targets?

2008-08-18 Thread cowwoc
gt; On Mon, Aug 18, 2008 at 4:09 PM, cowwoc <[EMAIL PROTECTED]> wrote: >> >> >> how do I guarantee that "internal" gets executed before "external" if >> "external" is declared by some 3rd-party script I have no control over >> (that >

Enforcing "depends" order for 3rd-party targets?

2008-08-18 Thread cowwoc
Hi, Give: how do I guarantee that "internal" gets executed before "external" if "external" is declared by some 3rd-party script I have no control over (that is, I can't add depends="internal" to "external"). It should be noted that "internal" declares properties that "external" looks for, so

Re: Dynamic "depends" for debug/release builds

2008-08-17 Thread cowwoc
Thanks guys ;) Gili Dominique Devienne-2 wrote: > > On Fri, Aug 15, 2008 at 11:13 PM, cowwoc <[EMAIL PROTECTED]> wrote: >> I've got Java code that makes use of JNI so my build process is slightly >> different depending on whether debug or release is being built.

Dynamic "depends" for debug/release builds

2008-08-15 Thread cowwoc
Hi, I've got Java code that makes use of JNI so my build process is slightly different depending on whether debug or release is being built. I'd like to define the following ant target: the target gets invoked just fine but then any properties declared by the target get lost when the call ret