]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc/pom.xml
Finalize release
[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.9.4-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.2</version.spring-ws>
17 <version.maven>2.0.9</version.maven>
18 <version.ant>1.7.0</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.6</source>
65 <target>1.6</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 <dependency>
277 <groupId>org.apache.ant</groupId>
278 <artifactId>ant</artifactId>
279 <version>${version.ant}</version>
280 </dependency>
281 <dependency>
282 <groupId>org.apache.ant</groupId>
283 <artifactId>ant-commons-logging</artifactId>
284 <version>${version.ant}</version>
285 </dependency>
286
287 <dependency>
288 <groupId>commons-io</groupId>
289 <artifactId>commons-io</artifactId>
290 <version>1.4</version>
291 </dependency>
292 <dependency>
293 <groupId>commons-cli</groupId>
294 <artifactId>commons-cli</artifactId>
295 <version>1.1</version>
296 </dependency>
297
298 <!-- DB Drivers -->
299 <dependency>
300 <groupId>hsqldb</groupId>
301 <artifactId>hsqldb</artifactId>
302 <version>1.8.0.9</version>
303 </dependency>
304
305 <dependency>
306 <groupId>org.codehaus.castor</groupId>
307 <artifactId>castor</artifactId>
308 <version>1.2</version>
309 <exclusions>
310 <exclusion>
311 <groupId>xerces</groupId>
312 <artifactId>xerces</artifactId>
313 </exclusion>
314 </exclusions>
315 </dependency>
316 <dependency>
317 <groupId>xerces</groupId>
318 <artifactId>xercesImpl</artifactId>
319 <version>2.8.1</version>
320 </dependency>
321
322 <dependency>
323 <groupId>xalan</groupId>
324 <artifactId>xalan</artifactId>
325 <version>2.7.0</version>
326 </dependency>
327
328 <dependency>
329 <groupId>javax.xml.soap</groupId>
330 <artifactId>saaj-api</artifactId>
331 <version>1.3</version>
332 <scope>runtime</scope>
333 <exclusions>
334 <exclusion>
335 <groupId>javax.activation</groupId>
336 <artifactId>activation</artifactId>
337 </exclusion>
338 </exclusions>
339 </dependency>
340 <dependency>
341 <groupId>com.sun.xml.messaging.saaj</groupId>
342 <artifactId>saaj-impl</artifactId>
343 <version>1.3</version>
344 <scope>runtime</scope>
345 </dependency>
346 <dependency>
347 <groupId>javax.activation</groupId>
348 <artifactId>activation</artifactId>
349 <version>1.1</version>
350 <scope>runtime</scope>
351 </dependency>
352
353 <dependency>
354 <groupId>javax.servlet</groupId>
355 <artifactId>jstl</artifactId>
356 <version>1.1.2</version>
357 </dependency>
358 <dependency>
359 <groupId>taglibs</groupId>
360 <artifactId>standard</artifactId>
361 <version>1.1.2</version>
362 </dependency>
363 <dependency>
364 <groupId>javax.servlet</groupId>
365 <artifactId>servlet-api</artifactId>
366 <version>2.5</version>
367 </dependency>
368
369 <dependency>
370 <groupId>org.apache.maven</groupId>
371 <artifactId>maven-core</artifactId>
372 <version>${version.maven}</version>
373 </dependency>
374 <dependency>
375 <groupId>org.apache.maven</groupId>
376 <artifactId>maven-embedder</artifactId>
377 <!-- no higher version available -->
378 <version>2.0.4</version>
379 </dependency>
380 <dependency>
381 <groupId>org.apache.maven</groupId>
382 <artifactId>maven-settings</artifactId>
383 <version>${version.maven}</version>
384 </dependency>
385
386 <dependency>
387 <groupId>org.aspectj</groupId>
388 <artifactId>aspectjweaver</artifactId>
389 <version>1.6.0</version>
390 </dependency>
391
392 <dependency>
393 <groupId>net.sourceforge.jexcelapi</groupId>
394 <artifactId>jxl</artifactId>
395 <version>2.6.8</version>
396 </dependency>
397 <dependency>
398 <groupId>com.lowagie</groupId>
399 <artifactId>itext</artifactId>
400 <version>2.1.2</version>
401 </dependency>
402
403
404 </dependencies>
405 </dependencyManagement>
406 <repositories>
407 <repository>
408 <id>central</id>
409 <url>http://www.argeo.org/maven/proxy</url>
410 <releases>
411 <enabled>true</enabled>
412 <updatePolicy>daily</updatePolicy>
413 <checksumPolicy>warn</checksumPolicy>
414 </releases>
415 <snapshots>
416 <enabled>false</enabled>
417 <updatePolicy>never</updatePolicy>
418 <checksumPolicy>fail</checksumPolicy>
419 </snapshots>
420 </repository>
421 <repository>
422 <id>argeo</id>
423 <url>http://www.argeo.org/maven/argeo</url>
424 <releases>
425 <enabled>true</enabled>
426 <updatePolicy>daily</updatePolicy>
427 <checksumPolicy>fail</checksumPolicy>
428 </releases>
429 <snapshots>
430 <enabled>false</enabled>
431 <updatePolicy>never</updatePolicy>
432 <checksumPolicy>fail</checksumPolicy>
433 </snapshots>
434 </repository>
435 <repository>
436 <id>argeo-snapshots</id>
437 <url>http://www.argeo.org/maven/argeo-snapshots</url>
438 <releases>
439 <enabled>false</enabled>
440 <updatePolicy>never</updatePolicy>
441 <checksumPolicy>fail</checksumPolicy>
442 </releases>
443 <snapshots>
444 <enabled>true</enabled>
445 <updatePolicy>always</updatePolicy>
446 <checksumPolicy>fail</checksumPolicy>
447 </snapshots>
448 </repository>
449 </repositories>
450 <distributionManagement>
451 <repository>
452 <uniqueVersion>false</uniqueVersion>
453 <id>argeo-restricted</id>
454 <name>Argeo FOSS Repository</name>
455 <url>file:///var/argeo/maven2/argeo</url>
456 </repository>
457 <snapshotRepository>
458 <uniqueVersion>true</uniqueVersion>
459 <id>argeo-snapshots-restricted</id>
460 <name>Argeo FOSS Snapshots Repository</name>
461 <url>file:///var/argeo/maven2/argeo-snapshots</url>
462 </snapshotRepository>
463 <site>
464 <id>argeo-slc-site</id>
465 <name>SLC Site</name>
466 <url>
467 file:///var/argeo/projects/SLC/www/site/${project.version}
468 </url>
469 </site>
470 </distributionManagement>
471 </project>