On 2010-02-24 15:16, Varwig, Britta wrote: > Hello, > I would like to use the maven-dependency-plugin to get a program-consumable > output (eg. an xml file would be nice). > > The option -DoutputFile=c:\Myoutput.txt does not work correctly for modul > projects (nor for dependency:list nor for dependency:tree). > Each pom dose overwrite c:\Myoutput.txt. After the run, I only find the > information of the last project in c:\Myoutput.txt and the other info is > lost.
That is what I would expect, since every module uses the same file in your example. > Is there some workaround suggestion? I'd suggest that you specify a relative path instead. Something like this: -DoutputFile=target\Myoutput.txt > Do you plan to implement some xml-output, so that the result is match easier > to consume by any program? > > Regards Britta > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > -- Dennis Lundberg --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
