diff options
author | damencho <damencho@jitsi.org> | 2015-12-22 15:41:17 -0600 |
---|---|---|
committer | damencho <damencho@jitsi.org> | 2015-12-22 15:41:17 -0600 |
commit | e012e3e683d72ed833de47e5b3b1d5189de80bf6 (patch) | |
tree | 8fe550ccad1c70d3c9eefa0e72b724d0940b5f05 | |
parent | 999271c02f6de779e5de74645ab6e880b0bf8e27 (diff) | |
download | jitsi-e012e3e683d72ed833de47e5b3b1d5189de80bf6.zip jitsi-e012e3e683d72ed833de47e5b3b1d5189de80bf6.tar.gz jitsi-e012e3e683d72ed833de47e5b3b1d5189de80bf6.tar.bz2 |
Expands the Maven support to more bundles.
-rw-r--r-- | m2/jitsi-certificate/pom.xml | 78 | ||||
-rw-r--r-- | m2/jitsi-desktoputil/pom.xml | 57 | ||||
-rw-r--r-- | m2/jitsi-dns/pom.xml | 56 | ||||
-rw-r--r-- | m2/jitsi-globaldisplaydetails/pom.xml | 54 | ||||
-rw-r--r-- | m2/jitsi-muc/pom.xml | 52 | ||||
-rw-r--r-- | m2/jitsi-neomedia/pom.xml | 52 | ||||
-rw-r--r-- | m2/jitsi-notification-service/pom.xml | 52 | ||||
-rw-r--r-- | m2/jitsi-reconnect/pom.xml | 52 | ||||
-rw-r--r-- | m2/jitsi-sysactivity/pom.xml | 128 | ||||
-rw-r--r-- | m2/jitsi-systray-service/pom.xml | 52 | ||||
-rw-r--r-- | m2/jitsi-version/pom.xml | 57 | ||||
-rw-r--r-- | m2/pom.xml | 11 |
12 files changed, 701 insertions, 0 deletions
diff --git a/m2/jitsi-certificate/pom.xml b/m2/jitsi-certificate/pom.xml new file mode 100644 index 0000000..a14f1ed --- /dev/null +++ b/m2/jitsi-certificate/pom.xml @@ -0,0 +1,78 @@ +<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-certificate</artifactId> + <packaging>jar</packaging> + + <name>jitsi-certificate</name> + + <dependencies> + <dependency> + <groupId>org.bouncycastle</groupId> + <artifactId>bcprov-jdk15on</artifactId> + <!-- + everywhere we use a patched version of ours from the branch + r1rv51-patched of gpolitis/bc-java (at GitHub). + --> + <version>1.51-jitsi-1</version> + </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + <version>4.4</version> + </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + <version>4.4</version> + </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpmime</artifactId> + <version>4.4</version> + </dependency> + <!-- 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/certificate/**</include> + <include>net/java/sip/communicator/impl/certificate/**</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/certificate/certificate.manifest.mf</manifestFile> + </archive> + <includes> + <include>net/java/sip/communicator/service/certificate/**</include> + <include>net/java/sip/communicator/impl/certificate/**</include> + </includes> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/m2/jitsi-desktoputil/pom.xml b/m2/jitsi-desktoputil/pom.xml new file mode 100644 index 0000000..701559c --- /dev/null +++ b/m2/jitsi-desktoputil/pom.xml @@ -0,0 +1,57 @@ +<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-desktoputil</artifactId> + <packaging>jar</packaging> + + <name>jitsi-desktoputil</name> + + <dependencies> + <dependency> + <groupId>net.java.dev.laf-widget</groupId> + <artifactId>laf-widget</artifactId> + <version>4.0</version> + </dependency> + <!-- 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/plugin/desktoputil/**</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/plugin/desktoputil/desktoputil.manifest.mf</manifestFile> + </archive> + <includes> + <include>net/java/sip/communicator/plugin/desktoputil/**</include> + </includes> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/m2/jitsi-dns/pom.xml b/m2/jitsi-dns/pom.xml new file mode 100644 index 0000000..c8fc438 --- /dev/null +++ b/m2/jitsi-dns/pom.xml @@ -0,0 +1,56 @@ +<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-dns</artifactId> + <packaging>jar</packaging> + + <name>jitsi-dns</name> + + <dependencies> + <dependency> + <groupId>dnsjava</groupId> + <artifactId>dnsjava</artifactId> + </dependency> + <!-- org.jitsi --> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>jitsi-protocol</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/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/impl/dns/dns.manifest.mf</manifestFile> + </archive> + <includes> + <include>net/java/sip/communicator/impl/dns/**</include> + </includes> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/m2/jitsi-globaldisplaydetails/pom.xml b/m2/jitsi-globaldisplaydetails/pom.xml new file mode 100644 index 0000000..0e3a828 --- /dev/null +++ b/m2/jitsi-globaldisplaydetails/pom.xml @@ -0,0 +1,54 @@ +<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-globaldisplaydetails</artifactId> + <packaging>jar</packaging> + + <name>jitsi-globaldisplaydetails</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/globaldisplaydetails/**</include> + <include>net/java/sip/communicator/impl/globaldisplaydetails/**</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/globaldisplaydetails/globaldisplaydetails.manifest.mf</manifestFile> + </archive> + <includes> + <include>net/java/sip/communicator/service/globaldisplaydetails/**</include> + <include>net/java/sip/communicator/impl/globaldisplaydetails/**</include> + </includes> + </configuration> + </plugin> + </plugins> + </build> +</project> 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> 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> 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> diff --git a/m2/jitsi-reconnect/pom.xml b/m2/jitsi-reconnect/pom.xml new file mode 100644 index 0000000..8eaf4f1 --- /dev/null +++ b/m2/jitsi-reconnect/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-reconnect</artifactId> + <packaging>jar</packaging> + + <name>jitsi-reconnect</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/plugin/reconnectplugin/**</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/plugin/reconnectplugin/reconnectplugin.manifest.mf</manifestFile> + </archive> + <includes> + <include>net/java/sip/communicator/plugin/reconnectplugin/**</include> + </includes> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/m2/jitsi-sysactivity/pom.xml b/m2/jitsi-sysactivity/pom.xml new file mode 100644 index 0000000..2c62811 --- /dev/null +++ b/m2/jitsi-sysactivity/pom.xml @@ -0,0 +1,128 @@ +<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-sysactivity</artifactId> + <packaging>bundle</packaging> + + <name>jitsi-sysactivity</name> + + <dependencies> + <dependency> + <groupId>org.freedesktop.dbus</groupId> + <artifactId>dbus-java</artifactId> + <version>2.7</version> + </dependency> + <dependency> + <groupId>org.abstractj.libmatthew</groupId> + <artifactId>hexdump</artifactId> + <version>0.2.1</version> + </dependency> + <dependency> + <groupId>org.abstractj.libmatthew</groupId> + <artifactId>unix</artifactId> + <version>0.5.1</version> + </dependency> + <dependency> + <groupId>org.abstractj.libmatthew</groupId> + <artifactId>libunix</artifactId> + <version>0.5.1</version> + <type>so</type> + </dependency> + <!-- 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/service/sysactivity/**</include> + <include>net/java/sip/communicator/impl/sysactivity/**</include> + </includes> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <configuration> + <instructions> + <Import-Package>org.osgi.framework, + org.jitsi.service.version, + org.jitsi.service.configuration, + org.jitsi.util, + org.jitsi.service.resources, net.java.sip.communicator.service.resources, + net.java.sip.communicator.util + </Import-Package> + <Export-Package>net.java.sip.communicator.service.sysactivity, + net.java.sip.communicator.service.sysactivity.event + </Export-Package> + <Private-Package>net.java.sip.communicator.impl.sysactivity.*</Private-Package> + <Bundle-Activator>net.java.sip.communicator.impl.sysactivity.SysActivityActivator</Bundle-Activator> + <Bundle-NativeCode> + darwin/libsysactivitynotifications.jnilib;osname=Mac OS X;processor=x86-64 + <!--linux/libsysactivitynotifications.so;osname=Linux;processor=x86,--> + <!--linux-64/libsysactivitynotifications.so;osname=Linux;processor=x86-64,--> + <!--windows/sysactivitynotifications.dll;osname=Win32;processor=x86,--> + <!--windows-64/sysactivitynotifications.dll;osname=Win32;processor=x86-64--> + </Bundle-NativeCode> + </instructions> + </configuration> + </plugin> + </plugins> + + <resources> + <resource> + <targetPath>darwin</targetPath> + <directory>../../lib/native/mac</directory> + <includes> + <include>**/*sysactivitynotifications.*</include> + </includes> + </resource> + <resource> + <targetPath>linux-x86</targetPath> + <directory>../../lib/native/linux</directory> + <includes> + <include>**/*sysactivitynotifications.*</include> + </includes> + </resource> + <resource> + <targetPath>linux-x86-64</targetPath> + <directory>../../lib/native/linux-64</directory> + <includes> + <include>**/*sysactivitynotifications.*</include> + </includes> + </resource> + <resource> + <targetPath>win32-x86-64</targetPath> + <directory>../../lib/native/windows-64</directory> + <includes> + <include>**/*sysactivitynotifications.*</include> + </includes> + </resource> + <resource> + <targetPath>win32-x86</targetPath> + <directory>../../lib/native/windows</directory> + <includes> + <include>**/*sysactivitynotifications.*</include> + </includes> + </resource> + </resources> + + </build> +</project> 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> diff --git a/m2/jitsi-version/pom.xml b/m2/jitsi-version/pom.xml new file mode 100644 index 0000000..6531000 --- /dev/null +++ b/m2/jitsi-version/pom.xml @@ -0,0 +1,57 @@ +<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-version</artifactId> + <packaging>jar</packaging> + + <name>jitsi-version</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/impl/version/**</include> + </includes> + <excludes> + <exclude>**/*.tmpl</exclude> + <exclude>**/version.impl.manifest.mf</exclude> + <exclude>**/SipCommunicatorVersionTask.java</exclude> + </excludes> + </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/version/version.impl.manifest.mf</manifestFile> + </archive> + <includes> + <include>net/java/sip/communicator/impl/version/**</include> + </includes> + </configuration> + </plugin> + </plugins> + </build> +</project> @@ -19,19 +19,30 @@ <url>https://jitsi.org</url> <modules> + <module>jitsi-certificate</module> <module>jitsi-configuration</module> <module>jitsi-contactlist</module> <module>jitsi-credentialsstorage</module> + <module>jitsi-desktoputil</module> + <module>jitsi-dns</module> <module>jitsi-dnsservice</module> <module>jitsi-fileaccess</module> + <module>jitsi-globaldisplaydetails</module> + <module>jitsi-muc</module> + <module>jitsi-neomedia</module> <module>jitsi-netaddr</module> + <module>jitsi-notification-service</module> <module>jitsi-packetlogging</module> <module>jitsi-protocol</module> <module>jitsi-protocol-jabber</module> <module>jitsi-protocol-media</module> + <module>jitsi-reconnect</module> <module>jitsi-resourcemanager</module> + <module>jitsi-sysactivity</module> + <module>jitsi-systray-service</module> <module>jitsi-ui-service</module> <module>jitsi-util</module> + <module>jitsi-version</module> </modules> <build> |