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