]> git.argeo.org Git - lgpl/argeo-commons.git/blob - security/dep/org.argeo.security.dep.node/pom.xml
Move Catalina start to runtime
[lgpl/argeo-commons.git] / security / dep / org.argeo.security.dep.node / pom.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <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">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.commons.security</groupId>
6 <version>1.1.9-SNAPSHOT</version>
7 <artifactId>dep</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.security.dep.node</artifactId>
11 <name>Node Backend</name>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.felix</groupId>
16 <artifactId>maven-bundle-plugin</artifactId>
17 <configuration>
18 <instructions>
19 <SLC-ModularDistribution>default</SLC-ModularDistribution>
20 </instructions>
21 </configuration>
22 </plugin>
23 <plugin>
24 <groupId>org.argeo.maven.plugins</groupId>
25 <artifactId>maven-argeo-osgi-plugin</artifactId>
26 <executions>
27 <execution>
28 <id>generate-descriptors</id>
29 <goals>
30 <goal>descriptors</goal>
31 </goals>
32 <phase>generate-resources</phase>
33 </execution>
34 </executions>
35 </plugin>
36 </plugins>
37 </build>
38 <dependencies>
39 <!-- Default JCR repositories configurations -->
40 <dependency>
41 <groupId>org.argeo.commons.server</groupId>
42 <artifactId>org.argeo.node.repo.jackrabbit</artifactId>
43 <version>1.1.9-SNAPSHOT</version>
44 </dependency>
45
46 <!-- OSGi Boot (and Equinox) -->
47 <dependency>
48 <groupId>org.argeo.commons.base</groupId>
49 <artifactId>org.argeo.osgi.boot</artifactId>
50 <version>1.1.9-SNAPSHOT</version>
51 </dependency>
52
53 <!-- Logging -->
54 <dependency>
55 <groupId>org.argeo.commons.base</groupId>
56 <artifactId>org.argeo.dep.log4j</artifactId>
57 <version>1.1.9-SNAPSHOT</version>
58 <type>pom</type>
59 </dependency>
60
61 <!-- Argeo Server -->
62 <dependency>
63 <groupId>org.argeo.commons.server</groupId>
64 <artifactId>org.argeo.server.core</artifactId>
65 <version>1.1.9-SNAPSHOT</version>
66 </dependency>
67
68 <!-- Argeo Security -->
69 <dependency>
70 <groupId>org.argeo.commons.security</groupId>
71 <artifactId>org.argeo.security.core</artifactId>
72 <version>1.1.9-SNAPSHOT</version>
73 </dependency>
74
75 <!-- Xerces and Xalan -->
76 <dependency>
77 <groupId>org.argeo.tp</groupId>
78 <artifactId>org.apache.xmlcommons</artifactId>
79 </dependency>
80 <dependency>
81 <groupId>org.argeo.tp</groupId>
82 <artifactId>org.apache.xalan</artifactId>
83 </dependency>
84
85 <!-- Javax -->
86 <dependency>
87 <groupId>org.argeo.tp</groupId>
88 <artifactId>javax.annotation</artifactId>
89 </dependency>
90 <dependency>
91 <groupId>org.argeo.tp</groupId>
92 <artifactId>javax.mail</artifactId>
93 </dependency>
94
95 <!-- Bouncycastle (cryptography) -->
96 <dependency>
97 <groupId>org.argeo.tp</groupId>
98 <artifactId>bcprov</artifactId>
99 </dependency>
100 <dependency>
101 <groupId>org.argeo.tp</groupId>
102 <artifactId>bcmail</artifactId>
103 </dependency>
104
105 <!-- Commons -->
106 <dependency>
107 <groupId>org.argeo.tp</groupId>
108 <artifactId>org.apache.commons.vfs</artifactId>
109 </dependency>
110 <dependency>
111 <groupId>org.argeo.tp</groupId>
112 <artifactId>org.apache.commons.exec</artifactId>
113 </dependency>
114 <dependency>
115 <groupId>org.argeo.tp</groupId>
116 <artifactId>org.apache.commons.cli</artifactId>
117 </dependency>
118 <dependency>
119 <groupId>org.argeo.tp</groupId>
120 <artifactId>org.apache.commons.dbcp</artifactId>
121 </dependency>
122
123 <!-- Reporting -->
124 <dependency>
125 <groupId>org.argeo.tp</groupId>
126 <artifactId>jxl</artifactId>
127 </dependency>
128 <dependency>
129 <groupId>org.argeo.tp</groupId>
130 <artifactId>org.apache.pdfbox</artifactId>
131 </dependency>
132
133 <!-- Spring -->
134 <dependency>
135 <groupId>org.argeo.tp</groupId>
136 <artifactId>org.springframework.context.support</artifactId>
137 </dependency>
138
139 <!-- Spring OSGi -->
140 <dependency>
141 <groupId>org.argeo.tp</groupId>
142 <artifactId>org.springframework.osgi.extender</artifactId>
143 </dependency>
144
145 <!-- Jackrabbit -->
146 <dependency>
147 <groupId>org.argeo.commons.server</groupId>
148 <artifactId>org.argeo.server.jackrabbit</artifactId>
149 <version>1.1.9-SNAPSHOT</version>
150 </dependency>
151 <dependency>
152 <groupId>org.argeo.commons.security</groupId>
153 <artifactId>org.argeo.security.jackrabbit</artifactId>
154 <version>1.1.9-SNAPSHOT</version>
155 </dependency>
156
157 <!-- Scheduling -->
158 <dependency>
159 <groupId>org.argeo.tp</groupId>
160 <artifactId>org.quartz</artifactId>
161 </dependency>
162
163 <!-- Security (LDAP) -->
164 <dependency>
165 <groupId>org.argeo.commons.security</groupId>
166 <artifactId>org.argeo.security.dao.ldap</artifactId>
167 <version>1.1.9-SNAPSHOT</version>
168 </dependency>
169 <dependency>
170 <groupId>org.argeo.commons.security</groupId>
171 <artifactId>org.argeo.security.ldap</artifactId>
172 <version>1.1.9-SNAPSHOT</version>
173 </dependency>
174
175 <!-- Security (Jackrabbit) -->
176 <dependency>
177 <groupId>org.argeo.commons.security</groupId>
178 <artifactId>org.argeo.security.dao.jackrabbit</artifactId>
179 <version>1.1.9-SNAPSHOT</version>
180 </dependency>
181
182 <!-- Security (Standalone) -->
183 <dependency>
184 <groupId>org.argeo.commons.security</groupId>
185 <artifactId>org.argeo.security.dao.os</artifactId>
186 <version>1.1.9-SNAPSHOT</version>
187 </dependency>
188
189 <!-- Web -->
190 <dependency>
191 <groupId>org.argeo.tp</groupId>
192 <artifactId>org.springframework.osgi.web.extender</artifactId>
193 </dependency>
194 <dependency>
195 <groupId>org.argeo.tp</groupId>
196 <artifactId>org.springframework.osgi.web</artifactId>
197 </dependency>
198 <dependency>
199 <groupId>org.argeo.commons.server</groupId>
200 <artifactId>org.argeo.server.dep.tomcat</artifactId>
201 <version>1.1.9-SNAPSHOT</version>
202 <type>pom</type>
203 </dependency>
204 <dependency>
205 <groupId>org.argeo.commons.server</groupId>
206 <artifactId>org.argeo.server.webextender</artifactId>
207 <version>1.1.9-SNAPSHOT</version>
208 </dependency>
209 <dependency>
210 <groupId>org.argeo.commons.server</groupId>
211 <artifactId>org.argeo.server.jcr.mvc</artifactId>
212 <version>1.1.9-SNAPSHOT</version>
213 </dependency>
214 <dependency>
215 <groupId>org.argeo.commons.server</groupId>
216 <artifactId>org.argeo.jackrabbit.webapp</artifactId>
217 <version>1.1.9-SNAPSHOT</version>
218 </dependency>
219
220 <!-- Default Tomcat conf -->
221 <dependency>
222 <groupId>org.argeo.commons.server</groupId>
223 <artifactId>org.argeo.server.tomcat</artifactId>
224 <version>1.1.9-SNAPSHOT</version>
225 </dependency>
226
227 <!-- DB drivers -->
228 <dependency>
229 <groupId>org.argeo.tp</groupId>
230 <artifactId>org.h2</artifactId>
231 </dependency>
232 <dependency>
233 <groupId>org.argeo.tp</groupId>
234 <artifactId>com.mysql.jdbc</artifactId>
235 </dependency>
236 <dependency>
237 <groupId>org.argeo.tp</groupId>
238 <artifactId>org.postgresql.jdbc3</artifactId>
239 </dependency>
240
241 <!-- LDAP Apache Directory server -->
242 <dependency>
243 <groupId>org.argeo.commons.server</groupId>
244 <artifactId>org.argeo.server.dep.ads</artifactId>
245 <version>1.1.9-SNAPSHOT</version>
246 <type>pom</type>
247 </dependency>
248 <dependency>
249 <groupId>org.argeo.commons.server</groupId>
250 <artifactId>org.argeo.server.ads.server</artifactId>
251 <version>1.1.9-SNAPSHOT</version>
252 </dependency>
253 <dependency>
254 <groupId>org.argeo.commons.server</groupId>
255 <artifactId>org.argeo.server.ads</artifactId>
256 <version>1.1.9-SNAPSHOT</version>
257 </dependency>
258
259 <!-- Software development -->
260 <dependency>
261 <groupId>org.argeo.commons.base</groupId>
262 <artifactId>org.argeo.support.junit</artifactId>
263 <version>1.1.9-SNAPSHOT</version>
264 </dependency>
265 </dependencies>
266 <profiles>
267 <profile>
268 <id>check-osgi</id>
269 <build>
270 <plugins>
271 <plugin>
272 <groupId>org.argeo.maven.plugins</groupId>
273 <artifactId>maven-argeo-osgi-plugin</artifactId>
274 <executions>
275 <execution>
276 <id>check-osgi</id>
277 <phase>test</phase>
278 <goals>
279 <goal>equinox</goal>
280 </goals>
281 <configuration>
282 <onlyCheck>true</onlyCheck>
283 </configuration>
284 </execution>
285 </executions>
286 </plugin>
287 </plugins>
288 </build>
289 <dependencies>
290 <!-- OSGi test -->
291 <dependency>
292 <groupId>org.argeo.commons.base</groupId>
293 <artifactId>org.argeo.osgi.boot</artifactId>
294 <version>1.1.9-SNAPSHOT</version>
295 <scope>test</scope>
296 </dependency>
297 </dependencies>
298 </profile>
299 <profile>
300 <id>rpmbuild</id>
301 <build>
302 <plugins>
303 <plugin>
304 <groupId>org.apache.maven.plugins</groupId>
305 <artifactId>maven-dependency-plugin</artifactId>
306 <executions>
307 <execution>
308 <id>copy-node</id>
309 <phase>package</phase>
310 <goals>
311 <goal>copy-dependencies</goal>
312 </goals>
313 <configuration>
314 <includeTypes>jar</includeTypes>
315 <includeGroupIds>org.argeo.commons.base,org.argeo.commons.server,org.argeo.commons.security</includeGroupIds>
316 <excludeArtifactIds>org.argeo.osgi.boot</excludeArtifactIds>
317 <outputDirectory>${project.build.directory}/node</outputDirectory>
318 </configuration>
319 </execution>
320 </executions>
321 </plugin>
322 <plugin>
323 <groupId>org.codehaus.mojo</groupId>
324 <artifactId>rpm-maven-plugin</artifactId>
325 <executions>
326 <execution>
327 <id>rpm-node</id>
328 <phase>package</phase>
329 <goals>
330 <goal>rpm</goal>
331 </goals>
332 <configuration>
333 <name>argeo-node</name>
334 <mappings>
335 <mapping>
336 <directory>/usr/share/osgi</directory>
337 <username>root</username>
338 <groupname>root</groupname>
339 <filemode>644</filemode>
340 <directoryIncluded>false</directoryIncluded>
341 <sources>
342 <source>
343 <location>${project.build.directory}/node</location>
344 </source>
345 </sources>
346 </mapping>
347 </mappings>
348 <requires>
349 <require>argeo-node-tp</require>
350 </requires>
351 </configuration>
352 </execution>
353 </executions>
354 </plugin>
355 </plugins>
356 </build>
357 </profile>
358 <profile>
359 <id>rpmbuild-tp</id>
360 <build>
361 <plugins>
362 <plugin>
363 <groupId>org.apache.maven.plugins</groupId>
364 <artifactId>maven-dependency-plugin</artifactId>
365 <executions>
366 <execution>
367 <id>copy-tp</id>
368 <phase>package</phase>
369 <goals>
370 <goal>copy-dependencies</goal>
371 </goals>
372 <configuration>
373 <includeTypes>jar</includeTypes>
374 <excludeGroupIds>org.argeo.commons.base,org.argeo.commons.server,org.argeo.commons.security</excludeGroupIds>
375 <excludeArtifactIds>org.eclipse.osgi</excludeArtifactIds>
376 <outputDirectory>${project.build.directory}/node-tp</outputDirectory>
377 </configuration>
378 </execution>
379 </executions>
380 </plugin>
381 <plugin>
382 <groupId>org.codehaus.mojo</groupId>
383 <artifactId>rpm-maven-plugin</artifactId>
384 <executions>
385 <execution>
386 <id>rpm-node-tp</id>
387 <phase>package</phase>
388 <goals>
389 <goal>rpm</goal>
390 </goals>
391 <configuration>
392 <name>argeo-node-tp</name>
393 <classifier>rpm-tp</classifier>
394 <projversion>${version.argeo-distribution}</projversion>
395 <mappings>
396 <mapping>
397 <directory>/usr/share/osgi</directory>
398 <username>root</username>
399 <groupname>root</groupname>
400 <filemode>644</filemode>
401 <directoryIncluded>false</directoryIncluded>
402 <sources>
403 <source>
404 <location>${project.build.directory}/node-tp</location>
405 </source>
406 </sources>
407 </mapping>
408 </mappings>
409 </configuration>
410 </execution>
411 </executions>
412 </plugin>
413 </plugins>
414 </build>
415 </profile>
416 </profiles>
417 </project>