Hello Chris,

Thank you very much it was the solution. I use that external dep.
plugin with the file:/// and the ${project.baseDir} at the downloadURL
to upload dependencies.

Regards,
Javier

On 23 mayo, 11:48, Christofer Dutz <[email protected]>
wrote:
> Well you can't but you can automatically deploy it to your local maven
> repository by using the maven-external-dependency-plugin which is also
> used by the flexmojos build quite a lot. Just have a look at the
> master pom of the flexmojos master pom (the one in the GIT repository)
>
>         <plugin>
>           <groupId>com.savage7.maven.plugins</groupId>
>           <artifactId>maven-external-dependency-plugin</artifactId>
>           <version>0.5-SONATYPE-r116</version>
>           <configuration>
>             <createChecksum>true</createChecksum>
>             <skipChecksumVerification>false</skipChecksumVerification>
>             <artifactItems>
>               <artifactItem>
>                 <groupId>com.adobe</groupId>
>                 <artifactId>flashplayer</artifactId>
>                 <version>10.2</version>
>                 <packaging>exe</packaging>
>
> <downloadUrl>http://download.macromedia.com/pub/flashplayer/updaters/10/flashplaye...</downloadUrl>
>               </artifactItem>
>
> ... snip ...
>
>             </artifactItems>
>           </configuration>
>           <executions>
>             <execution>
>               <phase>validate</phase>
>               <goals>
>                 <goal>resolve-external</goal>
>                 <goal>install-external</goal>
>               </goals>
>             </execution>
>           </executions>
>         </plugin>
>
> Chris
>
> 2011/5/23 Javier <[email protected]>:
>
>
>
>
>
>
>
> > Hello,
>
> > How can I do to add swc libraries with out deploiing them in maven.
>
> > --
> > 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
>
> >http://flexmojos.sonatype.org/

-- 
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

http://flexmojos.sonatype.org/

Reply via email to