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