~ubuntu-branches/ubuntu/vivid/eclipse-linuxtools/vivid-proposed

« back to all changes in this revision

Viewing changes to lttng/org.eclipse.linuxtools.tmf.pcap.core.tests/pom.xml

  • Committer: Package Import Robot
  • Author(s): Jakub Adam, Jakub Adam, tony mancill
  • Date: 2014-10-11 11:44:05 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20141011114405-yazjvxfzzhmi5sgj
Tags: 3.1.0-1
[ Jakub Adam ]
* New upstream release (Closes: #761524).
* Refreshed d/patches.
* Don't build removed feature org.eclipse.linuxtools.tools.launch
  - merged into org.eclipse.linuxtools.profiling.
* Use javac target 1.7.
* Build new feature org.eclipse.linuxtools.dataviewers.feature
  - required by Valgrind integration.
* Build-depend on eclipse-remote-services-api and eclipse-cdt-autotools.
* Bump Standards-Version to 3.9.6.
* Override incompatible-java-bytecode-format - linuxtools needs Java 7.
* Remove unused codeless-jar override.

[ tony mancill ]
* Tweak short package description to make lintian happy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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>
 
15
    <artifactId>linuxtools-lttng-parent</artifactId>
 
16
    <groupId>org.eclipse.linuxtools.lttng</groupId>
 
17
    <version>3.1.0</version>
 
18
  </parent>
 
19
 
 
20
  <artifactId>org.eclipse.linuxtools.tmf.pcap.core.tests</artifactId>
 
21
  <version>1.0.0-SNAPSHOT</version>
 
22
  <packaging>eclipse-test-plugin</packaging>
 
23
 
 
24
  <name>Pcap 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>
 
31
            <version>1.7</version>
 
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
 
 
63
 <groupId>org.eclipse.linuxtools.tmf.pcap</groupId>
 
64
</project>