<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>
  <groupId>multiModuleProjectId</groupId>
  <artifactId>multiModuleProjectArtifactIdFlex</artifactId>
  <packaging>swf</packaging>
  <version>1.0-SNAPSHOT</version>
  <name>multiModuleProjectArtifactIdFlex Maven Flex</name>
  <url>http://maven.apache.org</url>

  <properties>
    <flex.home>C:\Program Files\Adobe\Flex Builder 3 Plug-in\sdks\3.0.0</flex.home>
  </properties>
  <build>
    <sourceDirectory>src/main/flex</sourceDirectory>
    <plugins>
      <plugin>
        <groupId>net.israfil.mojo</groupId>
        <artifactId>maven-flex2-plugin</artifactId>
        <extensions>true</extensions>
        <configuration>
          <flexHome>${flex.home}</flexHome>
          <useNetwork>true</useNetwork>
          <main>Main.mxml</main>
        </configuration>
      </plugin>
    </plugins>
    <defaultGoal>install</defaultGoal>
  </build>
</project>
