2022-12-19 11:09:31 +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>
|
2022-12-19 00:08:22 +01:00
|
|
|
<version>4.0.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>
|
|
|
|
<artifactId>bcpkix-jdk15on</artifactId>
|
|
|
|
<version>1.52</version>
|
|
|
|
</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>
|
2022-06-02 10:49:42 +02:00
|
|
|
<version>3.3.0</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>
|
2022-12-19 11:09:31 +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>
|