EGit v4.9.2.201712150930-r
[egit/eclipse.git] / org.eclipse.egit.gitflow.test / pom.xml
bloba07ce96da7b1fc3f2f3bc028feb595f3107c27f9
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 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12         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>
15         <parent>
16                 <groupId>org.eclipse.egit</groupId>
17                 <artifactId>egit-parent</artifactId>
18                 <version>4.9.2.201712150930-r</version>
19         </parent>
21         <artifactId>org.eclipse.egit.gitflow.test</artifactId>
22         <packaging>eclipse-test-plugin</packaging>
24         <name>GitFlow Test Plug-in</name>
26         <build>
27                 <plugins>
28                         <plugin>
29                                 <groupId>org.eclipse.tycho</groupId>
30                                 <artifactId>tycho-surefire-plugin</artifactId>
31                                 <configuration>
32                                         <!--excludes> <exclude>**/Test*.class</exclude> </excludes -->
33                                         <argLine>${test.vmparams} ${coretest.vmparams}</argLine>
34                                         <useUIHarness>false</useUIHarness>
35                                         <useUIThread>false</useUIThread>
36                                 </configuration>
37                         </plugin>
38                         <plugin>
39                                 <groupId>org.eclipse.tycho</groupId>
40                                 <artifactId>target-platform-configuration</artifactId>
41                                 <configuration>
42                                         <dependency-resolution>
43                                                 <extraRequirements>
44                                                         <requirement>
45                                                                 <type>eclipse-feature</type>
46                                                                 <id>org.eclipse.egit</id>
47                                                                 <versionRange>0.0.0</versionRange>
48                                                         </requirement>
49                                                 </extraRequirements>
50                                         </dependency-resolution>
51                                 </configuration>
52                         </plugin>
53                         <plugin>
54                                 <groupId>org.apache.maven.plugins</groupId>
55                                 <artifactId>maven-pmd-plugin</artifactId>
56                                 <configuration>
57                                         <excludes>
58                                                 <exclude>**/*Test.java</exclude>
59                                         </excludes>
60                                 </configuration>
61                         </plugin>
62                 </plugins>
63         </build>
64 </project>