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