]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
42e02edacacfc79fa59ef82386642f5e9488dc14
[lgpl/argeo-commons.git] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.commons.server</groupId>
6 <version>1.1.5-SNAPSHOT</version>
7 <artifactId>modules</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.node.repofactory.jackrabbit</artifactId>
11 <name>Commons Server Node Repository Factory Jackrabbit</name>
12 <description>Default JCR repository factory based on Jackrabbit. It provides access to aliased and remote repositories.</description>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.felix</groupId>
17 <artifactId>maven-bundle-plugin</artifactId>
18 <configuration>
19 <instructions>
20 <Bundle-SymbolicName>${project.artifactId};singleton:=true</Bundle-SymbolicName>
21 <!-- Import-Package needs to be specified explicitly since BND doesn't
22 deal with custom Spring-Context instructions -->
23 <Spring-Context>META-INF/spring/*.xml;create-asynchronously:=false</Spring-Context>
24 <Import-Package>
25 *,
26 javax.jcr,
27 org.argeo.jackrabbit,
28 </Import-Package>
29 </instructions>
30 </configuration>
31 </plugin>
32 </plugins>
33 </build>
34 </project>