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