]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/runtime/org.argeo.server.jcr/pom.xml
Reintroduce ResourceLoader
[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.5-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
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 <configuration>
46 <useDependencies>true</useDependencies>
47 <onlyCheck>true</onlyCheck>
48 <argsToAppend>
49 <arg>-clean</arg>
50 </argsToAppend>
51 <systemProperties>
52 <!-- Make sure that no bundle will be started -->
53 <argeo.osgi.start>XXX</argeo.osgi.start>
54 </systemProperties>
55 </configuration>
56 </plugin>
57 </plugins>
58 </build>
59 <dependencies>
60 <dependency>
61 <groupId>org.argeo.commons.basic</groupId>
62 <artifactId>org.argeo.basic.nodeps</artifactId>
63 <version>0.3.5-SNAPSHOT</version>
64 </dependency>
65
66 <!-- JCR -->
67 <dependency>
68 <groupId>org.argeo.dep.osgi</groupId>
69 <artifactId>org.argeo.dep.osgi.jcr</artifactId>
70 </dependency>
71
72 <dependency>
73 <groupId>org.apache.commons</groupId>
74 <artifactId>com.springsource.org.apache.commons.io</artifactId>
75 </dependency>
76
77 <!-- Spring -->
78 <dependency>
79 <groupId>org.springframework</groupId>
80 <artifactId>org.springframework.beans</artifactId>
81 <scope>provided</scope>
82 </dependency>
83
84 <!-- OSGi -->
85 <dependency>
86 <groupId>org.eclipse.osgi</groupId>
87 <artifactId>org.eclipse.osgi</artifactId>
88 <scope>provided</scope>
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
98 <!-- TEST -->
99 <dependency>
100 <groupId>org.junit</groupId>
101 <artifactId>com.springsource.junit</artifactId>
102 <optional>true</optional>
103 </dependency>
104 <dependency>
105 <groupId>org.argeo.commons.osgi</groupId>
106 <artifactId>org.argeo.osgi.dep.jackrabbit</artifactId>
107 <version>0.3.5-SNAPSHOT</version>
108 <type>pom</type>
109 <scope>test</scope>
110 </dependency>
111 <dependency>
112 <groupId>org.argeo.commons.basic</groupId>
113 <artifactId>org.argeo.support.junit</artifactId>
114 <version>0.3.5-SNAPSHOT</version>
115 <scope>test</scope>
116 </dependency>
117 <dependency>
118 <groupId>org.argeo.commons.basic</groupId>
119 <artifactId>org.argeo.basic.dep.log4j</artifactId>
120 <version>0.3.5-SNAPSHOT</version>
121 <type>pom</type>
122 <scope>test</scope>
123 </dependency>
124 <dependency>
125 <groupId>org.argeo.commons.osgi</groupId>
126 <artifactId>org.argeo.osgi.boot</artifactId>
127 <version>0.3.5-SNAPSHOT</version>
128 <scope>test</scope>
129 </dependency>
130 </dependencies>
131 </project>