]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc/pom.xml
Increase 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.4</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</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.14</version>
176 </dependency>
177 <dependency>
178 <groupId>commons-logging</groupId>
179 <artifactId>commons-logging</artifactId>
180 <version>1.1.1</version>
181 </dependency>
182 <dependency>
183 <groupId>org.hibernate</groupId>
184 <artifactId>hibernate</artifactId>
185 <version>3.2.6.ga</version>
186 </dependency>
187
188 <dependency>
189 <groupId>org.springframework</groupId>
190 <artifactId>spring-context</artifactId>
191 <version>${version.spring}</version>
192 </dependency>
193 <dependency>
194 <groupId>org.springframework</groupId>
195 <artifactId>spring-orm</artifactId>
196 <version>${version.spring}</version>
197 </dependency>
198 <dependency>
199 <groupId>org.springframework</groupId>
200 <artifactId>spring-jdbc</artifactId>
201 <version>${version.spring}</version>
202 </dependency>
203 <dependency>
204 <groupId>org.springframework</groupId>
205 <artifactId>spring-webmvc</artifactId>
206 <version>${version.spring}</version>
207 </dependency>
208 <dependency>
209 <groupId>org.springframework</groupId>
210 <artifactId>spring-aop</artifactId>
211 <version>${version.spring}</version>
212 </dependency>
213
214 <dependency>
215 <groupId>org.springframework.ws</groupId>
216 <artifactId>spring-ws-core</artifactId>
217 <version>${version.spring-ws}</version>
218 </dependency>
219 <dependency>
220 <groupId>org.springframework.ws</groupId>
221 <artifactId>spring-oxm</artifactId>
222 <version>${version.spring-ws}</version>
223 </dependency>
224
225 <dependency>
226 <groupId>org.apache.ant</groupId>
227 <artifactId>ant</artifactId>
228 <version>${version.ant}</version>
229 </dependency>
230 <dependency>
231 <groupId>org.apache.ant</groupId>
232 <artifactId>ant-commons-logging</artifactId>
233 <version>${version.ant}</version>
234 </dependency>
235
236 <dependency>
237 <groupId>org.apache.commons</groupId>
238 <artifactId>commons-io</artifactId>
239 <version>1.3.2</version>
240 </dependency>
241 <dependency>
242 <groupId>commons-cli</groupId>
243 <artifactId>commons-cli</artifactId>
244 <version>1.1</version>
245 </dependency>
246
247 <dependency>
248 <groupId>hsqldb</groupId>
249 <artifactId>hsqldb</artifactId>
250 <version>1.8.0.9</version>
251 </dependency>
252
253 <dependency>
254 <groupId>org.codehaus.castor</groupId>
255 <artifactId>castor</artifactId>
256 <version>1.2</version>
257 <exclusions>
258 <exclusion>
259 <groupId>xerces</groupId>
260 <artifactId>xerces</artifactId>
261 </exclusion>
262 </exclusions>
263 </dependency>
264 <dependency>
265 <groupId>xerces</groupId>
266 <artifactId>xercesImpl</artifactId>
267 <version>2.8.1</version>
268 </dependency>
269
270 <dependency>
271 <groupId>xalan</groupId>
272 <artifactId>xalan</artifactId>
273 <version>2.7.0</version>
274 </dependency>
275
276 <dependency>
277 <groupId>javax.xml.soap</groupId>
278 <artifactId>saaj-api</artifactId>
279 <version>1.3</version>
280 <scope>runtime</scope>
281 <exclusions>
282 <exclusion>
283 <groupId>javax.activation</groupId>
284 <artifactId>activation</artifactId>
285 </exclusion>
286 </exclusions>
287 </dependency>
288 <dependency>
289 <groupId>com.sun.xml.messaging.saaj</groupId>
290 <artifactId>saaj-impl</artifactId>
291 <version>1.3</version>
292 <scope>runtime</scope>
293 </dependency>
294 <dependency>
295 <groupId>javax.activation</groupId>
296 <artifactId>activation</artifactId>
297 <version>1.1</version>
298 <scope>runtime</scope>
299 </dependency>
300
301 <dependency>
302 <groupId>javax.servlet</groupId>
303 <artifactId>jstl</artifactId>
304 <version>1.1.2</version>
305 </dependency>
306 <dependency>
307 <groupId>taglibs</groupId>
308 <artifactId>standard</artifactId>
309 <version>1.1.2</version>
310 </dependency>
311 <dependency>
312 <groupId>javax.servlet</groupId>
313 <artifactId>servlet-api</artifactId>
314 <version>2.5</version>
315 </dependency>
316 <dependency>
317 <groupId>c3p0</groupId>
318 <artifactId>c3p0</artifactId>
319 <version>0.9.1.2</version>
320 </dependency>
321
322 <dependency>
323 <groupId>org.apache.maven</groupId>
324 <artifactId>maven-core</artifactId>
325 <version>${version.maven}</version>
326 </dependency>
327 <dependency>
328 <groupId>org.apache.maven</groupId>
329 <artifactId>maven-embedder</artifactId>
330 <!-- no higher version available -->
331 <version>2.0.4</version>
332 </dependency>
333 <dependency>
334 <groupId>org.apache.maven</groupId>
335 <artifactId>maven-settings</artifactId>
336 <version>${version.maven}</version>
337 </dependency>
338
339 <dependency>
340 <groupId>org.aspectj</groupId>
341 <artifactId>aspectjweaver</artifactId>
342 <version>1.6.0</version>
343 </dependency>
344 </dependencies>
345 </dependencyManagement>
346 <repositories>
347 <repository>
348 <id>central</id>
349 <url>http://www.argeo.org/maven/proxy</url>
350 <releases>
351 <enabled>true</enabled>
352 <updatePolicy>daily</updatePolicy>
353 <checksumPolicy>warn</checksumPolicy>
354 </releases>
355 <snapshots>
356 <enabled>false</enabled>
357 <updatePolicy>never</updatePolicy>
358 <checksumPolicy>fail</checksumPolicy>
359 </snapshots>
360 </repository>
361 <repository>
362 <id>argeo</id>
363 <url>http://www.argeo.org/maven/argeo</url>
364 <releases>
365 <enabled>true</enabled>
366 <updatePolicy>daily</updatePolicy>
367 <checksumPolicy>fail</checksumPolicy>
368 </releases>
369 <snapshots>
370 <enabled>false</enabled>
371 <updatePolicy>never</updatePolicy>
372 <checksumPolicy>fail</checksumPolicy>
373 </snapshots>
374 </repository>
375 <repository>
376 <id>argeo-snapshots</id>
377 <url>http://www.argeo.org/maven/argeo-snapshots</url>
378 <releases>
379 <enabled>false</enabled>
380 <updatePolicy>never</updatePolicy>
381 <checksumPolicy>fail</checksumPolicy>
382 </releases>
383 <snapshots>
384 <enabled>true</enabled>
385 <updatePolicy>always</updatePolicy>
386 <checksumPolicy>fail</checksumPolicy>
387 </snapshots>
388 </repository>
389 </repositories>
390 <distributionManagement>
391 <repository>
392 <uniqueVersion>false</uniqueVersion>
393 <id>argeo-restricted</id>
394 <name>Argeo FOSS Repository</name>
395 <url>file:///var/argeo/maven2/argeo</url>
396 </repository>
397 <snapshotRepository>
398 <uniqueVersion>true</uniqueVersion>
399 <id>argeo-snapshots-restricted</id>
400 <name>Argeo FOSS Snapshots Repository</name>
401 <url>file:///var/argeo/maven2/argeo-snapshots</url>
402 </snapshotRepository>
403 <site>
404 <id>argeo-slc-site</id>
405 <name>SLC Site</name>
406 <url>
407 file:///var/argeo/projects/SLC/www/site/${project.version}
408 </url>
409 </site>
410 </distributionManagement>
411 </project>