]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
Update versions
[lgpl/argeo-commons.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo</groupId>
6 <artifactId>parent</artifactId>
7 <version>1.2.0</version>
8 </parent>
9 <groupId>org.argeo.commons</groupId>
10 <artifactId>argeo-commons</artifactId>
11 <version>0.2.3-SNAPSHOT</version>
12 <name>Argeo Commons</name>
13 <packaging>pom</packaging>
14 <properties>
15 <developmentCycle>0.2</developmentCycle>
16 <version.argeo-distribution>1.1.3-SNAPSHOT</version.argeo-distribution>
17 <version.argeo-commons>0.2.3-SNAPSHOT</version.argeo-commons>
18 <version.argeo-ria>0.12.5</version.argeo-ria>
19 <version.equinox>3.6.1</version.equinox>
20 <version.maven-argeo-osgi>0.1.30</version.maven-argeo-osgi>
21 <version.maven-bundle-plugin>2.2.0</version.maven-bundle-plugin>
22 <version.maven-argeo-qooxdoo>1.1.1</version.maven-argeo-qooxdoo>
23 <site.repoBase>file:///srv/projects/www/commons/site</site.repoBase>
24 <site.urlBase>http://projects.argeo.org/commons/site</site.urlBase>
25 </properties>
26 <url>${site.urlBase}/${developmentCycle}</url>
27 <scm>
28 <connection>scm:svn:https://svn.argeo.org/commons/trunk</connection>
29 <developerConnection>scm:svn:https://svn.argeo.org/commons/trunk</developerConnection>
30 <url>https://svn.argeo.org/commons/trunk</url>
31 </scm>
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><![CDATA[
38 SLC - Software LifeCycle framework
39
40 Copyright 2010 Mathieu Baudier
41
42 Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
43 you may not use this file except in compliance with the License.
44 You may obtain a copy of the License at
45
46 http://www.apache.org/licenses/LICENSE-2.0
47
48 Unless required by applicable law or agreed to in writing, software
49 distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
50 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
51 See the License for the specific language governing permissions and
52 limitations under the License.
53 ]]>
54 </comments>
55 </license>
56 </licenses>
57 <developers>
58 <developer>
59 <id>mbaudier</id>
60 <name>Mathieu Baudier</name>
61 <email><![CDATA[http://mailhide.recaptcha.net/d?k=01EM7GpnvY3k8woQ2tnnZLUA==&c=crsNpHjhOBDPswHG6HD_gXaqymhC69wmBf7wlagcSHw=]]></email>
62 <organization>Argeo</organization>
63 <organizationUrl>http://www.argeo.org</organizationUrl>
64 <roles>
65 <role>architect</role>
66 <role>developer</role>
67 <role>QA</role>
68 </roles>
69 </developer>
70 </developers>
71 <modules>
72 <module>basic</module>
73 <module>osgi</module>
74 <module>server</module>
75 <module>security</module>
76 <module>eclipse</module>
77 <module>sandbox</module>
78 </modules>
79 <build>
80 <pluginManagement>
81 <plugins>
82 <plugin>
83 <groupId>org.apache.maven.plugins</groupId>
84 <artifactId>maven-compiler-plugin</artifactId>
85 <version>2.3.2</version>
86 <configuration>
87 <source>1.5</source>
88 <target>1.5</target>
89 </configuration>
90 </plugin>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-source-plugin</artifactId>
94 <version>2.1.2</version>
95 <executions>
96 <execution>
97 <id>attach-sources</id>
98 <phase>package</phase>
99 <goals>
100 <goal>jar</goal>
101 </goals>
102 </execution>
103 </executions>
104 </plugin>
105 <plugin>
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-clean-plugin</artifactId>
108 <version>2.4.1</version>
109 </plugin>
110 <plugin>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-surefire-plugin</artifactId>
113 <version>2.7.1</version>
114 </plugin>
115 <plugin>
116 <groupId>org.argeo.maven.plugins</groupId>
117 <artifactId>maven-argeo-osgi-plugin</artifactId>
118 <version>${version.maven-argeo-osgi}</version>
119 </plugin>
120 <plugin>
121 <artifactId>maven-jar-plugin</artifactId>
122 <version>2.3.1</version>
123 <configuration>
124 <archive>
125 <manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
126 </archive>
127 </configuration>
128 </plugin>
129 <plugin>
130 <groupId>org.apache.felix</groupId>
131 <artifactId>maven-bundle-plugin</artifactId>
132 <version>${version.maven-bundle-plugin}</version>
133 <extensions>true</extensions>
134 <configuration>
135 <manifestLocation>target/classes/META-INF</manifestLocation>
136 <instructions>
137 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
138 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
139 <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
140 <_removeheaders>Bnd-LastModified</_removeheaders>
141 </instructions>
142 </configuration>
143 <executions>
144 <execution>
145 <id>bundle-manifest</id>
146 <phase>process-classes</phase>
147 <goals>
148 <goal>manifest</goal>
149 </goals>
150 </execution>
151 </executions>
152 </plugin>
153 </plugins>
154 </pluginManagement>
155 <plugins>
156 <plugin>
157 <groupId>org.codehaus.mojo</groupId>
158 <artifactId>buildnumber-maven-plugin</artifactId>
159 <version>1.0-beta-4</version>
160 <executions>
161 <execution>
162 <phase>generate-resources</phase>
163 <goals>
164 <goal>create</goal>
165 </goals>
166 </execution>
167 </executions>
168 <configuration>
169 <doCheck>false</doCheck>
170 <doUpdate>false</doUpdate>
171 <format>{0,date,yyyyMMdd_HHmmss}</format>
172 <items>
173 <item>timestamp</item>
174 </items>
175 <revisionOnScmFailure>git</revisionOnScmFailure>
176 <providerImplementations>
177 <git>svn</git>
178 </providerImplementations>
179 </configuration>
180 </plugin>
181 <plugin>
182 <groupId>org.apache.maven.plugins</groupId>
183 <artifactId>maven-resources-plugin</artifactId>
184 <version>2.4.3</version>
185 <configuration>
186 <encoding>UTF-8</encoding>
187 </configuration>
188 </plugin>
189 <plugin>
190 <groupId>org.apache.maven.plugins</groupId>
191 <artifactId>maven-site-plugin</artifactId>
192 <version>2.1.1</version>
193 </plugin>
194 <plugin>
195 <groupId>org.apache.maven.plugins</groupId>
196 <artifactId>maven-release-plugin</artifactId>
197 <version>2.1</version>
198 <configuration>
199 <autoVersionSubmodules>true</autoVersionSubmodules>
200 <releaseProfiles>release</releaseProfiles>
201 <preparationGoals>clean install</preparationGoals>
202 </configuration>
203 </plugin>
204 <plugin>
205 <groupId>com.mycila.maven-license-plugin</groupId>
206 <artifactId>maven-license-plugin</artifactId>
207 <version>1.8.0</version>
208 <configuration>
209 <header>license-apache2-header.txt</header>
210 <failIfMissing>true</failIfMissing>
211 <aggregate>true</aggregate>
212 <includes>
213 <include>src/**/*.java</include>
214 <include>src/**/*.xml</include>
215 </includes>
216 <excludes>
217 <exclude>**/springutil/**</exclude>
218 <exclude>**/qooxdoo-sdk/**</exclude>
219 </excludes>
220 <useDefaultExcludes>true</useDefaultExcludes>
221 <mapping>
222 <java>SLASHSTAR_STYLE</java>
223 <xml>XML_STYLE</xml>
224 </mapping>
225 </configuration>
226 </plugin>
227 </plugins>
228 </build>
229 <dependencyManagement>
230 <dependencies>
231 <dependency>
232 <groupId>org.argeo.dep</groupId>
233 <artifactId>versions-all</artifactId>
234 <version>${version.argeo-distribution}</version>
235 <type>pom</type>
236 <scope>import</scope>
237 </dependency>
238 </dependencies>
239 </dependencyManagement>
240 <repositories>
241 <repository>
242 <id>argeo</id>
243 <url>http://maven.argeo.org/argeo</url>
244 <releases>
245 <enabled>true</enabled>
246 <updatePolicy>daily</updatePolicy>
247 <checksumPolicy>fail</checksumPolicy>
248 </releases>
249 <snapshots>
250 <enabled>false</enabled>
251 <updatePolicy>never</updatePolicy>
252 <checksumPolicy>fail</checksumPolicy>
253 </snapshots>
254 </repository>
255 </repositories>
256 <distributionManagement>
257 <site>
258 <id>argeo-commons-site</id>
259 <name>Argeo Commons Site</name>
260 <url>file://${site.repoBase}/${developmentCycle}/</url>
261 </site>
262 </distributionManagement>
263 <reporting>
264 <plugins>
265 <plugin>
266 <groupId>org.apache.maven.plugins</groupId>
267 <artifactId>maven-project-info-reports-plugin</artifactId>
268 <version>2.3.1</version>
269 <reportSets>
270 <reportSet>
271 <reports>
272 <report>index</report>
273 <report>summary</report>
274 <report>license</report>
275 <report>scm</report>
276 <report>issue-tracking</report>
277 <report>dependencies</report>
278 </reports>
279 </reportSet>
280 <reportSet>
281 <inherited>false</inherited>
282 <reports>
283 <report>project-team</report>
284 </reports>
285 </reportSet>
286 </reportSets>
287 </plugin>
288 <plugin>
289 <groupId>org.apache.maven.plugins</groupId>
290 <artifactId>maven-javadoc-plugin</artifactId>
291 <version>2.7</version>
292 <inherited>false</inherited>
293 <configuration>
294 <aggregate>true</aggregate>
295 <encoding>UTF-8</encoding>
296 </configuration>
297 </plugin>
298 <plugin>
299 <groupId>org.apache.maven.plugins</groupId>
300 <artifactId>maven-jxr-plugin</artifactId>
301 <version>2.2</version>
302 <configuration>
303 <aggregate>true</aggregate>
304 </configuration>
305 </plugin>
306 <plugin>
307 <groupId>org.apache.maven.plugins</groupId>
308 <artifactId>maven-surefire-report-plugin</artifactId>
309 <version>2.7.1</version>
310 <inherited>false</inherited>
311 <configuration>
312 <aggregate>true</aggregate>
313 </configuration>
314 </plugin>
315 <plugin>
316 <groupId>org.codehaus.mojo</groupId>
317 <artifactId>taglist-maven-plugin</artifactId>
318 <version>2.4</version>
319 <configuration>
320 <aggregate>true</aggregate>
321 <tags>
322 <tag>TODO</tag>
323 <tag>FIXME</tag>
324 <tag>@deprecated</tag>
325 </tags>
326 </configuration>
327 </plugin>
328 <plugin>
329 <groupId>org.apache.maven.plugins</groupId>
330 <artifactId>maven-changelog-plugin</artifactId>
331 <version>2.2</version>
332 <inherited>false</inherited>
333 </plugin>
334 <plugin>
335 <groupId>org.apache.maven.plugins</groupId>
336 <artifactId>maven-pmd-plugin</artifactId>
337 <version>2.3</version>
338 <inherited>false</inherited>
339 <configuration>
340 <linkXref>true</linkXref>
341 <targetJdk>1.5</targetJdk>
342 <aggregate>true</aggregate>
343 <excludes>
344 <exclude>**/springutil/*.java</exclude>
345 </excludes>
346 </configuration>
347 <reportSets>
348 <reportSet>
349 <reports>
350 <report>cpd</report>
351 </reports>
352 </reportSet>
353 </reportSets>
354 </plugin>
355 </plugins>
356 </reporting>
357 <profiles>
358 <profile>
359 <id>release</id>
360 <distributionManagement>
361 <site>
362 <id>argeo-commons-site</id>
363 <name>Argeo Commons Site</name>
364 <url>file://${site.repoBase}/${project.version}</url>
365 </site>
366 </distributionManagement>
367 </profile>
368 </profiles>
369 </project>