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