mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-13 06:31:01 +01:00
a37cceab67
* mavenize openHAB and integrate mavenized ESH repository Signed-off-by: Markus Rathgeb <maggu2810@gmail.com>
47 lines
1.5 KiB
XML
47 lines
1.5 KiB
XML
<?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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.openhab.core.bundles.tests</groupId>
|
|
<artifactId>org.openhab.core.reactor.bundles.tests</artifactId>
|
|
<version>2.5.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>org.openhab.core.model.persistence.tests</artifactId>
|
|
<packaging>eclipse-test-plugin</packaging>
|
|
|
|
<name>openHAB Core :: Bundles :: Tests :: Model Persistence Tests</name>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>${tycho-groupid}</groupId>
|
|
<artifactId>target-platform-configuration</artifactId>
|
|
<configuration>
|
|
<environments combine.self="override"></environments>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>${tycho-groupid}</groupId>
|
|
<artifactId>tycho-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<type>eclipse-plugin</type>
|
|
<artifactId>org.eclipse.equinox.ds</artifactId>
|
|
<version>0.0.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<defaultStartLevel>
|
|
<level>4</level>
|
|
<autoStart>true</autoStart>
|
|
</defaultStartLevel>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|