Home | History | Annotate | Download | only in org.jacoco.core
      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.core</artifactId>
     23 
     24   <name>JaCoCo :: Core</name>
     25   <description>JaCoCo Core</description>
     26 
     27   <dependencies>
     28     <dependency>
     29       <groupId>org.ow2.asm</groupId>
     30       <artifactId>asm</artifactId>
     31     </dependency>
     32     <dependency>
     33       <groupId>org.ow2.asm</groupId>
     34       <artifactId>asm-commons</artifactId>
     35     </dependency>
     36     <dependency>
     37       <groupId>org.ow2.asm</groupId>
     38       <artifactId>asm-tree</artifactId>
     39     </dependency>
     40     <dependency>
     41       <groupId>org.ow2.asm</groupId>
     42       <artifactId>asm-analysis</artifactId>
     43     </dependency>
     44     <dependency>
     45       <groupId>org.ow2.asm</groupId>
     46       <artifactId>asm-util</artifactId>
     47     </dependency>
     48   </dependencies>
     49 
     50   <build>
     51     <sourceDirectory>src</sourceDirectory>
     52 
     53     <plugins>
     54       <plugin>
     55         <groupId>org.apache.felix</groupId>
     56         <artifactId>maven-bundle-plugin</artifactId>
     57         <executions>
     58           <execution>
     59             <phase>process-classes</phase>
     60             <goals>
     61               <goal>manifest</goal>
     62             </goals>
     63           </execution>
     64         </executions>
     65       </plugin>
     66       <plugin>
     67         <groupId>org.apache.maven.plugins</groupId>
     68         <artifactId>maven-jar-plugin</artifactId>
     69         <configuration>
     70           <archive>
     71             <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
     72           </archive>
     73         </configuration>
     74       </plugin>
     75     </plugins>
     76   </build>
     77 </project>
     78