Home | History | Annotate | Download | only in it-site-failsafe
      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <!--
      3    Copyright (c) 2009, 2018 Mountainminds GmbH & Co. KG and Contributors
      4    All rights reserved. This program and the accompanying materials
      5    are made available under the terms of the Eclipse Public License v1.0
      6    which accompanies this distribution, and is available at
      7    http://www.eclipse.org/legal/epl-v10.html
      8 
      9    Contributors:
     10       Evgeny Mandrikov - initial API and implementation
     11 -->
     12 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     13          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     14   <modelVersion>4.0.0</modelVersion>
     15 
     16   <parent>
     17     <groupId>jacoco</groupId>
     18     <artifactId>setup-parent</artifactId>
     19     <version>1.0-SNAPSHOT</version>
     20   </parent>
     21 
     22   <artifactId>it-site-failsafe</artifactId>
     23 
     24   <build>
     25     <pluginManagement>
     26       <plugins>
     27         <plugin>
     28           <groupId>org.apache.maven.plugins</groupId>
     29           <artifactId>maven-failsafe-plugin</artifactId>
     30           <version>2.14.1</version>
     31         </plugin>
     32         <plugin>
     33           <groupId>org.apache.maven.plugins</groupId>
     34           <artifactId>maven-surefire-plugin</artifactId>
     35           <version>2.14.1</version>
     36         </plugin>
     37       </plugins>
     38     </pluginManagement>
     39     <plugins>
     40       <plugin>
     41         <groupId>@project.groupId@</groupId>
     42         <artifactId>jacoco-maven-plugin</artifactId>
     43         <executions>
     44           <execution>
     45             <id>default-prepare-agent</id>
     46             <goals>
     47               <goal>prepare-agent</goal>
     48             </goals>
     49           </execution>
     50           <execution>
     51             <id>default-prepare-agent-integration</id>
     52             <goals>
     53               <goal>prepare-agent-integration</goal>
     54             </goals>
     55           </execution>
     56           <execution>
     57             <id>default-report-integration</id>
     58             <goals>
     59               <goal>report-integration</goal>
     60             </goals>
     61           </execution>
     62         </executions>
     63       </plugin>
     64       <plugin>
     65         <groupId>org.apache.maven.plugins</groupId>
     66         <artifactId>maven-failsafe-plugin</artifactId>
     67         <executions>
     68             <execution>
     69                 <id>default-integration-test</id>
     70                 <goals>
     71                     <goal>integration-test</goal>
     72                 </goals>
     73             </execution>
     74         </executions>
     75       </plugin>
     76       <plugin>
     77         <groupId>org.apache.maven.plugins</groupId>
     78         <artifactId>maven-site-plugin</artifactId>
     79         <!-- version 3.3 is needed as 3.2 is not able to produce multiple reports. -->
     80         <version>3.3</version>
     81       </plugin>
     82     </plugins>
     83   </build>
     84 
     85   <reporting>
     86     <excludeDefaults>true</excludeDefaults>
     87     <plugins>
     88       <plugin>
     89         <groupId>@project.groupId@</groupId>
     90         <artifactId>jacoco-maven-plugin</artifactId>
     91         <version>@project.version@</version>
     92       </plugin>
     93     </plugins>
     94   </reporting>
     95 </project>
     96