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