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