blob: 7d592ab7a920879e111726f72d550838813ed272 [file] [log] [blame]
Stephan Herrmann415903e2012-05-26 15:53:02 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Stephan Herrmann396f3342013-03-14 14:31:57 +01003 Copyright (c) 2012, 2013 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 Herrmann6aebad52014-10-03 22:19:34 +020018 <version>4.5.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 Herrmann075533e2015-04-28 17:54:14 +020023 <version>3.10.0-SNAPSHOT</version>
Stephan Herrmann4c6c5002013-09-12 23:09:47 +020024 <packaging>eclipse-test-plugin</packaging>
25
26 <properties>
27 <defaultSigning-excludeInnerJars>true</defaultSigning-excludeInnerJars>
28 </properties>
Stephan Herrmann918c05c2012-12-16 20:09:49 +010029
30 <build>
31 <plugins>
32 <plugin>
33 <groupId>org.eclipse.tycho</groupId>
34 <artifactId>tycho-packaging-plugin</artifactId>
35 <version>${tycho.version}</version>
36 <configuration>
37 <timestampProvider>default</timestampProvider>
38 </configuration>
39 </plugin>
Stephan Herrmann7941b7c2013-11-03 16:07:28 +010040 <plugin>
41 <groupId>org.eclipse.tycho</groupId>
42 <artifactId>tycho-surefire-plugin</artifactId>
43 <version>${tycho.version}</version>
44 <configuration>
45 <includes>
46 <include>org/eclipse/jdt/core/tests/model/AllJavaModelTests.class</include>
47 <include>org/eclipse/jdt/core/tests/dom/RunAllTests.class</include>
48 <include>org/eclipse/jdt/core/tests/RunFormatterTests.class</include>
49 </includes>
50 </configuration>
51 </plugin>
Stephan Herrmann918c05c2012-12-16 20:09:49 +010052 </plugins>
53 </build>
Stephan Herrmann415903e2012-05-26 15:53:02 +020054</project>