EGit v6.7.0.202308301100-rc1
[egit/eclipse.git] / org.eclipse.egit.core.junit / pom.xml
blob981ac91e5f26be93ca244964642f10244740ef3e
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 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"
14     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
15     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
16   <modelVersion>4.0.0</modelVersion>
18   <parent>
19     <groupId>org.eclipse.egit</groupId>
20     <artifactId>egit-parent</artifactId>
21     <version>6.7.0.202308301100-rc1</version>
22   </parent>
24   <artifactId>org.eclipse.egit.core.junit</artifactId>
25   <packaging>eclipse-plugin</packaging>
27   <name>EGit JUnit Support</name>
29   <build>
30      <plugins>
31        <plugin>
32          <groupId>org.eclipse.tycho</groupId>
33          <artifactId>tycho-source-plugin</artifactId>
34        </plugin>
35        <!--
36          The src directory is marked as a test directory to prevent use of the classes in production code.
37          That makes maven try to execute the classes using JUnit 3. But these classes are not tests; they
38          are utilities to be used by other tests. And using JUnit 3 is wrong anyway.
39        -->
40        <plugin>
41          <groupId>org.apache.maven.plugins</groupId>
42          <artifactId>maven-surefire-plugin</artifactId>
43          <version>3.0.0-M5</version>
44          <configuration>
45            <skipTests>true</skipTests>
46          </configuration>
47        </plugin>
48      </plugins>
49   </build>
50 </project>