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>
73 lines
2.3 KiB
XML
73 lines
2.3 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.bundles</groupId>
|
|
<artifactId>org.openhab.core.reactor.bundles</artifactId>
|
|
<version>5.2.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>org.openhab.core.io.jetty.certificate</artifactId>
|
|
|
|
<name>openHAB Core :: Bundles :: SSL Certificate Generator</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcpkix-jdk18on</artifactId>
|
|
<version>1.83</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcprov-jdk18on</artifactId>
|
|
<version>1.83</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.6.1</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<phase>package</phase>
|
|
<configuration>
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
<artifactSet>
|
|
<includes>
|
|
<include>org.bouncycastle:*</include>
|
|
</includes>
|
|
</artifactSet>
|
|
<filters>
|
|
<filter>
|
|
<artifact>org.bouncycastle:*</artifact>
|
|
<excludes>
|
|
<!-- Exclude the JAR signing files -->
|
|
<exclude>META-INF/BCKEY.*</exclude>
|
|
</excludes>
|
|
</filter>
|
|
</filters>
|
|
<minimizeJar>true</minimizeJar>
|
|
<transformers>
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
<manifestEntries>
|
|
<Bundle-Classpath>.</Bundle-Classpath>
|
|
</manifestEntries>
|
|
</transformer>
|
|
</transformers>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|