]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
First full implementation of the ebi detail editor
[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"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.argeo</groupId>
7 <artifactId>parent</artifactId>
8 <version>1.2.0</version>
9 </parent>
10 <groupId>org.argeo.commons</groupId>
11 <artifactId>argeo-commons</artifactId>
12 <version>0.2.2-SNAPSHOT</version>
13 <name>Argeo Commons</name>
14 <packaging>pom</packaging>
15 <properties>
16 <developmentCycle>0.2</developmentCycle>
17 <version.argeo-distribution>1.1.1-SNAPSHOT</version.argeo-distribution>
18 <version.argeo-commons>0.2.2-SNAPSHOT</version.argeo-commons>
19 <version.argeo-ria>0.12.5</version.argeo-ria>
20 <version.equinox>3.6.1</version.equinox>
21 <version.maven-argeo-osgi>0.1.30-SNAPSHOT</version.maven-argeo-osgi>
22 <version.maven-bundle-plugin>2.0.1</version.maven-bundle-plugin>
23 <version.maven-argeo-qooxdoo>1.1.0</version.maven-argeo-qooxdoo>
24 <site.repoBase>file:///srv/projects/www/commons/site</site.repoBase>
25 <site.urlBase>http://projects.argeo.org/commons/site</site.urlBase>
26 </properties>
27 <url>${site.urlBase}/${developmentCycle}</url>
28 <scm>
29 <connection>scm:svn:https://svn.argeo.org/commons/trunk</connection>
30 <developerConnection>scm:svn:https://svn.argeo.org/commons/trunk</developerConnection>
31 <url>https://svn.argeo.org/commons/trunk</url>
32 </scm>
33 <licenses>
34 <license>
35 <name>Apache 2</name>
36 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
37 <distribution>repo</distribution>
38 <comments><![CDATA[
39 SLC - Software LifeCycle framework
40
41 Copyright 2010 Mathieu Baudier
42
43 Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
44 you may not use this file except in compliance with the License.
45 You may obtain a copy of the License at
46
47 http://www.apache.org/licenses/LICENSE-2.0
48
49 Unless required by applicable law or agreed to in writing, software
50 distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
51 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
52 See the License for the specific language governing permissions and
53 limitations under the License.
54 ]]>
55 </comments>
56 </license>
57 </licenses>
58 <developers>
59 <developer>
60 <id>mbaudier</id>
61 <name>Mathieu Baudier</name>
62 <email><![CDATA[http://mailhide.recaptcha.net/d?k=01EM7GpnvY3k8woQ2tnnZLUA==&c=crsNpHjhOBDPswHG6HD_gXaqymhC69wmBf7wlagcSHw=]]></email>
63 <organization>Argeo</organization>
64 <organizationUrl>http://www.argeo.org</organizationUrl>
65 <roles>
66 <role>architect</role>
67 <role>developer</role>
68 <role>QA</role>
69 </roles>
70 </developer>
71 </developers>
72 <modules>
73 <module>basic</module>
74 <module>osgi</module>
75 <module>server</module>
76 <module>security</module>
77 <module>eclipse</module>
78 <module>sandbox</module>
79 </modules>
80 <build>
81 <pluginManagement>
82 <plugins>
83 <plugin>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-compiler-plugin</artifactId>
86 <version>2.3.2</version>
87 <configuration>
88 <source>1.5</source>
89 <target>1.5</target>
90 </configuration>
91 </plugin>
92 <plugin>
93 <groupId>org.apache.maven.plugins</groupId>
94 <artifactId>maven-source-plugin</artifactId>
95 <version>2.1.2</version>
96 <executions>
97 <execution>
98 <id>attach-sources</id>
99 <phase>package</phase>
100 <goals>
101 <goal>jar</goal>
102 </goals>
103 </execution>
104 </executions>
105 </plugin>
106 <plugin>
107 <groupId>org.apache.maven.plugins</groupId>
108 <artifactId>maven-clean-plugin</artifactId>
109 <version>2.4.1</version>
110 </plugin>
111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-surefire-plugin</artifactId>
114 <version>2.7.1</version>
115 </plugin>
116 <plugin>
117 <groupId>org.argeo.maven.plugins</groupId>
118 <artifactId>maven-argeo-osgi-plugin</artifactId>
119 <version>${version.maven-argeo-osgi}</version>
120 </plugin>
121 <plugin>
122 <artifactId>maven-jar-plugin</artifactId>
123 <version>2.3.1</version>
124 <configuration>
125 <archive>
126 <manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
127 </archive>
128 </configuration>
129 </plugin>
130 <plugin>
131 <groupId>org.apache.felix</groupId>
132 <artifactId>maven-bundle-plugin</artifactId>
133 <version>${version.maven-bundle-plugin}</version>
134 <extensions>true</extensions>
135 <configuration>
136 <manifestLocation>target/classes/META-INF</manifestLocation>
137 <instructions>
138 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
139 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
140 <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
141 <_removeheaders>Bnd-LastModified</_removeheaders>
142 </instructions>
143 </configuration>
144 <executions>
145 <execution>
146 <id>bundle-manifest</id>
147 <phase>process-classes</phase>
148 <goals>
149 <goal>manifest</goal>
150 </goals>
151 </execution>
152 </executions>
153 </plugin>
154 </plugins>
155 </pluginManagement>
156 <plugins>
157 <plugin>
158 <groupId>org.codehaus.mojo</groupId>
159 <artifactId>buildnumber-maven-plugin</artifactId>
160 <version>1.0-beta-4</version>
161 <executions>
162 <execution>
163 <phase>generate-resources</phase>
164 <goals>
165 <goal>create</goal>
166 </goals>
167 </execution>
168 </executions>
169 <configuration>
170 <doCheck>false</doCheck>
171 <doUpdate>false</doUpdate>
172 <format>{0,date,yyyyMMdd_HHmmss}</format>
173 <items>
174 <item>timestamp</item>
175 </items>
176 <revisionOnScmFailure>git</revisionOnScmFailure>
177 <providerImplementations>
178 <git>svn</git>
179 </providerImplementations>
180 </configuration>
181 </plugin>
182 <plugin>
183 <groupId>org.apache.maven.plugins</groupId>
184 <artifactId>maven-resources-plugin</artifactId>
185 <version>2.4.3</version>
186 <configuration>
187 <encoding>UTF-8</encoding>
188 </configuration>
189 </plugin>
190 <plugin>
191 <groupId>org.apache.maven.plugins</groupId>
192 <artifactId>maven-site-plugin</artifactId>
193 <version>2.1.1</version>
194 </plugin>
195 <plugin>
196 <groupId>org.apache.maven.plugins</groupId>
197 <artifactId>maven-release-plugin</artifactId>
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>