diff options
author | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2017-03-11 22:15:03 +0100 |
---|---|---|
committer | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2017-03-11 22:15:03 +0100 |
commit | 85901329b0794b136b96bf745f4ab1572806fc89 (patch) | |
tree | f23da7e97cae727f39d825f0fef8348cffb238e4 /m2/jitsi-notification-service | |
parent | 3db2e44f186c59429901b2c899e139ea60117a55 (diff) | |
parent | cf5da997da8820b4050f5b87ee9440a0ede36d1f (diff) | |
download | jitsi-master.zip jitsi-master.tar.gz jitsi-master.tar.bz2 |
Signed-off-by: Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de>
Diffstat (limited to 'm2/jitsi-notification-service')
-rw-r--r-- | m2/jitsi-notification-service/pom.xml | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/m2/jitsi-notification-service/pom.xml b/m2/jitsi-notification-service/pom.xml new file mode 100644 index 0000000..7ad123e --- /dev/null +++ b/m2/jitsi-notification-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-notification-service</artifactId> + <packaging>jar</packaging> + + <name>jitsi-notification-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/notification/**</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/notification/notification.manifest.mf</manifestFile> + </archive> + <includes> + <include>net/java/sip/communicator/service/notification/**</include> + </includes> + </configuration> + </plugin> + </plugins> + </build> +</project> |