]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc/pom.xml
Start introducing OSGi commands
[gpl/argeo-slc.git] / org.argeo.slc / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <groupId>org.argeo.slc</groupId>
6 <artifactId>argeo-slc</artifactId>
7 <packaging>pom</packaging>
8 <name>Argeo SLC</name>
9 <version>0.11.1-SNAPSHOT</version>
10 <description>SLC Distribution</description>
11 <url>
12 http://www.argeo.org/projects/slc/${project.artfactId}/${project.version}
13 </url>
14 <properties>
15 <version.spring>2.5.5</version.spring>
16 <version.spring-ws>1.5.4</version.spring-ws>
17 <version.maven>2.0.9</version.maven>
18 <version.ant>1.7.1</version.ant>
19 <version.jetty>6.1.11</version.jetty>
20 </properties>
21 <scm>
22 <connection>
23 scm:svn:https://www.argeo.org/svn/slc/trunk/org.argeo.slc
24 </connection>
25 <url>https://www.argeo.org/svn/slc/trunk/org.argeo.slc</url>
26 </scm>
27 <issueManagement>
28 <system>Bugzilla</system>
29 <url>https://www.argeo.org/bugzilla/</url>
30 </issueManagement>
31 <licenses>
32 <license>
33 <name>Apache 2</name>
34 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
35 <distribution>repo</distribution>
36 <comments>A business-friendly OSS license</comments>
37 </license>
38 </licenses>
39 <organization>
40 <name>Argeo</name>
41 <url>http://www.argeo.org</url>
42 </organization>
43 <developers>
44 <developer>
45 <id>mbaudier</id>
46 <name>Mathieu Baudier</name>
47 <email>mbaudier@argeo.org</email>
48 <organization>Argeo</organization>
49 <organizationUrl>http://www.argeo.org</organizationUrl>
50 <roles>
51 <role>architect</role>
52 <role>developer</role>
53 </roles>
54 <timezone>+1</timezone>
55 </developer>
56 </developers>
57 <build>
58 <pluginManagement>
59 <plugins>
60 <plugin>
61 <groupId>org.apache.maven.plugins</groupId>
62 <artifactId>maven-compiler-plugin</artifactId>
63 <configuration>
64 <source>1.5</source>
65 <target>1.5</target>
66 </configuration>
67 </plugin>
68 <plugin>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-source-plugin</artifactId>
71 <executions>
72 <execution>
73 <id>attach-sources</id>
74 <phase>package</phase>
75 <goals>
76 <goal>jar</goal>
77 </goals>
78 </execution>
79 </executions>
80 </plugin>
81 <plugin>
82 <groupId>org.apache.maven.plugins</groupId>
83 <artifactId>maven-javadoc-plugin</artifactId>
84 <executions>
85 <execution>
86 <id>attach-javadoc</id>
87 <phase>package</phase>
88 <goals>
89 <goal>jar</goal>
90 </goals>
91 </execution>
92 </executions>
93 </plugin>
94 <plugin>
95 <groupId>org.mortbay.jetty</groupId>
96 <artifactId>maven-jetty-plugin</artifactId>
97 <version>${version.jetty}</version>
98 <configuration>
99 <contextPath>org.argeo.slc.webapp</contextPath>
100 <stopKey>stopKey</stopKey>
101 <stopPort>9091</stopPort>
102 <connectors>
103 <connector
104 implementation="org.mortbay.jetty.nio.SelectChannelConnector">
105 <port>9090</port>
106 <maxIdleTime>60000</maxIdleTime>
107 </connector>
108 </connectors>
109 </configuration>
110 <dependencies>
111 <dependency>
112 <groupId>hsqldb</groupId>
113 <artifactId>hsqldb</artifactId>
114 <version>1.8.0.9</version>
115 </dependency>
116 <dependency>
117 <groupId>org.mortbay.jetty</groupId>
118 <artifactId>jetty-plus</artifactId>
119 <version>${version.jetty}</version>
120 </dependency>
121 <dependency>
122 <groupId>org.mortbay.jetty</groupId>
123 <artifactId>jetty-naming</artifactId>
124 <version>${version.jetty}</version>
125 </dependency>
126 <dependency>
127 <groupId>log4j</groupId>
128 <artifactId>log4j</artifactId>
129 <version>1.2.14</version>
130 <type>jar</type>
131 </dependency>
132 </dependencies>
133 </plugin>
134 </plugins>
135 </pluginManagement>
136 <plugins>
137 <plugin>
138 <groupId>org.apache.maven.plugins</groupId>
139 <artifactId>maven-assembly-plugin</artifactId>
140 <inherited>false</inherited>
141 <configuration>
142 <descriptors>
143 <descriptor>
144 src/assembly/with-dependencies.xml
145 </descriptor>
146 </descriptors>
147 </configuration>
148 </plugin>
149 </plugins>
150 </build>
151 <reporting>
152 <plugins>
153 <plugin>
154 <groupId>org.apache.maven.plugins</groupId>
155 <artifactId>maven-surefire-report-plugin</artifactId>
156 </plugin>
157 <plugin>
158 <groupId>org.apache.maven.plugins</groupId>
159 <artifactId>maven-javadoc-plugin</artifactId>
160 </plugin>
161 <plugin>
162 <groupId>org.codehaus.mojo</groupId>
163 <artifactId>cobertura-maven-plugin</artifactId>
164 </plugin>
165 </plugins>
166 </reporting>
167 <dependencyManagement>
168 <dependencies>
169 <dependency>
170 <groupId>javax.transaction</groupId>
171 <artifactId>jta</artifactId>
172 <version>1.0.1</version>
173 </dependency>
174
175 <dependency>
176 <groupId>junit</groupId>
177 <artifactId>junit</artifactId>
178 <version>3.8.2</version>
179 </dependency>
180 <dependency>
181 <groupId>org.dbunit</groupId>
182 <artifactId>dbunit</artifactId>
183 <version>2.2.3</version>
184 <exclusions>
185 <exclusion>
186 <groupId>junit-addons</groupId>
187 <artifactId>junit-addons</artifactId>
188 </exclusion>
189 <exclusion>
190 <groupId>poi</groupId>
191 <artifactId>poi</artifactId>
192 </exclusion>
193 </exclusions>
194 </dependency>
195 <dependency>
196 <groupId>log4j</groupId>
197 <artifactId>log4j</artifactId>
198 <version>1.2.15</version>
199 <exclusions>
200 <exclusion>
201 <groupId>com.sun.jmx</groupId>
202 <artifactId>jmxri</artifactId>
203 </exclusion>
204 <exclusion>
205 <groupId>com.sun.jdmk</groupId>
206 <artifactId>jmxtools</artifactId>
207 </exclusion>
208 <exclusion>
209 <groupId>javax.mail</groupId>
210 <artifactId>mail</artifactId>
211 </exclusion>
212 <exclusion>
213 <groupId>javax.jms</groupId>
214 <artifactId>jms</artifactId>
215 </exclusion>
216 </exclusions>
217 </dependency>
218 <dependency>
219 <groupId>commons-logging</groupId>
220 <artifactId>commons-logging</artifactId>
221 <version>1.1.1</version>
222 </dependency>
223 <dependency>
224 <groupId>org.hibernate</groupId>
225 <artifactId>hibernate</artifactId>
226 <version>3.2.6.ga</version>
227 </dependency>
228 <dependency>
229 <groupId>net.sf.ehcache</groupId>
230 <artifactId>ehcache</artifactId>
231 <version>1.4.1</version>
232 </dependency>
233
234 <dependency>
235 <groupId>org.springframework</groupId>
236 <artifactId>spring-context</artifactId>
237 <version>${version.spring}</version>
238 </dependency>
239 <dependency>
240 <groupId>org.springframework</groupId>
241 <artifactId>spring-context-support</artifactId>
242 <version>${version.spring}</version>
243 </dependency>
244 <dependency>
245 <groupId>org.springframework</groupId>
246 <artifactId>spring-orm</artifactId>
247 <version>${version.spring}</version>
248 </dependency>
249 <dependency>
250 <groupId>org.springframework</groupId>
251 <artifactId>spring-jdbc</artifactId>
252 <version>${version.spring}</version>
253 </dependency>
254 <dependency>
255 <groupId>org.springframework</groupId>
256 <artifactId>spring-webmvc</artifactId>
257 <version>${version.spring}</version>
258 </dependency>
259 <dependency>
260 <groupId>org.springframework</groupId>
261 <artifactId>spring-aop</artifactId>
262 <version>${version.spring}</version>
263 </dependency>
264
265 <dependency>
266 <groupId>org.springframework.ws</groupId>
267 <artifactId>spring-ws-core</artifactId>
268 <version>${version.spring-ws}</version>
269 </dependency>
270 <dependency>
271 <groupId>org.springframework.ws</groupId>
272 <artifactId>spring-oxm</artifactId>
273 <version>${version.spring-ws}</version>
274 </dependency>
275
276 <!-- Ant -->
277 <dependency>
278 <groupId>org.apache.ant</groupId>
279 <artifactId>ant</artifactId>
280 <version>${version.ant}</version>
281 </dependency>
282 <dependency>
283 <groupId>org.apache.ant</groupId>
284 <artifactId>ant-commons-logging</artifactId>
285 <version>${version.ant}</version>
286 </dependency>
287 <dependency>
288 <groupId>org.apache.ant</groupId>
289 <artifactId>ant-commons-net</artifactId>
290 <version>${version.ant}</version>
291 </dependency>
292 <dependency>
293 <groupId>org.apache.ant</groupId>
294 <artifactId>ant-apache-oro</artifactId>
295 <version>${version.ant}</version>
296 </dependency>
297 <dependency>
298 <groupId>org.apache.ant</groupId>
299 <artifactId>ant-apache-bsf</artifactId>
300 <version>${version.ant}</version>
301 </dependency>
302 <!-- Required by FTP Ant task -->
303 <dependency>
304 <groupId>commons-net</groupId>
305 <artifactId>commons-net</artifactId>
306 <version>1.4.1</version>
307 </dependency>
308 <dependency>
309 <groupId>oro</groupId>
310 <artifactId>oro</artifactId>
311 <version>2.0.8</version>
312 </dependency>
313
314 <dependency>
315 <groupId>commons-io</groupId>
316 <artifactId>commons-io</artifactId>
317 <version>1.4</version>
318 </dependency>
319 <dependency>
320 <groupId>commons-cli</groupId>
321 <artifactId>commons-cli</artifactId>
322 <version>1.1</version>
323 </dependency>
324
325 <!-- DB Drivers -->
326 <dependency>
327 <groupId>hsqldb</groupId>
328 <artifactId>hsqldb</artifactId>
329 <version>1.8.0.9</version>
330 </dependency>
331
332 <dependency>
333 <groupId>org.codehaus.castor</groupId>
334 <artifactId>castor</artifactId>
335 <version>1.2</version>
336 <exclusions>
337 <exclusion>
338 <groupId>xerces</groupId>
339 <artifactId>xerces</artifactId>
340 </exclusion>
341 </exclusions>
342 </dependency>
343 <dependency>
344 <groupId>xerces</groupId>
345 <artifactId>xercesImpl</artifactId>
346 <version>2.8.1</version>
347 </dependency>
348
349 <dependency>
350 <groupId>xalan</groupId>
351 <artifactId>xalan</artifactId>
352 <version>2.7.0</version>
353 </dependency>
354
355 <dependency>
356 <groupId>javax.xml.soap</groupId>
357 <artifactId>saaj-api</artifactId>
358 <version>1.3</version>
359 <scope>runtime</scope>
360 <exclusions>
361 <exclusion>
362 <groupId>javax.activation</groupId>
363 <artifactId>activation</artifactId>
364 </exclusion>
365 </exclusions>
366 </dependency>
367 <dependency>
368 <groupId>javax.xml.stream</groupId>
369 <artifactId>stax-api</artifactId>
370 <version>1.0</version>
371 </dependency>
372 <dependency>
373 <groupId>com.sun.xml.messaging.saaj</groupId>
374 <artifactId>saaj-impl</artifactId>
375 <version>1.3</version>
376 <scope>runtime</scope>
377 </dependency>
378 <dependency>
379 <groupId>javax.activation</groupId>
380 <artifactId>activation</artifactId>
381 <version>1.1</version>
382 <scope>runtime</scope>
383 </dependency>
384
385 <dependency>
386 <groupId>javax.servlet</groupId>
387 <artifactId>jstl</artifactId>
388 <version>1.1.2</version>
389 </dependency>
390 <dependency>
391 <groupId>taglibs</groupId>
392 <artifactId>standard</artifactId>
393 <version>1.1.2</version>
394 </dependency>
395 <dependency>
396 <groupId>javax.servlet</groupId>
397 <artifactId>servlet-api</artifactId>
398 <version>2.5</version>
399 </dependency>
400
401 <dependency>
402 <groupId>org.apache.maven</groupId>
403 <artifactId>maven-core</artifactId>
404 <version>${version.maven}</version>
405 </dependency>
406 <dependency>
407 <groupId>org.apache.maven</groupId>
408 <artifactId>maven-embedder</artifactId>
409 <!-- no higher version available -->
410 <version>2.0.4</version>
411 </dependency>
412 <dependency>
413 <groupId>org.apache.maven</groupId>
414 <artifactId>maven-settings</artifactId>
415 <version>${version.maven}</version>
416 </dependency>
417
418 <dependency>
419 <groupId>org.aspectj</groupId>
420 <artifactId>aspectjweaver</artifactId>
421 <version>1.6.0</version>
422 </dependency>
423
424 <dependency>
425 <groupId>net.sourceforge.jexcelapi</groupId>
426 <artifactId>jxl</artifactId>
427 <version>2.6.8</version>
428 </dependency>
429 <dependency>
430 <groupId>com.lowagie</groupId>
431 <artifactId>itext</artifactId>
432 <version>2.1.2</version>
433 </dependency>
434
435 <!-- OSGi -->
436 <dependency>
437 <groupId>org.apache.felix</groupId>
438 <artifactId>org.apache.felix.main</artifactId>
439 <version>1.2.1</version>
440 <exclusions>
441 <exclusion>
442 <groupId>org.apache.felix</groupId>
443 <artifactId>
444 org.apache.felix.framework
445 </artifactId>
446 </exclusion>
447 </exclusions>
448 </dependency>
449
450 <dependency>
451 <groupId>org.apache.felix</groupId>
452 <artifactId>org.osgi.core</artifactId>
453 <version>1.2.0</version>
454 <scope>provided</scope>
455 </dependency>
456
457 <!-- Auto UI -->
458 <dependency>
459 <groupId>org.argeo.dep.jemmy</groupId>
460 <artifactId>org.argeo.dep.jemmy.nb61</artifactId>
461 <version>0.2.2</version>
462 </dependency>
463
464 </dependencies>
465 </dependencyManagement>
466 <repositories>
467 <repository>
468 <id>central</id>
469 <url>http://www.argeo.org/maven/proxy</url>
470 <releases>
471 <enabled>true</enabled>
472 <updatePolicy>daily</updatePolicy>
473 <checksumPolicy>warn</checksumPolicy>
474 </releases>
475 <snapshots>
476 <enabled>false</enabled>
477 <updatePolicy>never</updatePolicy>
478 <checksumPolicy>fail</checksumPolicy>
479 </snapshots>
480 </repository>
481 <repository>
482 <id>argeo</id>
483 <url>http://www.argeo.org/maven/argeo</url>
484 <releases>
485 <enabled>true</enabled>
486 <updatePolicy>daily</updatePolicy>
487 <checksumPolicy>fail</checksumPolicy>
488 </releases>
489 <snapshots>
490 <enabled>false</enabled>
491 <updatePolicy>never</updatePolicy>
492 <checksumPolicy>fail</checksumPolicy>
493 </snapshots>
494 </repository>
495 <repository>
496 <id>argeo-snapshots</id>
497 <url>http://www.argeo.org/maven/argeo-snapshots</url>
498 <releases>
499 <enabled>false</enabled>
500 <updatePolicy>never</updatePolicy>
501 <checksumPolicy>fail</checksumPolicy>
502 </releases>
503 <snapshots>
504 <enabled>true</enabled>
505 <updatePolicy>always</updatePolicy>
506 <checksumPolicy>fail</checksumPolicy>
507 </snapshots>
508 </repository>
509 </repositories>
510 <distributionManagement>
511 <repository>
512 <uniqueVersion>false</uniqueVersion>
513 <id>argeo-restricted</id>
514 <name>Argeo FOSS Repository</name>
515 <url>file:///var/argeo/maven2/argeo</url>
516 </repository>
517 <snapshotRepository>
518 <uniqueVersion>true</uniqueVersion>
519 <id>argeo-snapshots-restricted</id>
520 <name>Argeo FOSS Snapshots Repository</name>
521 <url>file:///var/argeo/maven2/argeo-snapshots</url>
522 </snapshotRepository>
523 <site>
524 <id>argeo-slc-site</id>
525 <name>SLC Site</name>
526 <url>
527 file:///var/argeo/projects/SLC/www/site/${project.version}
528 </url>
529 </site>
530 </distributionManagement>
531 </project>