I'm just starting to learn maven and I'm going through the users guide. I'm at a point where I have a maven.xml file that looks like this:
<project
xmlns:deploy="deploy">
<goal name="deploy-infactsweb">
<deploy:copy-deps todir="/home/stavares/junk/maven/testing"/>
</goal> <dependencies> <dependency> <artifactId>avalon-framework</artifactId>
<version>4.0</version> </dependency> </dependencies>
</project>
then when I run the command:
maven deploy-infactsweb
I get this result:
<dependencies><dependency><artifactId>avalon-framework</artifactId><version>4.0</version></dependency></dependencies>deploy-infactsweb: [copy] Copying 320 files to /home/stavares/junk/maven/testing [copy] Copied 94 empty directories to /home/stavares/junk/maven/testing BUILD SUCCESSFUL Total time: 6 seconds Finished at: Sat Sep 20 05:30:54 EDT 2003
why is it copying the entire repo. and just the avalon-framework-4.0.jar file?
Any help will be appreciated.
-Scott-
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
