Upgrade maven plugin versions
[deliverable/tracecompass.git] / org.eclipse.tracecompass.pcap.core.tests / pom.xml
CommitLineData
5255c030
VP
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>
8336b412
AM
17 <artifactId>org.eclipse.tracecompass</artifactId>
18 <groupId>org.eclipse.tracecompass</groupId>
c7e8f6e3 19 <version>1.0.0-SNAPSHOT</version>
5255c030
VP
20 </parent>
21
93f3824e 22 <artifactId>org.eclipse.tracecompass.pcap.core.tests</artifactId>
c7e8f6e3 23 <version>1.0.0-SNAPSHOT</version>
5255c030
VP
24 <packaging>eclipse-test-plugin</packaging>
25
93f3824e 26 <name>Trace Compass Pcap Parser Core Tests Plug-in</name>
5255c030 27
a1d21447
VP
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>
7679e68a 43 <version>1.8</version>
a1d21447
VP
44 <executions>
45 <execution>
46 <id>prepare</id>
47 <phase>pre-integration-test</phase>
48 <configuration>
49 <target>
50 <ant antfile="get-traces.xml" dir="rsc" />
51 </target>
52 </configuration>
53 <goals>
54 <goal>run</goal>
55 </goals>
56 </execution>
57 </executions>
58 </plugin>
59 </plugins>
60 </build>
61 </profile>
62 </profiles>
63
64 <build>
5255c030
VP
65 <plugins>
66 <plugin>
67 <groupId>org.eclipse.tycho</groupId>
68 <artifactId>tycho-surefire-plugin</artifactId>
69 <version>${tycho-version}</version>
70 <configuration>
93f3824e 71 <testSuite>org.eclipse.tracecompass.pcap.core.tests</testSuite>
71f2817f 72 <testClass>org.eclipse.tracecompass.pcap.core.tests.AllPcapCoreTests</testClass>
5255c030
VP
73 <useUIHarness>false</useUIHarness>
74 <useUIThread>false</useUIThread>
75 <product>org.eclipse.platform.ide</product>
76 </configuration>
77 </plugin>
a1d21447
VP
78
79 <!-- We don't use the ant file to clean because of http://jira.codehaus.org/browse/MANTRUN-78 -->
80 <plugin>
81 <artifactId>maven-clean-plugin</artifactId>
7679e68a 82 <version>2.6.1</version>
a1d21447
VP
83 <executions>
84 <execution>
85 <id>clean-traces</id>
86 <phase>clean</phase>
87 <configuration>
88 <filesets>
89 <fileset>
90 <directory>rsc</directory>
91 <includes>
92 <include>*.zip</include>
93 <include>*.pcap</include>
94 <include>*.cap</include>
95 <include>*.tar*</include>
96 </includes>
97 <excludes>
98 <exclude>*.xml</exclude>
99 <exclude>*.sh</exclude>
100 </excludes>
101 </fileset>
102 <fileset><directory>rsc/kernel</directory></fileset>
103 </filesets>
104 </configuration>
105 <goals>
106 <goal>clean</goal>
107 </goals>
108 </execution>
109 </executions>
110 </plugin>
111
5255c030
VP
112 </plugins>
113 </build>
114
93f3824e 115 <groupId>org.eclipse.tracecompass</groupId>
5255c030 116</project>
This page took 0.040972 seconds and 5 git commands to generate.