diff options
author | Lyubomir Marinov <lyubomir.marinov@jitsi.org> | 2015-07-21 17:20:02 -0500 |
---|---|---|
committer | Lyubomir Marinov <lyubomir.marinov@jitsi.org> | 2015-07-21 17:23:13 -0500 |
commit | 70921744d6a5bf2e49776d8ae86fc058f0bb6024 (patch) | |
tree | b9fd9db870e3957956ac06ef9f663182258df0e9 /m2/jitsi-dnsservice | |
parent | 54f7eb0c551fb18b674a2ec5ef5f0bca51f7ebab (diff) | |
download | jitsi-70921744d6a5bf2e49776d8ae86fc058f0bb6024.zip jitsi-70921744d6a5bf2e49776d8ae86fc058f0bb6024.tar.gz jitsi-70921744d6a5bf2e49776d8ae86fc058f0bb6024.tar.bz2 |
Expands the Maven support to more bundles.
Diffstat (limited to 'm2/jitsi-dnsservice')
-rw-r--r-- | m2/jitsi-dnsservice/pom.xml | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/m2/jitsi-dnsservice/pom.xml b/m2/jitsi-dnsservice/pom.xml new file mode 100644 index 0000000..165ac71 --- /dev/null +++ b/m2/jitsi-dnsservice/pom.xml @@ -0,0 +1,51 @@ +<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-dnsservice</artifactId> + <packaging>jar</packaging> + + <name>jitsi-dnsservice</name> + + <dependencies> + <dependency> + <groupId>dnsjava</groupId> + <artifactId>dnsjava</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/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/service/dns/dns.manifest.mf</manifestFile> + </archive> + <includes> + <include>net/java/sip/communicator/service/dns/**</include> + </includes> + </configuration> + </plugin> + </plugins> + </build> +</project> |