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

« back to all changes in this revision

Viewing changes to libhover/org.eclipse.linuxtools.cdt.libhover.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) 2014, 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-libhover-parent</artifactId>
 
16
    <groupId>org.eclipse.linuxtools.cdt.libhover</groupId>
 
17
    <version>3.1.0</version>
 
18
  </parent>
 
19
 
 
20
  <artifactId>org.eclipse.linuxtools.cdt.libhover.tests</artifactId>
 
21
  <version>1.0.0-SNAPSHOT</version>
 
22
  <packaging>eclipse-test-plugin</packaging>
 
23
 
 
24
  <name>Linux Tools Libhover Core Tests Plug-in</name>
 
25
 
 
26
  <build>
 
27
    <plugins>
 
28
      <plugin>
 
29
        <groupId>org.eclipse.tycho</groupId>
 
30
        <artifactId>tycho-surefire-plugin</artifactId>
 
31
        <version>${tycho-version}</version>
 
32
        <configuration>
 
33
          <excludes>
 
34
            <!-- test mojo matches TestProject be default and treats it as PojoTest -->
 
35
            <exclude>**/Test*.class</exclude>
 
36
          </excludes>
 
37
          <testSuite>org.eclipse.linuxtools.cdt.libhover.tests</testSuite>
 
38
          <testClass>org.eclipse.linuxtools.cdt.libhover.tests.ContentAssistTests</testClass>
 
39
          <useUIHarness>true</useUIHarness>
 
40
          <useUIThread>true</useUIThread>
 
41
          <product>org.eclipse.platform.ide</product>
 
42
        </configuration>
 
43
      </plugin>
 
44
    </plugins>
 
45
  </build>
 
46
 
 
47
</project>