2024-12-15 12:41:19 +01:00
|
|
|
<?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">
|
2018-09-10 13:45:11 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2015-12-20 22:32:25 +01:00
|
|
|
|
2018-09-10 13:45:11 +02:00
|
|
|
<parent>
|
2019-01-28 13:07:31 +01:00
|
|
|
<groupId>org.openhab.core.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.core.reactor.bundles</artifactId>
|
2024-12-15 12:41:19 +01:00
|
|
|
<version>4.4.0-SNAPSHOT</version>
|
2018-09-10 13:45:11 +02:00
|
|
|
</parent>
|
2015-12-20 22:32:25 +01:00
|
|
|
|
2019-01-28 13:07:31 +01:00
|
|
|
<artifactId>org.openhab.core.io.jetty.certificate</artifactId>
|
2015-12-20 22:32:25 +01:00
|
|
|
|
2019-01-28 13:07:31 +01:00
|
|
|
<name>openHAB Core :: Bundles :: SSL Certificate Generator</name>
|
2015-12-20 22:32:25 +01:00
|
|
|
|
2018-09-10 13:45:11 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
2023-08-19 10:54:57 +02:00
|
|
|
<artifactId>bcpkix-jdk18on</artifactId>
|
2024-05-20 17:42:04 +02:00
|
|
|
<version>1.77</version>
|
2018-09-10 13:45:11 +02:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2015-12-20 22:32:25 +01:00
|
|
|
|
2018-09-10 13:45:11 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
Update plugins (#4197)
* set minimum Maven version to 3.6.3
* build-helper-maven-plugin, 3.4.0 to 3.5.0, see
https://github.com/mojohaus/build-helper-maven-plugin/releases/tag/3.5.0
* jvnet maven-jaxb2-plugin, 0.15.2 to 0.15.3
* license-maven-plugin, 4.2 to 4.3
* maven-archetype-plugin, 3.0.1 to 3.2.1
* maven-assembly-plugin, 3.4.2 to 3.7.1, see https://github.com/apache/maven-assembly-plugin/releases
* maven-clean-plugin, 3.3.1 to 3.3.2, see https://github.com/apache/maven-clean-plugin/releases
* maven-dependency-plugin, 3.6.0/3.3.0/3.1.1 to 3.6.1, see
https://github.com/apache/maven-dependency-plugin/releases/tag/maven-dependency-plugin-3.6.1
* maven-jar-plugin, 3.3.0 to 3.4.1, see https://github.com/apache/maven-jar-plugin/releases
* maven-javadoc-plugin, 3.6.2 to 3.6.3, see https://github.com/apache/maven-javadoc-plugin/releases
* maven-plugin-plugin, 3.11.0 to 3.12.0, see
https://github.com/apache/maven-plugin-tools/releases/tag/maven-plugin-tools-3.12.0
* maven-shade-pluginm 3.5.2 to 3.5.3
* maven-source-plugin, 3.3.0 to 3.3.1
* maven-surefire-plugin, 3.1.2 to 3.2.5, see https://github.com/apache/maven-surefire/releases
* sortpom-maven-plugin, 3.3.0 to 3.4.1, see https://github.com/Ekryd/sortpom/releases
* spotless-maven-plugin, 2.38.0 to 2.43.0, see
https://github.com/diffplug/spotless/blob/main/plugin-maven/CHANGES.md
* openhab 18n-maven-plugin, 4.0.2 to 4.1.2
Signed-off-by: Holger Friedrich <mail@holger-friedrich.de>
2024-04-27 09:34:39 +02:00
|
|
|
<version>3.5.3</version>
|
2018-09-10 13:45:11 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>package</phase>
|
2019-02-08 19:17:16 +01:00
|
|
|
<configuration>
|
2019-05-18 00:07:14 +02:00
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
2019-02-08 19:17:16 +01:00
|
|
|
<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>
|
2024-12-15 12:41:19 +01:00
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
2019-02-08 19:17:16 +01:00
|
|
|
<manifestEntries>
|
|
|
|
<Bundle-Classpath>.</Bundle-Classpath>
|
|
|
|
</manifestEntries>
|
|
|
|
</transformer>
|
|
|
|
</transformers>
|
|
|
|
</configuration>
|
2018-09-10 13:45:11 +02:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-12-20 22:32:25 +01:00
|
|
|
|
2017-12-17 23:40:22 +01:00
|
|
|
</project>
|