Closed GoogleCodeExporter closed 8 years ago
This is problem with the dependencies that the Fluint Ant task has on Ant 1.7.0
from
what I can tell. By default the maven-ant-run plugin uses Ant 1.6.5. Here is
the
snippet I added under <plugin> for the maven-ant-run plugin to fix the issue:
<dependencies>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.7.0</version>
</dependency>
</dependencies>
I was able to call the fluint task directly after I got it all working. I
wrote a
post about it @
http://www.brianlegros.com/blog/2008/12/17/continuous-integration-with-maven-fle
x-fliunt-and-hudson/.
Hope this helps.
Original comment by legrosb@gmail.com
on 17 Dec 2008 at 6:07
Haven't heard anything back, this is working for me, so I'm going to close.
Original comment by legrosb@gmail.com
on 12 Feb 2009 at 2:24
Original issue reported on code.google.com by
am...@comcast.net
on 14 Nov 2008 at 10:21