Changeset 462


Ignore:
Timestamp:
07/25/12 10:55:30 (12 years ago)
Author:
pharms
Message:

added emma coverage calculation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-core-tasktrees-test/pom.xml

    r444 r462  
    3333        </configuration> 
    3434      </plugin> 
    35      <plugin> 
    36        <groupId>org.apache.maven.plugins</groupId> 
    37        <artifactId>maven-jar-plugin</artifactId> 
    38        <version>2.3.2</version> 
    39        <executions> 
    40          <execution> 
    41            <goals> 
    42              <goal>test-jar</goal> 
    43            </goals> 
    44          </execution> 
    45        </executions> 
    46      </plugin> 
     35      <plugin> 
     36        <groupId>org.apache.maven.plugins</groupId> 
     37        <artifactId>maven-dependency-plugin</artifactId> 
     38        <version>2.4</version> 
     39        <executions> 
     40          <execution> 
     41            <id>unpack</id> 
     42            <phase>process-classes</phase> 
     43            <goals> 
     44              <goal>unpack</goal> 
     45            </goals> 
     46            <configuration> 
     47              <artifactItems> 
     48                <artifactItem> 
     49                  <groupId>de.ugoe.cs.quest</groupId> 
     50                  <artifactId>quest-core-tasktrees</artifactId> 
     51                  <version>0.0.1-SNAPSHOT</version> 
     52                  <outputDirectory>${project.build.directory}/classes</outputDirectory> 
     53                </artifactItem> 
     54              </artifactItems> 
     55            </configuration> 
     56          </execution> 
     57        </executions> 
     58      </plugin> 
     59      <plugin> 
     60        <groupId>org.codehaus.mojo</groupId> 
     61        <artifactId>emma-maven-plugin</artifactId> 
     62        <version>1.0-alpha-3</version> 
     63        <inherited>true</inherited>           
     64        <executions> 
     65          <execution> 
     66            <phase>process-classes</phase> 
     67            <goals> 
     68              <goal>emma</goal> 
     69            </goals> 
     70          </execution> 
     71        </executions> 
     72      </plugin> 
     73      <plugin> 
     74        <groupId>org.apache.maven.plugins</groupId> 
     75        <artifactId>maven-jar-plugin</artifactId> 
     76        <version>2.3.2</version> 
     77        <executions> 
     78          <execution> 
     79            <goals> 
     80              <goal>test-jar</goal> 
     81            </goals> 
     82          </execution> 
     83        </executions> 
     84      </plugin> 
    4785    </plugins> 
    4886  </build> 
Note: See TracChangeset for help on using the changeset viewer.