Fix csv files for performances tests (dirty temporary commit)
[EMFCompare2.git] / org.eclipse.emf.compare-parent / test-parent / pom.xml
blob33be5ca3c9c92d39ca740153106626aa179de47b
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <artifactId>emf.compare-parent</artifactId>
7     <groupId>org.eclipse.emf.compare</groupId>
8     <version>3.1.0-SNAPSHOT</version>
9     <relativePath>..</relativePath>
10   </parent>
11   <groupId>org.eclipse.emf.compare</groupId>
12   <artifactId>emf.compare-test-parent</artifactId>
13   <version>1.0.0-SNAPSHOT</version>
14   <packaging>pom</packaging>
16   <profiles>
17     <profile>
18       <id>code.coverage</id>
19       <activation>
20         <property>
21           <name>code.coverage</name>
22         </property>
23       </activation>
24       <build>
25         <plugins>
26           <plugin>
27             <groupId>org.jacoco</groupId>
28             <artifactId>jacoco-maven-plugin</artifactId>
29             <configuration>
30               <destFile>${sonar.jacoco.reportPath}</destFile>
31             </configuration>
32             <executions>
33               <execution>
34                 <id>jacoco-prepare-agent</id>
35                 <goals>
36                   <goal>prepare-agent</goal>
37                 </goals>
38               </execution>
39               <execution>
40                 <id>jacoco-report</id>
41                 <phase>verify</phase>
42                 <goals>
43                   <goal>report</goal>
44                 </goals>
45               </execution>
46             </executions>
47           </plugin>
48         </plugins>
49       </build>
50     </profile>
51   </profiles>
52 </project>