mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-10 21:31:53 +01:00
8091914a4b
Applies the POM Code Covention as used in OH2/ESH projects. See also: https://maven.apache.org/developers/conventions/code.html The executed command is: mvn \ com.github.ekryd.sortpom:sortpom-maven-plugin:sort \ -Dsort.keepBlankLines=true \ -Dsort.predefinedSortOrder=recommended_2008_06 Signed-off-by: Wouter Born <eclipse@maindrain.net>
98 lines
3.5 KiB
XML
98 lines
3.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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.openhab.core</groupId>
|
|
<artifactId>pom-features</artifactId>
|
|
<version>2.4.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>org.openhab.features.karaf.verify</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>openHAB Karaf Feature Verification</name>
|
|
<description>openHAB Core Feature Verification</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.karaf.features</groupId>
|
|
<artifactId>framework</artifactId>
|
|
<version>${karaf.version}</version>
|
|
<type>kar</type>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.smarthome</groupId>
|
|
<artifactId>esh-core</artifactId>
|
|
<version>${esh.version}</version>
|
|
<classifier>features</classifier>
|
|
<type>xml</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.smarthome</groupId>
|
|
<artifactId>esh-tp</artifactId>
|
|
<version>${esh.version}</version>
|
|
<classifier>features</classifier>
|
|
<type>xml</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openhab.core</groupId>
|
|
<artifactId>openhab-core</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>features</classifier>
|
|
<type>xml</type>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<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>
|
|
<executions>
|
|
<execution>
|
|
<id>verify</id>
|
|
<goals>
|
|
<goal>verify</goal>
|
|
</goals>
|
|
<phase>process-resources</phase>
|
|
<configuration>
|
|
<descriptors>
|
|
<descriptor>mvn:org.apache.karaf.features/framework/${karaf.version}/xml/features</descriptor>
|
|
<descriptor>mvn:org.apache.karaf.features/standard/${karaf.version}/xml/features</descriptor>
|
|
<descriptor>mvn:org.eclipse.smarthome/esh-core/${esh.version}/xml/features</descriptor>
|
|
<descriptor>mvn:org.eclipse.smarthome/esh-tp/${esh.version}/xml/features</descriptor>
|
|
<descriptor>mvn:org.openhab.core/openhab-core/${project.version}/xml/features</descriptor>
|
|
</descriptors>
|
|
<distribution>org.apache.karaf.features:framework</distribution>
|
|
<javase>1.8</javase>
|
|
<framework>
|
|
<feature>framework</feature>
|
|
</framework>
|
|
<features>
|
|
<feature>openhab-*</feature>
|
|
</features>
|
|
<verifyTransitive>false</verifyTransitive>
|
|
<ignoreMissingConditions>true</ignoreMissingConditions>
|
|
<fail>first</fail>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|