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