Re: Inline Ant tasks not working - Namespace problem?

2010-12-27 Thread lukewpatterson
yet, and have too may hardcoded references, but the important part there is: target xmlns:jacoco=antlib:org.jacoco.ant -- View this message in context: http://maven.40175.n5.nabble.com/Inline-Ant-tasks-not-working-Namespace-problem-tp3246437p3319602.html Sent from the Maven - Users mailing list

Request received: Re: Inline Ant tasks not working - Namespace problem? (ticket #21965)

2010-12-27 Thread Boxee Support
## In replies all text above this line is added to the ticket ## Request received: Re: Inline Ant tasks not working - Namespace problem? (ticket #21965) Your request (#21965) has been received, and is being reviewed by our support staff. To review the status of the request and add additional

Re: Inline Ant tasks not working - Namespace problem?

2010-11-03 Thread Hari shankar
Thanks Anders. I installed jacocoant.jar to local repo now and ensured plugin dependencies are resolved correctly using dependency:resolve-plugins goal. It went fine. But upon mvn clean package, the ant task still throws the same error. This is the modified pom.xml. (Also i have added plugin

Re: Inline Ant tasks not working - Namespace problem?

2010-11-03 Thread Anders Hammar
The dependency should be for the antrun-plugin. The definition of jacocoant as a plugin is just wrong I think, it's not a plugin. Also, I don't think you should put any xmlns in the maven project tag. Maven is not using this, it's the antrun-plugin (which is a separated space). Maybe you want to

Inline Ant tasks not working - Namespace problem?

2010-11-02 Thread Hari shankar
I got a ant build.xml invoked properly via maven antrun plugin but when i define it inline, it doesn't work. Please assist. I think it has to do with xmlns but not sure where to define it properly. (To be specific am using a jacoco ant task for code coverage as described here

Re: Inline Ant tasks not working - Namespace problem?

2010-11-02 Thread Anders Hammar
http://maven.apache.org/plugins/maven-antrun-plugin/examples/customTasks.html You need to define a plugin dependency to jacocoant.jar. If that artifact is not already in the repo, you need to ad it to your repo manager. /Anderfs On Tue, Nov 2, 2010 at 10:59, Hari shankar harsha...@gmail.com