On 10/8/07, Rodrigo Madera <[EMAIL PROTECTED]> wrote: > Maven2 currently has a bad habit of downloading certain poms over and over > again on each and every execution. > > I had this problem with GNU Crypto, but I managed to not use it anymore. > Now it''s happening with commons-id-0.1-dev. > > Anyone know how to make Maven2 behave? this is getting REALLY annoying.
Without the build output it's hard to tell, but I suspect it's *trying* to download the pom, but not actually doing it because the pom doesn't exist in the remote repo. If so, you can... * install the jar locally (mvn install:install-file) and use the -DgeneratePom=true property to generate a pom for it. * open a MEV ticket and provide a pom for the project * open an issue with the project developers to have them provide the missing pom and supply one for future releases. -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
