]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
17d53af922e56a33239f1fdc64be403854eb70c8
[lgpl/argeo-commons.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?><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>1.1.2-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 <configuration>
29 <instructions>
30 <Export-Package>
31 org.argeo.jackrabbit.*,
32 </Export-Package>
33 <Import-Package>
34 javax.servlet,
35 org.apache.jackrabbit.webdav.server,
36 org.springframework.web.context,
37 org.xml.sax;version="0.0.0",
38 org.apache.jackrabbit.webdav.jcr,
39 org.springframework.beans,
40 *
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>1.1.2-SNAPSHOT</version>
52 </dependency>
53 <dependency>
54 <groupId>org.argeo.commons.server</groupId>
55 <artifactId>org.argeo.server.core</artifactId>
56 <version>1.1.2-SNAPSHOT</version>
57 </dependency>
58 <dependency>
59 <groupId>org.argeo.commons.security</groupId>
60 <artifactId>org.argeo.security.core</artifactId>
61 <version>1.1.2-SNAPSHOT</version>
62 </dependency>
63 <dependency>
64 <groupId>org.argeo.commons.server</groupId>
65 <artifactId>org.argeo.server.jcr.mvc</artifactId>
66 <version>1.1.2-SNAPSHOT</version>
67 </dependency>
68
69 <!-- Jackrabbit -->
70 <dependency>
71 <groupId>org.argeo.commons.osgi</groupId>
72 <artifactId>org.argeo.osgi.dep.jackrabbit</artifactId>
73 <type>pom</type>
74 <version>1.1.2-SNAPSHOT</version>
75 </dependency>
76
77 <!-- OSGi -->
78 <dependency>
79 <groupId>org.argeo.tp</groupId>
80 <artifactId>org.eclipse.osgi</artifactId>
81 <scope>provided</scope>
82 </dependency>
83
84 <!-- Spring -->
85 <dependency>
86 <groupId>org.argeo.tp</groupId>
87 <artifactId>org.springframework.beans</artifactId>
88 </dependency>
89 <dependency>
90 <groupId>org.argeo.tp</groupId>
91 <artifactId>org.springframework.web.servlet</artifactId>
92 </dependency>
93 <dependency>
94 <groupId>org.argeo.tp</groupId>
95 <artifactId>org.springframework.xml</artifactId>
96 </dependency>
97
98 <!-- TEST -->
99 <dependency>
100 <groupId>org.argeo.commons.basic</groupId>
101 <artifactId>org.argeo.support.junit</artifactId>
102 <version>1.1.2-SNAPSHOT</version>
103 <scope>test</scope>
104 </dependency>
105 <dependency>
106 <groupId>org.argeo.commons.basic</groupId>
107 <artifactId>org.argeo.basic.dep.log4j</artifactId>
108 <version>1.1.2-SNAPSHOT</version>
109 <type>pom</type>
110 <scope>test</scope>
111 </dependency>
112 </dependencies>
113 </project>