Home | History | Annotate | Download | only in org.jacoco.core.test
      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <!--
      3    Copyright (c) 2009, 2015 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.tests</artifactId>
     18     <version>0.7.5.201505241946</version>
     19     <relativePath>../org.jacoco.tests</relativePath>
     20   </parent>
     21 
     22   <artifactId>org.jacoco.core.test</artifactId>
     23 
     24   <name>JaCoCo :: Test :: Core</name>
     25 
     26   <properties>
     27     <jacoco.includes>org.jacoco.core.*</jacoco.includes>
     28   </properties>
     29 
     30   <dependencies>
     31     <dependency>
     32       <groupId>${project.groupId}</groupId>
     33       <artifactId>org.jacoco.core</artifactId>
     34     </dependency>
     35     <dependency>
     36       <groupId>junit</groupId>
     37       <artifactId>junit</artifactId>
     38     </dependency>
     39   </dependencies>
     40   
     41   <profiles>
     42     <profile>
     43       <id>no-java8-validation</id>
     44       <activation>
     45         <jdk>(,1.8)</jdk>
     46       </activation>
     47       <build>
     48         <plugins>
     49           <plugin>
     50             <groupId>org.apache.maven.plugins</groupId>
     51             <artifactId>maven-compiler-plugin</artifactId>
     52             <configuration>
     53               <excludes>
     54                 <exclude>org/jacoco/core/test/validation/java8/*.java</exclude>
     55               </excludes>
     56             </configuration>
     57           </plugin>
     58         </plugins>
     59       </build>
     60     </profile>
     61   </profiles>
     62   
     63 </project>
     64