Hi
I have parent pom file which has two modules.
<modules>
<module>Yahoo-Flex</module>
<module>Yahoo-Java-spring</module>
</modules>
Now i want to run
mvn clean emma:emma
Project Yahoo-Java-spring has declared following [below is part of pom.xml]
<build>
<plugin>
<groupId>org.sonatype.flexmojos</groupId>
<artifactId>flexmojos-maven-plugin</artifactId>
<version>${flexmojosversion}</version>
<executions>
<execution>
<goals>
<goal>copy-flex-resources</goal>
</goals>
<configuration>
<stripVersion>true</stripVersion>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>emma</groupId>
<artifactId>emma</artifactId>
<version>2.0.5312</version>
</plugin>
</build>
Currently when i run
mvn clean emma:emma
it compiles both the project and run code coverage
I just want to run emma:emma on the Yahoo-Java-Spring how can i do it.
Thanks
Raj
--
View this message in context:
http://maven.40175.n5.nabble.com/Emma-CodeCoverage-for-specific-child-module-only-tp5739060.html
Sent from the Maven - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]