2020-05-08 19:33:24 +00: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/xsd/maven-4.0.0.xsd">
|
2019-02-18 09:34:37 +00:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.openhab.ui</groupId>
|
2019-04-05 06:28:49 +00:00
|
|
|
<artifactId>org.openhab.ui.reactor</artifactId>
|
2019-12-15 18:52:07 +00:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2019-02-18 09:34:37 +00:00
|
|
|
</parent>
|
|
|
|
|
2019-06-05 19:58:11 +00:00
|
|
|
<groupId>org.openhab.ui.features</groupId>
|
|
|
|
<artifactId>org.openhab.ui.features</artifactId>
|
|
|
|
|
2019-02-18 09:34:37 +00:00
|
|
|
<packaging>feature</packaging>
|
|
|
|
|
2019-06-05 19:58:11 +00:00
|
|
|
<name>openHAB UI :: Features</name>
|
|
|
|
<description>openHAB UI Features</description>
|
2019-02-18 09:34:37 +00:00
|
|
|
|
2019-11-11 19:01:29 +00:00
|
|
|
<dependencies>
|
|
|
|
<!-- BOM, so features are build after bundles in parallel builds -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.ui.bom</groupId>
|
|
|
|
<artifactId>org.openhab.ui.bom.openhab-ui</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2019-02-18 09:34:37 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.karaf.tooling</groupId>
|
|
|
|
<artifactId>karaf-maven-plugin</artifactId>
|
|
|
|
<version>${karaf.version}</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<startLevel>80</startLevel>
|
|
|
|
<aggregateFeatures>true</aggregateFeatures>
|
|
|
|
<checkDependencyChange>true</checkDependencyChange>
|
|
|
|
<failOnDependencyChange>false</failOnDependencyChange>
|
|
|
|
<logDependencyChanges>true</logDependencyChanges>
|
|
|
|
<overwriteChangedDependencies>true</overwriteChangedDependencies>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|