In my war project, I have it set to copy the rsl's of another flex
project.
from my pom:
".....
dependency>
<groupId>com.company.project</groupId>
<artifactId>project.flex.app</artifactId>
<version>0.0.1-SNAPSHOT</version>
<type>swf</type>
</dependency>
...
<plugin>
<groupId>org.sonatype.flexmojos</groupId>
<artifactId>flexmojos-maven-plugin</artifactId>
<version>3.8</version>
<executions>
<execution>
<goals>
<goal>copy-flex-resources</goal>
</goals>
<configuration>
<webappDirectory>${project.basedir}/../project.web/src/main/
webapp</webappDirectory>
<copyRSL>true</copyRSL>
</configuration>
</execution>
</executions>
</plugin>
"
Here's the output:
[INFO] --- flexmojos-maven-plugin:3.8:copy-flex-resources (default) @
project.web ---
Downloading:
http://repo1.maven.org/maven2/com/adobe/flex/compiler/3.2.0.3958/compiler-3.2.0.3958.pom
Downloading:
http://repo1.maven.org/maven2/com/adobe/flex/compiler/asc/3.2.0.3958/asc-3.2.0.3958.jar
Downloading:
http://repo1.maven.org/maven2/com/adobe/flex/compiler/asdoc/3.2.0.3958/asdoc-3.2.0.3958.jar
Downloading:
http://repo1.maven.org/maven2/com/adobe/flex/compiler/batik-awt-util/3.2.0.3958/batik-awt-util-3.2.0.3958.jar
Downloading:
http://repo1.maven.org/maven2/com/adobe/flex/compiler/batik-bridge/3.2.0.3958/batik-bridge-3.2.0.3958.jar
Downloading:
http://repo1.maven.org/maven2/com/adobe/flex/compiler/batik-css/3.2.0.3958/batik-css-3.2.0.3958.jar
Downloading:
http://repo1.maven.org/maven2/com/adobe/flex/compiler/batik-dom/3.2.0.3958/batik-dom-3.2.0.3958.jar
...
the list goes on.
It only looks in Maven Central when running copy-flex-resouces, and it
fails because it can't find anything required.
Thanks in advance for help,
Ken
--
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/