blob: a8dd4ec50c9e24a17d883f0b986aca67bd841c32 [file] [log] [blame]
asobolev2b6b5232011-09-13 08:41:20 +00001<?xml version="1.0" encoding="UTF-8"?>
asoboleva51660e2011-09-14 05:03:48 +00002<project
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5 <modelVersion>4.0.0</modelVersion>
6 <parent>
7 <artifactId>core.tests</artifactId>
8 <groupId>org.eclipse.dltk.core</groupId>
9 <version>1.0.0-SNAPSHOT</version>
10 </parent>
11 <groupId>org.eclipse.dltk.core</groupId>
12 <artifactId>org.eclipse.dltk.debug.tests</artifactId>
13 <version>4.0.0-SNAPSHOT</version>
14 <packaging>eclipse-test-plugin</packaging>
15 <build>
16 <plugins>
17 <plugin>
18 <groupId>org.eclipse.tycho</groupId>
19 <artifactId>tycho-surefire-plugin</artifactId>
20 <version>${tycho-version}</version>
21 <configuration>
22 <testSuite>org.eclipse.dltk.debug.tests</testSuite>
23 <testClass>org.eclipse.dltk.debug.tests.AllTests</testClass>
24 <failIfNoTests>false</failIfNoTests>
25 <testIgnoreFailure>true</testIgnoreFailure>
26 <dependencies>
27 <dependency>
28 <type>p2-installable-unit</type>
29 <artifactId>org.eclipse.platform.feature.group</artifactId>
30 </dependency>
31 </dependencies>
32 </configuration>
33 </plugin>
34 </plugins>
35 </build>
asobolev2b6b5232011-09-13 08:41:20 +000036</project>