]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/modules/org.argeo.node.repo.jackrabbit/pom.xml
2cfae82ff7d1e2cbaed0cec7cdd608b155750e3b
[lgpl/argeo-commons.git] / server / modules / org.argeo.node.repo.jackrabbit / pom.xml
1 <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/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.commons.server</groupId>
5 <version>2.1.4-SNAPSHOT</version>
6 <artifactId>modules</artifactId>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.node.repo.jackrabbit</artifactId>
10 <name>Commons Server Node Repository Jackrabbit</name>
11 <description>Default Node Repository Based on Jackrabbit</description>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.felix</groupId>
16 <artifactId>maven-bundle-plugin</artifactId>
17 <configuration>
18 <instructions>
19 <Bundle-SymbolicName>${project.artifactId};singleton:=true</Bundle-SymbolicName>
20 <!-- Import-Package needs to be specified explicitly since BND doesn't
21 deal with custom Spring-Context instructions -->
22 <Spring-Context>META-INF/spring/*.xml;create-asynchronously:=false</Spring-Context>
23 <Import-Package>
24 *,
25 com.mysql.jdbc;resolution:=optional,
26 org.h2;resolution:=optional,
27 org.postgresql;resolution:=optional,
28 javax.jcr,
29 org.apache.jackrabbit.core,
30 org.apache.jackrabbit.core.config,
31 org.argeo.jackrabbit,
32 org.argeo.jcr,
33 org.springframework.beans.factory.config,
34 </Import-Package>
35 </instructions>
36 </configuration>
37 </plugin>
38 </plugins>
39 </build>
40 </project>