mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-10 21:31:53 +01:00
39f0e17002
* Introduced new ui.start bundle, which brings custom lifecycle status HTTP pages as well as an 404 error page. Signed-off-by: Kai Kreuzer <kai@openhab.org>
85 lines
3.1 KiB
XML
85 lines
3.1 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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.openhab.core</groupId>
|
|
<artifactId>pom</artifactId>
|
|
<version>2.4.0-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<groupId>org.openhab.core</groupId>
|
|
<artifactId>pom-bundles</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>openHAB Bundles</name>
|
|
|
|
<modules>
|
|
<module>org.openhab.core</module>
|
|
<module>org.openhab.core.compat1x</module>
|
|
<module>org.openhab.core.compat1x.test</module>
|
|
<module>org.openhab.core.karaf</module>
|
|
<module>org.openhab.core.karaf.dep.war</module>
|
|
<module>org.openhab.io.jetty.certificate</module>
|
|
<module>org.openhab.io.rest.docs</module>
|
|
<module>org.openhab.io.sound</module>
|
|
<module>org.openhab.ui.dashboard</module>
|
|
<module>org.openhab.ui.basicui</module>
|
|
<module>org.openhab.ui.classicui</module>
|
|
<module>org.openhab.ui.homebuilder</module>
|
|
<module>org.openhab.ui.paperui</module>
|
|
<module>org.openhab.ui.start</module>
|
|
</modules>
|
|
|
|
<dependencies>
|
|
<!-- Eclipse Smarthome dependencies specifically for the core -->
|
|
<dependency>
|
|
<groupId>org.eclipse.smarthome.io</groupId>
|
|
<artifactId>org.eclipse.smarthome.io.javasound</artifactId>
|
|
<version>${esh.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.smarthome.io</groupId>
|
|
<artifactId>org.eclipse.smarthome.io.rest.sitemap</artifactId>
|
|
<version>${esh.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.smarthome.ui</groupId>
|
|
<artifactId>org.eclipse.smarthome.ui</artifactId>
|
|
<version>${esh.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
|
<artifactId>org.eclipse.smarthome.ui.basic</artifactId>
|
|
<version>${esh.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
|
<artifactId>org.eclipse.smarthome.ui.classic</artifactId>
|
|
<version>${esh.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.smarthome.extension.ui</groupId>
|
|
<artifactId>org.eclipse.smarthome.ui.paper</artifactId>
|
|
<version>${esh.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.smarthome.model</groupId>
|
|
<artifactId>org.eclipse.smarthome.model.rule</artifactId>
|
|
<version>${esh.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.smarthome.model</groupId>
|
|
<artifactId>org.eclipse.smarthome.model.rule.runtime</artifactId>
|
|
<version>${esh.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.smarthome.model</groupId>
|
|
<artifactId>org.eclipse.smarthome.model.sitemap</artifactId>
|
|
<version>${esh.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|