Re: How to create if condition task from maven

2008-10-16 Thread Gilles Scokart
Oh, I think that ant-contrib should be be placed under the pom dependencies, but you have to place it under the plugin declaration, so that the plugin has ant-contrib in his classpath. 2008/10/15 Miroslav Nachev <[EMAIL PROTECTED]>: > Actually in my pom file from where the ant script is called the

Re: How to create if condition task from maven

2008-10-15 Thread Miroslav Nachev
Actually in my pom file from where the ant script is called the following code is included: ant-contrib ant-contrib 20020829 Miro. Miroslav Nachev wrote: I put this but without success: Miro. Mirosl

Re: How to create if condition task from maven

2008-10-15 Thread Miroslav Nachev
I put this but without success: Miro. Miroslav Nachev wrote: How and where to put this taskdef? Why to use that? Miro. Gilles Scokart wrote: Try to add a taskdef. 2008/10/15 Miroslav Nachev <[EMAIL PROTECTED]>: Hi, I have one ant build file which is called from maven. In that

Re: How to create if condition task from maven

2008-10-15 Thread Miroslav Nachev
How and where to put this taskdef? Why to use that? Miro. Gilles Scokart wrote: Try to add a taskdef. 2008/10/15 Miroslav Nachev <[EMAIL PROTECTED]>: Hi, I have one ant build file which is called from maven. In that ant file I would like to do something only if some condition is false.

Re: How to create if condition task from maven

2008-10-15 Thread Gilles Scokart
Try to add a taskdef. 2008/10/15 Miroslav Nachev <[EMAIL PROTECTED]>: > Hi, > > I have one ant build file which is called from maven. In that ant file I > would like to do something only if some condition is false. In my current > case the condition is: > > > > > >

How to create if condition task from maven

2008-10-15 Thread Miroslav Nachev
Hi, I have one ant build file which is called from maven. In that ant file I would like to do something only if some condition is false. In my current case the condition is: dest="${ant.base.dir}"/> The problem is whe