It is not trying to download dependencies. I maven does try to do download poms for dependencies, and that is something I can't interfere.
What you can do is use install-file with -DgeneratePom=true to generate fake poms. VELO On Sun, Jan 11, 2009 at 8:28 AM, Conrad Winchester <[email protected]>wrote: > > Hi all, > > I have locally installed a couple of swc dependancies for my project > using the following command > > mvn install:install-file -DgroupId=org.puremvc.www - > DartifactId=puremvc -Dversion=2.0.4 -Dpackaging=swc -Dfile=libs/ > PureMVC_AS3_2_0_4.swc > mvn install:install-file -DgroupId=org.puremvc.www - > DartifactId=asynccommand -Dversion=1.0 -Dpackaging=swc -Dfile=libs/ > Utility_AS3_AsyncCommand_1_0.swc > mvn install:install-file -DgroupId=org.defusion.flexunit - > DartifactId=FlexUnitRunner -Dversion=0.2.0 -Dpackaging=swc -Dfile=libs/ > FlexUnitRunner.swc > > I then include them with dependancy declarations like this (only > showing one) > > <dependency> > <groupId>org.puremvc.www</groupId> > <artifactId>asynccommand</artifactId> > <version>1.0</version> > <type>swc</type> > <scope>merged</scope> > </dependency> > > When I use Maven it does work, but unfortunately I see the following > lines every time it builds > > Downloading: > http://svn.sonatype.org/flexmojos/repository//org/puremvc/www/puremvc/2.0.4/puremvc-2.0.4.pom > Downloading: > http://repo1.maven.org/maven2/org/puremvc/www/puremvc/2.0.4/puremvc-2.0.4.pom > Downloading: > http://svn.sonatype.org/flexmojos/repository//org/puremvc/www/asynccommand/1.0/asynccommand-1.0.pom > Downloading: > http://repo1.maven.org/maven2/org/puremvc/www/asynccommand/1.0/asynccommand-1.0.pom > Downloading: > http://svn.sonatype.org/flexmojos/repository//org/defusion/flexunit/FlexUnitRunner/0.2.0/FlexUnitRunner-0.2.0.pom > Downloading: > http://repo1.maven.org/maven2/org/defusion/flexunit/FlexUnitRunner/0.2.0/FlexUnitRunner-0.2.0.pom > > Which are annoying: The dependancies are already there, so why so I > see the attempt to download? > > Thanks > > Conrad > > > > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Flex Mojos" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/flex-mojos?hl=en?hl=en http://blog.flex-mojos.info/ -~----------~----~----~----~------~----~------~--~---
