]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/runtime/org.argeo.server.jcr/pom.xml
Fix loading of CND via testing classpath.
[lgpl/argeo-commons.git] / server / runtime / org.argeo.server.jcr / 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.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
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.base</groupId>
62 <artifactId>org.argeo.util</artifactId>
63 <version>1.1.4-SNAPSHOT</version>
64 </dependency>
65
66 <!-- JCR -->
67 <dependency>
68 <groupId>org.argeo.tp</groupId>
69 <artifactId>javax.jcr</artifactId>
70 </dependency>
71
72 <dependency>
73 <groupId>org.argeo.tp</groupId>
74 <artifactId>org.apache.commons.io</artifactId>
75 </dependency>
76
77 <!-- Spring -->
78 <dependency>
79 <groupId>org.argeo.tp</groupId>
80 <artifactId>org.springframework.core</artifactId>
81 <scope>provided</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.argeo.tp</groupId>
85 <artifactId>org.springframework.beans</artifactId>
86 <scope>provided</scope>
87 </dependency>
88
89 <!-- OSGi -->
90 <dependency>
91 <groupId>org.argeo.tp</groupId>
92 <artifactId>org.eclipse.osgi</artifactId>
93 <scope>provided</scope>
94 </dependency>
95
96 <!-- Logging -->
97 <dependency>
98 <groupId>org.argeo.tp</groupId>
99 <artifactId>slf4j.org.apache.commons.logging</artifactId>
100 </dependency>
101
102
103 <!-- TEST -->
104 <dependency>
105 <groupId>org.argeo.tp</groupId>
106 <artifactId>junit</artifactId>
107 <optional>true</optional>
108 </dependency>
109 <dependency>
110 <groupId>org.argeo.commons.base</groupId>
111 <artifactId>org.argeo.dep.jackrabbit</artifactId>
112 <version>1.1.4-SNAPSHOT</version>
113 <type>pom</type>
114 <scope>test</scope>
115 </dependency>
116 <dependency>
117 <groupId>org.argeo.commons.base</groupId>
118 <artifactId>org.argeo.support.junit</artifactId>
119 <version>1.1.4-SNAPSHOT</version>
120 <scope>test</scope>
121 </dependency>
122 <dependency>
123 <groupId>org.argeo.commons.base</groupId>
124 <artifactId>org.argeo.dep.log4j</artifactId>
125 <version>1.1.4-SNAPSHOT</version>
126 <type>pom</type>
127 <scope>test</scope>
128 </dependency>
129 <dependency>
130 <groupId>org.argeo.commons.base</groupId>
131 <artifactId>org.argeo.osgi.boot</artifactId>
132 <version>1.1.4-SNAPSHOT</version>
133 <scope>test</scope>
134 </dependency>
135 </dependencies>
136 </project>