From 65fc62b01ddf9b8974d43da2ef915e4717e5f11e Mon Sep 17 00:00:00 2001
From: damencho <damencho@jitsi.org>
Date: Tue, 22 Dec 2015 15:41:17 -0600
Subject: Expands the Maven support to more bundles.

---
 m2/jitsi-muc/pom.xml | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)
 create mode 100644 m2/jitsi-muc/pom.xml

(limited to 'm2/jitsi-muc')

diff --git a/m2/jitsi-muc/pom.xml b/m2/jitsi-muc/pom.xml
new file mode 100644
index 0000000..952ddd8
--- /dev/null
+++ b/m2/jitsi-muc/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-muc</artifactId>
+  <packaging>jar</packaging>
+
+  <name>jitsi-muc</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>jitsi-protocol</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <includes>
+            <include>net/java/sip/communicator/service/muc/**</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/muc/muc.manifest.mf</manifestFile>
+          </archive>
+          <includes>
+            <include>net/java/sip/communicator/service/muc/**</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>
-- 
cgit v1.1