*Flexmojos version:* 4.0-beta-7

The following is probably more of a *Maven *question than a Flexmojos one.

For non-production builds I would like to run the test-swf 
goal<https://repository.sonatype.org/content/sites/flexmojos-site/4.0-beta-7/test-swf-mojo.html>.
 
 This works correctly when I define the profile as:

<profile>
  <id>LOCAL</id>
  <build>
    <plugins>
      <plugin>
        <groupId>org.sonatype.flexmojos</groupId>
        <artifactId>flexmojos-maven-plugin</artifactId>
        <version>4.0-beta-7</version>
        <executions>
          <execution>
            <id>build-test-swf</id>
            <phase>compile</phase>
            <goals>
              <goal>test-swf</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</profile>


and I invoke mvn package -P LOCAL.  However the console output shows me that 
in before the test-swf goal, the compile-swf is also executed. 

Can I prevent the compile-swf goal?  These seems superfluous since the SWF 
that it generates is anyway overwritten by the one that test-swf generates.

Sri

-- 
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/

Reply via email to