mirror of https://github.com/Minres/RDL-Editor.git
48 lines
1.5 KiB
XML
48 lines
1.5 KiB
XML
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>com.minres.rdl</groupId>
|
||
|
<artifactId>com.minres.rdl.parent</artifactId>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<artifactId>com.minres.rdl.ui.tests</artifactId>
|
||
|
<packaging>eclipse-test-plugin</packaging>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.eclipse.xtend</groupId>
|
||
|
<artifactId>xtend-maven-plugin</artifactId>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.eclipse.tycho</groupId>
|
||
|
<artifactId>tycho-surefire-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<failIfNoTests>false</failIfNoTests>
|
||
|
<useUIHarness>true</useUIHarness>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.eclipse.tycho</groupId>
|
||
|
<artifactId>target-platform-configuration</artifactId>
|
||
|
<configuration>
|
||
|
<dependency-resolution>
|
||
|
<extraRequirements>
|
||
|
<!-- to get the org.eclipse.osgi.compatibility.state plugin
|
||
|
if the target platform is Luna or later.
|
||
|
(backward compatible with kepler and previous versions)
|
||
|
see https://bugs.eclipse.org/bugs/show_bug.cgi?id=492149 -->
|
||
|
<requirement>
|
||
|
<type>eclipse-feature</type>
|
||
|
<id>org.eclipse.rcp</id>
|
||
|
<versionRange>0.0.0</versionRange>
|
||
|
</requirement>
|
||
|
</extraRequirements>
|
||
|
</dependency-resolution>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|