tmf: Fix GTK bug when setting top item after changing tree font
[deliverable/tracecompass.git] / pcap / org.eclipse.tracecompass.pcap.core.tests / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014, Ericsson
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
11 <project xmlns="http://maven.apache.org/POM/4.0.0"
12 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
14 <modelVersion>4.0.0</modelVersion>
15
16 <parent>
17 <artifactId>org.eclipse.tracecompass.pcap-parent</artifactId>
18 <groupId>org.eclipse.tracecompass</groupId>
19 <version>2.0.0-SNAPSHOT</version>
20 </parent>
21
22 <artifactId>org.eclipse.tracecompass.pcap.core.tests</artifactId>
23 <version>1.0.0-SNAPSHOT</version>
24 <packaging>eclipse-test-plugin</packaging>
25
26 <name>Trace Compass Pcap Parser Core Tests Plug-in</name>
27
28 <!-- Do not download the test traces if "maven.test.skip" is set -->
29 <profiles>
30 <profile>
31 <id>download-traces</id>
32 <activation>
33 <property>
34 <name>!maven.test.skip</name>
35 </property>
36 </activation>
37
38 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-antrun-plugin</artifactId>
43 <executions>
44 <execution>
45 <id>prepare</id>
46 <phase>pre-integration-test</phase>
47 <configuration>
48 <target>
49 <ant antfile="get-traces.xml" dir="rsc" />
50 </target>
51 </configuration>
52 <goals>
53 <goal>run</goal>
54 </goals>
55 </execution>
56 </executions>
57 </plugin>
58 </plugins>
59 </build>
60 </profile>
61 </profiles>
62
63 <build>
64 <plugins>
65 <plugin>
66 <groupId>org.eclipse.tycho</groupId>
67 <artifactId>tycho-surefire-plugin</artifactId>
68 <configuration>
69 <testSuite>org.eclipse.tracecompass.pcap.core.tests</testSuite>
70 <testClass>org.eclipse.tracecompass.pcap.core.tests.AllPcapCoreTests</testClass>
71 <useUIHarness>false</useUIHarness>
72 <useUIThread>false</useUIThread>
73 <product>org.eclipse.platform.ide</product>
74 </configuration>
75 </plugin>
76
77 <!-- We don't use the ant file to clean because of http://jira.codehaus.org/browse/MANTRUN-78 -->
78 <plugin>
79 <artifactId>maven-clean-plugin</artifactId>
80 <executions>
81 <execution>
82 <id>clean-traces</id>
83 <phase>clean</phase>
84 <configuration>
85 <filesets>
86 <fileset>
87 <directory>rsc</directory>
88 <includes>
89 <include>*.zip</include>
90 <include>*.pcap</include>
91 <include>*.cap</include>
92 <include>*.tar*</include>
93 </includes>
94 <excludes>
95 <exclude>*.xml</exclude>
96 <exclude>*.sh</exclude>
97 </excludes>
98 </fileset>
99 <fileset><directory>rsc/kernel</directory></fileset>
100 </filesets>
101 </configuration>
102 <goals>
103 <goal>clean</goal>
104 </goals>
105 </execution>
106 </executions>
107 </plugin>
108
109 </plugins>
110 </build>
111
112 </project>
This page took 0.044503 seconds and 5 git commands to generate.