2015-12-20 22:32:25 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2015-12-27 22:57:41 +01:00
|
|
|
<groupId>org.openhab.core</groupId>
|
|
|
|
<artifactId>pom-bundles</artifactId>
|
2016-05-21 13:51:10 +02:00
|
|
|
<version>2.0.0.b3</version>
|
2015-12-20 22:32:25 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>org.openhab.core.compat1x.test</artifactId>
|
|
|
|
|
|
|
|
<name>openHAB Core 1.x Compatibility Layer Tests</name>
|
|
|
|
<packaging>eclipse-test-plugin</packaging>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
|
|
<artifactId>tycho-surefire-plugin</artifactId>
|
|
|
|
<version>${tycho-version}</version>
|
|
|
|
<configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<type>eclipse-plugin</type>
|
|
|
|
<artifactId>org.eclipse.equinox.ds</artifactId>
|
|
|
|
<version>0.0.0</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<bundleStartLevel>
|
|
|
|
<bundle>
|
|
|
|
<id>org.eclipse.equinox.ds</id>
|
|
|
|
<level>1</level>
|
|
|
|
<autoStart>true</autoStart>
|
|
|
|
</bundle>
|
|
|
|
</bundleStartLevel>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|