]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/runtime/org.argeo.server.jcr/pom.xml
415c4fd0513817bf4fa0b019bfd4d0aad21aab55
[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"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.commons.server</groupId>
6 <artifactId>runtime</artifactId>
7 <version>0.2.3-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.server.jcr</artifactId>
11 <name>Commons Server JCR</name>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 </plugin>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-source-plugin</artifactId>
21 </plugin>
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-jar-plugin</artifactId>
25 </plugin>
26 <plugin>
27 <groupId>org.apache.felix</groupId>
28 <artifactId>maven-bundle-plugin</artifactId>
29 <version>${version.maven-bundle-plugin}</version>
30 <configuration>
31 <instructions>
32 <Export-Package>org.argeo.jcr.*</Export-Package>
33 </instructions>
34 </configuration>
35 </plugin>
36 <plugin>
37 <groupId>org.argeo.maven.plugins</groupId>
38 <artifactId>maven-argeo-osgi-plugin</artifactId>
39 <version>${version.maven-argeo-osgi}</version>
40 <configuration>
41 <useDependencies>true</useDependencies>
42 <onlyCheck>true</onlyCheck>
43 <argsToAppend>
44 <arg>-clean</arg>
45 </argsToAppend>
46 <systemProperties>
47 <!-- Make sure that no bundle will be started -->
48 <argeo.osgi.start>XXX</argeo.osgi.start>
49 </systemProperties>
50 </configuration>
51 </plugin>
52 </plugins>
53 </build>
54 <dependencies>
55 <dependency>
56 <groupId>org.argeo.commons.basic</groupId>
57 <artifactId>org.argeo.basic.nodeps</artifactId>
58 <version>0.2.3-SNAPSHOT</version>
59 </dependency>
60
61 <!-- JCR -->
62 <dependency>
63 <groupId>org.argeo.dep.osgi</groupId>
64 <artifactId>org.argeo.dep.osgi.jcr</artifactId>
65 </dependency>
66
67 <dependency>
68 <groupId>org.apache.commons</groupId>
69 <artifactId>com.springsource.org.apache.commons.io</artifactId>
70 </dependency>
71
72 <!-- Spring -->
73 <dependency>
74 <groupId>org.springframework</groupId>
75 <artifactId>org.springframework.beans</artifactId>
76 </dependency>
77
78 <!-- OSGi -->
79 <dependency>
80 <groupId>org.eclipse.osgi</groupId>
81 <artifactId>org.eclipse.osgi</artifactId>
82 <scope>provided</scope>
83 </dependency>
84
85 <!-- Logging -->
86 <dependency>
87 <groupId>org.slf4j</groupId>
88 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
89 </dependency>
90
91 <dependency>
92 <groupId>org.junit</groupId>
93 <artifactId>com.springsource.junit</artifactId>
94 <optional>true</optional>
95 </dependency>
96
97 <!-- TEST -->
98 <dependency>
99 <groupId>org.argeo.commons.server</groupId>
100 <artifactId>org.argeo.server.dep.jackrabbit.server</artifactId>
101 <version>0.2.3-SNAPSHOT</version>
102 <type>pom</type>
103 <scope>test</scope>
104 </dependency>
105 <dependency>
106 <groupId>org.apache.derby</groupId>
107 <artifactId>com.springsource.org.apache.derby</artifactId>
108 </dependency>
109 <dependency>
110 <groupId>org.argeo.commons.basic</groupId>
111 <artifactId>org.argeo.support.junit</artifactId>
112 <version>0.2.3-SNAPSHOT</version>
113 <scope>test</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.argeo.commons.basic</groupId>
117 <artifactId>org.argeo.basic.dep.log4j</artifactId>
118 <version>0.2.3-SNAPSHOT</version>
119 <type>pom</type>
120 <scope>test</scope>
121 </dependency>
122 <dependency>
123 <groupId>org.argeo.commons.osgi</groupId>
124 <artifactId>org.argeo.osgi.boot</artifactId>
125 <version>0.2.3-SNAPSHOT</version>
126 <scope>test</scope>
127 </dependency>
128 </dependencies>
129 </project>