]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc/pom.xml
Remove modules
[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.apache.maven.plugins</groupId>
126 <artifactId>maven-changelog-plugin</artifactId>
127 </plugin>
128 <plugin>
129 <groupId>org.codehaus.mojo</groupId>
130 <artifactId>cobertura-maven-plugin</artifactId>
131 </plugin>
132 </plugins>
133 </reporting>
134 <dependencyManagement>
135 <dependencies>
136 <dependency>
137 <groupId>javax.transaction</groupId>
138 <artifactId>jta</artifactId>
139 <version>1.0.1</version>
140 </dependency>
141 <dependency>
142 <groupId>org.dbunit</groupId>
143 <artifactId>dbunit</artifactId>
144 <version>2.2</version>
145 <exclusions>
146 <exclusion>
147 <groupId>junit-addons</groupId>
148 <artifactId>junit-addons</artifactId>
149 </exclusion>
150 <exclusion>
151 <groupId>poi</groupId>
152 <artifactId>poi</artifactId>
153 </exclusion>
154 </exclusions>
155 </dependency>
156 <dependency>
157 <groupId>log4j</groupId>
158 <artifactId>log4j</artifactId>
159 <version>1.2.14</version>
160 </dependency>
161 <dependency>
162 <groupId>commons-logging</groupId>
163 <artifactId>commons-logging</artifactId>
164 <version>1.1.1</version>
165 </dependency>
166 <dependency>
167 <groupId>org.hibernate</groupId>
168 <artifactId>hibernate</artifactId>
169 <version>3.2.5.ga</version>
170 </dependency>
171
172 <dependency>
173 <groupId>org.springframework</groupId>
174 <artifactId>spring-context</artifactId>
175 <version>${version.spring}</version>
176 </dependency>
177 <dependency>
178 <groupId>org.springframework</groupId>
179 <artifactId>spring-orm</artifactId>
180 <version>${version.spring}</version>
181 </dependency>
182 <dependency>
183 <groupId>org.springframework</groupId>
184 <artifactId>spring-jdbc</artifactId>
185 <version>${version.spring}</version>
186 </dependency>
187 <dependency>
188 <groupId>org.springframework</groupId>
189 <artifactId>spring-webmvc</artifactId>
190 <version>${version.spring}</version>
191 </dependency>
192 <dependency>
193 <groupId>org.springframework.ws</groupId>
194 <artifactId>spring-ws-core</artifactId>
195 <version>1.5.0</version>
196 </dependency>
197 <dependency>
198 <groupId>org.springframework.ws</groupId>
199 <artifactId>spring-oxm</artifactId>
200 <version>1.5.0</version>
201 </dependency>
202
203 <dependency>
204 <groupId>org.apache.ant</groupId>
205 <artifactId>ant</artifactId>
206 <version>1.7.0</version>
207 </dependency>
208 <dependency>
209 <groupId>org.apache.commons</groupId>
210 <artifactId>commons-io</artifactId>
211 <version>1.3.2</version>
212 </dependency>
213 <dependency>
214 <groupId>org.dbunit</groupId>
215 <artifactId>dbunit</artifactId>
216 <version>2.2</version>
217 </dependency>
218 <dependency>
219 <groupId>junit</groupId>
220 <artifactId>junit</artifactId>
221 <version>3.8.2</version>
222 </dependency>
223 <dependency>
224 <groupId>hsqldb</groupId>
225 <artifactId>hsqldb</artifactId>
226 <version>1.8.0.9</version>
227 </dependency>
228
229 <dependency>
230 <groupId>org.codehaus.castor</groupId>
231 <artifactId>castor</artifactId>
232 <version>1.1.2.1</version>
233 <exclusions>
234 <exclusion>
235 <groupId>xerces</groupId>
236 <artifactId>xerces</artifactId>
237 </exclusion>
238 </exclusions>
239 </dependency>
240 <dependency>
241 <groupId>xerces</groupId>
242 <artifactId>xercesImpl</artifactId>
243 <version>2.8.1</version>
244 </dependency>
245
246 <dependency>
247 <groupId>javax.xml.soap</groupId>
248 <artifactId>saaj-api</artifactId>
249 <version>1.3</version>
250 <scope>runtime</scope>
251 </dependency>
252 <dependency>
253 <groupId>com.sun.xml.messaging.saaj</groupId>
254 <artifactId>saaj-impl</artifactId>
255 <version>1.3</version>
256 <scope>runtime</scope>
257 </dependency>
258 <dependency>
259 <groupId>javax.activation</groupId>
260 <artifactId>activation</artifactId>
261 <version>1.1</version>
262 <scope>runtime</scope>
263 </dependency>
264
265 <dependency>
266 <groupId>javax.servlet</groupId>
267 <artifactId>jstl</artifactId>
268 <version>1.1.2</version>
269 </dependency>
270 <dependency>
271 <groupId>taglibs</groupId>
272 <artifactId>standard</artifactId>
273 <version>1.1.2</version>
274 </dependency>
275 <dependency>
276 <groupId>javax.servlet</groupId>
277 <artifactId>servlet-api</artifactId>
278 <version>2.5</version>
279 </dependency>
280 <dependency>
281 <groupId>c3p0</groupId>
282 <artifactId>c3p0</artifactId>
283 <version>0.9.1.2</version>
284 </dependency>
285 </dependencies>
286 </dependencyManagement>
287 <repositories>
288 <repository>
289 <id>central</id>
290 <url>http://www.argeo.org/maven/proxy</url>
291 <releases>
292 <enabled>true</enabled>
293 <updatePolicy>daily</updatePolicy>
294 <checksumPolicy>warn</checksumPolicy>
295 </releases>
296 </repository>
297 <repository>
298 <id>argeo</id>
299 <url>http://www.argeo.org/maven/argeo</url>
300 <releases>
301 <enabled>true</enabled>
302 <updatePolicy>daily</updatePolicy>
303 <checksumPolicy>fail</checksumPolicy>
304 </releases>
305 <snapshots>
306 <enabled>false</enabled>
307 <updatePolicy>never</updatePolicy>
308 <checksumPolicy>fail</checksumPolicy>
309 </snapshots>
310 </repository>
311 <repository>
312 <id>argeo-snapshots</id>
313 <url>http://www.argeo.org/maven/argeo-snapshots</url>
314 <releases>
315 <enabled>false</enabled>
316 <updatePolicy>never</updatePolicy>
317 <checksumPolicy>fail</checksumPolicy>
318 </releases>
319 <snapshots>
320 <enabled>true</enabled>
321 <updatePolicy>always</updatePolicy>
322 <checksumPolicy>fail</checksumPolicy>
323 </snapshots>
324 </repository>
325 </repositories>
326 <distributionManagement>
327 <repository>
328 <uniqueVersion>false</uniqueVersion>
329 <id>argeo-restricted</id>
330 <name>Argeo FOSS Repository</name>
331 <url>scpexe://argeo.org/var/argeo/maven2/argeo</url>
332 </repository>
333 <snapshotRepository>
334 <uniqueVersion>true</uniqueVersion>
335 <id>argeo-snapshots-restricted</id>
336 <name>Argeo FOSS Snapshots Repository</name>
337 <url>
338 scpexe://argeo.org/var/argeo/maven2/argeo-snapshots
339 </url>
340 </snapshotRepository>
341 <site>
342 <id>argeo-slc-site</id>
343 <name>SLC Site</name>
344 <url>
345 scpexe://argeo.org/var/argeo/projects/SLC/www/site
346 </url>
347 </site>
348 </distributionManagement>
349 </project>