]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/runtime/org.argeo.server.jackrabbit/pom.xml
Remove modules from dependencies
[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"
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.2-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 <Export-Package>
33 org.argeo.server.jackrabbit.*,
34 org.argeo.server.jcr.*
35 </Export-Package>
36 </instructions>
37 </configuration>
38 </plugin>
39 </plugins>
40 </build>
41 <dependencies>
42 <dependency>
43 <groupId>org.argeo.commons.basic</groupId>
44 <artifactId>org.argeo.basic.nodeps</artifactId>
45 <version>0.1.2-SNAPSHOT</version>
46 </dependency>
47
48 <dependency>
49 <groupId>org.argeo.commons.server</groupId>
50 <artifactId>org.argeo.server.core</artifactId>
51 <version>0.1.2-SNAPSHOT</version>
52 </dependency>
53
54 <!-- Jack Rabbit -->
55 <dependency>
56 <groupId>org.argeo.dep.osgi</groupId>
57 <artifactId>org.argeo.dep.osgi.jackrabbit</artifactId>
58 </dependency>
59 <dependency>
60 <groupId>javax.servlet</groupId>
61 <artifactId>com.springsource.javax.servlet</artifactId>
62 </dependency>
63
64 <!-- Apache Commons -->
65 <dependency>
66 <groupId>org.apache.commons</groupId>
67 <artifactId>com.springsource.org.apache.commons.io</artifactId>
68 </dependency>
69
70 <dependency>
71 <groupId>javax.activation</groupId>
72 <artifactId>com.springsource.javax.activation</artifactId>
73 </dependency>
74
75 <!-- Spring -->
76 <dependency>
77 <groupId>org.springframework</groupId>
78 <artifactId>org.springframework.beans</artifactId>
79 </dependency>
80
81 <dependency>
82 <groupId>org.springframework</groupId>
83 <artifactId>org.springframework.web.servlet</artifactId>
84 </dependency>
85
86 <!-- Logging -->
87 <dependency>
88 <groupId>org.slf4j</groupId>
89 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
90 </dependency>
91
92 <dependency>
93 <groupId>org.apache.commons</groupId>
94 <artifactId>com.springsource.org.apache.commons.fileupload</artifactId>
95 </dependency>
96
97 <!-- TEST -->
98 <dependency>
99 <groupId>org.argeo.commons.basic</groupId>
100 <artifactId>org.argeo.support.junit</artifactId>
101 <version>0.1.2-SNAPSHOT</version>
102 <scope>test</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.argeo.commons.basic</groupId>
106 <artifactId>org.argeo.basic.dep.log4j</artifactId>
107 <version>0.1.2-SNAPSHOT</version>
108 <type>pom</type>
109 <scope>test</scope>
110 </dependency>
111 </dependencies>
112 </project>