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