Flex Mojos - это стандарт defacto для создания приложений Flex с Maven. Насколько мне известно, в настоящее время он не поддерживает мобильные сборки.
Если у вас есть опыт работы с Ant, вы можете написать сборку на основе Ant и использовать плагин Maven AntRun, чтобы связать выполнение целей с фазами Maven. Ниже приведен пример, который делает это для clean, compile, test и package:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>clean-project</id>
<phase>clean</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<ant antfile="${basedir}/build/build.xml">
<target name="clean"/>
</ant>
</tasks>
</configuration>
</execution>
<execution>
<id>create-swf</id>
<phase>compile</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks unless="flex.skip">
<ant antfile="${basedir}/build/build.xml">
<target name="compile"/>
</ant>
</tasks>
</configuration>
</execution>
<execution>
<id>flexunit-tests</id>
<phase>test</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks unless="maven.test.skip">
<ant antfile="${basedir}/build/build.xml">
<target name="test"/>
</ant>
</tasks>
</configuration>
</execution>
<execution>
<id>generate-asdoc</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks unless="asdoc.skip">
<ant antfile="${basedir}/build/build.xml">
<target name="asdoc"/>
</ant>
</tasks>
</configuration>
</execution>
<execution>
<id>dist</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<ant antfile="${basedir}/build/build.xml">
<target name="dist"/>
</ant>
</tasks>
</configuration>
</execution>
</executions>
<dependencies>
<!--
since we are using maven-antrun 1.6 which depends on ant 1.8.1
make sure the version number on ant-junit matches
-->
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-junit</artifactId>
<version>1.8.1</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>