Home | History | Annotate | Download | only in org.jacoco.report
      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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     13   <modelVersion>4.0.0</modelVersion>
     14 
     15   <parent>
     16     <groupId>org.jacoco</groupId>
     17     <artifactId>org.jacoco.build</artifactId>
     18     <version>0.8.0</version>
     19     <relativePath>../org.jacoco.build</relativePath>
     20   </parent>
     21 
     22   <artifactId>org.jacoco.report</artifactId>
     23 
     24   <name>JaCoCo :: Report</name>
     25   <description>JaCoCo Report</description>
     26 
     27   <dependencies>
     28     <dependency>
     29       <groupId>${project.groupId}</groupId>
     30       <artifactId>org.jacoco.core</artifactId>
     31     </dependency>
     32   </dependencies>
     33 
     34   <build>
     35     <sourceDirectory>src</sourceDirectory>
     36 
     37     <plugins>
     38       <plugin>
     39         <groupId>org.apache.felix</groupId>
     40         <artifactId>maven-bundle-plugin</artifactId>
     41         <executions>
     42           <execution>
     43             <phase>process-classes</phase>
     44             <goals>
     45               <goal>manifest</goal>
     46             </goals>
     47           </execution>
     48         </executions>
     49       </plugin>
     50       <plugin>
     51         <groupId>org.apache.maven.plugins</groupId>
     52         <artifactId>maven-jar-plugin</artifactId>
     53         <configuration>
     54           <archive>
     55             <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
     56           </archive>
     57         </configuration>
     58       </plugin>
     59     </plugins>
     60   </build>
     61 </project>
     62