Changeset 471


Ignore:
Timestamp:
07/25/12 12:27:41 (12 years ago)
Author:
pharms
Message:

further emma support

Location:
trunk
Files:
2 edited

Legend:

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

    r463 r471  
    6666    <plugins> 
    6767      <plugin> 
    68        <groupId>org.apache.maven.plugins</groupId> 
     68        <groupId>org.apache.maven.plugins</groupId> 
    6969        <artifactId>maven-compiler-plugin</artifactId> 
    7070        <version>2.3.2</version> 
  • trunk/quest-misc-test/pom.xml

    r456 r471  
    2323  </dependencies> 
    2424  <build> 
     25    <pluginManagement> 
     26      <plugins> 
     27        <plugin> 
     28          <groupId>org.eclipse.m2e</groupId> 
     29          <artifactId>lifecycle-mapping</artifactId> 
     30          <version>1.0.0</version> 
     31          <configuration> 
     32            <lifecycleMappingMetadata> 
     33              <pluginExecutions> 
     34                <pluginExecution> 
     35                  <pluginExecutionFilter> 
     36                    <groupId>org.apache.maven.plugins</groupId> 
     37                    <artifactId>maven-dependency-plugin</artifactId> 
     38                    <versionRange>[1.0.0,)</versionRange> 
     39                    <goals> 
     40                      <goal>unpack</goal> 
     41                    </goals> 
     42                  </pluginExecutionFilter> 
     43                  <action> 
     44                    <ignore/> 
     45                  </action> 
     46                </pluginExecution> 
     47                <pluginExecution> 
     48                  <pluginExecutionFilter> 
     49                    <groupId>org.codehaus.mojo</groupId> 
     50                    <artifactId>emma-maven-plugin</artifactId> 
     51                    <versionRange>[1.0-alpha-3,)</versionRange> 
     52                    <goals> 
     53                      <goal>emma</goal> 
     54                    </goals> 
     55                  </pluginExecutionFilter> 
     56                  <action> 
     57                    <ignore/> 
     58                  </action> 
     59                </pluginExecution> 
     60              </pluginExecutions> 
     61            </lifecycleMappingMetadata> 
     62          </configuration> 
     63        </plugin> 
     64      </plugins> 
     65    </pluginManagement> 
    2566    <plugins> 
    2667      <plugin> 
     
    3374        </configuration> 
    3475      </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> 
     76      <plugin> 
     77        <groupId>org.apache.maven.plugins</groupId> 
     78        <artifactId>maven-dependency-plugin</artifactId> 
     79        <version>2.4</version> 
     80        <executions> 
     81          <execution> 
     82            <id>unpack</id> 
     83            <phase>process-classes</phase> 
     84            <goals> 
     85              <goal>unpack</goal> 
     86            </goals> 
     87            <configuration> 
     88              <artifactItems> 
     89                <artifactItem> 
     90                  <groupId>de.ugoe.cs.quest</groupId> 
     91                  <artifactId>quest-misc</artifactId> 
     92                  <version>0.0.1-SNAPSHOT</version> 
     93                  <outputDirectory>${project.build.directory}/classes</outputDirectory> 
     94                </artifactItem> 
     95              </artifactItems> 
     96            </configuration> 
     97          </execution> 
     98        </executions> 
     99      </plugin> 
     100      <plugin> 
     101        <groupId>org.codehaus.mojo</groupId> 
     102        <artifactId>emma-maven-plugin</artifactId> 
     103        <version>1.0-alpha-3</version> 
     104        <inherited>true</inherited>           
     105        <executions> 
     106          <execution> 
     107            <phase>process-classes</phase> 
     108            <goals> 
     109              <goal>emma</goal> 
     110            </goals> 
     111          </execution> 
     112        </executions> 
     113      </plugin> 
     114      <plugin> 
     115        <groupId>org.apache.maven.plugins</groupId> 
     116        <artifactId>maven-jar-plugin</artifactId> 
     117        <version>2.3.2</version> 
     118        <executions> 
     119          <execution> 
     120            <goals> 
     121              <goal>test-jar</goal> 
     122            </goals> 
     123          </execution> 
     124        </executions> 
     125      </plugin> 
    47126    </plugins> 
    48127  </build> 
Note: See TracChangeset for help on using the changeset viewer.