2019-01-28 13:07:31 +01: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">
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.openhab.core.demo</groupId>
|
|
|
|
<artifactId>org.openhab.core.reactor.demo</artifactId>
|
|
|
|
<version>2.5.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>org.openhab.core.demo.app</artifactId>
|
|
|
|
|
|
|
|
<name>openHAB Core :: Demo :: App</name>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2019-02-01 11:02:39 +01:00
|
|
|
<groupId>org.openhab.core.bom</groupId>
|
|
|
|
<artifactId>org.openhab.core.bom.runtime-index</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.core.bom</groupId>
|
|
|
|
<artifactId>org.openhab.core.bom.openhab-core-index</artifactId>
|
2019-01-28 13:07:31 +01:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>biz.aQute.bnd</groupId>
|
|
|
|
<artifactId>bnd-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<!-- <plugin>
|
|
|
|
<groupId>biz.aQute.bnd</groupId>
|
|
|
|
<artifactId>bnd-indexer-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<includeJar>true</includeJar>
|
|
|
|
</configuration>
|
|
|
|
</plugin> -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>biz.aQute.bnd</groupId>
|
|
|
|
<artifactId>bnd-export-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<failOnChanges>false</failOnChanges>
|
|
|
|
<bndruns>
|
|
|
|
<bndrun>app.bndrun</bndrun>
|
|
|
|
</bndruns>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>biz.aQute.bnd</groupId>
|
|
|
|
<artifactId>bnd-resolver-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<bndruns>
|
|
|
|
<bndrun>app.bndrun</bndrun>
|
|
|
|
</bndruns>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|