mirror of
https://github.com/danieldemus/openhab-core.git
synced 2026-07-29 12:34:22 +02:00
* Upgrade swagger to 2.2.28 * Upgrade swagger from 2.2.15 to 2.2.28 For changelog, see https://github.com/swagger-api/swagger-core/releases * Upgrade javassist from 3.29.2-GA to 3.30.2-GA Signed-off-by: Holger Friedrich <mail@holger-friedrich.de> * Upgrade cxf to 3.6.5 * Upgrade cxf from 3.6.4 to 3.6.5 Find the list of relevant changes here: https://github.com/apache/cxf/blame/3.6.x-fixes/distribution/src/main/release/release_notes.txt Signed-off-by: Holger Friedrich <mail@holger-friedrich.de> * Upgrade junit to 5.11.4 * Upgrade junit from 5.10.0 to 5.11.4 * Upgrade junit-platform-* from 1.10.0 to 1.11.4 Release notes: https://junit.org/junit5/docs/5.11.4/release-notes/ Signed-off-by: Holger Friedrich <mail@holger-friedrich.de> * Upgrade californium to 4.0.0-M2 * Upgrade californium from 2.7.4 to 4.0.0-M2 * Replace special OH built net.i2p.crypto.eddsa by BouncyCastle * Upgrade slf4j from 2.0.12 to 2.0.16 Signed-off-by: Holger Friedrich <mail@holger-friedrich.de> * Upgrade hamcrest to 3.0 * Upgrade hamcrest from 2.2 to 3.0 Release notes: https://github.com/hamcrest/JavaHamcrest/releases/tag/v3.0 Signed-off-by: Holger Friedrich <mail@holger-friedrich.de> --------- Signed-off-by: Holger Friedrich <mail@holger-friedrich.de>
107 lines
3.3 KiB
XML
107 lines
3.3 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>5.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>org.openhab.core.bom.test</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>openHAB Core :: BOM :: Test</name>
|
|
|
|
<properties>
|
|
<!-- cxf can be updated independently, karaf only uses it in tests -->
|
|
<cxf.version>3.6.5</cxf.version>
|
|
<junit.version>5.11.4</junit.version>
|
|
<mockito.version>4.11.0</mockito.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
<artifactId>jaxb-osgi</artifactId>
|
|
<version>2.3.9</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jdt</groupId>
|
|
<artifactId>org.eclipse.jdt.annotation</artifactId>
|
|
<version>2.2.100</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hamcrest</groupId>
|
|
<artifactId>hamcrest</artifactId>
|
|
<version>3.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<version>${junit.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-params</artifactId>
|
|
<version>${junit.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<version>${mockito.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
|
<version>${mockito.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>1.3.14</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
<artifactId>json-path</artifactId>
|
|
<version>2.9.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.aries.jax.rs</groupId>
|
|
<artifactId>org.apache.aries.jax.rs.whiteboard</artifactId>
|
|
<version>2.0.2</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
<artifactId>geronimo-annotation_1.3_spec</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
<artifactId>geronimo-jaxrs_2.1_spec</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.cxf</groupId>
|
|
<artifactId>cxf-rt-rs-client</artifactId>
|
|
<version>${cxf.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.cxf</groupId>
|
|
<artifactId>cxf-rt-rs-sse</artifactId>
|
|
<version>${cxf.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|