diff options
author | damencho <damencho@jitsi.org> | 2016-05-13 17:01:14 +0300 |
---|---|---|
committer | damencho <damencho@jitsi.org> | 2016-05-13 17:01:14 +0300 |
commit | a07c8181f07d1e5874b3cd3de76f0558a39db6f6 (patch) | |
tree | ab5e06c99d474376fd2410b057fc8b676ad47769 /m2/jitsi-hid | |
parent | de5ba7eba42e12043273b30cb8495eafe00367c9 (diff) | |
download | jitsi-a07c8181f07d1e5874b3cd3de76f0558a39db6f6.zip jitsi-a07c8181f07d1e5874b3cd3de76f0558a39db6f6.tar.gz jitsi-a07c8181f07d1e5874b3cd3de76f0558a39db6f6.tar.bz2 |
Adds hid to mavenized bundles.
Diffstat (limited to 'm2/jitsi-hid')
-rw-r--r-- | m2/jitsi-hid/pom.xml | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/m2/jitsi-hid/pom.xml b/m2/jitsi-hid/pom.xml new file mode 100644 index 0000000..7b0da97 --- /dev/null +++ b/m2/jitsi-hid/pom.xml @@ -0,0 +1,51 @@ +<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-hid</artifactId> + <packaging>jar</packaging> + + <name>jitsi-hid</name> + + <dependencies> + <dependency> + <groupId>org.osgi</groupId> + <artifactId>org.osgi.core</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/hid/**</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/hid/hid.manifest.mf</manifestFile> + </archive> + <includes> + <include>net/java/sip/communicator/service/hid/**</include> + </includes> + </configuration> + </plugin> + </plugins> + </build> +</project> |