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/flashplayer_10_sa_debug.exe</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/