]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/runtime/org.argeo.server.jcr/pom.xml
Improve JCR remoting
[lgpl/argeo-commons.git] / server / runtime / org.argeo.server.jcr / 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.3.4-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.server.jcr</artifactId>
10 <name>Commons Server JCR</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 <Export-Package>org.argeo.jcr.*</Export-Package>
32 <Import-Package>
33 junit.framework;resolution:=optional,
34 org.xml.sax;version="0.0.0",
35 org.springframework.core;resolution:=optional,
36 org.springframework.core.io;resolution:=optional,
37 org.springframework.*;resolution:=optional,
38 *</Import-Package>
39 </instructions>
40 </configuration>
41 </plugin>
42 <plugin>
43 <groupId>org.argeo.maven.plugins</groupId>
44 <artifactId>maven-argeo-osgi-plugin</artifactId>
45 <version>${version.maven-argeo-osgi}</version>
46 <configuration>
47 <useDependencies>true</useDependencies>
48 <onlyCheck>true</onlyCheck>
49 <argsToAppend>
50 <arg>-clean</arg>
51 </argsToAppend>
52 <systemProperties>
53 <!-- Make sure that no bundle will be started -->
54 <argeo.osgi.start>XXX</argeo.osgi.start>
55 </systemProperties>
56 </configuration>
57 </plugin>
58 </plugins>
59 </build>
60 <dependencies>
61 <dependency>
62 <groupId>org.argeo.commons.basic</groupId>
63 <artifactId>org.argeo.basic.nodeps</artifactId>
64 <version>0.3.4-SNAPSHOT</version>
65 </dependency>
66
67 <!-- JCR -->
68 <dependency>
69 <groupId>org.argeo.dep.osgi</groupId>
70 <artifactId>org.argeo.dep.osgi.jcr</artifactId>
71 </dependency>
72
73 <dependency>
74 <groupId>org.apache.commons</groupId>
75 <artifactId>com.springsource.org.apache.commons.io</artifactId>
76 </dependency>
77
78 <!-- Spring -->
79 <dependency>
80 <groupId>org.springframework</groupId>
81 <artifactId>org.springframework.beans</artifactId>
82 <scope>provided</scope>
83 </dependency>
84
85 <!-- OSGi -->
86 <dependency>
87 <groupId>org.eclipse.osgi</groupId>
88 <artifactId>org.eclipse.osgi</artifactId>
89 <scope>provided</scope>
90 </dependency>
91
92 <!-- Logging -->
93 <dependency>
94 <groupId>org.slf4j</groupId>
95 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
96 </dependency>
97
98
99 <!-- TEST -->
100 <dependency>
101 <groupId>org.junit</groupId>
102 <artifactId>com.springsource.junit</artifactId>
103 <optional>true</optional>
104 </dependency>
105 <dependency>
106 <groupId>org.argeo.commons.osgi</groupId>
107 <artifactId>org.argeo.osgi.dep.jackrabbit</artifactId>
108 <version>0.3.4-SNAPSHOT</version>
109 <type>pom</type>
110 <scope>test</scope>
111 </dependency>
112 <dependency>
113 <groupId>org.argeo.commons.basic</groupId>
114 <artifactId>org.argeo.support.junit</artifactId>
115 <version>0.3.4-SNAPSHOT</version>
116 <scope>test</scope>
117 </dependency>
118 <dependency>
119 <groupId>org.argeo.commons.basic</groupId>
120 <artifactId>org.argeo.basic.dep.log4j</artifactId>
121 <version>0.3.4-SNAPSHOT</version>
122 <type>pom</type>
123 <scope>test</scope>
124 </dependency>
125 <dependency>
126 <groupId>org.argeo.commons.osgi</groupId>
127 <artifactId>org.argeo.osgi.boot</artifactId>
128 <version>0.3.4-SNAPSHOT</version>
129 <scope>test</scope>
130 </dependency>
131 </dependencies>
132 </project>