]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc/pom.xml
First end-to-end SlcExecution with web service
[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 <modules>
16 <module>../org.argeo.slc.core</module>
17 <module>../org.argeo.slc.example</module>
18 </modules>
19 <properties>
20 <version.spring>2.5.3</version.spring>
21 </properties>
22 <scm>
23 <connection>
24 scm:svn:https://www.argeo.org/svn/slc/trunk/org.argeo.slc
25 </connection>
26 <url>https://www.argeo.org/svn/slc/trunk/org.argeo.slc</url>
27 </scm>
28 <issueManagement>
29 <system>Bugzilla</system>
30 <url>https://www.argeo.org/bugzilla/</url>
31 </issueManagement>
32 <licenses>
33 <license>
34 <name>Apache 2</name>
35 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
36 <distribution>repo</distribution>
37 <comments>A business-friendly OSS license</comments>
38 </license>
39 </licenses>
40 <organization>
41 <name>Argeo</name>
42 <url>http://www.argeo.org</url>
43 </organization>
44 <developers>
45 <developer>
46 <id>mbaudier</id>
47 <name>Mathieu Baudier</name>
48 <email>mbaudier@argeo.org</email>
49 <organization>Argeo</organization>
50 <organizationUrl>http://www.argeo.org</organizationUrl>
51 <roles>
52 <role>architect</role>
53 <role>developer</role>
54 </roles>
55 <timezone>+1</timezone>
56 </developer>
57 </developers>
58 <build>
59 <pluginManagement>
60 <plugins>
61 <plugin>
62 <groupId>org.apache.maven.plugins</groupId>
63 <artifactId>maven-compiler-plugin</artifactId>
64 <configuration>
65 <source>1.5</source>
66 <target>1.5</target>
67 </configuration>
68 </plugin>
69 <plugin>
70 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-source-plugin</artifactId>
72 <executions>
73 <execution>
74 <id>attach-sources</id>
75 <phase>package</phase>
76 <goals>
77 <goal>jar</goal>
78 </goals>
79 </execution>
80 </executions>
81 </plugin>
82 <plugin>
83 <groupId>org.apache.maven.plugins</groupId>
84 <artifactId>maven-javadoc-plugin</artifactId>
85 <executions>
86 <execution>
87 <id>attach-javadoc</id>
88 <phase>package</phase>
89 <goals>
90 <goal>jar</goal>
91 </goals>
92 </execution>
93 </executions>
94 </plugin>
95 </plugins>
96 </pluginManagement>
97 <plugins>
98 <plugin>
99 <groupId>org.apache.maven.plugins</groupId>
100 <artifactId>maven-assembly-plugin</artifactId>
101 <inherited>false</inherited>
102 <configuration>
103 <descriptors>
104 <descriptor>
105 src/assembly/with-dependencies.xml
106 </descriptor>
107 </descriptors>
108 </configuration>
109 </plugin>
110 </plugins>
111 </build>
112 <reporting>
113 <plugins>
114 <plugin>
115 <groupId>org.apache.maven.plugins</groupId>
116 <artifactId>maven-surefire-report-plugin</artifactId>
117 </plugin>
118 <plugin>
119 <groupId>org.apache.maven.plugins</groupId>
120 <artifactId>maven-javadoc-plugin</artifactId>
121 </plugin>
122 <plugin>
123 <groupId>org.apache.maven.plugins</groupId>
124 <artifactId>maven-changelog-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>1.7.0</version>
205 </dependency>
206 <dependency>
207 <groupId>org.apache.commons</groupId>
208 <artifactId>commons-io</artifactId>
209 <version>1.3.2</version>
210 </dependency>
211 <dependency>
212 <groupId>org.dbunit</groupId>
213 <artifactId>dbunit</artifactId>
214 <version>2.2</version>
215 </dependency>
216 <dependency>
217 <groupId>junit</groupId>
218 <artifactId>junit</artifactId>
219 <version>3.8.2</version>
220 </dependency>
221 <dependency>
222 <groupId>hsqldb</groupId>
223 <artifactId>hsqldb</artifactId>
224 <version>1.8.0.9</version>
225 </dependency>
226
227 <dependency>
228 <groupId>org.codehaus.castor</groupId>
229 <artifactId>castor</artifactId>
230 <version>1.1.2.1</version>
231 <exclusions>
232 <exclusion>
233 <groupId>xerces</groupId>
234 <artifactId>xerces</artifactId>
235 </exclusion>
236 </exclusions>
237 </dependency>
238 <dependency>
239 <groupId>xerces</groupId>
240 <artifactId>xercesImpl</artifactId>
241 <version>2.8.1</version>
242 </dependency>
243
244 <dependency>
245 <groupId>javax.xml.soap</groupId>
246 <artifactId>saaj-api</artifactId>
247 <version>1.3</version>
248 <scope>runtime</scope>
249 </dependency>
250 <dependency>
251 <groupId>com.sun.xml.messaging.saaj</groupId>
252 <artifactId>saaj-impl</artifactId>
253 <version>1.3</version>
254 <scope>runtime</scope>
255 </dependency>
256 <dependency>
257 <groupId>javax.activation</groupId>
258 <artifactId>activation</artifactId>
259 <version>1.1</version>
260 <scope>runtime</scope>
261 </dependency>
262
263 <dependency>
264 <groupId>javax.servlet</groupId>
265 <artifactId>jstl</artifactId>
266 <version>1.1.2</version>
267 </dependency>
268 <dependency>
269 <groupId>taglibs</groupId>
270 <artifactId>standard</artifactId>
271 <version>1.1.2</version>
272 </dependency>
273 <dependency>
274 <groupId>javax.servlet</groupId>
275 <artifactId>servlet-api</artifactId>
276 <version>2.5</version>
277 </dependency>
278 <dependency>
279 <groupId>c3p0</groupId>
280 <artifactId>c3p0</artifactId>
281 <version>0.9.1.2</version>
282 </dependency>
283 </dependencies>
284 </dependencyManagement>
285 <repositories>
286 <repository>
287 <id>central</id>
288 <url>http://www.argeo.org/maven/proxy</url>
289 <releases>
290 <enabled>true</enabled>
291 <updatePolicy>daily</updatePolicy>
292 <checksumPolicy>warn</checksumPolicy>
293 </releases>
294 </repository>
295 <repository>
296 <id>argeo</id>
297 <url>http://www.argeo.org/maven/argeo</url>
298 <releases>
299 <enabled>true</enabled>
300 <updatePolicy>daily</updatePolicy>
301 <checksumPolicy>fail</checksumPolicy>
302 </releases>
303 <snapshots>
304 <enabled>false</enabled>
305 <updatePolicy>never</updatePolicy>
306 <checksumPolicy>fail</checksumPolicy>
307 </snapshots>
308 </repository>
309 <repository>
310 <id>argeo-snapshots</id>
311 <url>http://www.argeo.org/maven/argeo-snapshots</url>
312 <releases>
313 <enabled>false</enabled>
314 <updatePolicy>never</updatePolicy>
315 <checksumPolicy>fail</checksumPolicy>
316 </releases>
317 <snapshots>
318 <enabled>true</enabled>
319 <updatePolicy>always</updatePolicy>
320 <checksumPolicy>fail</checksumPolicy>
321 </snapshots>
322 </repository>
323 </repositories>
324 <distributionManagement>
325 <repository>
326 <uniqueVersion>false</uniqueVersion>
327 <id>argeo-restricted</id>
328 <name>Argeo FOSS Repository</name>
329 <url>scpexe://argeo.org/var/argeo/maven2/argeo</url>
330 </repository>
331 <snapshotRepository>
332 <uniqueVersion>true</uniqueVersion>
333 <id>argeo-snapshots-restricted</id>
334 <name>Argeo FOSS Snapshots Repository</name>
335 <url>
336 scpexe://argeo.org/var/argeo/maven2/argeo-snapshots
337 </url>
338 </snapshotRepository>
339 <site>
340 <id>argeo-slc-site</id>
341 <name>SLC Site</name>
342 <url>
343 scpexe://argeo.org/var/argeo/projects/SLC/www/site
344 </url>
345 </site>
346 </distributionManagement>
347 </project>