]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/runtime/org.argeo.server.jackrabbit/pom.xml
Rename packages in OSGi boot
[lgpl/argeo-commons.git] / server / runtime / org.argeo.server.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 <artifactId>runtime</artifactId>
6 <version>0.2.1-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.server.jackrabbit</artifactId>
10 <name>Commons Server Jackrabbit</name>
11 <build>
12 <plugins>
13 <plugin>
14 <groupId>org.apache.maven.plugins</groupId>
15 <artifactId>maven-compiler-plugin</artifactId>
16 </plugin>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-source-plugin</artifactId>
20 </plugin>
21 <plugin>
22 <groupId>org.apache.maven.plugins</groupId>
23 <artifactId>maven-jar-plugin</artifactId>
24 </plugin>
25 <plugin>
26 <groupId>org.apache.felix</groupId>
27 <artifactId>maven-bundle-plugin</artifactId>
28 <version>${version.maven-bundle-plugin}</version>
29 <configuration>
30 <instructions>
31 <Fragment-Host>org.argeo.dep.osgi.jackrabbit</Fragment-Host>
32 <Export-Package>
33 org.argeo.jcr.*,
34 org.argeo.server.jackrabbit.*,
35 org.argeo.server.jcr.*
36 </Export-Package>
37 <Import-Package>
38 *,
39 org.springframework.security.providers.jaas;resolution:="optional",
40 junit.framework;resolution:="optional"
41 </Import-Package>
42 </instructions>
43 </configuration>
44 </plugin>
45 </plugins>
46 </build>
47 <dependencies>
48 <dependency>
49 <groupId>org.argeo.commons.basic</groupId>
50 <artifactId>org.argeo.basic.nodeps</artifactId>
51 <version>0.2.1-SNAPSHOT</version>
52 </dependency>
53
54 <dependency>
55 <groupId>org.argeo.commons.server</groupId>
56 <artifactId>org.argeo.server.core</artifactId>
57 <version>0.2.1-SNAPSHOT</version>
58 </dependency>
59
60 <!-- Jack Rabbit -->
61 <dependency>
62 <groupId>org.argeo.dep.osgi</groupId>
63 <artifactId>org.argeo.dep.osgi.jackrabbit</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>javax.servlet</groupId>
67 <artifactId>com.springsource.javax.servlet</artifactId>
68 </dependency>
69
70 <!-- Apache Commons -->
71 <dependency>
72 <groupId>org.apache.commons</groupId>
73 <artifactId>com.springsource.org.apache.commons.io</artifactId>
74 </dependency>
75
76 <dependency>
77 <groupId>javax.activation</groupId>
78 <artifactId>com.springsource.javax.activation</artifactId>
79 </dependency>
80
81 <!-- Spring -->
82 <dependency>
83 <groupId>org.springframework</groupId>
84 <artifactId>org.springframework.beans</artifactId>
85 </dependency>
86
87 <dependency>
88 <groupId>org.springframework</groupId>
89 <artifactId>org.springframework.web.servlet</artifactId>
90 </dependency>
91
92 <dependency>
93 <groupId>org.springframework.security</groupId>
94 <artifactId>org.springframework.security.core</artifactId>
95 </dependency>
96
97 <dependency>
98 <groupId>org.springframework.ws</groupId>
99 <artifactId>org.springframework.xml</artifactId>
100 </dependency>
101
102 <!-- Logging -->
103 <dependency>
104 <groupId>org.slf4j</groupId>
105 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
106 </dependency>
107
108 <dependency>
109 <groupId>org.apache.commons</groupId>
110 <artifactId>com.springsource.org.apache.commons.fileupload</artifactId>
111 </dependency>
112
113 <dependency>
114 <groupId>org.junit</groupId>
115 <artifactId>com.springsource.junit</artifactId>
116 <optional>true</optional>
117 </dependency>
118
119 <!-- TEST -->
120 <dependency>
121 <groupId>org.argeo.commons.basic</groupId>
122 <artifactId>org.argeo.support.junit</artifactId>
123 <version>0.2.1-SNAPSHOT</version>
124 <scope>test</scope>
125 </dependency>
126 <dependency>
127 <groupId>org.argeo.commons.basic</groupId>
128 <artifactId>org.argeo.basic.dep.log4j</artifactId>
129 <version>0.2.1-SNAPSHOT</version>
130 <type>pom</type>
131 <scope>test</scope>
132 </dependency>
133 </dependencies>
134 </project>