]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc/pom.xml
Update version tags
[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.1</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>org.hibernate</groupId>
158 <artifactId>hibernate</artifactId>
159 <version>3.2.5.ga</version>
160 </dependency>
161 <dependency>
162 <groupId>org.springframework</groupId>
163 <artifactId>spring-context</artifactId>
164 <version>2.5</version>
165 </dependency>
166 <dependency>
167 <groupId>org.springframework</groupId>
168 <artifactId>spring-orm</artifactId>
169 <version>2.5</version>
170 </dependency>
171 <dependency>
172 <groupId>org.springframework</groupId>
173 <artifactId>spring-jdbc</artifactId>
174 <version>2.5</version>
175 </dependency>
176 <dependency>
177 <groupId>org.apache.ant</groupId>
178 <artifactId>ant</artifactId>
179 <version>1.7.0</version>
180 </dependency>
181 <dependency>
182 <groupId>org.apache.commons</groupId>
183 <artifactId>commons-io</artifactId>
184 <version>1.3.2</version>
185 </dependency>
186 <dependency>
187 <groupId>org.dbunit</groupId>
188 <artifactId>dbunit</artifactId>
189 <version>2.2</version>
190 </dependency>
191 <dependency>
192 <groupId>junit</groupId>
193 <artifactId>junit</artifactId>
194 <version>3.8.2</version>
195 </dependency>
196 <dependency>
197 <groupId>hsqldb</groupId>
198 <artifactId>hsqldb</artifactId>
199 <version>1.8.0.9</version>
200 </dependency>
201 </dependencies>
202 </dependencyManagement>
203 <repositories>
204 <repository>
205 <id>central</id>
206 <url>http://www.argeo.org/maven/proxy</url>
207 <releases>
208 <enabled>true</enabled>
209 <updatePolicy>daily</updatePolicy>
210 <checksumPolicy>warn</checksumPolicy>
211 </releases>
212 </repository>
213 <repository>
214 <id>argeo</id>
215 <url>http://www.argeo.org/maven/argeo</url>
216 <releases>
217 <enabled>true</enabled>
218 <updatePolicy>daily</updatePolicy>
219 <checksumPolicy>fail</checksumPolicy>
220 </releases>
221 <snapshots>
222 <enabled>false</enabled>
223 <updatePolicy>never</updatePolicy>
224 <checksumPolicy>fail</checksumPolicy>
225 </snapshots>
226 </repository>
227 <repository>
228 <id>argeo-snapshots</id>
229 <url>http://www.argeo.org/maven/argeo-snapshots</url>
230 <releases>
231 <enabled>false</enabled>
232 <updatePolicy>never</updatePolicy>
233 <checksumPolicy>fail</checksumPolicy>
234 </releases>
235 <snapshots>
236 <enabled>true</enabled>
237 <updatePolicy>always</updatePolicy>
238 <checksumPolicy>fail</checksumPolicy>
239 </snapshots>
240 </repository>
241 </repositories>
242 <distributionManagement>
243 <repository>
244 <uniqueVersion>false</uniqueVersion>
245 <id>argeo-restricted</id>
246 <name>Argeo FOSS Repository</name>
247 <url>scpexe://argeo.org/var/argeo/maven2/argeo</url>
248 </repository>
249 <snapshotRepository>
250 <uniqueVersion>true</uniqueVersion>
251 <id>argeo-snapshots-restricted</id>
252 <name>Argeo FOSS Snapshots Repository</name>
253 <url>
254 scpexe://argeo.org/var/argeo/maven2/argeo-snapshots
255 </url>
256 </snapshotRepository>
257 <site>
258 <id>argeo-slc-site</id>
259 <name>SLC Site</name>
260 <url>
261 scpexe://argeo.org/var/argeo/projects/SLC/www/site
262 </url>
263 </site>
264 </distributionManagement>
265 </project>