mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-25 11:45:49 +01:00
3850599163
* Upgrade to Karaf 4.4.5 and Xtext 2.34 Upgrade Karaf from 4.4.4 to 4.4.5: * Sync runtime dependencies with Karaf 4.4.5, most notably: * Jetty 9.4.53.v20231009 * JNA 5.14.0 * Pax Logging 2.2.6 * Pax Web 8.0.24 * ASM 9.6 * Resolve itest runbundles Upgrade Xtext from 2.32 to 2.34 * Sync depencencies, most notably: * Guava 33.0.0 * classgraph 4.8.165 changing provider to io.github.classgraph * Migrate old Xtext generator xtext.generator to xtext.xtext.generator as xtext.generator has been removed from Xtext, affecting org.openhab.core.model.lazygen * resolve runbundles * Remove org.openhab.core.model.lazygen No longer in use since 2017, see eclipse-archived/smarthome#4122. Signed-off-by: Holger Friedrich <mail@holger-friedrich.de>
31 lines
1.0 KiB
XML
31 lines
1.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.bundles</groupId>
|
|
<artifactId>org.openhab.core.reactor.bundles</artifactId>
|
|
<version>4.2.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>org.openhab.core.config.discovery.usbserial.windowsregistry</artifactId>
|
|
|
|
<name>openHAB Core :: Bundles :: Configuration USB-Serial Discovery for Windows</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
<artifactId>org.openhab.core.config.discovery.usbserial</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.java.dev.jna</groupId>
|
|
<artifactId>jna-platform</artifactId>
|
|
<version>5.14.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|