Hi,

I would to compile my flex application in french but the result is
always in english :
I install manually the french translation of the framework with this
command line instruction :

mvn install:install-file -Dfile=framework-3.4.0.9271-fr_FR.rb.swc -
DgroupId=com.adobe.flex.framework -DartifactId=framework -
Dversion=3.4.0.9271 -Dpackaging=rb.swc -Dclassifier=fr_FR

I'm lookin on internet from 2 days, and no solution.
Please could you help me?

My super pom for all my flex applications looks like this :

Thank you

<project xmlns="http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://
www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://
maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";>
        <modelVersion>4.0.0</modelVersion>

        <parent>
                <groupId>com.domotic</groupId>
                <artifactId>flex-super-pom</artifactId>
                <version>1.0-SNAPSHOT</version>
        </parent>

        <groupId>com.domotic</groupId>
        <artifactId>flex-super-pom-swf</artifactId>
        <version>1.0-SNAPSHOT</version>
        <name>Flex Super Pom For SWF</name>
        <packaging>pom</packaging>

        <dependencies>
                <dependency>
                        <groupId>com.adobe.flex.framework</groupId>
                        <artifactId>framework</artifactId>
                        <version>${flex.version}</version>
                        <type>swc</type>
                        <scope>rsl</scope>
                </dependency>
                <dependency>
                        <groupId>com.adobe.flex.framework</groupId>
                        <artifactId>flex-framework</artifactId>
                        <version>${flex.version}</version>
                        <type>pom</type>
                        <exclusions>
                                <exclusion>
                                        
<groupId>com.adobe.flex.framework</groupId>
                                        <artifactId>playerglobal</artifactId>
                                </exclusion>
                        </exclusions>
                        <scope>external</scope>
                </dependency>
                <dependency>
                        <groupId>com.adobe.flex.framework</groupId>
                        <artifactId>playerglobal</artifactId>
                        <version>${flex.version}</version>
                        <classifier>${flash.player.classifier}</classifier>
                        <type>swc</type>
                        <scope>external</scope>
                </dependency>
                <dependency>
                        <groupId>com.adobe.flex.framework</groupId>
                        <artifactId>rpc</artifactId>
                        <version>${flex.version}</version>
                        <type>swc</type>
                        <scope>rsl</scope>
                </dependency>
                <dependency>
                        <groupId>com.adobe.flex.framework</groupId>
                        <artifactId>framework</artifactId>
                        <version>${flex.version}</version>
                        <type>rb.swc</type>
                        <classifier>en_US</classifier>
                </dependency>
                <dependency>
                        <groupId>com.adobe.flex.framework</groupId>
                        <artifactId>framework</artifactId>
                        <version>${flex.version}</version>
                        <type>rb.swc</type>
                        <classifier>fr_FR</classifier>
                </dependency>
                <dependency>
                        <groupId>com.adobe.flex.framework</groupId>
                        <artifactId>rpc</artifactId>
                        <version>${flex.version}</version>
                        <type>rb.swc</type>
                        <classifier>en_US</classifier>
                </dependency>
                <dependency>
                        <groupId>com.adobe.flex.framework</groupId>
                        <artifactId>rpc</artifactId>
                        <version>${flex.version}</version>
                        <type>rb.swc</type>
                        <classifier>fr_FR</classifier>
                </dependency>
                <dependency>
                        <groupId>com.adobe.flex.framework</groupId>
                        <artifactId>utilities</artifactId>
                        <version>${flex.version}</version>
                        <type>swc</type>
                </dependency>
                <dependency>
                        <groupId>org.sonatype.flexmojos</groupId>
                        <artifactId>flexmojos-unittest-support</artifactId>
                        <version>${flexmojos.version}</version>
                        <type>swc</type>
                        <scope>test</scope>
                </dependency>
        </dependencies>

        <properties>
                <flex.version>3.4.0.9271</flex.version>
                <flexmojos.version>3.2.0</flexmojos.version>
                <flash.version>10.0.0</flash.version>
                <flash.player.classifier>10</flash.player.classifier>
                <build.finalname>Flex-Maven-RSL</build.finalname>
        </properties>

        <build>

                <sourceDirectory>src</sourceDirectory>
                <testSourceDirectory>test</testSourceDirectory>

                <plugins>
                        <plugin>
                                <groupId>org.sonatype.flexmojos</groupId>
                                <artifactId>flexmojos-maven-plugin</artifactId>
                                <executions>
                                        <execution>
                                                <goals>
                                                        <goal>wrapper</goal>
                                                </goals>
                                                <configuration>
                                                        <debug>true</debug>
                                                        <rslUrls>
                                                                
<rsl>/rsl/{artifactId}.swf</rsl>
                                                        </rslUrls>
                                                        
<targetplayer>${flash.version}</targetplayer>
                                                </configuration>
                                        </execution>
                                </executions>
                                <configuration>
                                        <verifyDigests>false</verifyDigests>
                                </configuration>
                                <dependencies>
                                        <dependency>
                                                
<groupId>com.adobe.flex</groupId>
                                                
<artifactId>compiler</artifactId>
                                                
<version>${flex.version}</version>
                                                <type>pom</type>
                                        </dependency>
                                </dependencies>
                        </plugin>
                </plugins>
        </build>
</project>
-- 
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/

Reply via email to