Hi, I was wondering if there is a way to access plugin dependencies using maven ant tasks. So, if you have something like the following in pom.xml:
<plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.4</version> <dependencies> <dependency> <groupId>bsf</groupId> <artifactId>bsf</artifactId> <version>2.4.0</version> </dependency> ... </dependencies> </plugin> To read these plugin dependencies into a path in ant, like you can with regular regular dependencies (those that are direct children of the pom root element). I was also wondering if it's possible to trigger downloading of dependencies in a maven pom. It seems from the documentation that maven ant tasks allows one to read dependencies in a pom into an ant path or fileset, but it's not clear to me how to download them and install them into the local repository from ant. I'd appreciate any guidance anyone can offer. Thanks, Jake --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org