blob: 942986ba5217ff86f59bf8e5e934da9197a68f3c [file] [log] [blame]
Stephan Herrmann415903e2012-05-26 15:53:02 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Stephan Herrmannf94f0622016-04-26 18:20:41 +02003 Copyright (c) 2012, 2016 Eclipse Foundation and others.
Stephan Herrmann415903e2012-05-26 15:53:02 +02004 All rights reserved. This program and the accompanying materials
5 are made available under the terms of the Eclipse Distribution License v1.0
6 which accompanies this distribution, and is available at
7 http://www.eclipse.org/org/documents/edl-v10.php
Stephan Herrmann7941b7c2013-11-03 16:07:28 +01008
Stephan Herrmann415903e2012-05-26 15:53:02 +02009 Contributors:
10 Igor Fedorenko - initial implementation
Stephan Herrmann7941b7c2013-11-03 16:07:28 +010011 Mickael Istria (Red Hat Inc.) - 416912: tycho-surefire-plugin configuration
Stephan Herrmann415903e2012-05-26 15:53:02 +020012-->
Stephan Herrmannc7600d82013-04-28 22:48:05 +020013<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Stephan Herrmann415903e2012-05-26 15:53:02 +020014 <modelVersion>4.0.0</modelVersion>
15 <parent>
Stephan Herrmann4c6c5002013-09-12 23:09:47 +020016 <artifactId>tests-pom</artifactId>
Stephan Herrmann415903e2012-05-26 15:53:02 +020017 <groupId>eclipse.jdt.core</groupId>
Stephan Herrmann7c967d32016-08-02 21:34:11 +020018 <version>4.7.0-SNAPSHOT</version>
Stephan Herrmann4c6c5002013-09-12 23:09:47 +020019 <relativePath>../tests-pom/</relativePath>
Stephan Herrmann415903e2012-05-26 15:53:02 +020020 </parent>
Stephan Herrmann396f3342013-03-14 14:31:57 +010021 <groupId>org.eclipse.jdt</groupId>
Stephan Herrmann415903e2012-05-26 15:53:02 +020022 <artifactId>org.eclipse.jdt.core.tests.model</artifactId>
Stephan Herrmann7c967d32016-08-02 21:34:11 +020023 <version>3.10.300-SNAPSHOT</version>
Stephan Herrmann4c6c5002013-09-12 23:09:47 +020024 <packaging>eclipse-test-plugin</packaging>
25
26 <properties>
27 <defaultSigning-excludeInnerJars>true</defaultSigning-excludeInnerJars>
Stephan Herrmannd4cbc682016-10-28 20:51:00 +020028 <code.ignoredWarnings>-warn:+fieldHiding,-unavoidableGenericProblems</code.ignoredWarnings>
Stephan Herrmann4c6c5002013-09-12 23:09:47 +020029 </properties>
Stephan Herrmann918c05c2012-12-16 20:09:49 +010030
31 <build>
32 <plugins>
33 <plugin>
Stephan Herrmann7941b7c2013-11-03 16:07:28 +010034 <groupId>org.eclipse.tycho</groupId>
35 <artifactId>tycho-surefire-plugin</artifactId>
36 <version>${tycho.version}</version>
37 <configuration>
38 <includes>
39 <include>org/eclipse/jdt/core/tests/model/AllJavaModelTests.class</include>
40 <include>org/eclipse/jdt/core/tests/dom/RunAllTests.class</include>
41 <include>org/eclipse/jdt/core/tests/RunFormatterTests.class</include>
42 </includes>
43 </configuration>
44 </plugin>
Stephan Herrmann918c05c2012-12-16 20:09:49 +010045 </plugins>
46 </build>
Stephan Herrmann415903e2012-05-26 15:53:02 +020047</project>