2018-09-10 13:45:11 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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/maven-v4_0_0.xsd">
|
2015-12-20 22:32:25 +01:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2015-12-27 22:57:41 +01:00
|
|
|
<groupId>org.openhab.core</groupId>
|
|
|
|
<artifactId>pom-bundles</artifactId>
|
2018-05-28 01:54:21 +02:00
|
|
|
<version>2.4.0-SNAPSHOT</version>
|
2015-12-20 22:32:25 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>org.openhab.core.compat1x.test</artifactId>
|
2018-09-10 13:45:11 +02:00
|
|
|
<packaging>eclipse-test-plugin</packaging>
|
2015-12-20 22:32:25 +01:00
|
|
|
|
|
|
|
<name>openHAB Core 1.x Compatibility Layer Tests</name>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2017-04-07 12:42:23 +02:00
|
|
|
<groupId>${tycho-groupid}</groupId>
|
|
|
|
<artifactId>target-platform-configuration</artifactId>
|
|
|
|
<configuration>
|
2018-09-10 13:45:11 +02:00
|
|
|
<environments combine.self="override"></environments>
|
2017-04-07 12:42:23 +02:00
|
|
|
<dependency-resolution>
|
|
|
|
<extraRequirements>
|
|
|
|
<requirement>
|
|
|
|
<type>eclipse-plugin</type>
|
|
|
|
<id>org.eclipse.equinox.ds</id>
|
|
|
|
<versionRange>0.0.0</versionRange>
|
|
|
|
</requirement>
|
|
|
|
<requirement>
|
|
|
|
<type>eclipse-plugin</type>
|
|
|
|
<id>org.eclipse.equinox.event</id>
|
|
|
|
<versionRange>0.0.0</versionRange>
|
|
|
|
</requirement>
|
|
|
|
</extraRequirements>
|
|
|
|
</dependency-resolution>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>${tycho-groupid}</groupId>
|
2015-12-20 22:32:25 +01:00
|
|
|
<artifactId>tycho-surefire-plugin</artifactId>
|
|
|
|
<version>${tycho-version}</version>
|
|
|
|
<configuration>
|
|
|
|
<bundleStartLevel>
|
|
|
|
<bundle>
|
|
|
|
<id>org.eclipse.equinox.ds</id>
|
|
|
|
<level>1</level>
|
|
|
|
<autoStart>true</autoStart>
|
|
|
|
</bundle>
|
2017-04-07 12:42:23 +02:00
|
|
|
<bundle>
|
|
|
|
<id>org.eclipse.equinox.event</id>
|
|
|
|
<level>4</level>
|
|
|
|
<autoStart>true</autoStart>
|
|
|
|
</bundle>
|
|
|
|
<bundle>
|
|
|
|
<id>org.eclipse.smarthome.core</id>
|
|
|
|
<level>4</level>
|
|
|
|
<autoStart>true</autoStart>
|
|
|
|
</bundle>
|
2015-12-20 22:32:25 +01:00
|
|
|
</bundleStartLevel>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2018-09-10 13:45:11 +02:00
|
|
|
|
2015-12-20 22:32:25 +01:00
|
|
|
</project>
|