Skip to content

Instantly share code, notes, and snippets.

@cjcolvar
Created March 29, 2013 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cjcolvar/5272207 to your computer and use it in GitHub Desktop.
Save cjcolvar/5272207 to your computer and use it in GitHub Desktop.
maven flex configuration
<groupId>org.sonatype.flexmojos</groupId>
<artifactId>flexmojos-maven-plugin</artifactId>
<version>4.0-RC2</version>
<extensions>true</extensions>
<configuration>
<targetPlayer>10.0.0</targetPlayer>
<accessible>true</accessible>
<headlessServer>true</headlessServer>
<!-- <output>../../shared-resources/player/Videodisplay.swf</output>
<coverageViewerPath>/Applications/CoverageViewer.app</coverageViewerPath> -->
<sourcePaths>
<path>${basedir}/src/main/flex</path>
</sourcePaths>
<definesDeclaration>
<property>
<name>SOMETHING::aNumber</name>
<value>2.2</value>
</property>
</definesDeclaration>
<verboseStacktraces>true</verboseStacktraces>
<configurationReport>true</configurationReport>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment