diff options
Diffstat (limited to 'm2/jitsi-dns/pom.xml')
-rw-r--r-- | m2/jitsi-dns/pom.xml | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/m2/jitsi-dns/pom.xml b/m2/jitsi-dns/pom.xml new file mode 100644 index 0000000..bbedef9 --- /dev/null +++ b/m2/jitsi-dns/pom.xml @@ -0,0 +1,61 @@ +<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-dns</artifactId> + <packaging>jar</packaging> + + <name>jitsi-dns</name> + + <dependencies> + <dependency> + <groupId>dnsjava</groupId> + <artifactId>dnsjava</artifactId> + </dependency> + <!-- org.jitsi --> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>dnssecjava</artifactId> + <version>1.1</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>jitsi-protocol</artifactId> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <includes> + <include>net/java/sip/communicator/impl/dns/**</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/dns/dns.manifest.mf</manifestFile> + </archive> + <includes> + <include>net/java/sip/communicator/impl/dns/**</include> + </includes> + </configuration> + </plugin> + </plugins> + </build> +</project> |