EGit v5.1.2.201810061102-r
[egit/eclipse.git] / org.eclipse.egit.gitflow.test / pom.xml
blob4560eafa4be5e3e9fa8fc1ec2fcf513e6de7c6d5
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3    Copyright (C) 2014, Max Hohenegger <eclipse@hohenegger.eu>
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 -->
13 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
15         <modelVersion>4.0.0</modelVersion>
17         <parent>
18                 <groupId>org.eclipse.egit</groupId>
19                 <artifactId>egit-parent</artifactId>
20                 <version>5.1.2.201810061102-r</version>
21         </parent>
23         <artifactId>org.eclipse.egit.gitflow.test</artifactId>
24         <packaging>eclipse-test-plugin</packaging>
26         <name>GitFlow Test Plug-in</name>
28         <build>
29                 <plugins>
30                         <plugin>
31                                 <groupId>org.eclipse.tycho</groupId>
32                                 <artifactId>tycho-surefire-plugin</artifactId>
33                                 <configuration>
34                                         <!--excludes> <exclude>**/Test*.class</exclude> </excludes -->
35                                         <argLine>${test.vmparams} ${coretest.vmparams}</argLine>
36                                         <useUIHarness>false</useUIHarness>
37                                         <useUIThread>false</useUIThread>
38                                 </configuration>
39                         </plugin>
40                         <plugin>
41                                 <groupId>org.eclipse.tycho</groupId>
42                                 <artifactId>target-platform-configuration</artifactId>
43                                 <configuration>
44                                         <dependency-resolution>
45                                                 <extraRequirements>
46                                                         <requirement>
47                                                                 <type>eclipse-feature</type>
48                                                                 <id>org.eclipse.egit</id>
49                                                                 <versionRange>0.0.0</versionRange>
50                                                         </requirement>
51                                                 </extraRequirements>
52                                         </dependency-resolution>
53                                 </configuration>
54                         </plugin>
55                         <plugin>
56                                 <groupId>org.apache.maven.plugins</groupId>
57                                 <artifactId>maven-pmd-plugin</artifactId>
58                                 <configuration>
59                                         <excludes>
60                                                 <exclude>**/*Test.java</exclude>
61                                         </excludes>
62                                 </configuration>
63                         </plugin>
64                 </plugins>
65         </build>
66 </project>