]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc/pom.xml
Improve result persistence
[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.8-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 <scm>
20 <connection>
21 scm:svn:https://www.argeo.org/svn/slc/trunk/org.argeo.slc
22 </connection>
23 <url>https://www.argeo.org/svn/slc/trunk/org.argeo.slc</url>
24 </scm>
25 <issueManagement>
26 <system>Bugzilla</system>
27 <url>https://www.argeo.org/bugzilla/</url>
28 </issueManagement>
29 <licenses>
30 <license>
31 <name>Apache 2</name>
32 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
33 <distribution>repo</distribution>
34 <comments>A business-friendly OSS license</comments>
35 </license>
36 </licenses>
37 <organization>
38 <name>Argeo</name>
39 <url>http://www.argeo.org</url>
40 </organization>
41 <developers>
42 <developer>
43 <id>mbaudier</id>
44 <name>Mathieu Baudier</name>
45 <email>mbaudier@argeo.org</email>
46 <organization>Argeo</organization>
47 <organizationUrl>http://www.argeo.org</organizationUrl>
48 <roles>
49 <role>architect</role>
50 <role>developer</role>
51 </roles>
52 <timezone>+1</timezone>
53 </developer>
54 </developers>
55 <build>
56 <pluginManagement>
57 <plugins>
58 <plugin>
59 <groupId>org.apache.maven.plugins</groupId>
60 <artifactId>maven-compiler-plugin</artifactId>
61 <configuration>
62 <source>1.5</source>
63 <target>1.5</target>
64 </configuration>
65 </plugin>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-source-plugin</artifactId>
69 <executions>
70 <execution>
71 <id>attach-sources</id>
72 <phase>package</phase>
73 <goals>
74 <goal>jar</goal>
75 </goals>
76 </execution>
77 </executions>
78 </plugin>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-javadoc-plugin</artifactId>
82 <executions>
83 <execution>
84 <id>attach-javadoc</id>
85 <phase>package</phase>
86 <goals>
87 <goal>jar</goal>
88 </goals>
89 </execution>
90 </executions>
91 </plugin>
92 </plugins>
93 </pluginManagement>
94 <plugins>
95 <plugin>
96 <groupId>org.apache.maven.plugins</groupId>
97 <artifactId>maven-assembly-plugin</artifactId>
98 <inherited>false</inherited>
99 <configuration>
100 <descriptors>
101 <descriptor>
102 src/assembly/with-dependencies.xml
103 </descriptor>
104 </descriptors>
105 </configuration>
106 </plugin>
107 </plugins>
108 </build>
109 <reporting>
110 <plugins>
111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-surefire-report-plugin</artifactId>
114 </plugin>
115 <plugin>
116 <groupId>org.apache.maven.plugins</groupId>
117 <artifactId>maven-javadoc-plugin</artifactId>
118 </plugin>
119 <plugin>
120 <groupId>org.apache.maven.plugins</groupId>
121 <artifactId>maven-changelog-plugin</artifactId>
122 </plugin>
123 <plugin>
124 <groupId>org.codehaus.mojo</groupId>
125 <artifactId>cobertura-maven-plugin</artifactId>
126 </plugin>
127 </plugins>
128 </reporting>
129 <dependencyManagement>
130 <dependencies>
131 <dependency>
132 <groupId>javax.transaction</groupId>
133 <artifactId>jta</artifactId>
134 <version>1.0.1</version>
135 </dependency>
136 <dependency>
137 <groupId>org.dbunit</groupId>
138 <artifactId>dbunit</artifactId>
139 <version>2.2</version>
140 <exclusions>
141 <exclusion>
142 <groupId>junit-addons</groupId>
143 <artifactId>junit-addons</artifactId>
144 </exclusion>
145 <exclusion>
146 <groupId>poi</groupId>
147 <artifactId>poi</artifactId>
148 </exclusion>
149 </exclusions>
150 </dependency>
151 <dependency>
152 <groupId>log4j</groupId>
153 <artifactId>log4j</artifactId>
154 <version>1.2.14</version>
155 </dependency>
156 <dependency>
157 <groupId>commons-logging</groupId>
158 <artifactId>commons-logging</artifactId>
159 <version>1.1.1</version>
160 </dependency>
161 <dependency>
162 <groupId>org.hibernate</groupId>
163 <artifactId>hibernate</artifactId>
164 <version>3.2.5.ga</version>
165 </dependency>
166 <dependency>
167 <groupId>org.springframework</groupId>
168 <artifactId>spring-context</artifactId>
169 <version>2.5</version>
170 </dependency>
171 <dependency>
172 <groupId>org.springframework</groupId>
173 <artifactId>spring-orm</artifactId>
174 <version>2.5</version>
175 </dependency>
176 <dependency>
177 <groupId>org.springframework</groupId>
178 <artifactId>spring-jdbc</artifactId>
179 <version>2.5</version>
180 </dependency>
181 <dependency>
182 <groupId>org.apache.ant</groupId>
183 <artifactId>ant</artifactId>
184 <version>1.7.0</version>
185 </dependency>
186 <dependency>
187 <groupId>org.apache.commons</groupId>
188 <artifactId>commons-io</artifactId>
189 <version>1.3.2</version>
190 </dependency>
191 <dependency>
192 <groupId>org.dbunit</groupId>
193 <artifactId>dbunit</artifactId>
194 <version>2.2</version>
195 </dependency>
196 <dependency>
197 <groupId>junit</groupId>
198 <artifactId>junit</artifactId>
199 <version>3.8.2</version>
200 </dependency>
201 <dependency>
202 <groupId>hsqldb</groupId>
203 <artifactId>hsqldb</artifactId>
204 <version>1.8.0.9</version>
205 </dependency>
206 </dependencies>
207 </dependencyManagement>
208 <repositories>
209 <repository>
210 <id>central</id>
211 <url>http://www.argeo.org/maven/proxy</url>
212 <releases>
213 <enabled>true</enabled>
214 <updatePolicy>daily</updatePolicy>
215 <checksumPolicy>warn</checksumPolicy>
216 </releases>
217 </repository>
218 <repository>
219 <id>argeo</id>
220 <url>http://www.argeo.org/maven/argeo</url>
221 <releases>
222 <enabled>true</enabled>
223 <updatePolicy>daily</updatePolicy>
224 <checksumPolicy>fail</checksumPolicy>
225 </releases>
226 <snapshots>
227 <enabled>false</enabled>
228 <updatePolicy>never</updatePolicy>
229 <checksumPolicy>fail</checksumPolicy>
230 </snapshots>
231 </repository>
232 <repository>
233 <id>argeo-snapshots</id>
234 <url>http://www.argeo.org/maven/argeo-snapshots</url>
235 <releases>
236 <enabled>false</enabled>
237 <updatePolicy>never</updatePolicy>
238 <checksumPolicy>fail</checksumPolicy>
239 </releases>
240 <snapshots>
241 <enabled>true</enabled>
242 <updatePolicy>always</updatePolicy>
243 <checksumPolicy>fail</checksumPolicy>
244 </snapshots>
245 </repository>
246 </repositories>
247 <distributionManagement>
248 <repository>
249 <uniqueVersion>false</uniqueVersion>
250 <id>argeo-restricted</id>
251 <name>Argeo FOSS Repository</name>
252 <url>scp://argeo.org/var/argeo/maven2/argeo</url>
253 </repository>
254 <snapshotRepository>
255 <uniqueVersion>true</uniqueVersion>
256 <id>argeo-snapshots-restricted</id>
257 <name>Argeo FOSS Snapshots Repository</name>
258 <url>
259 scp://argeo.org/var/argeo/maven2/argeo-snapshots
260 </url>
261 </snapshotRepository>
262 <site>
263 <id>argeo-slc-site</id>
264 <name>SLC Site</name>
265 <url>
266 scp://argeo.org/var/argeo/projects/SLC/www/site
267 </url>
268 </site>
269 </distributionManagement>
270 </project>