mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-02-10 02:46:50 +01:00
* Sync runtime dependencies with Karaf 4.4.3, most notably: * Jetty 9.4.50.v20221201 * Pax Logging 2.2.0 * Pax Web 8.0.15 * Use OSGi R8 as compile dependency * Rework Servlets to use Http Whiteboard annotations in favor of proprietary `org.openhab.core.io.http.servlet` classes * Resolve itest runbundles Also-by: Jan N. Klug <github@klug.nrw> Signed-off-by: Wouter Born <github@maindrain.net>
32 lines
979 B
XML
32 lines
979 B
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.features.karaf</groupId>
|
|
<artifactId>org.openhab.core.reactor.features.karaf</artifactId>
|
|
<version>4.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>org.openhab.core.features.karaf.openhab-tp</artifactId>
|
|
<packaging>feature</packaging>
|
|
|
|
<name>openHAB Core :: Features :: Karaf :: Target Platform</name>
|
|
|
|
<properties>
|
|
<jetty.version>9.4.50.v20221201</jetty.version>
|
|
<jna.version>5.12.1</jna.version>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.karaf.tooling</groupId>
|
|
<artifactId>karaf-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|