]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
22cb552cced75a6f4f1974af11c9800a040b1329
[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.2</version>
11 <description>SLC Distribution</description>
12 <url>
13 http://www.argeo.org/projects/slc/${project.artfactId}/${project.version}
14 </url>
15 <!--
16 <modules>
17 <module>../org.argeo.slc.core</module>
18 <module>../org.argeo.slc.example</module>
19 </modules>
20 -->
21 <properties>
22 <version.spring>2.5.4</version.spring>
23 <version.spring-ws>1.5.2</version.spring-ws>
24 <version.maven>2.0.9</version.maven>
25 <version.ant>1.7.0</version.ant>
26 </properties>
27 <scm>
28 <connection>
29 scm:svn:https://www.argeo.org/svn/slc/trunk/org.argeo.slc
30 </connection>
31 <url>https://www.argeo.org/svn/slc/trunk/org.argeo.slc</url>
32 </scm>
33 <issueManagement>
34 <system>Bugzilla</system>
35 <url>https://www.argeo.org/bugzilla/</url>
36 </issueManagement>
37 <licenses>
38 <license>
39 <name>Apache 2</name>
40 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
41 <distribution>repo</distribution>
42 <comments>A business-friendly OSS license</comments>
43 </license>
44 </licenses>
45 <organization>
46 <name>Argeo</name>
47 <url>http://www.argeo.org</url>
48 </organization>
49 <developers>
50 <developer>
51 <id>mbaudier</id>
52 <name>Mathieu Baudier</name>
53 <email>mbaudier@argeo.org</email>
54 <organization>Argeo</organization>
55 <organizationUrl>http://www.argeo.org</organizationUrl>
56 <roles>
57 <role>architect</role>
58 <role>developer</role>
59 </roles>
60 <timezone>+1</timezone>
61 </developer>
62 </developers>
63 <build>
64 <pluginManagement>
65 <plugins>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-compiler-plugin</artifactId>
69 <configuration>
70 <source>1.6</source>
71 <target>1.6</target>
72 </configuration>
73 </plugin>
74 <plugin>
75 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-source-plugin</artifactId>
77 <executions>
78 <execution>
79 <id>attach-sources</id>
80 <phase>package</phase>
81 <goals>
82 <goal>jar</goal>
83 </goals>
84 </execution>
85 </executions>
86 </plugin>
87 <plugin>
88 <groupId>org.apache.maven.plugins</groupId>
89 <artifactId>maven-javadoc-plugin</artifactId>
90 <executions>
91 <execution>
92 <id>attach-javadoc</id>
93 <phase>package</phase>
94 <goals>
95 <goal>jar</goal>
96 </goals>
97 </execution>
98 </executions>
99 </plugin>
100 </plugins>
101 </pluginManagement>
102 <plugins>
103 <plugin>
104 <groupId>org.apache.maven.plugins</groupId>
105 <artifactId>maven-assembly-plugin</artifactId>
106 <inherited>false</inherited>
107 <configuration>
108 <descriptors>
109 <descriptor>
110 src/assembly/with-dependencies.xml
111 </descriptor>
112 </descriptors>
113 </configuration>
114 </plugin>
115 </plugins>
116 </build>
117 <reporting>
118 <plugins>
119 <plugin>
120 <groupId>org.apache.maven.plugins</groupId>
121 <artifactId>maven-surefire-report-plugin</artifactId>
122 </plugin>
123 <plugin>
124 <groupId>org.apache.maven.plugins</groupId>
125 <artifactId>maven-javadoc-plugin</artifactId>
126 </plugin>
127 <plugin>
128 <groupId>org.codehaus.mojo</groupId>
129 <artifactId>cobertura-maven-plugin</artifactId>
130 </plugin>
131 </plugins>
132 </reporting>
133 <dependencyManagement>
134 <dependencies>
135 <dependency>
136 <groupId>javax.transaction</groupId>
137 <artifactId>jta</artifactId>
138 <version>1.0.1</version>
139 </dependency>
140
141 <dependency>
142 <groupId>junit</groupId>
143 <artifactId>junit</artifactId>
144 <version>3.8.2</version>
145 </dependency>
146 <dependency>
147 <groupId>org.dbunit</groupId>
148 <artifactId>dbunit</artifactId>
149 <version>2.2</version>
150 <exclusions>
151 <exclusion>
152 <groupId>junit-addons</groupId>
153 <artifactId>junit-addons</artifactId>
154 </exclusion>
155 <exclusion>
156 <groupId>poi</groupId>
157 <artifactId>poi</artifactId>
158 </exclusion>
159 </exclusions>
160 </dependency>
161 <dependency>
162 <groupId>log4j</groupId>
163 <artifactId>log4j</artifactId>
164 <version>1.2.14</version>
165 </dependency>
166 <dependency>
167 <groupId>commons-logging</groupId>
168 <artifactId>commons-logging</artifactId>
169 <version>1.1.1</version>
170 </dependency>
171 <dependency>
172 <groupId>org.hibernate</groupId>
173 <artifactId>hibernate</artifactId>
174 <version>3.2.6.ga</version>
175 </dependency>
176
177 <dependency>
178 <groupId>org.springframework</groupId>
179 <artifactId>spring-context</artifactId>
180 <version>${version.spring}</version>
181 </dependency>
182 <dependency>
183 <groupId>org.springframework</groupId>
184 <artifactId>spring-orm</artifactId>
185 <version>${version.spring}</version>
186 </dependency>
187 <dependency>
188 <groupId>org.springframework</groupId>
189 <artifactId>spring-jdbc</artifactId>
190 <version>${version.spring}</version>
191 </dependency>
192 <dependency>
193 <groupId>org.springframework</groupId>
194 <artifactId>spring-webmvc</artifactId>
195 <version>${version.spring}</version>
196 </dependency>
197 <dependency>
198 <groupId>org.springframework.ws</groupId>
199 <artifactId>spring-ws-core</artifactId>
200 <version>${version.spring-ws}</version>
201 </dependency>
202 <dependency>
203 <groupId>org.springframework.ws</groupId>
204 <artifactId>spring-oxm</artifactId>
205 <version>${version.spring-ws}</version>
206 </dependency>
207
208 <dependency>
209 <groupId>org.apache.ant</groupId>
210 <artifactId>ant</artifactId>
211 <version>${version.ant}</version>
212 </dependency>
213 <dependency>
214 <groupId>org.apache.ant</groupId>
215 <artifactId>ant-commons-logging</artifactId>
216 <version>${version.ant}</version>
217 </dependency>
218
219 <dependency>
220 <groupId>org.apache.commons</groupId>
221 <artifactId>commons-io</artifactId>
222 <version>1.3.2</version>
223 </dependency>
224
225 <dependency>
226 <groupId>hsqldb</groupId>
227 <artifactId>hsqldb</artifactId>
228 <version>1.8.0.9</version>
229 </dependency>
230
231 <dependency>
232 <groupId>org.codehaus.castor</groupId>
233 <artifactId>castor</artifactId>
234 <version>1.2</version>
235 <exclusions>
236 <exclusion>
237 <groupId>xerces</groupId>
238 <artifactId>xerces</artifactId>
239 </exclusion>
240 </exclusions>
241 </dependency>
242 <dependency>
243 <groupId>xerces</groupId>
244 <artifactId>xercesImpl</artifactId>
245 <version>2.8.1</version>
246 </dependency>
247
248 <dependency>
249 <groupId>xalan</groupId>
250 <artifactId>xalan</artifactId>
251 <version>2.7.0</version>
252 </dependency>
253
254 <dependency>
255 <groupId>javax.xml.soap</groupId>
256 <artifactId>saaj-api</artifactId>
257 <version>1.3</version>
258 <scope>runtime</scope>
259 <exclusions>
260 <exclusion>
261 <groupId>javax.activation</groupId>
262 <artifactId>activation</artifactId>
263 </exclusion>
264 </exclusions>
265 </dependency>
266 <dependency>
267 <groupId>com.sun.xml.messaging.saaj</groupId>
268 <artifactId>saaj-impl</artifactId>
269 <version>1.3</version>
270 <scope>runtime</scope>
271 </dependency>
272 <dependency>
273 <groupId>javax.activation</groupId>
274 <artifactId>activation</artifactId>
275 <version>1.1</version>
276 <scope>runtime</scope>
277 </dependency>
278
279 <dependency>
280 <groupId>javax.servlet</groupId>
281 <artifactId>jstl</artifactId>
282 <version>1.1.2</version>
283 </dependency>
284 <dependency>
285 <groupId>taglibs</groupId>
286 <artifactId>standard</artifactId>
287 <version>1.1.2</version>
288 </dependency>
289 <dependency>
290 <groupId>javax.servlet</groupId>
291 <artifactId>servlet-api</artifactId>
292 <version>2.5</version>
293 </dependency>
294 <dependency>
295 <groupId>c3p0</groupId>
296 <artifactId>c3p0</artifactId>
297 <version>0.9.1.2</version>
298 </dependency>
299
300 <dependency>
301 <groupId>org.apache.maven</groupId>
302 <artifactId>maven-core</artifactId>
303 <version>${version.maven}</version>
304 </dependency>
305 <dependency>
306 <groupId>org.apache.maven</groupId>
307 <artifactId>maven-embedder</artifactId>
308 <!-- no higher version available -->
309 <version>2.0.4</version>
310 </dependency>
311 <dependency>
312 <groupId>org.apache.maven</groupId>
313 <artifactId>maven-settings</artifactId>
314 <version>${version.maven}</version>
315 </dependency>
316
317 </dependencies>
318 </dependencyManagement>
319 <repositories>
320 <repository>
321 <id>central</id>
322 <url>http://www.argeo.org/maven/proxy</url>
323 <releases>
324 <enabled>true</enabled>
325 <updatePolicy>daily</updatePolicy>
326 <checksumPolicy>warn</checksumPolicy>
327 </releases>
328 </repository>
329 <repository>
330 <id>argeo</id>
331 <url>http://www.argeo.org/maven/argeo</url>
332 <releases>
333 <enabled>true</enabled>
334 <updatePolicy>daily</updatePolicy>
335 <checksumPolicy>fail</checksumPolicy>
336 </releases>
337 <snapshots>
338 <enabled>false</enabled>
339 <updatePolicy>never</updatePolicy>
340 <checksumPolicy>fail</checksumPolicy>
341 </snapshots>
342 </repository>
343 <repository>
344 <id>argeo-snapshots</id>
345 <url>http://www.argeo.org/maven/argeo-snapshots</url>
346 <releases>
347 <enabled>false</enabled>
348 <updatePolicy>never</updatePolicy>
349 <checksumPolicy>fail</checksumPolicy>
350 </releases>
351 <snapshots>
352 <enabled>true</enabled>
353 <updatePolicy>always</updatePolicy>
354 <checksumPolicy>fail</checksumPolicy>
355 </snapshots>
356 </repository>
357 </repositories>
358 <distributionManagement>
359 <repository>
360 <uniqueVersion>false</uniqueVersion>
361 <id>argeo-restricted</id>
362 <name>Argeo FOSS Repository</name>
363 <url>file:///var/argeo/maven2/argeo</url>
364 </repository>
365 <snapshotRepository>
366 <uniqueVersion>true</uniqueVersion>
367 <id>argeo-snapshots-restricted</id>
368 <name>Argeo FOSS Snapshots Repository</name>
369 <url>file:///var/argeo/maven2/argeo-snapshots</url>
370 </snapshotRepository>
371 <site>
372 <id>argeo-slc-site</id>
373 <name>SLC Site</name>
374 <url>
375 file:///var/argeo/projects/SLC/www/site/${project.version}
376 </url>
377 </site>
378 </distributionManagement>
379 </project>