Ok, well my actual flex projects build using this configuration, but my war
project that packages up a few of these swfs fails.  I get 

[ERROR] Failed to execute goal
net.flexmojos.oss:flexmojos-maven-plugin:7.1.0-SNAPSHOT:copy-flex-resources
(copy-swf) on project design: Execution copy-swf of goal
net.flexmojos.oss:flexmojos-maven-plugin:7.1.0-SNAPSHOT:copy-flex-resources
failed: Failed to resolve artifact
org.apache.flex.framework:framework:swf:en_US.rb:4.14.1

This is the configuration of flexmojos in my war project.

<plugin>
        <groupId>net.flexmojos.oss</groupId>
        <artifactId>flexmojos-maven-plugin</artifactId>
        <version>${flex.mojo.version}</version>
        <extensions>true</extensions>
                <executions>
                        <execution>
                        <id>copy-swf</id>
                        <phase>process-sources</phase>
                        <goals>
                                <goal>copy-flex-resources</goal>
                        </goals>
                        <configuration>
                                <useFinalName>false</useFinalName>
                                <stripVersion>true</stripVersion>
                        </configuration>
                </execution>
        </executions>
        <dependencies>
                <dependency>
                        <groupId>${flex.groupId}</groupId>
                        <artifactId>compiler</artifactId>
                        <version>${flex.sdk.version}</version>
                        <type>pom</type>
                </dependency>
        </dependencies>
</plugin>

Not sure how to get around this problem...



--
View this message in context: 
http://apache-flex-development.2333347.n4.nabble.com/FlexMojos-with-RSLs-tp48944p48948.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.

Reply via email to