Skip to content

Commit

Permalink
fine, who needs emma. let's try to get jacoco to work.
Browse files Browse the repository at this point in the history
  • Loading branch information
barmintor committed May 1, 2013
1 parent b150e8b commit fb6c8ea
Showing 1 changed file with 20 additions and 28 deletions.
48 changes: 20 additions & 28 deletions pom.xml
Expand Up @@ -505,24 +505,6 @@
<inherited>true</inherited>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>emma-maven-plugin</artifactId>
<version>1.0-alpha-3</version>
<configuration>
<aggregate>true</aggregate>
<forceMojoExecution>true</forceMojoExecution>
<inherited>true</inherited>
</configuration>
<executions>
<execution>
<phase>process-classes</phase>
<goals>
<goal>instrument</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
Expand Down Expand Up @@ -580,6 +562,21 @@
<artifactId>jetty-maven-plugin</artifactId>
<version>8.1.10.v20130312</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.6.2.201302030002</version>
<configuration>
<destFile>${project.basedir}/../target/jacoco.exec</destFile>
</configuration>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
Expand Down Expand Up @@ -614,8 +611,8 @@
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>emma-maven-plugin</artifactId>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
Expand Down Expand Up @@ -673,14 +670,9 @@
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>emma-maven-plugin</artifactId>
<version>1.0-alpha-3</version>
<configuration>
<aggregate>true</aggregate>
<forceMojoExecution>true</forceMojoExecution>
<inherited>true</inherited>
</configuration>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.6.2.201302030002</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
Expand Down

0 comments on commit fb6c8ea

Please sign in to comment.