Hi all,
We encounter some problems with a flex project compiled with maven
(3.0.3, jdk 1.6.0_22) and automation librairies (flexmonkey 4.1.7) on
a red hat 64bit server.
The compiled application works until we replay the automated actions
with flexmonkey. An empty popup appears and the automated actions stop
replaying.
If I compil the application on my 32bits computer (windows xp), and
then deploy it on the server, we don't have any empty popup while
replaying automated actions.
Does anyone have an idea about a way to debug this issue ?
Thanks in advance !
Here is our plugin configuration:
<plugin>
<groupId>org.sonatype.flexmojos</groupId>
<artifactId>flexmojos-maven-plugin</artifactId>
<version>${flex-mojos.version}</version>
<extensions>true</extensions>
<configuration>
<sourceFile>index.mxml</sourceFile>
<localesSourcePath>${basedir}/locale/{locale}</localesSourcePath>
<localesCompiled>
<locale>fr_FR</locale>
</localesCompiled>
<keepAllTypeSelectors>true</keepAllTypeSelectors>
<configurationReport>true</configurationReport>
<targetPlayer>10</targetPlayer>
<toolsLocale>fr_FR</toolsLocale>
<localeElement>fr_FR</localeElement>
<language>fr_FR</language>
<ignoreVersionIssues>false</ignoreVersionIssues>
<debug>false</debug>
<allowSourcePathOverlap>true</allowSourcePathOverlap>
<fullSynchronization>true</fullSynchronization>
<keepAs3Metadatas>
<keepAs3Metadata>Inject</keepAs3Metadata>
<keepAs3Metadata>Bindable</keepAs3Metadata>
<keepAs3Metadata>Managed</keepAs3Metadata>
<keepAs3Metadata>ChangeEvent</keepAs3Metadata>
<keepAs3Metadata>NonCommittingChangeEvent</keepAs3Metadata>
<keepAs3Metadata>Transient</keepAs3Metadata>
<keepAs3Metadata>Mixin</keepAs3Metadata>
</keepAs3Metadatas>
<namespaces>
<namespace>
<uri>http://www.esrifrance.fr/ags/2010</uri>
<manifest>${project.FxFmkLibrary2.src}/manifest.xml</manifest>
</namespace>
</namespaces>
<archiveClassesAndAssets>true</archiveClassesAndAssets>
<rslUrls>
<url>/{contextRoot}/${build.dir}/{artifactId}-{version}.{extension}
</url>
</rslUrls>
<modules>
<module>
<sourceFile>TestModule.mxml</sourceFile>
<optimize>true</optimize>
<finalName>TestModule</finalName>
</module>
</modules>
<includes>
<include>com.francetelecom.automation.delegates.StatistiqueViewDelegate</
include>
</includes>
</configuration>
<executions>
<execution>
<id>default-compile-swf</id>
<phase>compile</phase>
<goals>
<goal>compile-swf</goal>
</goals>
<configuration>
<verifyDigests>false</verifyDigests>
<skip>false</skip>
</configuration>
</execution>
<execution>
<id>default-test-compile</id>
<phase>compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
<configuration>
<skip>false</skip>
</configuration>
</execution>
<execution>
<id>default-test-run</id>
<phase>compile</phase>
<goals>
<goal>test-run</goal>
</goals>
<configuration>
<skip>false</skip>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.adobe.flex</groupId>
<artifactId>compiler</artifactId>
<version>${flex.sdk.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</plugin>
--
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/