]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
34060d27c47adbad6472d1acb3e98fd92f85147c
[gpl/argeo-slc.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6 <groupId>org.argeo.slc</groupId>
7 <artifactId>argeo-slc</artifactId>
8 <packaging>pom</packaging>
9 <name>Argeo SLC</name>
10 <version>0.9.3-SNAPSHOT</version>
11 <description>SLC Distribution</description>
12 <url>
13 http://www.argeo.org/projects/slc/${project.artfactId}/${project.version}
14 </url>
15 <properties>
16 <version.spring>2.5.5</version.spring>
17 <version.spring-ws>1.5.2</version.spring-ws>
18 <version.maven>2.0.9</version.maven>
19 <version.ant>1.7.0</version.ant>
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>6.1.10</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 <systemProperties>
110 <systemProperty>
111 <!-- some library (JExcelAPi) include log4j config in their jar -->
112 <name>log4j.defaultInitOverride</name>
113 <value>true</value>
114 </systemProperty>
115 </systemProperties>
116 </configuration>
117 </plugin>
118 </plugins>
119 </pluginManagement>
120 <plugins>
121 <plugin>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-assembly-plugin</artifactId>
124 <inherited>false</inherited>
125 <configuration>
126 <descriptors>
127 <descriptor>
128 src/assembly/with-dependencies.xml
129 </descriptor>
130 </descriptors>
131 </configuration>
132 </plugin>
133 </plugins>
134 </build>
135 <reporting>
136 <plugins>
137 <plugin>
138 <groupId>org.apache.maven.plugins</groupId>
139 <artifactId>maven-surefire-report-plugin</artifactId>
140 </plugin>
141 <plugin>
142 <groupId>org.apache.maven.plugins</groupId>
143 <artifactId>maven-javadoc-plugin</artifactId>
144 </plugin>
145 <plugin>
146 <groupId>org.codehaus.mojo</groupId>
147 <artifactId>cobertura-maven-plugin</artifactId>
148 </plugin>
149 </plugins>
150 </reporting>
151 <dependencyManagement>
152 <dependencies>
153 <dependency>
154 <groupId>javax.transaction</groupId>
155 <artifactId>jta</artifactId>
156 <version>1.0.1</version>
157 </dependency>
158
159 <dependency>
160 <groupId>junit</groupId>
161 <artifactId>junit</artifactId>
162 <version>3.8.2</version>
163 </dependency>
164 <dependency>
165 <groupId>org.dbunit</groupId>
166 <artifactId>dbunit</artifactId>
167 <version>2.2.3</version>
168 <exclusions>
169 <exclusion>
170 <groupId>junit-addons</groupId>
171 <artifactId>junit-addons</artifactId>
172 </exclusion>
173 <exclusion>
174 <groupId>poi</groupId>
175 <artifactId>poi</artifactId>
176 </exclusion>
177 </exclusions>
178 </dependency>
179 <dependency>
180 <groupId>log4j</groupId>
181 <artifactId>log4j</artifactId>
182 <version>1.2.15</version>
183 <exclusions>
184 <exclusion>
185 <groupId>com.sun.jmx</groupId>
186 <artifactId>jmxri</artifactId>
187 </exclusion>
188 <exclusion>
189 <groupId>com.sun.jdmk</groupId>
190 <artifactId>jmxtools</artifactId>
191 </exclusion>
192 <exclusion>
193 <groupId>javax.mail</groupId>
194 <artifactId>mail</artifactId>
195 </exclusion>
196 <exclusion>
197 <groupId>javax.jms</groupId>
198 <artifactId>jms</artifactId>
199 </exclusion>
200 </exclusions>
201 </dependency>
202 <dependency>
203 <groupId>commons-logging</groupId>
204 <artifactId>commons-logging</artifactId>
205 <version>1.1.1</version>
206 </dependency>
207 <dependency>
208 <groupId>org.hibernate</groupId>
209 <artifactId>hibernate</artifactId>
210 <version>3.2.6.ga</version>
211 </dependency>
212 <dependency>
213 <groupId>net.sf.ehcache</groupId>
214 <artifactId>ehcache</artifactId>
215 <version>1.4.1</version>
216 </dependency>
217
218 <dependency>
219 <groupId>org.springframework</groupId>
220 <artifactId>spring-context</artifactId>
221 <version>${version.spring}</version>
222 </dependency>
223 <dependency>
224 <groupId>org.springframework</groupId>
225 <artifactId>spring-context-support</artifactId>
226 <version>${version.spring}</version>
227 </dependency>
228 <dependency>
229 <groupId>org.springframework</groupId>
230 <artifactId>spring-orm</artifactId>
231 <version>${version.spring}</version>
232 </dependency>
233 <dependency>
234 <groupId>org.springframework</groupId>
235 <artifactId>spring-jdbc</artifactId>
236 <version>${version.spring}</version>
237 </dependency>
238 <dependency>
239 <groupId>org.springframework</groupId>
240 <artifactId>spring-webmvc</artifactId>
241 <version>${version.spring}</version>
242 </dependency>
243 <dependency>
244 <groupId>org.springframework</groupId>
245 <artifactId>spring-aop</artifactId>
246 <version>${version.spring}</version>
247 </dependency>
248
249 <dependency>
250 <groupId>org.springframework.ws</groupId>
251 <artifactId>spring-ws-core</artifactId>
252 <version>${version.spring-ws}</version>
253 </dependency>
254 <dependency>
255 <groupId>org.springframework.ws</groupId>
256 <artifactId>spring-oxm</artifactId>
257 <version>${version.spring-ws}</version>
258 </dependency>
259
260 <dependency>
261 <groupId>org.apache.ant</groupId>
262 <artifactId>ant</artifactId>
263 <version>${version.ant}</version>
264 </dependency>
265 <dependency>
266 <groupId>org.apache.ant</groupId>
267 <artifactId>ant-commons-logging</artifactId>
268 <version>${version.ant}</version>
269 </dependency>
270
271 <dependency>
272 <groupId>commons-io</groupId>
273 <artifactId>commons-io</artifactId>
274 <version>1.4</version>
275 </dependency>
276 <dependency>
277 <groupId>commons-cli</groupId>
278 <artifactId>commons-cli</artifactId>
279 <version>1.1</version>
280 </dependency>
281
282 <dependency>
283 <groupId>hsqldb</groupId>
284 <artifactId>hsqldb</artifactId>
285 <version>1.8.0.9</version>
286 </dependency>
287
288 <dependency>
289 <groupId>org.codehaus.castor</groupId>
290 <artifactId>castor</artifactId>
291 <version>1.2</version>
292 <exclusions>
293 <exclusion>
294 <groupId>xerces</groupId>
295 <artifactId>xerces</artifactId>
296 </exclusion>
297 </exclusions>
298 </dependency>
299 <dependency>
300 <groupId>xerces</groupId>
301 <artifactId>xercesImpl</artifactId>
302 <version>2.8.1</version>
303 </dependency>
304
305 <dependency>
306 <groupId>xalan</groupId>
307 <artifactId>xalan</artifactId>
308 <version>2.7.0</version>
309 </dependency>
310
311 <dependency>
312 <groupId>javax.xml.soap</groupId>
313 <artifactId>saaj-api</artifactId>
314 <version>1.3</version>
315 <scope>runtime</scope>
316 <exclusions>
317 <exclusion>
318 <groupId>javax.activation</groupId>
319 <artifactId>activation</artifactId>
320 </exclusion>
321 </exclusions>
322 </dependency>
323 <dependency>
324 <groupId>com.sun.xml.messaging.saaj</groupId>
325 <artifactId>saaj-impl</artifactId>
326 <version>1.3</version>
327 <scope>runtime</scope>
328 </dependency>
329 <dependency>
330 <groupId>javax.activation</groupId>
331 <artifactId>activation</artifactId>
332 <version>1.1</version>
333 <scope>runtime</scope>
334 </dependency>
335
336 <dependency>
337 <groupId>javax.servlet</groupId>
338 <artifactId>jstl</artifactId>
339 <version>1.1.2</version>
340 </dependency>
341 <dependency>
342 <groupId>taglibs</groupId>
343 <artifactId>standard</artifactId>
344 <version>1.1.2</version>
345 </dependency>
346 <dependency>
347 <groupId>javax.servlet</groupId>
348 <artifactId>servlet-api</artifactId>
349 <version>2.5</version>
350 </dependency>
351 <dependency>
352 <groupId>c3p0</groupId>
353 <artifactId>c3p0</artifactId>
354 <version>0.9.1.2</version>
355 </dependency>
356
357 <dependency>
358 <groupId>org.apache.maven</groupId>
359 <artifactId>maven-core</artifactId>
360 <version>${version.maven}</version>
361 </dependency>
362 <dependency>
363 <groupId>org.apache.maven</groupId>
364 <artifactId>maven-embedder</artifactId>
365 <!-- no higher version available -->
366 <version>2.0.4</version>
367 </dependency>
368 <dependency>
369 <groupId>org.apache.maven</groupId>
370 <artifactId>maven-settings</artifactId>
371 <version>${version.maven}</version>
372 </dependency>
373
374 <dependency>
375 <groupId>org.aspectj</groupId>
376 <artifactId>aspectjweaver</artifactId>
377 <version>1.6.0</version>
378 </dependency>
379
380 <dependency>
381 <groupId>net.sourceforge.jexcelapi</groupId>
382 <artifactId>jxl</artifactId>
383 <version>2.6.3</version>
384 </dependency>
385 <dependency>
386 <groupId>com.lowagie</groupId>
387 <artifactId>itext</artifactId>
388 <version>2.1.2</version>
389 </dependency>
390
391
392 </dependencies>
393 </dependencyManagement>
394 <repositories>
395 <repository>
396 <id>central</id>
397 <url>http://www.argeo.org/maven/proxy</url>
398 <releases>
399 <enabled>true</enabled>
400 <updatePolicy>daily</updatePolicy>
401 <checksumPolicy>warn</checksumPolicy>
402 </releases>
403 <snapshots>
404 <enabled>false</enabled>
405 <updatePolicy>never</updatePolicy>
406 <checksumPolicy>fail</checksumPolicy>
407 </snapshots>
408 </repository>
409 <repository>
410 <id>argeo</id>
411 <url>http://www.argeo.org/maven/argeo</url>
412 <releases>
413 <enabled>true</enabled>
414 <updatePolicy>daily</updatePolicy>
415 <checksumPolicy>fail</checksumPolicy>
416 </releases>
417 <snapshots>
418 <enabled>false</enabled>
419 <updatePolicy>never</updatePolicy>
420 <checksumPolicy>fail</checksumPolicy>
421 </snapshots>
422 </repository>
423 <repository>
424 <id>argeo-snapshots</id>
425 <url>http://www.argeo.org/maven/argeo-snapshots</url>
426 <releases>
427 <enabled>false</enabled>
428 <updatePolicy>never</updatePolicy>
429 <checksumPolicy>fail</checksumPolicy>
430 </releases>
431 <snapshots>
432 <enabled>true</enabled>
433 <updatePolicy>always</updatePolicy>
434 <checksumPolicy>fail</checksumPolicy>
435 </snapshots>
436 </repository>
437 </repositories>
438 <distributionManagement>
439 <repository>
440 <uniqueVersion>false</uniqueVersion>
441 <id>argeo-restricted</id>
442 <name>Argeo FOSS Repository</name>
443 <url>file:///var/argeo/maven2/argeo</url>
444 </repository>
445 <snapshotRepository>
446 <uniqueVersion>true</uniqueVersion>
447 <id>argeo-snapshots-restricted</id>
448 <name>Argeo FOSS Snapshots Repository</name>
449 <url>file:///var/argeo/maven2/argeo-snapshots</url>
450 </snapshotRepository>
451 <site>
452 <id>argeo-slc-site</id>
453 <name>SLC Site</name>
454 <url>
455 file:///var/argeo/projects/SLC/www/site/${project.version}
456 </url>
457 </site>
458 </distributionManagement>
459 </project>