aboutsummaryrefslogtreecommitdiffstats
path: root/m2/jitsi-systray-service
diff options
context:
space:
mode:
authordamencho <damencho@jitsi.org>2015-12-22 15:41:17 -0600
committerdamencho <damencho@jitsi.org>2015-12-22 16:14:02 -0600
commit65fc62b01ddf9b8974d43da2ef915e4717e5f11e (patch)
tree27a1bb046172fb7b4efa0d0cedefe9a73701f58c /m2/jitsi-systray-service
parentb715a8c430728fc0630d98c18786663dc0f380c1 (diff)
downloadjitsi-65fc62b01ddf9b8974d43da2ef915e4717e5f11e.zip
jitsi-65fc62b01ddf9b8974d43da2ef915e4717e5f11e.tar.gz
jitsi-65fc62b01ddf9b8974d43da2ef915e4717e5f11e.tar.bz2
Expands the Maven support to more bundles.
Diffstat (limited to 'm2/jitsi-systray-service')
-rw-r--r--m2/jitsi-systray-service/pom.xml52
1 files changed, 52 insertions, 0 deletions
diff --git a/m2/jitsi-systray-service/pom.xml b/m2/jitsi-systray-service/pom.xml
new file mode 100644
index 0000000..3965173
--- /dev/null
+++ b/m2/jitsi-systray-service/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-systray-service</artifactId>
+ <packaging>jar</packaging>
+
+ <name>jitsi-systray-service</name>
+
+ <dependencies>
+ <!-- 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/systray/**</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/systray/systray.manifest.mf</manifestFile>
+ </archive>
+ <includes>
+ <include>net/java/sip/communicator/service/systray/**</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>