openhab-core/bundles/org.openhab.io.jetty.certificate/dependency-reduced-pom.xml
Kai Kreuzer a5b86617a6 initial commit of openhab core components
Signed-off-by: Kai Kreuzer <kai@openhab.org>
2015-12-26 23:22:23 +01:00

91 lines
3.4 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 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>pom</artifactId>
<groupId>org.openhab.bundles</groupId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.openhab.io.jetty.certificate</artifactId>
<packaging>eclipse-plugin</packaging>
<name>openHAB SSL Certificate Generator</name>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<artifactSet>
<includes>
<include>org.bouncycastle:*</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>org.bouncycastle:*</artifact>
<excludes>
<exclude>META-INF/BCKEY.*</exclude>
</excludes>
</filter>
</filters>
<minimizeJar>true</minimizeJar>
<transformers>
<transformer>
<manifestEntries>
<Bundle-Classpath>.</Bundle-Classpath>
</manifestEntries>
</transformer>
</transformers>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.fileinstall</artifactId>
<version>3.4.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.openhab.bundles</groupId>
<artifactId>org.openhab.io.jetty.certificate</artifactId>
<version>2.0.0.qualifier</version>
<classifier>lib/bcpkix-jdk15on-1.52.jar</classifier>
<scope>system</scope>
<systemPath>/Users/kai/Documents/dev/openhab2/oh-core/openhab2/bundles/org.openhab.io.jetty.certificate/lib/bcpkix-jdk15on-1.52.jar</systemPath>
</dependency>
<dependency>
<groupId>org.openhab.bundles</groupId>
<artifactId>org.openhab.io.jetty.certificate</artifactId>
<version>2.0.0.qualifier</version>
<classifier>lib/bcprov-jdk15on-1.52.jar</classifier>
<scope>system</scope>
<systemPath>/Users/kai/Documents/dev/openhab2/oh-core/openhab2/bundles/org.openhab.io.jetty.certificate/lib/bcprov-jdk15on-1.52.jar</systemPath>
</dependency>
<dependency>
<groupId>p2.eclipse-plugin</groupId>
<artifactId>org.eclipse.osgi</artifactId>
<version>3.10.2.v20150203-1939</version>
<scope>system</scope>
<systemPath>/Users/kai/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.10.2.v20150203-1939/org.eclipse.osgi-3.10.2.v20150203-1939.jar</systemPath>
</dependency>
<dependency>
<groupId>p2.eclipse-plugin</groupId>
<artifactId>org.slf4j.api</artifactId>
<version>1.7.2.v20121108-1250</version>
<scope>system</scope>
<systemPath>/Users/kai/.m2/repository/p2/osgi/bundle/org.slf4j.api/1.7.2.v20121108-1250/org.slf4j.api-1.7.2.v20121108-1250.jar</systemPath>
</dependency>
</dependencies>
</project>