mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-11 13:41:53 +01:00
6fcb85b311
Signed-off-by: Martin van Wingerden <martinvw@mtin.nl>
103 lines
2.8 KiB
XML
103 lines
2.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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</groupId>
|
|
<artifactId>pom-bundles</artifactId>
|
|
<version>2.2.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<properties>
|
|
<bundle.symbolicName>org.openhab.core</bundle.symbolicName>
|
|
<bundle.namespace>org.openhab.core</bundle.namespace>
|
|
</properties>
|
|
|
|
<artifactId>org.openhab.core.karaf</artifactId>
|
|
|
|
<name>openHAB Karaf Integration</name>
|
|
<packaging>eclipse-plugin</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.karaf.features</groupId>
|
|
<artifactId>org.apache.karaf.features.core</artifactId>
|
|
<version>${karaf.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.karaf.shell</groupId>
|
|
<artifactId>org.apache.karaf.shell.core</artifactId>
|
|
<version>${karaf.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.karaf.wrapper</groupId>
|
|
<artifactId>org.apache.karaf.wrapper.core</artifactId>
|
|
<version>${karaf.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
|
|
<plugin>
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
<artifactId>lifecycle-mapping</artifactId>
|
|
<version>1.0.0</version>
|
|
<configuration>
|
|
<lifecycleMappingMetadata>
|
|
<pluginExecutions>
|
|
<pluginExecution>
|
|
<pluginExecutionFilter>
|
|
<groupId>
|
|
org.eclipse.tycho
|
|
</groupId>
|
|
<artifactId>
|
|
tycho-compiler-plugin
|
|
</artifactId>
|
|
<versionRange>
|
|
[0.22.0,)
|
|
</versionRange>
|
|
<goals>
|
|
<goal>compile</goal>
|
|
</goals>
|
|
</pluginExecutionFilter>
|
|
<action>
|
|
<ignore></ignore>
|
|
</action>
|
|
</pluginExecution>
|
|
<pluginExecution>
|
|
<pluginExecutionFilter>
|
|
<groupId>
|
|
org.eclipse.tycho
|
|
</groupId>
|
|
<artifactId>
|
|
tycho-packaging-plugin
|
|
</artifactId>
|
|
<versionRange>
|
|
[0.22.0,)
|
|
</versionRange>
|
|
<goals>
|
|
<goal>build-qualifier</goal>
|
|
<goal>validate-id</goal>
|
|
<goal>
|
|
validate-version
|
|
</goal>
|
|
</goals>
|
|
</pluginExecutionFilter>
|
|
<action>
|
|
<ignore></ignore>
|
|
</action>
|
|
</pluginExecution>
|
|
</pluginExecutions>
|
|
</lifecycleMappingMetadata>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
</project>
|