EGit v5.0.0.201805301535-rc2
[egit/eclipse.git] / org.eclipse.egit.ui.importer.tests / pom.xml
blob521dcb5abfb88102dacb4a8dd6ab390407053012
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3    Copyright (C) 2015 Mickael Istria <mistria@redhat.com>
5    All rights reserved. This program and the accompanying materials
6    are made available under the terms of the Eclipse Public License 2.0
7    which accompanies this distribution, and is available at
8    https://www.eclipse.org/legal/epl-2.0/
10    SPDX-License-Identifier: EPL-2.0
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         <parent>
16                 <groupId>org.eclipse.egit</groupId>
17                 <version>5.0.0.201805301535-rc2</version>
18                 <artifactId>egit-parent</artifactId>
19         </parent>
20         <artifactId>org.eclipse.egit.ui.importer.tests</artifactId>
21         <packaging>eclipse-test-plugin</packaging>
23         <name>Git Team Provider (experimental auto-import wizard, incubation)</name>
25         <build>
26                 <plugins>
27                         <plugin>
28                                 <groupId>org.eclipse.tycho</groupId>
29                                 <artifactId>tycho-source-plugin</artifactId>
30                         </plugin>
31                         <plugin>
32                                 <groupId>org.eclipse.tycho</groupId>
33                                 <artifactId>target-platform-configuration</artifactId>
34                                 <configuration>
35                                         <dependency-resolution>
36                                                 <extraRequirements>
37                                                         <requirement>
38                                                                 <type>eclipse-plugin</type>
39                                                                 <id>org.eclipse.egit.ui.smartimport</id>
40                                                                 <versionRange>0.0.0</versionRange>
41                                                         </requirement>
42                                                 </extraRequirements>
43                                         </dependency-resolution>
44                                 </configuration>
45                         </plugin>
46                         <plugin>
47                                 <groupId>org.eclipse.tycho</groupId>
48                                 <artifactId>tycho-surefire-plugin</artifactId>
49                                 <configuration>
50                                         <useUIHarness>true</useUIHarness>
51                                         <useUIThread>false</useUIThread>
52                                         <argLine>${ui.test.vmargs}</argLine>
53                                         <application>org.eclipse.ui.ide.workbench</application>
54                                         <dependencies>
55                                                 <dependency>
56                                                         <type>eclipse-plugin</type>
57                                                         <artifactId>org.eclipse.egit.ui.smartimport</artifactId>
58                                                 </dependency>
59                                                 <dependency>
60                                                         <type>eclipse-plugin</type>
61                                                         <artifactId>org.eclipse.equinox.event</artifactId>
62                                                 </dependency>
63                                         </dependencies>
64                                 </configuration>
65                         </plugin>
66                         <plugin>
67                                 <groupId>org.apache.maven.plugins</groupId>
68                                 <artifactId>maven-pmd-plugin</artifactId>
69                                 <configuration>
70                                         <excludes>
71                                                 <exclude>**/*Test.java</exclude>
72                                         </excludes>
73                                 </configuration>
74                         </plugin>
75                 </plugins>
76         </build>
77 </project>