2015-12-20 22:32:25 +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/xsd/maven-4.0.0.xsd">
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2015-12-27 22:57:41 +01:00
|
|
|
<groupId>org.openhab.core</groupId>
|
|
|
|
<artifactId>pom-features</artifactId>
|
2015-12-20 22:32:25 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
2015-12-27 22:57:41 +01:00
|
|
|
<artifactId>openhab-core</artifactId>
|
2015-12-20 22:32:25 +01:00
|
|
|
<packaging>feature</packaging>
|
|
|
|
|
|
|
|
<name>openHAB Karaf Features</name>
|
|
|
|
<description>openHAB Core Features</description>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.karaf.tooling</groupId>
|
|
|
|
<artifactId>karaf-maven-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<startLevel>80</startLevel>
|
|
|
|
<aggregateFeatures>true</aggregateFeatures>
|
|
|
|
<!-- <resolver>(obr)</resolver> -->
|
|
|
|
<checkDependencyChange>true</checkDependencyChange>
|
|
|
|
<failOnDependencyChange>false</failOnDependencyChange>
|
|
|
|
<logDependencyChanges>true</logDependencyChanges>
|
|
|
|
<overwriteChangedDependencies>true</overwriteChangedDependencies>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|