mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-12 14:11:54 +01:00
c55513a8c0
Signed-off-by: Kai Kreuzer <kai@openhab.org>
44 lines
1.3 KiB
XML
44 lines
1.3 KiB
XML
<?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>
|
|
<groupId>org.openhab.core</groupId>
|
|
<artifactId>pom-bundles</artifactId>
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
</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>
|