aboutsummaryrefslogtreecommitdiffstats
path: root/m2/jitsi-certificate/pom.xml
diff options
context:
space:
mode:
authorWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2017-03-11 22:15:03 +0100
committerWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2017-03-11 22:15:03 +0100
commit85901329b0794b136b96bf745f4ab1572806fc89 (patch)
treef23da7e97cae727f39d825f0fef8348cffb238e4 /m2/jitsi-certificate/pom.xml
parent3db2e44f186c59429901b2c899e139ea60117a55 (diff)
parentcf5da997da8820b4050f5b87ee9440a0ede36d1f (diff)
downloadjitsi-85901329b0794b136b96bf745f4ab1572806fc89.zip
jitsi-85901329b0794b136b96bf745f4ab1572806fc89.tar.gz
jitsi-85901329b0794b136b96bf745f4ab1572806fc89.tar.bz2
Merge commit 'cf5da99'HEADmaster
Signed-off-by: Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de>
Diffstat (limited to 'm2/jitsi-certificate/pom.xml')
-rw-r--r--m2/jitsi-certificate/pom.xml73
1 files changed, 73 insertions, 0 deletions
diff --git a/m2/jitsi-certificate/pom.xml b/m2/jitsi-certificate/pom.xml
new file mode 100644
index 0000000..a486b92
--- /dev/null
+++ b/m2/jitsi-certificate/pom.xml
@@ -0,0 +1,73 @@
+<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/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.jitsi</groupId>
+ <artifactId>jitsi</artifactId>
+ <version>2.9-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+
+ <artifactId>jitsi-certificate</artifactId>
+ <packaging>jar</packaging>
+
+ <name>jitsi-certificate</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.bouncycastle</groupId>
+ <artifactId>bcprov-jdk15on</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
+ <version>4.4</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpcore</artifactId>
+ <version>4.4</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpmime</artifactId>
+ <version>4.4</version>
+ </dependency>
+ <!-- org.jitsi -->
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>jitsi-configuration</artifactId>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>net/java/sip/communicator/service/certificate/**</include>
+ <include>net/java/sip/communicator/impl/certificate/**</include>
+ </includes>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestFile>${project.build.sourceDirectory}/net/java/sip/communicator/impl/certificate/certificate.manifest.mf</manifestFile>
+ </archive>
+ <includes>
+ <include>net/java/sip/communicator/service/certificate/**</include>
+ <include>net/java/sip/communicator/impl/certificate/**</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>