Home | History | Annotate | Download | only in it-report-without-debug
      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-report-without-debug</artifactId>
     23 
     24   <build>
     25     <plugins>
     26       <plugin>
     27         <groupId>@project.groupId@</groupId>
     28         <artifactId>jacoco-maven-plugin</artifactId>
     29         <executions>
     30           <execution>
     31             <id>prepare-agent</id>
     32             <goals>
     33               <goal>prepare-agent</goal>
     34             </goals>
     35           </execution>
     36           <execution>
     37             <id>report</id>
     38             <goals>
     39               <goal>report</goal>
     40             </goals>
     41           </execution>
     42         </executions>
     43       </plugin>
     44       <plugin>
     45         <groupId>org.apache.maven.plugins</groupId>
     46         <artifactId>maven-compiler-plugin</artifactId>
     47         <configuration>
     48           <debug>true</debug>
     49           <debuglevel>none</debuglevel>
     50         </configuration>
     51       </plugin>
     52     </plugins>
     53   </build>
     54 </project>
     55