]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.security.jackrabbit/pom.xml
Move CMS to Commons
[lgpl/argeo-commons.git] / org.argeo.security.jackrabbit / pom.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.argeo.commons</groupId>
7 <artifactId>argeo-commons</artifactId>
8 <version>2.1.12-SNAPSHOT</version>
9 <relativePath>..</relativePath>
10 </parent>
11 <artifactId>org.argeo.security.jackrabbit</artifactId>
12 <name>Commons Security Jackrabbit</name>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 </plugin>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-source-plugin</artifactId>
22 </plugin>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-jar-plugin</artifactId>
26 </plugin>
27 <plugin>
28 <groupId>org.apache.felix</groupId>
29 <artifactId>maven-bundle-plugin</artifactId>
30
31 <configuration>
32 <instructions>
33 <Fragment-Host>org.apache.jackrabbit</Fragment-Host>
34 <Export-Package>org.argeo.security.jackrabbit.*</Export-Package>
35 <Import-Package>
36 org.springframework.core,
37 org.argeo.jcr,
38 *</Import-Package>
39 </instructions>
40 </configuration>
41 </plugin>
42 </plugins>
43 </build>
44 <dependencies>
45 <dependency>
46 <groupId>org.argeo.commons</groupId>
47 <artifactId>org.argeo.security.core</artifactId>
48 <version>2.1.12-SNAPSHOT</version>
49 </dependency>
50 <dependency>
51 <groupId>org.argeo.tp</groupId>
52 <artifactId>javax.jcr</artifactId>
53 </dependency>
54 <dependency>
55 <groupId>org.argeo.tp</groupId>
56 <artifactId>org.apache.jackrabbit</artifactId>
57 </dependency>
58 <dependency>
59 <groupId>org.argeo.tp</groupId>
60 <artifactId>org.springframework.security.core</artifactId>
61 </dependency>
62 </dependencies>
63 </project>