diff options
author | Lyubomir Marinov <lyubomir.marinov@jitsi.org> | 2015-07-21 17:20:02 -0500 |
---|---|---|
committer | Lyubomir Marinov <lyubomir.marinov@jitsi.org> | 2015-07-21 17:23:13 -0500 |
commit | 70921744d6a5bf2e49776d8ae86fc058f0bb6024 (patch) | |
tree | b9fd9db870e3957956ac06ef9f663182258df0e9 /m2/jitsi-fileaccess | |
parent | 54f7eb0c551fb18b674a2ec5ef5f0bca51f7ebab (diff) | |
download | jitsi-70921744d6a5bf2e49776d8ae86fc058f0bb6024.zip jitsi-70921744d6a5bf2e49776d8ae86fc058f0bb6024.tar.gz jitsi-70921744d6a5bf2e49776d8ae86fc058f0bb6024.tar.bz2 |
Expands the Maven support to more bundles.
Diffstat (limited to 'm2/jitsi-fileaccess')
-rw-r--r-- | m2/jitsi-fileaccess/pom.xml | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/m2/jitsi-fileaccess/pom.xml b/m2/jitsi-fileaccess/pom.xml new file mode 100644 index 0000000..cb9cf8c --- /dev/null +++ b/m2/jitsi-fileaccess/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-fileaccess</artifactId> + <packaging>jar</packaging> + + <name>jitsi-fileaccess</name> + + <dependencies> + <!-- org.jitsi --> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>libjitsi</artifactId> + </dependency> + <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/impl/fileaccess/**</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/fileaccess/fileaccess.manifest.mf</manifestFile> + </archive> + <includes> + <include>net/java/sip/communicator/impl/fileaccess/**</include> + </includes> + </configuration> + </plugin> + </plugins> + </build> +</project> |