EGit v4.9.2.201712150930-r
[egit/eclipse.git] / org.eclipse.egit.core.test / pom.xml
blobe75ca864e769054588a97fd3f0cadc153437e94a
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3    Copyright (C) 2009, Igor Fedorenko <igor@ifedorenko.com>
5    All rights reserved. This program and the accompanying materials
6    are made available under the terms of the Eclipse Public License v1.0
7    which accompanies this distribution, and is available at
8    http://www.eclipse.org/legal/epl-v10.html
9 -->
11 <project xmlns="http://maven.apache.org/POM/4.0.0"
12     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
14   <modelVersion>4.0.0</modelVersion>
16   <parent>
17     <groupId>org.eclipse.egit</groupId>
18     <artifactId>egit-parent</artifactId>
19     <version>4.9.2.201712150930-r</version>
20   </parent>
22   <artifactId>org.eclipse.egit.core.test</artifactId>
23   <packaging>eclipse-test-plugin</packaging>
25   <name>EGit Core Test Plug-in</name>
27   <build>
28     <plugins>
29       <plugin>
30         <groupId>org.eclipse.tycho</groupId>
31         <artifactId>target-platform-configuration</artifactId>
32         <version>${tycho-version}</version>
33         <configuration>
34           <dependency-resolution>
35             <extraRequirements>
36               <requirement>
37                 <type>eclipse-feature</type>
38                 <id>org.eclipse.jgit</id>
39                 <versionRange>0.0.0</versionRange>
40               </requirement>
41               <requirement>
42                 <type>eclipse-plugin</type>
43                 <id>org.eclipse.egit.core</id>
44                 <versionRange>0.0.0</versionRange>
45               </requirement>
46             </extraRequirements>
47           </dependency-resolution>
48         </configuration>
49       </plugin>
50       <plugin>
51         <groupId>org.eclipse.tycho</groupId>
52         <artifactId>tycho-surefire-plugin</artifactId>
53         <configuration>
54           <excludes>
55             <!-- test mojo matches TestProject be default and treats it as PojoTest -->
56             <exclude>**/Test*.class</exclude>
57           </excludes>
58           <argLine>${test.vmparams} ${coretest.vmparams}</argLine>
59           <useUIHarness>false</useUIHarness>
60           <useUIThread>false</useUIThread>
61         </configuration>
62       </plugin>
63       <plugin>
64         <groupId>org.apache.maven.plugins</groupId>
65         <artifactId>maven-pmd-plugin</artifactId>
66         <configuration>
67           <excludes>
68             <exclude>**/*Test.java</exclude>
69           </excludes>
70         </configuration>
71       </plugin>
72     </plugins>
73   </build>
74 </project>