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