]> git.argeo.org Git - lgpl/argeo-commons.git/blob - runtime/org.argeo.server.jcr/pom.xml
Prepare next development cycle
[lgpl/argeo-commons.git] / 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.2-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 *</Import-Package>
36 </instructions>
37 </configuration>
38 </plugin>
39 <plugin>
40 <groupId>org.argeo.maven.plugins</groupId>
41 <artifactId>maven-argeo-osgi-plugin</artifactId>
42 <version>${version.maven-argeo-osgi}</version>
43 <configuration>
44 <useDependencies>true</useDependencies>
45 <onlyCheck>true</onlyCheck>
46 <argsToAppend>
47 <arg>-clean</arg>
48 </argsToAppend>
49 <systemProperties>
50 <!-- Make sure that no bundle will be started -->
51 <argeo.osgi.start>XXX</argeo.osgi.start>
52 </systemProperties>
53 </configuration>
54 </plugin>
55 </plugins>
56 </build>
57 <dependencies>
58 <dependency>
59 <groupId>org.argeo.commons.basic</groupId>
60 <artifactId>org.argeo.basic.nodeps</artifactId>
61 <version>0.3.2-SNAPSHOT</version>
62 </dependency>
63
64 <!-- JCR -->
65 <dependency>
66 <groupId>org.argeo.dep.osgi</groupId>
67 <artifactId>org.argeo.dep.osgi.jcr</artifactId>
68 </dependency>
69
70 <dependency>
71 <groupId>org.apache.commons</groupId>
72 <artifactId>com.springsource.org.apache.commons.io</artifactId>
73 </dependency>
74
75 <!-- Spring -->
76 <dependency>
77 <groupId>org.springframework</groupId>
78 <artifactId>org.springframework.beans</artifactId>
79 </dependency>
80
81 <!-- OSGi -->
82 <dependency>
83 <groupId>org.eclipse.osgi</groupId>
84 <artifactId>org.eclipse.osgi</artifactId>
85 <scope>provided</scope>
86 </dependency>
87
88 <!-- Logging -->
89 <dependency>
90 <groupId>org.slf4j</groupId>
91 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
92 </dependency>
93
94 <dependency>
95 <groupId>org.junit</groupId>
96 <artifactId>com.springsource.junit</artifactId>
97 <optional>true</optional>
98 </dependency>
99
100 <!-- TEST -->
101 <dependency>
102 <groupId>org.argeo.commons.server</groupId>
103 <artifactId>org.argeo.server.dep.jackrabbit.server</artifactId>
104 <version>0.3.2-SNAPSHOT</version>
105 <type>pom</type>
106 <scope>test</scope>
107 </dependency>
108 <dependency>
109 <groupId>org.apache.derby</groupId>
110 <artifactId>com.springsource.org.apache.derby</artifactId>
111 </dependency>
112 <dependency>
113 <groupId>org.argeo.commons.basic</groupId>
114 <artifactId>org.argeo.support.junit</artifactId>
115 <version>0.3.2-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.2-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.2-SNAPSHOT</version>
129 <scope>test</scope>
130 </dependency>
131 </dependencies>
132 </project>