mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-10 21:31:53 +01:00
6695321089
Signed-off-by: Jan N. Klug <github@klug.nrw>
324 lines
9.0 KiB
XML
324 lines
9.0 KiB
XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.openhab.core.bom</groupId>
|
|
<artifactId>org.openhab.core.reactor.bom</artifactId>
|
|
<version>3.3.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>org.openhab.core.bom.compile</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>openHAB Core :: BOM :: Compile</name>
|
|
<description>The dependencies that are used to compile the core bundles</description>
|
|
|
|
<properties>
|
|
<jetty.version>9.4.46.v20220331</jetty.version>
|
|
<swagger.version>2.1.9</swagger.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.osgi</groupId>
|
|
<artifactId>osgi.core</artifactId>
|
|
<version>7.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.osgi</groupId>
|
|
<artifactId>osgi.cmpn</artifactId>
|
|
<version>7.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.osgi</groupId>
|
|
<artifactId>osgi.annotation</artifactId>
|
|
<version>7.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jdt</groupId>
|
|
<artifactId>org.eclipse.jdt.annotation</artifactId>
|
|
<version>2.2.600</version>
|
|
<!--<scope>compile</scope> -->
|
|
</dependency>
|
|
|
|
<!-- Annotation API -->
|
|
<dependency>
|
|
<groupId>javax.annotation</groupId>
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
<version>1.2</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- Apache Commons -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.9</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- Californium -->
|
|
<dependency>
|
|
<groupId>org.eclipse.californium</groupId>
|
|
<artifactId>californium-core</artifactId>
|
|
<version>2.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.californium</groupId>
|
|
<artifactId>scandium</artifactId>
|
|
<version>2.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.californium</groupId>
|
|
<artifactId>element-connector</artifactId>
|
|
<version>2.0.0</version>
|
|
</dependency>
|
|
|
|
<!-- Gson -->
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.8.9</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- JBBP -->
|
|
<dependency>
|
|
<groupId>com.igormaznitsa</groupId>
|
|
<artifactId>jbbp</artifactId>
|
|
<version>1.4.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- Jetty -->
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-client</artifactId>
|
|
<version>${jetty.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-proxy</artifactId>
|
|
<version>${jetty.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-server</artifactId>
|
|
<version>${jetty.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-servlet</artifactId>
|
|
<version>${jetty.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
<artifactId>websocket-client</artifactId>
|
|
<version>${jetty.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- JmDNS -->
|
|
<dependency>
|
|
<groupId>org.jmdns</groupId>
|
|
<artifactId>jmdns</artifactId>
|
|
<version>3.5.7</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- jUPnP -->
|
|
<dependency>
|
|
<groupId>org.jupnp</groupId>
|
|
<artifactId>org.jupnp</artifactId>
|
|
<version>2.6.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- Measurement -->
|
|
<dependency>
|
|
<groupId>javax.measure</groupId>
|
|
<artifactId>unit-api</artifactId>
|
|
<version>2.1.3</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>si.uom</groupId>
|
|
<artifactId>si-units</artifactId>
|
|
<version>2.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>tech.units</groupId>
|
|
<artifactId>indriya</artifactId>
|
|
<version>2.1.2</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- HiveMQ MQTT Client -->
|
|
<dependency>
|
|
<groupId>com.hivemq</groupId>
|
|
<artifactId>hivemq-mqtt-client</artifactId>
|
|
<version>1.2.2</version>
|
|
<scope>compile</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.jetbrains</groupId>
|
|
<artifactId>annotations</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- Serial Communication -->
|
|
<dependency>
|
|
<groupId>org.vesalainen.comm</groupId>
|
|
<artifactId>javaxcomm</artifactId>
|
|
<version>1.0.1</version>
|
|
<scope>compile</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>commons-net</groupId>
|
|
<artifactId>commons-net</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.neuronrobotics</groupId>
|
|
<artifactId>nrjavaserial</artifactId>
|
|
<version>3.14.0</version>
|
|
<scope>compile</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>commons-net</groupId>
|
|
<artifactId>commons-net</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- Servlet and JAX-RS API -->
|
|
<dependency>
|
|
<groupId>org.apache.felix</groupId>
|
|
<artifactId>org.apache.felix.http.servlet-api</artifactId>
|
|
<version>1.1.2</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.aries.spec</groupId>
|
|
<artifactId>org.apache.aries.javax.jax.rs-api</artifactId>
|
|
<version>1.0.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- Swagger -->
|
|
<dependency>
|
|
<groupId>io.swagger.core.v3</groupId>
|
|
<artifactId>swagger-annotations</artifactId>
|
|
<version>${swagger.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.swagger.core.v3</groupId>
|
|
<artifactId>swagger-core</artifactId>
|
|
<version>${swagger.version}</version>
|
|
<scope>compile</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>javax.xml.bind</groupId>
|
|
<artifactId>jaxb-api</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.swagger.core.v3</groupId>
|
|
<artifactId>swagger-jaxrs2</artifactId>
|
|
<version>${swagger.version}</version>
|
|
<scope>compile</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>jakarta.activation</groupId>
|
|
<artifactId>jakarta.activation-api</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- XStream -->
|
|
<dependency>
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
|
<artifactId>xstream</artifactId>
|
|
<version>1.4.19</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- jollyday -->
|
|
<dependency>
|
|
<groupId>de.jollyday</groupId>
|
|
<artifactId>jollyday</artifactId>
|
|
<version>0.5.10</version>
|
|
<scope>compile</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>javax.xml.bind</groupId>
|
|
<artifactId>jaxb-api</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.glassfish.jaxb</groupId>
|
|
<artifactId>jaxb-runtime</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- JAXB -->
|
|
<dependency>
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
<version>2.3.3</version>
|
|
<scope>compile</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>jakarta.activation</groupId>
|
|
<artifactId>jakarta.activation-api</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- JAX-WS -->
|
|
<dependency>
|
|
<groupId>org.apache.servicemix.specs</groupId>
|
|
<artifactId>org.apache.servicemix.specs.saaj-api-1.4</artifactId>
|
|
<version>1.4_2</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>javax.xml.stream</groupId>
|
|
<artifactId>stax-api</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.jvnet.staxex</groupId>
|
|
<artifactId>stax-ex</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- jose4j -->
|
|
<dependency>
|
|
<groupId>org.bitbucket.b_c</groupId>
|
|
<artifactId>jose4j</artifactId>
|
|
<version>0.7.7</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|