]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
Fixes on natures management
[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.1.3-SNAPSHOT</version>
12 <name>Argeo Commons</name>
13 <packaging>pom</packaging>
14 <properties>
15 <developmentCycle>0.1</developmentCycle>
16 <version.argeo-distribution>1.0.4-SNAPSHOT</version.argeo-distribution>
17 <version.argeo-ria>0.12.4-SNAPSHOT</version.argeo-ria>
18 <version.maven-argeo-osgi>0.1.27</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 </modules>
75 <build>
76 <pluginManagement>
77 <plugins>
78 <plugin>
79 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-compiler-plugin</artifactId>
81 <configuration>
82 <source>1.5</source>
83 <target>1.5</target>
84 </configuration>
85 </plugin>
86 <plugin>
87 <groupId>org.apache.maven.plugins</groupId>
88 <artifactId>maven-source-plugin</artifactId>
89 <executions>
90 <execution>
91 <id>attach-sources</id>
92 <phase>package</phase>
93 <goals>
94 <goal>jar</goal>
95 </goals>
96 </execution>
97 </executions>
98 </plugin>
99 <plugin>
100 <groupId>org.argeo.maven.plugins</groupId>
101 <artifactId>maven-argeo-osgi-plugin</artifactId>
102 <version>${version.maven-argeo-osgi}</version>
103 </plugin>
104 <plugin>
105 <artifactId>maven-jar-plugin</artifactId>
106 <configuration>
107 <archive>
108 <manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
109 </archive>
110 </configuration>
111 </plugin>
112 <plugin>
113 <groupId>org.apache.felix</groupId>
114 <artifactId>maven-bundle-plugin</artifactId>
115 <version>${version.maven-bundle-plugin}</version>
116 <extensions>true</extensions>
117 <configuration>
118 <manifestLocation>target/classes/META-INF</manifestLocation>
119 <instructions>
120 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
121 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
122 <_removeheaders>Bnd-LastModified</_removeheaders>
123 </instructions>
124 </configuration>
125 <executions>
126 <execution>
127 <id>bundle-manifest</id>
128 <phase>process-classes</phase>
129 <goals>
130 <goal>manifest</goal>
131 </goals>
132 </execution>
133 </executions>
134 </plugin>
135 </plugins>
136 </pluginManagement>
137 <plugins>
138 <plugin>
139 <groupId>org.codehaus.mojo</groupId>
140 <artifactId>buildnumber-maven-plugin</artifactId>
141 <executions>
142 <execution>
143 <phase>validate</phase>
144 <goals>
145 <goal>create</goal>
146 </goals>
147 </execution>
148 </executions>
149 <configuration>
150 <doCheck>false</doCheck>
151 <doUpdate>false</doUpdate>
152 <useLastCommittedRevision>true</useLastCommittedRevision>
153 </configuration>
154 </plugin>
155 <plugin>
156 <groupId>org.apache.maven.plugins</groupId>
157 <artifactId>maven-resources-plugin</artifactId>
158 <configuration>
159 <encoding>UTF-8</encoding>
160 </configuration>
161 </plugin>
162 <plugin>
163 <groupId>org.apache.maven.plugins</groupId>
164 <artifactId>maven-site-plugin</artifactId>
165 </plugin>
166 <plugin>
167 <groupId>org.apache.maven.plugins</groupId>
168 <artifactId>maven-release-plugin</artifactId>
169 <configuration>
170 <autoVersionSubmodules>true</autoVersionSubmodules>
171 <releaseProfiles>release</releaseProfiles>
172 <preparationGoals>clean install</preparationGoals>
173 </configuration>
174 </plugin>
175 </plugins>
176 </build>
177 <dependencyManagement>
178 <dependencies>
179 <dependency>
180 <groupId>org.argeo.dep</groupId>
181 <artifactId>versions-all</artifactId>
182 <version>${version.argeo-distribution}</version>
183 <type>pom</type>
184 <scope>import</scope>
185 </dependency>
186 </dependencies>
187 </dependencyManagement>
188 <repositories>
189 <repository>
190 <id>argeo</id>
191 <url>http://www.argeo.org/maven/argeo</url>
192 <releases>
193 <enabled>true</enabled>
194 <updatePolicy>daily</updatePolicy>
195 <checksumPolicy>fail</checksumPolicy>
196 </releases>
197 <snapshots>
198 <enabled>false</enabled>
199 <updatePolicy>never</updatePolicy>
200 <checksumPolicy>fail</checksumPolicy>
201 </snapshots>
202 </repository>
203 </repositories>
204 <distributionManagement>
205 <site>
206 <id>argeo-commons-site</id>
207 <name>Argeo Commons Site</name>
208 <url>file://${site.repoBase}/${developmentCycle}/</url>
209 </site>
210 </distributionManagement>
211 <reporting>
212 <plugins>
213 <plugin>
214 <groupId>org.apache.maven.plugins</groupId>
215 <artifactId>maven-project-info-reports-plugin</artifactId>
216 <reportSets>
217 <reportSet>
218 <reports>
219 <report>index</report>
220 <report>summary</report>
221 <report>license</report>
222 <report>scm</report>
223 <report>issue-tracking</report>
224 <report>dependencies</report>
225 </reports>
226 </reportSet>
227 <reportSet>
228 <inherited>false</inherited>
229 <reports>
230 <report>project-team</report>
231 </reports>
232 </reportSet>
233 </reportSets>
234 </plugin>
235 <plugin>
236 <groupId>org.apache.maven.plugins</groupId>
237 <artifactId>maven-javadoc-plugin</artifactId>
238 <inherited>false</inherited>
239 <configuration>
240 <aggregate>true</aggregate>
241 <encoding>UTF-8</encoding>
242 </configuration>
243 </plugin>
244 <plugin>
245 <groupId>org.apache.maven.plugins</groupId>
246 <artifactId>maven-jxr-plugin</artifactId>
247 <configuration>
248 <aggregate>true</aggregate>
249 </configuration>
250 </plugin>
251 <plugin>
252 <groupId>org.apache.maven.plugins</groupId>
253 <artifactId>maven-surefire-report-plugin</artifactId>
254 <inherited>false</inherited>
255 <configuration>
256 <aggregate>true</aggregate>
257 </configuration>
258 </plugin>
259 <plugin>
260 <groupId>org.codehaus.mojo</groupId>
261 <artifactId>taglist-maven-plugin</artifactId>
262 <configuration>
263 <aggregate>true</aggregate>
264 <tags>
265 <tag>TODO</tag>
266 <tag>FIXME</tag>
267 <tag>@deprecated</tag>
268 </tags>
269 </configuration>
270 </plugin>
271 <plugin>
272 <groupId>org.apache.maven.plugins</groupId>
273 <artifactId>maven-changelog-plugin</artifactId>
274 <inherited>false</inherited>
275 </plugin>
276 <plugin>
277 <groupId>org.apache.maven.plugins</groupId>
278 <artifactId>maven-pmd-plugin</artifactId>
279 <version>2.3</version>
280 <inherited>false</inherited>
281 <configuration>
282 <linkXref>true</linkXref>
283 <targetJdk>1.5</targetJdk>
284 <aggregate>true</aggregate>
285 <excludes>
286 <exclude>**/springutil/*.java</exclude>
287 </excludes>
288 </configuration>
289 <reportSets>
290 <reportSet>
291 <reports>
292 <report>cpd</report>
293 </reports>
294 </reportSet>
295 </reportSets>
296 </plugin>
297 </plugins>
298 </reporting>
299 <profiles>
300 <profile>
301 <id>release</id>
302 <distributionManagement>
303 <site>
304 <id>argeo-commons-site</id>
305 <name>Argeo Commons Site</name>
306 <url>file://${site.repoBase}/${project.version}</url>
307 </site>
308 </distributionManagement>
309 </profile>
310 </profiles>
311 </project>