2022-12-19 11:09:31 +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 https://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>
|
2022-12-19 00:08:22 +01:00
|
|
|
<version>4.0.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>
|
2022-12-05 17:44:17 +01:00
|
|
|
<californium.version>2.7.4</californium.version>
|
2023-03-01 13:09:07 +01:00
|
|
|
<jetty.version>9.4.50.v20221201</jetty.version>
|
|
|
|
<pax.web.version>8.0.15</pax.web.version>
|
2021-05-12 07:38:16 +02:00
|
|
|
<swagger.version>2.1.9</swagger.version>
|
2019-01-28 13:07:31 +01:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.osgi</groupId>
|
|
|
|
<artifactId>osgi.core</artifactId>
|
2023-03-01 13:09:07 +01:00
|
|
|
<version>8.0.0</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.osgi</groupId>
|
2023-03-01 13:09:07 +01:00
|
|
|
<artifactId>org.osgi.service.cm</artifactId>
|
|
|
|
<version>1.6.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.osgi</groupId>
|
|
|
|
<artifactId>org.osgi.service.component</artifactId>
|
|
|
|
<version>1.5.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.osgi</groupId>
|
|
|
|
<artifactId>org.osgi.service.component.annotations</artifactId>
|
|
|
|
<version>1.5.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.osgi</groupId>
|
|
|
|
<artifactId>org.osgi.service.event</artifactId>
|
|
|
|
<version>1.4.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.osgi</groupId>
|
|
|
|
<artifactId>org.osgi.service.jaxrs</artifactId>
|
|
|
|
<version>1.0.1</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.osgi</groupId>
|
|
|
|
<artifactId>osgi.annotation</artifactId>
|
2023-03-01 13:09:07 +01:00
|
|
|
<version>8.1.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>
|
2022-03-12 21:05:37 +01:00
|
|
|
<version>2.2.600</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
<!--<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>
|
2021-03-16 15:11:59 +01:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>3.9</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2019-12-08 20:51:58 +01:00
|
|
|
<!-- Californium -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.californium</groupId>
|
|
|
|
<artifactId>californium-core</artifactId>
|
2022-09-21 07:48:58 +02:00
|
|
|
<version>${californium.version}</version>
|
2019-12-08 20:51:58 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.californium</groupId>
|
|
|
|
<artifactId>scandium</artifactId>
|
2022-09-21 07:48:58 +02:00
|
|
|
<version>${californium.version}</version>
|
2019-12-08 20:51:58 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.californium</groupId>
|
|
|
|
<artifactId>element-connector</artifactId>
|
2022-09-21 07:48:58 +02:00
|
|
|
<version>${californium.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>net.i2p.crypto</groupId>
|
|
|
|
<artifactId>eddsa</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.orbit.bundles</groupId>
|
|
|
|
<artifactId>net.i2p.crypto.eddsa</artifactId>
|
|
|
|
<version>0.3.0.v20220506-1020</version>
|
2019-12-08 20:51:58 +01:00
|
|
|
</dependency>
|
|
|
|
|
2019-01-28 13:07:31 +01:00
|
|
|
<!-- Gson -->
|
|
|
|
<dependency>
|
2021-03-17 19:18:17 +01:00
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
2022-12-19 19:52:43 +01:00
|
|
|
<version>2.9.1</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>
|
2022-12-10 12:28:58 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-servlet</artifactId>
|
|
|
|
<version>${jetty.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2023-03-01 13:09:07 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-server</artifactId>
|
|
|
|
<version>${jetty.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-01-28 13:07:31 +01:00
|
|
|
|
2023-03-12 10:22:50 +01:00
|
|
|
<!-- Jetty HTTP2 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
|
|
|
<artifactId>http2-client</artifactId>
|
|
|
|
<version>${jetty.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2019-01-28 13:07:31 +01:00
|
|
|
<!-- JmDNS -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jmdns</groupId>
|
|
|
|
<artifactId>jmdns</artifactId>
|
2021-05-30 18:42:50 +02:00
|
|
|
<version>3.5.7</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- jUPnP -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jupnp</groupId>
|
|
|
|
<artifactId>org.jupnp</artifactId>
|
2023-03-05 09:55:06 +01:00
|
|
|
<version>2.7.0</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Measurement -->
|
2022-12-11 11:00:50 +01:00
|
|
|
<!-- Attention: before upgrading these dependencies check that the dimension X is still not used, otherwise change the
|
|
|
|
dimension label for org.openhab.core.library.unit.Units.BIT -->
|
2019-01-28 13:07:31 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.measure</groupId>
|
|
|
|
<artifactId>unit-api</artifactId>
|
2021-11-21 10:27:20 +01:00
|
|
|
<version>2.1.3</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-05-10 20:54:25 +02:00
|
|
|
<groupId>si.uom</groupId>
|
|
|
|
<artifactId>si-units</artifactId>
|
2021-11-21 10:27:20 +01:00
|
|
|
<version>2.1</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-05-10 20:54:25 +02:00
|
|
|
<groupId>tech.units</groupId>
|
|
|
|
<artifactId>indriya</artifactId>
|
|
|
|
<version>2.1.2</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>
|
2021-04-28 08:53:20 +02:00
|
|
|
<version>1.2.2</version>
|
2019-01-28 13:07:31 +01:00
|
|
|
<scope>compile</scope>
|
2021-03-15 08:20:54 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-01-28 13:07:31 +01:00
|
|
|
</dependency>
|
|
|
|
|
2023-03-01 13:09:07 +01:00
|
|
|
<!-- Pax Web -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ops4j.pax.web</groupId>
|
|
|
|
<artifactId>pax-web-api</artifactId>
|
|
|
|
<version>${pax.web.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ops4j.pax.web</groupId>
|
|
|
|
<artifactId>pax-web-extender-whiteboard</artifactId>
|
|
|
|
<version>${pax.web.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ops4j.pax.web</groupId>
|
|
|
|
<artifactId>pax-web-jetty</artifactId>
|
|
|
|
<version>${pax.web.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ops4j.pax.web</groupId>
|
|
|
|
<artifactId>pax-web-jsp</artifactId>
|
|
|
|
<version>${pax.web.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ops4j.pax.web</groupId>
|
|
|
|
<artifactId>pax-web-runtime</artifactId>
|
|
|
|
<version>${pax.web.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ops4j.pax.web</groupId>
|
|
|
|
<artifactId>pax-web-spi</artifactId>
|
|
|
|
<version>${pax.web.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2019-01-28 13:07:31 +01:00
|
|
|
<!-- Serial Communication -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.vesalainen.comm</groupId>
|
|
|
|
<artifactId>javaxcomm</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
<scope>compile</scope>
|
2021-01-24 21:43:08 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-net</groupId>
|
|
|
|
<artifactId>commons-net</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-01-28 13:07:31 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.neuronrobotics</groupId>
|
|
|
|
<artifactId>nrjavaserial</artifactId>
|
2021-01-24 21:43:08 +01:00
|
|
|
<version>3.14.0</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-net</groupId>
|
|
|
|
<artifactId>commons-net</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-01-28 13:07:31 +01:00
|
|
|
</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>
|
2023-03-12 12:22:33 +01:00
|
|
|
<version>1.4.20</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>
|
2021-05-11 20:52:12 +02:00
|
|
|
<version>0.7.7</version>
|
2020-03-23 22:36:11 +01:00
|
|
|
<scope>compile</scope>
|
2020-04-23 17:17:12 +02:00
|
|
|
</dependency>
|
2020-03-23 22:36:11 +01:00
|
|
|
|
2023-02-12 14:12:22 +01:00
|
|
|
<!-- dirwatcher -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openhab.osgiify</groupId>
|
|
|
|
<artifactId>io.methvin.directory-watcher</artifactId>
|
|
|
|
<version>0.17.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.java.dev.jna</groupId>
|
|
|
|
<artifactId>jna</artifactId>
|
|
|
|
<version>5.12.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.java.dev.jna</groupId>
|
|
|
|
<artifactId>jna-platform</artifactId>
|
|
|
|
<version>5.12.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-01-28 13:07:31 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|