]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc/pom.xml
54e1ecaad794f8a75b6a7efe7ffb64a745c177c3
[gpl/argeo-slc.git] / org.argeo.slc / 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 <groupId>org.argeo.slc</groupId>
5 <artifactId>argeo-slc</artifactId>
6 <packaging>pom</packaging>
7 <name>Argeo SLC</name>
8 <version>0.11.3-SNAPSHOT</version>
9 <url>
10 http://www.argeo.org/projects/slc/${project.artifactId}/${project.version}
11 </url>
12 <properties>
13 <version.spring>2.5.6.A</version.spring>
14 <version.spring-ws>1.5.5.A</version.spring-ws>
15 <version.maven>2.0.9</version.maven>
16 <version.ant>1.7.0</version.ant>
17 <version.jetty>6.1.14</version.jetty>
18 <version.maven-bundle-plugin>1.4.3</version.maven-bundle-plugin>
19 <version.activemq>5.2.0</version.activemq>
20 </properties>
21 <scm>
22 <connection>scm:svn:https://www.argeo.org/svn/slc/trunk/org.argeo.slc</connection>
23 <url>https://www.argeo.org/svn/slc/trunk/org.argeo.slc</url>
24 </scm>
25 <issueManagement>
26 <system>Bugzilla</system>
27 <url>https://www.argeo.org/bugzilla/</url>
28 </issueManagement>
29 <licenses>
30 <license>
31 <name>Apache 2</name>
32 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
33 <distribution>repo</distribution>
34 <comments><![CDATA[
35 SLC - Software LifeCycle framework
36
37 Copyright 2008 Mathieu Baudier - Argeo e.U.
38
39 Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
40 you may not use this file except in compliance with the License.
41 You may obtain a copy of the License at
42
43 http://www.apache.org/licenses/LICENSE-2.0
44
45 Unless required by applicable law or agreed to in writing, software
46 distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
47 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
48 See the License for the specific language governing permissions and
49 limitations under the License.
50 ]]>
51 </comments>
52 </license>
53 </licenses>
54 <organization>
55 <name>Argeo</name>
56 <url>http://www.argeo.org</url>
57 </organization>
58 <developers>
59 <developer>
60 <id>mbaudier</id>
61 <name>Mathieu Baudier</name>
62 <email>mbaudier@argeo.org</email>
63 <organization>Argeo</organization>
64 <organizationUrl>http://www.argeo.org</organizationUrl>
65 <roles>
66 <role>architect</role>
67 <role>developer</role>
68 </roles>
69 <timezone>+1</timezone>
70 </developer>
71 </developers>
72 <build>
73 <pluginManagement>
74 <plugins>
75 <plugin>
76 <groupId>org.apache.maven.plugins</groupId>
77 <artifactId>maven-compiler-plugin</artifactId>
78 <configuration>
79 <source>1.5</source>
80 <target>1.5</target>
81 </configuration>
82 </plugin>
83 <plugin>
84 <artifactId>maven-jar-plugin</artifactId>
85 <configuration>
86 <archive>
87 <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
88 </archive>
89 </configuration>
90 </plugin>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-source-plugin</artifactId>
94 <executions>
95 <execution>
96 <id>attach-sources</id>
97 <phase>package</phase>
98 <goals>
99 <goal>jar</goal>
100 </goals>
101 </execution>
102 </executions>
103 </plugin>
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-javadoc-plugin</artifactId>
107 <executions>
108 <execution>
109 <id>attach-javadoc</id>
110 <phase>package</phase>
111 <goals>
112 <goal>jar</goal>
113 </goals>
114 </execution>
115 </executions>
116 </plugin>
117 <plugin>
118 <groupId>org.mortbay.jetty</groupId>
119 <artifactId>maven-jetty-plugin</artifactId>
120 <version>${version.jetty}</version>
121 <configuration>
122 <contextPath>org.argeo.slc.webapp</contextPath>
123 <stopKey>stopKey</stopKey>
124 <stopPort>9091</stopPort>
125 <connectors>
126 <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
127 <port>9090</port>
128 <maxIdleTime>60000</maxIdleTime>
129 </connector>
130 </connectors>
131 </configuration>
132 <dependencies>
133 <dependency>
134 <groupId>org.hsqldb</groupId>
135 <artifactId>
136 com.springsource.org.hsqldb
137 </artifactId>
138 <version>1.8.0.9</version>
139 </dependency>
140 <dependency>
141 <groupId>org.mortbay.jetty</groupId>
142 <artifactId>jetty-plus</artifactId>
143 <version>${version.jetty}</version>
144 </dependency>
145 <dependency>
146 <groupId>org.mortbay.jetty</groupId>
147 <artifactId>jetty-naming</artifactId>
148 <version>${version.jetty}</version>
149 </dependency>
150 <dependency>
151 <groupId>org.apache.log4j</groupId>
152 <artifactId>com.springsource.org.apache.log4j</artifactId>
153 <version>1.2.15</version>
154 </dependency>
155 <dependency>
156 <groupId>javax.xml.soap</groupId>
157 <artifactId>com.springsource.javax.xml.soap</artifactId>
158 <version>1.3.0</version>
159 </dependency>
160 <dependency>
161 <groupId>javax.mail</groupId>
162 <artifactId>com.springsource.javax.mail</artifactId>
163 <version>1.4.1</version>
164 </dependency>
165
166 <!--
167 Required by ActiveMQ admin <dependency>
168 <groupId>org.springframework</groupId>
169 <artifactId>org.springframework.web</artifactId>
170 <version>${version.spring}</version> </dependency> <dependency>
171 <groupId>org.springframework</groupId>
172 <artifactId>org.springframework.web.servlet</artifactId>
173 <version>${version.spring}</version> </dependency> <dependency>
174 <groupId>org.apache.activemq</groupId>
175 <artifactId>com.springsource.org.apache.activemq.web</artifactId>
176 <version>${version.activemq}</version> </dependency> <dependency>
177 <groupId>javax.jms</groupId>
178 <artifactId>com.springsource.javax.jms</artifactId>
179 <version>1.1.0</version> </dependency> <dependency>
180 <groupId>org.apache.geronimo.specs</groupId>
181 <artifactId>com.springsource.javax.management.j2ee</artifactId>
182 <version>1.0.1</version> </dependency> <dependency>
183 <groupId>com.opensymphony.sitemesh</groupId>
184 <artifactId>com.springsource.com.opensymphony.sitemesh</artifactId>
185 <version>2.3.0</version> </dependency>
186 -->
187 </dependencies>
188 </plugin>
189 <plugin>
190 <groupId>org.apache.felix</groupId>
191 <artifactId>maven-bundle-plugin</artifactId>
192 <version>${version.maven-bundle-plugin}</version>
193 <extensions>true</extensions>
194 <configuration>
195 <manifestLocation>src/main/resources/META-INF</manifestLocation>
196 <instructions>
197 <Bundle-SymbolicName>
198 ${pom.artifactId}
199 </Bundle-SymbolicName>
200 <_removeheaders>Bnd-LastModified</_removeheaders>
201 </instructions>
202 </configuration>
203 <executions>
204 <execution>
205 <id>bundle-manifest</id>
206 <phase>process-classes</phase>
207 <goals>
208 <goal>manifest</goal>
209 </goals>
210 </execution>
211 </executions>
212 </plugin>
213 </plugins>
214 </pluginManagement>
215 <plugins>
216 <plugin>
217 <groupId>org.apache.maven.plugins</groupId>
218 <artifactId>maven-assembly-plugin</artifactId>
219 <inherited>false</inherited>
220 <configuration>
221 <descriptors>
222 <descriptor>
223 src/assembly/with-dependencies.xml
224 </descriptor>
225 </descriptors>
226 </configuration>
227 </plugin>
228 </plugins>
229 </build>
230 <reporting>
231 <plugins>
232 <plugin>
233 <groupId>org.apache.maven.plugins</groupId>
234 <artifactId>maven-surefire-report-plugin</artifactId>
235 </plugin>
236 <plugin>
237 <groupId>org.apache.maven.plugins</groupId>
238 <artifactId>maven-javadoc-plugin</artifactId>
239 </plugin>
240 <plugin>
241 <groupId>org.codehaus.mojo</groupId>
242 <artifactId>cobertura-maven-plugin</artifactId>
243 </plugin>
244 </plugins>
245 </reporting>
246 <dependencyManagement>
247 <dependencies>
248 <!-- SLC (itself) -->
249 <dependency>
250 <groupId>org.argeo.slc.runtime</groupId>
251 <artifactId>org.argeo.slc.specs</artifactId>
252 <version>${project.version}</version>
253 </dependency>
254 <dependency>
255 <groupId>org.argeo.slc.runtime</groupId>
256 <artifactId>org.argeo.slc.launcher</artifactId>
257 <version>${project.version}</version>
258 </dependency>
259 <dependency>
260 <groupId>org.argeo.slc.runtime</groupId>
261 <artifactId>org.argeo.slc.detached</artifactId>
262 <version>${project.version}</version>
263 </dependency>
264 <dependency>
265 <groupId>org.argeo.slc.runtime</groupId>
266 <artifactId>org.argeo.slc.support.simple</artifactId>
267 <version>${project.version}</version>
268 </dependency>
269 <dependency>
270 <groupId>org.argeo.slc.runtime</groupId>
271 <artifactId>org.argeo.slc.support.ant</artifactId>
272 <version>${project.version}</version>
273 </dependency>
274 <dependency>
275 <groupId>org.argeo.slc.runtime</groupId>
276 <artifactId>org.argeo.slc.support.hibernate</artifactId>
277 <version>${project.version}</version>
278 </dependency>
279 <dependency>
280 <groupId>org.argeo.slc.runtime</groupId>
281 <artifactId>org.argeo.slc.support.castor</artifactId>
282 <version>${project.version}</version>
283 </dependency>
284 <dependency>
285 <groupId>org.argeo.slc.runtime</groupId>
286 <artifactId>org.argeo.slc.support.activemq</artifactId>
287 <version>${project.version}</version>
288 </dependency>
289 <dependency>
290 <groupId>org.argeo.slc.runtime</groupId>
291 <artifactId>org.argeo.slc.server</artifactId>
292 <version>${project.version}</version>
293 </dependency>
294 <dependency>
295 <groupId>org.argeo.slc.runtime</groupId>
296 <artifactId>org.argeo.slc.execution</artifactId>
297 <version>${project.version}</version>
298 </dependency>
299 <dependency>
300 <groupId>org.argeo.slc.runtime</groupId>
301 <artifactId>org.argeo.slc.support.ws.client</artifactId>
302 <version>${project.version}</version>
303 </dependency>
304 <dependency>
305 <groupId>org.argeo.slc</groupId>
306 <artifactId>org.argeo.slc.webapp</artifactId>
307 <version>${project.version}</version>
308 <type>war</type>
309 </dependency>
310
311 <!-- SLC dubious -->
312 <dependency>
313 <groupId>org.argeo.slc</groupId>
314 <artifactId>org.argeo.slc.detached.launcher</artifactId>
315 <version>${project.version}</version>
316 <type>tar.gz</type>
317 <classifier>dist</classifier>
318 </dependency>
319
320
321 <!-- Javax -->
322 <dependency>
323 <groupId>javax.transaction</groupId>
324 <artifactId>
325 com.springsource.javax.transaction
326 </artifactId>
327 <version>1.1.0</version>
328 </dependency>
329 <dependency>
330 <groupId>javax.xml.stream</groupId>
331 <artifactId>
332 com.springsource.javax.xml.stream
333 </artifactId>
334 <version>1.0.1</version>
335 </dependency>
336 <dependency>
337 <groupId>javax.xml.soap</groupId>
338 <artifactId>com.springsource.javax.xml.soap</artifactId>
339 <version>1.3.0</version>
340 </dependency>
341 <dependency>
342 <groupId>com.sun.xml</groupId>
343 <artifactId>
344 com.springsource.com.sun.xml.messaging.saaj
345 </artifactId>
346 <scope>runtime</scope>
347 <version>1.3.0</version>
348 </dependency>
349 <dependency>
350 <groupId>javax.activation</groupId>
351 <artifactId>
352 com.springsource.javax.activation
353 </artifactId>
354 <version>1.1.1</version>
355 </dependency>
356
357 <!-- Unit tests -->
358 <dependency>
359 <groupId>org.junit</groupId>
360 <artifactId>com.springsource.junit</artifactId>
361 <version>3.8.2</version>
362 </dependency>
363 <dependency>
364 <groupId>org.dbunit</groupId>
365 <artifactId>com.springsource.org.dbunit</artifactId>
366 <version>2.2.0</version>
367 </dependency>
368
369 <!-- Logging -->
370 <dependency>
371 <groupId>org.apache.log4j</groupId>
372 <artifactId>
373 com.springsource.org.apache.log4j
374 </artifactId>
375 <version>1.2.15</version>
376 </dependency>
377 <dependency>
378 <groupId>org.apache.commons</groupId>
379 <artifactId>
380 com.springsource.org.apache.commons.logging
381 </artifactId>
382 <version>1.1.1</version>
383 </dependency>
384 <dependency>
385 <groupId>org.slf4j</groupId>
386 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
387 <version>1.5.3</version>
388 </dependency>
389 <dependency>
390 <groupId>org.slf4j</groupId>
391 <artifactId>com.springsource.slf4j.jcl</artifactId>
392 <version>1.5.3</version>
393 </dependency>
394 <dependency>
395 <groupId>org.slf4j</groupId>
396 <artifactId>com.springsource.slf4j.org.apache.log4j</artifactId>
397 <version>1.5.3</version>
398 </dependency>
399 <!-- Spring -->
400 <dependency>
401 <groupId>org.springframework</groupId>
402 <artifactId>org.springframework.core</artifactId>
403 <version>${version.spring}</version>
404 </dependency>
405 <dependency>
406 <groupId>org.springframework</groupId>
407 <artifactId>org.springframework.beans</artifactId>
408 <version>${version.spring}</version>
409 </dependency>
410 <dependency>
411 <groupId>org.springframework</groupId>
412 <artifactId>org.springframework.context</artifactId>
413 <version>${version.spring}</version>
414 </dependency>
415 <dependency>
416 <groupId>org.springframework</groupId>
417 <artifactId>
418 org.springframework.context.support
419 </artifactId>
420 <version>${version.spring}</version>
421 </dependency>
422 <dependency>
423 <groupId>org.springframework</groupId>
424 <artifactId>org.springframework.orm</artifactId>
425 <version>${version.spring}</version>
426 </dependency>
427 <dependency>
428 <groupId>org.springframework</groupId>
429 <artifactId>org.springframework.jdbc</artifactId>
430 <version>${version.spring}</version>
431 </dependency>
432 <dependency>
433 <groupId>org.springframework</groupId>
434 <artifactId>org.springframework.transaction</artifactId>
435 <version>${version.spring}</version>
436 </dependency>
437 <dependency>
438 <groupId>org.springframework</groupId>
439 <artifactId>org.springframework.web</artifactId>
440 <version>${version.spring}</version>
441 </dependency>
442 <dependency>
443 <groupId>org.springframework</groupId>
444 <artifactId>org.springframework.web.servlet</artifactId>
445 <version>${version.spring}</version>
446 </dependency>
447 <dependency>
448 <groupId>org.springframework</groupId>
449 <artifactId>org.springframework.aop</artifactId>
450 <version>${version.spring}</version>
451 </dependency>
452 <dependency>
453 <groupId>org.springframework</groupId>
454 <artifactId>org.springframework.jms</artifactId>
455 <version>${version.spring}</version>
456 </dependency>
457
458 <dependency>
459 <groupId>org.springframework.ws</groupId>
460 <artifactId>org.springframework.ws</artifactId>
461 <version>${version.spring-ws}</version>
462 </dependency>
463 <dependency>
464 <groupId>org.springframework.ws</groupId>
465 <artifactId>org.springframework.oxm</artifactId>
466 <version>${version.spring-ws}</version>
467 </dependency>
468
469 <dependency>
470 <groupId>org.springframework.osgi</groupId>
471 <artifactId>org.springframework.osgi.extender</artifactId>
472 <version>1.1.2.B</version>
473 </dependency>
474
475 <!-- Ant -->
476 <dependency>
477 <groupId>org.argeo.dep.osgi</groupId>
478 <artifactId>org.argeo.dep.osgi.ant</artifactId>
479 <version>1.7.1</version>
480 </dependency>
481
482 <!-- Required by specific Ant tasks -->
483 <dependency>
484 <groupId>org.apache.commons</groupId>
485 <artifactId>com.springsource.org.apache.commons.net</artifactId>
486 <version>1.4.1</version>
487 </dependency>
488 <dependency>
489 <groupId>org.apache.oro</groupId>
490 <artifactId>com.springsource.org.apache.oro</artifactId>
491 <version>2.0.8</version>
492 </dependency>
493 <dependency>
494 <groupId>org.apache.bsf</groupId>
495 <artifactId>com.springsource.org.apache.bsf</artifactId>
496 <version>2.4.0</version>
497 </dependency>
498 <dependency>
499 <groupId>org.beanshell</groupId>
500 <artifactId>com.springsource.bsh</artifactId>
501 <version>2.0.0.b4</version>
502 </dependency>
503
504 <!-- Apache Commons -->
505 <dependency>
506 <groupId>org.apache.commons</groupId>
507 <artifactId>
508 com.springsource.org.apache.commons.io
509 </artifactId>
510 <version>1.4.0</version>
511 </dependency>
512 <dependency>
513 <groupId>org.apache.commons</groupId>
514 <artifactId>com.springsource.org.apache.commons.collections</artifactId>
515 <version>3.2.0</version>
516 </dependency>
517 <dependency>
518 <groupId>org.argeo.dep.osgi</groupId>
519 <artifactId>org.argeo.dep.osgi.commons.cli</artifactId>
520 <version>1.1</version>
521 </dependency>
522
523 <!-- DB Drivers -->
524 <dependency>
525 <groupId>org.hsqldb</groupId>
526 <artifactId>com.springsource.org.hsqldb</artifactId>
527 <version>1.8.0.9</version>
528 </dependency>
529
530 <!-- XML -->
531 <dependency>
532 <groupId>org.codehaus.castor</groupId>
533 <artifactId>com.springsource.org.castor</artifactId>
534 <version>1.2.0</version>
535 </dependency>
536 <dependency>
537 <groupId>org.apache.xerces</groupId>
538 <artifactId>
539 com.springsource.org.apache.xerces
540 </artifactId>
541 <version>2.8.1</version>
542 </dependency>
543 <dependency>
544 <groupId>org.apache.xalan</groupId>
545 <artifactId>
546 com.springsource.org.apache.xalan
547 </artifactId>
548 <version>2.7.0</version>
549 </dependency>
550 <dependency>
551 <groupId>org.apache.xmlcommons</groupId>
552 <artifactId>com.springsource.org.apache.xmlcommons</artifactId>
553 <version>1.3.3</version>
554 </dependency>
555
556 <!-- Web -->
557 <dependency>
558 <groupId>javax.servlet</groupId>
559 <artifactId>com.springsource.javax.servlet</artifactId>
560 <version>2.5.0</version>
561 </dependency>
562 <dependency>
563 <groupId>javax.servlet</groupId>
564 <artifactId>com.springsource.javax.servlet.jsp</artifactId>
565 <version>2.1.0</version>
566 </dependency>
567 <dependency>
568 <groupId>javax.el</groupId>
569 <artifactId>com.springsource.javax.el</artifactId>
570 <version>1.0.0</version>
571 </dependency>
572 <dependency>
573 <groupId>javax.servlet</groupId>
574 <artifactId>
575 com.springsource.javax.servlet.jsp.jstl
576 </artifactId>
577 <version>1.1.2</version>
578 </dependency>
579 <dependency>
580 <groupId>org.apache.taglibs</groupId>
581 <artifactId>
582 com.springsource.org.apache.taglibs.standard
583 </artifactId>
584 <version>1.1.2</version>
585 </dependency>
586 <dependency>
587 <groupId>javax.activation</groupId>
588 <artifactId>com.springsource.javax.activation</artifactId>
589 <version>1.1.1</version>
590 </dependency>
591
592 <dependency>
593 <groupId>org.aspectj</groupId>
594 <artifactId>
595 com.springsource.org.aspectj.weaver
596 </artifactId>
597 <version>1.6.2.RELEASE</version>
598 </dependency>
599 <dependency>
600 <groupId>com.lowagie.text</groupId>
601 <artifactId>
602 com.springsource.com.lowagie.text
603 </artifactId>
604 <version>2.0.8</version>
605 </dependency>
606
607
608 <!-- Maven -->
609 <dependency>
610 <groupId>org.apache.maven</groupId>
611 <artifactId>maven-core</artifactId>
612 <version>${version.maven}</version>
613 </dependency>
614 <dependency>
615 <groupId>org.apache.maven</groupId>
616 <artifactId>maven-embedder</artifactId>
617 <!-- no higher version available -->
618 <version>2.0.4</version>
619 </dependency>
620 <dependency>
621 <groupId>org.apache.maven</groupId>
622 <artifactId>maven-settings</artifactId>
623 <version>${version.maven}</version>
624 </dependency>
625
626 <dependency>
627 <groupId>org.apache.archiva</groupId>
628 <artifactId>archiva-webapp</artifactId>
629 <version>1.1.3</version>
630 <type>war</type>
631 </dependency>
632
633 <!-- OSGi -->
634 <!--
635 <dependency> <groupId>org.apache.felix</groupId>
636 <artifactId>org.apache.felix.main</artifactId>
637 <version>1.2.1</version> <exclusions> <exclusion>
638 <groupId>org.apache.felix</groupId> <artifactId>
639 org.apache.felix.framework </artifactId> </exclusion> </exclusions>
640 </dependency> <dependency> <groupId>org.apache.felix</groupId>
641 <artifactId>org.osgi.core</artifactId> <version>1.2.0</version>
642 <scope>provided</scope> </dependency>
643 -->
644 <dependency>
645 <groupId>org.eclipse.osgi</groupId>
646 <artifactId>org.eclipse.osgi</artifactId>
647 <version>3.4.2.R34x_v20080826-1230</version>
648 </dependency>
649
650 <!-- Auto UI -->
651 <dependency>
652 <groupId>org.argeo.dep.jemmy</groupId>
653 <artifactId>org.argeo.dep.jemmy.nb61</artifactId>
654 <version>0.2.2</version>
655 </dependency>
656
657 <!-- Spring bundle repo -->
658 <dependency>
659 <groupId>javax.transaction</groupId>
660 <artifactId>
661 com.springsource.javax.transaction
662 </artifactId>
663 <version>1.1.0</version>
664 </dependency>
665 <dependency>
666 <groupId>org.hibernate</groupId>
667 <artifactId>com.springsource.org.hibernate</artifactId>
668 <version>3.2.6.ga</version>
669 <!-- <version>3.3.1.GA</version> TODO: fix issues with logging -->
670 </dependency>
671 <dependency>
672 <groupId>net.sourceforge.jexcelapi</groupId>
673 <artifactId>com.springsource.jxl</artifactId>
674 <version>2.6.6</version>
675 </dependency>
676 <dependency>
677 <groupId>net.sourceforge.ehcache</groupId>
678 <artifactId>com.springsource.net.sf.ehcache</artifactId>
679 <version>1.4.1</version>
680 </dependency>
681 <dependency>
682 <groupId>edu.emory.mathcs.backport</groupId>
683 <artifactId>
684 com.springsource.edu.emory.mathcs.backport
685 </artifactId>
686 <version>3.1.0</version>
687 </dependency>
688 <dependency>
689 <groupId>javax.wsdl</groupId>
690 <artifactId>com.springsource.javax.wsdl</artifactId>
691 <version>1.6.1</version>
692 </dependency>
693
694 <!-- JMS -->
695 <dependency>
696 <groupId>javax.jms</groupId>
697 <artifactId>com.springsource.javax.jms</artifactId>
698 <version>1.1.0</version>
699 </dependency>
700 <dependency>
701 <groupId>org.apache.geronimo.specs</groupId>
702 <artifactId>com.springsource.javax.management.j2ee</artifactId>
703 <version>1.0.1</version>
704 </dependency>
705
706 <!-- ActiveMQ -->
707 <dependency>
708 <groupId>org.apache.activemq</groupId>
709 <artifactId>com.springsource.org.apache.activemq</artifactId>
710 <version>${version.activemq}</version>
711 </dependency>
712 <dependency>
713 <groupId>org.apache.activemq</groupId>
714 <artifactId>com.springsource.org.apache.activemq.web</artifactId>
715 <version>${version.activemq}</version>
716 </dependency>
717 <!--
718 <dependency> <groupId>org.apache.activemq</groupId>
719 <artifactId>activemq-pool</artifactId>
720 <version>${version.activemq}</version> </dependency> <dependency>
721 <groupId>org.apache.activemq</groupId>
722 <artifactId>activemq-optional</artifactId>
723 <version>${version.activemq}</version> </dependency>
724 -->
725 <dependency>
726 <groupId>org.apache.xbean</groupId>
727 <artifactId>com.springsource.org.apache.xbean.spring</artifactId>
728 <version>3.3.0</version>
729 </dependency>
730
731 </dependencies>
732 </dependencyManagement>
733 <repositories>
734 <repository>
735 <id>central</id>
736 <url>http://repo1.maven.org/maven2</url>
737 <releases>
738 <enabled>true</enabled>
739 <updatePolicy>daily</updatePolicy>
740 <checksumPolicy>warn</checksumPolicy>
741 </releases>
742 <snapshots>
743 <enabled>false</enabled>
744 <updatePolicy>never</updatePolicy>
745 <checksumPolicy>fail</checksumPolicy>
746 </snapshots>
747 </repository>
748 <repository>
749 <id>com.springsource.repository.bundles.release</id>
750 <name>
751 SpringSource Enterprise Bundle Repository - SpringSource
752 Bundle Releases
753 </name>
754 <url>
755 http://repository.springsource.com/maven/bundles/release
756 </url>
757 <releases>
758 <enabled>true</enabled>
759 <updatePolicy>daily</updatePolicy>
760 <checksumPolicy>fail</checksumPolicy>
761 </releases>
762 <snapshots>
763 <enabled>false</enabled>
764 <updatePolicy>never</updatePolicy>
765 <checksumPolicy>fail</checksumPolicy>
766 </snapshots>
767 </repository>
768 <repository>
769 <id>com.springsource.repository.bundles.external</id>
770 <name>
771 SpringSource Enterprise Bundle Repository - External
772 Bundle Releases
773 </name>
774 <url>
775 http://repository.springsource.com/maven/bundles/external
776 </url>
777 <releases>
778 <enabled>true</enabled>
779 <updatePolicy>daily</updatePolicy>
780 <checksumPolicy>fail</checksumPolicy>
781 </releases>
782 <snapshots>
783 <enabled>false</enabled>
784 <updatePolicy>never</updatePolicy>
785 <checksumPolicy>fail</checksumPolicy>
786 </snapshots>
787 </repository>
788 <repository>
789 <id>argeo</id>
790 <url>http://www.argeo.org/maven/argeo</url>
791 <releases>
792 <enabled>true</enabled>
793 <updatePolicy>daily</updatePolicy>
794 <checksumPolicy>fail</checksumPolicy>
795 </releases>
796 <snapshots>
797 <enabled>false</enabled>
798 <updatePolicy>never</updatePolicy>
799 <checksumPolicy>fail</checksumPolicy>
800 </snapshots>
801 </repository>
802 <repository>
803 <id>argeo-snapshots</id>
804 <url>http://www.argeo.org/maven/argeo-snapshots</url>
805 <releases>
806 <enabled>false</enabled>
807 <updatePolicy>never</updatePolicy>
808 <checksumPolicy>fail</checksumPolicy>
809 </releases>
810 <snapshots>
811 <enabled>true</enabled>
812 <updatePolicy>always</updatePolicy>
813 <checksumPolicy>fail</checksumPolicy>
814 </snapshots>
815 </repository>
816 </repositories>
817 <pluginRepositories>
818 <pluginRepository>
819 <id>argeo</id>
820 <url>http://www.argeo.org/maven/argeo</url>
821 <releases>
822 <enabled>true</enabled>
823 <updatePolicy>daily</updatePolicy>
824 <checksumPolicy>fail</checksumPolicy>
825 </releases>
826 <snapshots>
827 <enabled>false</enabled>
828 <updatePolicy>never</updatePolicy>
829 <checksumPolicy>fail</checksumPolicy>
830 </snapshots>
831 </pluginRepository>
832 <pluginRepository>
833 <id>argeo-snapshots</id>
834 <url>http://www.argeo.org/maven/argeo-snapshots</url>
835 <releases>
836 <enabled>false</enabled>
837 <updatePolicy>never</updatePolicy>
838 <checksumPolicy>fail</checksumPolicy>
839 </releases>
840 <snapshots>
841 <enabled>true</enabled>
842 <updatePolicy>always</updatePolicy>
843 <checksumPolicy>fail</checksumPolicy>
844 </snapshots>
845 </pluginRepository>
846 </pluginRepositories>
847 <distributionManagement>
848 <repository>
849 <uniqueVersion>false</uniqueVersion>
850 <id>argeo-restricted</id>
851 <name>Argeo FOSS Repository</name>
852 <url>file:///var/argeo/maven2/argeo</url>
853 </repository>
854 <snapshotRepository>
855 <uniqueVersion>true</uniqueVersion>
856 <id>argeo-snapshots-restricted</id>
857 <name>Argeo FOSS Snapshots Repository</name>
858 <url>file:///var/argeo/maven2/argeo-snapshots</url>
859 </snapshotRepository>
860 <site>
861 <id>argeo-slc-site</id>
862 <name>SLC Site</name>
863 <url>
864 file:///var/argeo/projects/SLC/www/site/${project.version}
865 </url>
866 </site>
867 </distributionManagement>
868 </project>