diff options
Diffstat (limited to 'm2/jitsi-certificate/pom.xml')
-rw-r--r-- | m2/jitsi-certificate/pom.xml | 73 |
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> |