mirror of
https://github.com/danieldemus/openhab-core.git
synced 2026-07-29 12:34:22 +02:00
* Upgrade Karaf to 4.4.9 Upgrade Karaf from 4.4.8 to 4.4.9. This includes upgrades for the following libraries: * jetty from 9.4.57.v20241219 to 9.4.58.v20250814 * pax-web from 8.33 to 8.34 * asm from 9.8 to 9.9 * bouncycastle/bcprov from 1.81 to 1.83 * classgraph from 4.8.180 to 4.8.184 * commons-cli from 1.9.0 to 1.10.0 * commons-io from 2.20.0 to 2.21.0 * commons-lang3 from 3.18.0 to 3.20.0 * cxf from 3.6.8 3.6.9 * guava from 33.4.8-jre to 33.5.0-jre * jackson-annotations from 2.19.2 to 2.20 * jackson from 2.19.2 to 2.20.1 * jna from 5.17.0 to 5.18.1 * ws.xmlschema from 2.3.1 to 2.3.2 * xbean from 4.27 to 4.28 * xtext/xtend from 2.40.0 to 2.41.0 Signed-off-by: Holger Friedrich <mail@holger-friedrich.de>
177 lines
5.6 KiB
XML
177 lines
5.6 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.openhab.core.tools</groupId>
|
|
<artifactId>org.openhab.core.reactor.tools</artifactId>
|
|
<version>5.2.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>upgradetool</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>openHAB Core :: Tools :: Upgrade tool</name>
|
|
<description>A tool for upgrading openHAB</description>
|
|
|
|
<properties>
|
|
<jackson.annotations.version>2.20</jackson.annotations.version>
|
|
<jackson.version>2.20.1</jackson.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
<artifactId>org.openhab.core</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
<artifactId>org.openhab.core.config.core</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
<artifactId>org.openhab.core.thing</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
<artifactId>org.openhab.core.persistence</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
<artifactId>org.openhab.core.storage.json</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-cli</groupId>
|
|
<artifactId>commons-cli</artifactId>
|
|
<version>1.10.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.measure</groupId>
|
|
<artifactId>unit-api</artifactId>
|
|
<version>2.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jdt</groupId>
|
|
<artifactId>org.eclipse.jdt.annotation</artifactId>
|
|
<version>2.2.600</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-core</artifactId>
|
|
<version>${jackson.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>${jackson.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-annotations</artifactId>
|
|
<version>${jackson.annotations.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
<artifactId>jackson-dataformat-yaml</artifactId>
|
|
<version>${jackson.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- do not remove, inherited dependency gson from core.storage.json is not provided via runtime bom -->
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.13.1</version>
|
|
</dependency>
|
|
<!-- do not remove, inherited dependency si-units and indriya are not provided via runtime bom -->
|
|
<dependency>
|
|
<groupId>si.uom</groupId>
|
|
<artifactId>si-units</artifactId>
|
|
<version>2.2.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>si.uom</groupId>
|
|
<artifactId>si-quantity</artifactId>
|
|
<version>2.2.3</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>tech.units</groupId>
|
|
<artifactId>indriya</artifactId>
|
|
<version>2.2.3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>3.9.0</version>
|
|
<executions>
|
|
<execution>
|
|
<id>unpack-eea</id>
|
|
<goals>
|
|
<goal>unpack</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifactItems>
|
|
<artifactItem>
|
|
<groupId>org.lastnpe.eea</groupId>
|
|
<artifactId>eea-all</artifactId>
|
|
<version>${eea.version}</version>
|
|
<overWrite>true</overWrite>
|
|
</artifactItem>
|
|
</artifactItems>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>3.8.0</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>org.openhab.core.tools.UpgradeTool</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>make-assembly</id>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
<phase>package</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|