2020-12-22 10:01:42 +01:00
|
|
|
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-01-28 13:07:31 +01:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.openhab.core.bom</groupId>
|
|
|
|
<artifactId>org.openhab.core.reactor.bom</artifactId>
|
2020-12-20 23:24:39 +01:00
|
|
|
<version>3.1.0-SNAPSHOT</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
</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>
|
2020-11-29 10:54:24 +01:00
|
|
|
<jetty.version>9.4.20.v20190813</jetty.version>
|
2020-08-02 13:21:57 +02:00
|
|
|
<swagger.version>2.1.0</swagger.version>
|
2019-01-28 13:07:31 +01:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.osgi</groupId>
|
|
|
|
<artifactId>osgi.core</artifactId>
|
|
|
|
<version>6.0.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.osgi</groupId>
|
|
|
|
<artifactId>osgi.cmpn</artifactId>
|
2019-04-29 19:14:24 +02:00
|
|
|
<version>7.0.0</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.osgi</groupId>
|
|
|
|
<artifactId>osgi.annotation</artifactId>
|
2019-05-06 23:10:32 +02:00
|
|
|
<version>7.0.0</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
</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.100</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>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2019-12-08 20:51:58 +01:00
|
|
|
<!-- 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>
|
|
|
|
|
2019-01-28 13:07:31 +01:00
|
|
|
<!-- Gson -->
|
|
|
|
<dependency>
|
2019-03-13 23:23:37 +01:00
|
|
|
<groupId>org.eclipse.orbit.bundles</groupId>
|
|
|
|
<artifactId>com.google.gson</artifactId>
|
|
|
|
<version>2.8.2.v20180104-1110</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2019-09-01 12:57:58 +02:00
|
|
|
<!-- JBBP -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.igormaznitsa</groupId>
|
|
|
|
<artifactId>jbbp</artifactId>
|
|
|
|
<version>1.4.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2019-01-28 13:07:31 +01:00
|
|
|
<!-- 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>
|
2019-01-30 08:57:06 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlet</artifactId>
|
|
|
|
<version>${jetty.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-01-28 13:07:31 +01:00
|
|
|
<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>
|
2020-10-16 12:52:25 +02:00
|
|
|
<version>3.5.6</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- jUPnP -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jupnp</groupId>
|
|
|
|
<artifactId>org.jupnp</artifactId>
|
2019-02-25 09:21:16 +01:00
|
|
|
<version>2.5.2</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Measurement -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.measure</groupId>
|
|
|
|
<artifactId>unit-api</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>tec.uom</groupId>
|
|
|
|
<artifactId>uom-se</artifactId>
|
2019-07-14 21:37:07 +02:00
|
|
|
<version>1.0.10</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>tec.uom.lib</groupId>
|
|
|
|
<artifactId>uom-lib-common</artifactId>
|
2019-07-14 21:37:07 +02:00
|
|
|
<version>1.0.3</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2019-12-30 22:55:19 +01:00
|
|
|
<!-- HiveMQ MQTT Client -->
|
2019-01-28 13:07:31 +01:00
|
|
|
<dependency>
|
2019-11-05 07:51:59 +01:00
|
|
|
<groupId>com.hivemq</groupId>
|
|
|
|
<artifactId>hivemq-mqtt-client</artifactId>
|
|
|
|
<version>1.1.2</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Serial Communication -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.vesalainen.comm</groupId>
|
|
|
|
<artifactId>javaxcomm</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.neuronrobotics</groupId>
|
|
|
|
<artifactId>nrjavaserial</artifactId>
|
2020-05-08 11:48:06 +02:00
|
|
|
<version>3.12.0</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2020-05-14 22:32:35 +02:00
|
|
|
<!-- 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>
|
2019-01-28 13:07:31 +01:00
|
|
|
<dependency>
|
2020-05-14 22:32:35 +02:00
|
|
|
<groupId>org.apache.aries.spec</groupId>
|
|
|
|
<artifactId>org.apache.aries.javax.jax.rs-api</artifactId>
|
|
|
|
<version>1.0.0</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Swagger -->
|
|
|
|
<dependency>
|
2020-08-02 13:21:57 +02:00
|
|
|
<groupId>io.swagger.core.v3</groupId>
|
2019-01-28 13:07:31 +01:00
|
|
|
<artifactId>swagger-annotations</artifactId>
|
2020-08-02 13:21:57 +02:00
|
|
|
<version>${swagger.version}</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-09-24 14:50:49 +02:00
|
|
|
<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>
|
2019-01-28 13:07:31 +01:00
|
|
|
<dependency>
|
2020-08-02 13:21:57 +02:00
|
|
|
<groupId>io.swagger.core.v3</groupId>
|
|
|
|
<artifactId>swagger-jaxrs2</artifactId>
|
|
|
|
<version>${swagger.version}</version>
|
2020-07-24 22:30:06 +02:00
|
|
|
<scope>compile</scope>
|
2020-08-10 09:04:36 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>jakarta.activation</groupId>
|
|
|
|
<artifactId>jakarta.activation-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-01-28 13:07:31 +01:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- XStream -->
|
|
|
|
<dependency>
|
2020-10-04 19:56:44 +02:00
|
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
|
|
|
<artifactId>xstream</artifactId>
|
2020-12-23 20:11:44 +01:00
|
|
|
<version>1.4.15</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2019-06-11 10:20:04 +02:00
|
|
|
<!-- jollyday -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.jollyday</groupId>
|
|
|
|
<artifactId>jollyday</artifactId>
|
2020-10-03 11:04:25 +02:00
|
|
|
<version>0.5.10</version>
|
2019-06-11 10:20:04 +02:00
|
|
|
<scope>compile</scope>
|
2020-10-03 11:04:25 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.glassfish.jaxb</groupId>
|
|
|
|
<artifactId>jaxb-runtime</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-06-11 10:20:04 +02:00
|
|
|
</dependency>
|
|
|
|
|
2019-07-12 17:59:15 +02:00
|
|
|
<!-- JAXB -->
|
|
|
|
<dependency>
|
2020-10-02 23:36:37 +02:00
|
|
|
<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>
|
2019-07-12 17:59:15 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- JAX-WS -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.servicemix.specs</groupId>
|
2020-10-02 23:36:37 +02:00
|
|
|
<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>
|
2019-07-12 17:59:15 +02:00
|
|
|
</dependency>
|
|
|
|
|
2020-03-23 22:36:11 +01:00
|
|
|
<!-- jose4j -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bitbucket.b_c</groupId>
|
|
|
|
<artifactId>jose4j</artifactId>
|
|
|
|
<version>0.7.0</version>
|
|
|
|
<scope>compile</scope>
|
2020-04-23 17:17:12 +02:00
|
|
|
</dependency>
|
2020-03-23 22:36:11 +01:00
|
|
|
|
2019-01-28 13:07:31 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|