aboutsummaryrefslogtreecommitdiffstats
path: root/m2/jitsi-neomedia/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-neomedia/pom.xml
parent3db2e44f186c59429901b2c899e139ea60117a55 (diff)
parentcf5da997da8820b4050f5b87ee9440a0ede36d1f (diff)
downloadjitsi-master.zip
jitsi-master.tar.gz
jitsi-master.tar.bz2
Merge commit 'cf5da99'HEADmaster
Signed-off-by: Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de>
Diffstat (limited to 'm2/jitsi-neomedia/pom.xml')
-rw-r--r--m2/jitsi-neomedia/pom.xml52
1 files changed, 52 insertions, 0 deletions
diff --git a/m2/jitsi-neomedia/pom.xml b/m2/jitsi-neomedia/pom.xml
new file mode 100644
index 0000000..e63f8e0
--- /dev/null
+++ b/m2/jitsi-neomedia/pom.xml
@@ -0,0 +1,52 @@
+<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-neomedia</artifactId>
+ <packaging>jar</packaging>
+
+ <name>jitsi-neomedia</name>
+
+ <dependencies>
+ <!-- org.jitsi -->
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>jitsi-util</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/neomedia/**</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/neomedia/neomedia.manifest.mf</manifestFile>
+ </archive>
+ <includes>
+ <include>net/java/sip/communicator/impl/neomedia/**</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>