Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2013-09-10 11:36:16 +0000
committerM N Palat2013-11-12 06:27:24 +0000
commit1d21178fa52549e66088540b7d5bd28b727268e9 (patch)
treec34f301420011f7dea316030815f214d41bce18c /org.eclipse.jdt.core.tests.model/pom.xml
parentcfaff40b47c6c86e8d759e6d714f5639b14d0ffc (diff)
downloadeclipse.jdt.core-1d21178fa52549e66088540b7d5bd28b727268e9.tar.gz
eclipse.jdt.core-1d21178fa52549e66088540b7d5bd28b727268e9.tar.xz
eclipse.jdt.core-1d21178fa52549e66088540b7d5bd28b727268e9.zip
Bug 416912: Configuration for tycho-surefire-plugin
Signed-off-by: Mickael Istria <mistria@redhat.com> Change-Id: Ie844203235a42b15ac83d5b11567610a80fa0adb
Diffstat (limited to 'org.eclipse.jdt.core.tests.model/pom.xml')
-rw-r--r--org.eclipse.jdt.core.tests.model/pom.xml15
1 files changed, 14 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core.tests.model/pom.xml b/org.eclipse.jdt.core.tests.model/pom.xml
index dc316e9132..1a47e894c3 100644
--- a/org.eclipse.jdt.core.tests.model/pom.xml
+++ b/org.eclipse.jdt.core.tests.model/pom.xml
@@ -5,9 +5,10 @@
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/org/documents/edl-v10.php
-
+
Contributors:
Igor Fedorenko - initial implementation
+ Mickael Istria (Red Hat Inc.) - 416912: tycho-surefire-plugin configuration
-->
<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">
<modelVersion>4.0.0</modelVersion>
@@ -36,6 +37,18 @@
<timestampProvider>default</timestampProvider>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <includes>
+ <include>org/eclipse/jdt/core/tests/model/AllJavaModelTests.class</include>
+ <include>org/eclipse/jdt/core/tests/dom/RunAllTests.class</include>
+ <include>org/eclipse/jdt/core/tests/RunFormatterTests.class</include>
+ </includes>
+ </configuration>
+ </plugin>
</plugins>
</build>
</project>

Back to the top