rcp: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ctf.core.tests / pom.xml
CommitLineData
91e7f946
AM
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Copyright (C) 2011, Red Hat, Inc.
4
5 All rights reserved. This program and the accompanying materials
6 are made available under the terms of the Eclipse Public License v1.0
7 which accompanies this distribution, and is available at
8 http://www.eclipse.org/legal/epl-v10.html
9-->
10<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
11 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
12 <modelVersion>4.0.0</modelVersion>
13
14 <parent>
8336b412
AM
15 <artifactId>org.eclipse.tracecompass</artifactId>
16 <groupId>org.eclipse.tracecompass</groupId>
c7e8f6e3 17 <version>1.0.0-SNAPSHOT</version>
91e7f946
AM
18 </parent>
19
c77a695a 20 <artifactId>org.eclipse.tracecompass.tmf.ctf.core.tests</artifactId>
c7e8f6e3 21 <version>1.0.0-SNAPSHOT</version>
91e7f946
AM
22 <packaging>eclipse-test-plugin</packaging>
23
24 <name>CTF Support for TMF Core Tests Plug-in</name>
25
26 <build>
27 <plugins>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-antrun-plugin</artifactId>
7679e68a 31 <version>1.8</version>
91e7f946
AM
32 <executions>
33 <execution>
34 <id>prepare</id>
35 <phase>validate</phase>
36 <configuration>
37 <target>
38 <echo message="prepare phase" />
39 </target>
40 </configuration>
41 <goals>
42 <goal>run</goal>
43 </goals>
44 </execution>
45 </executions>
46 </plugin>
47 <plugin>
48 <groupId>org.eclipse.tycho</groupId>
49 <artifactId>tycho-surefire-plugin</artifactId>
50 <version>${tycho-version}</version>
51 <configuration>
52 <includes>
53 <include>**/AllTests.*</include>
54 </includes>
55 <useUIHarness>false</useUIHarness>
56 <useUIThread>false</useUIThread>
57 <product>org.eclipse.platform.ide</product>
58 </configuration>
59 </plugin>
60 </plugins>
61 </build>
62
c77a695a 63 <groupId>org.eclipse.tracecompass</groupId>
91e7f946 64</project>
This page took 0.112687 seconds and 5 git commands to generate.