]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
Improve JCR and security dependencies
[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.2-SNAPSHOT</version>
12 <name>Argeo Commons</name>
13 <packaging>pom</packaging>
14 <properties>
15 <developmentCycle>0.2</developmentCycle>
16 <version.argeo-distribution>1.1.1-SNAPSHOT</version.argeo-distribution>
17 <version.argeo-commons>0.2.2-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-SNAPSHOT</version.maven-argeo-osgi>
21 <version.maven-bundle-plugin>2.0.1</version.maven-bundle-plugin>
22 <version.maven-argeo-qooxdoo>1.1.0</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 <configuration>
86 <source>1.5</source>
87 <target>1.5</target>
88 </configuration>
89 </plugin>
90 <plugin>
91 <groupId>org.apache.maven.plugins</groupId>
92 <artifactId>maven-source-plugin</artifactId>
93 <executions>
94 <execution>
95 <id>attach-sources</id>
96 <phase>package</phase>
97 <goals>
98 <goal>jar</goal>
99 </goals>
100 </execution>
101 </executions>
102 </plugin>
103 <plugin>
104 <groupId>org.argeo.maven.plugins</groupId>
105 <artifactId>maven-argeo-osgi-plugin</artifactId>
106 <version>${version.maven-argeo-osgi}</version>
107 </plugin>
108 <plugin>
109 <artifactId>maven-jar-plugin</artifactId>
110 <configuration>
111 <archive>
112 <manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
113 </archive>
114 </configuration>
115 </plugin>
116 <plugin>
117 <groupId>org.apache.felix</groupId>
118 <artifactId>maven-bundle-plugin</artifactId>
119 <version>${version.maven-bundle-plugin}</version>
120 <extensions>true</extensions>
121 <configuration>
122 <manifestLocation>target/classes/META-INF</manifestLocation>
123 <instructions>
124 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
125 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
126 <_removeheaders>Bnd-LastModified</_removeheaders>
127 </instructions>
128 </configuration>
129 <executions>
130 <execution>
131 <id>bundle-manifest</id>
132 <phase>process-classes</phase>
133 <goals>
134 <goal>manifest</goal>
135 </goals>
136 </execution>
137 </executions>
138 </plugin>
139 </plugins>
140 </pluginManagement>
141 <plugins>
142 <plugin>
143 <groupId>org.codehaus.mojo</groupId>
144 <artifactId>buildnumber-maven-plugin</artifactId>
145 <version>1.0-beta-4</version>
146 <executions>
147 <execution>
148 <phase>generate-resources</phase>
149 <goals>
150 <goal>create</goal>
151 </goals>
152 </execution>
153 </executions>
154 <configuration>
155 <doCheck>false</doCheck>
156 <doUpdate>false</doUpdate>
157 <format>{0,date,yyyyMMdd_HHmmss}</format>
158 <items>
159 <item>timestamp</item>
160 </items>
161 <revisionOnScmFailure>git</revisionOnScmFailure>
162 <providerImplementations>
163 <git>svn</git>
164 </providerImplementations>
165 </configuration>
166 </plugin>
167 <plugin>
168 <groupId>org.apache.maven.plugins</groupId>
169 <artifactId>maven-resources-plugin</artifactId>
170 <configuration>
171 <encoding>UTF-8</encoding>
172 </configuration>
173 </plugin>
174 <plugin>
175 <groupId>org.apache.maven.plugins</groupId>
176 <artifactId>maven-site-plugin</artifactId>
177 <version>2.1.1</version>
178 </plugin>
179 <plugin>
180 <groupId>org.apache.maven.plugins</groupId>
181 <artifactId>maven-release-plugin</artifactId>
182 <configuration>
183 <autoVersionSubmodules>true</autoVersionSubmodules>
184 <releaseProfiles>release</releaseProfiles>
185 <preparationGoals>clean install</preparationGoals>
186 </configuration>
187 </plugin>
188 <plugin>
189 <groupId>com.mycila.maven-license-plugin</groupId>
190 <artifactId>maven-license-plugin</artifactId>
191 <version>1.8.0</version>
192 <configuration>
193 <header>license-apache2-header.txt</header>
194 <failIfMissing>true</failIfMissing>
195 <aggregate>true</aggregate>
196 <includes>
197 <include>src/**/*.java</include>
198 <include>src/**/*.xml</include>
199 </includes>
200 <excludes>
201 <exclude>**/springutil/**</exclude>
202 <exclude>**/qooxdoo-sdk/**</exclude>
203 </excludes>
204 <useDefaultExcludes>true</useDefaultExcludes>
205 <mapping>
206 <java>SLASHSTAR_STYLE</java>
207 <xml>XML_STYLE</xml>
208 </mapping>
209 </configuration>
210 </plugin>
211 </plugins>
212 </build>
213 <dependencyManagement>
214 <dependencies>
215 <dependency>
216 <groupId>org.argeo.dep</groupId>
217 <artifactId>versions-all</artifactId>
218 <version>${version.argeo-distribution}</version>
219 <type>pom</type>
220 <scope>import</scope>
221 </dependency>
222 </dependencies>
223 </dependencyManagement>
224 <repositories>
225 <repository>
226 <id>argeo</id>
227 <url>http://maven.argeo.org/argeo</url>
228 <releases>
229 <enabled>true</enabled>
230 <updatePolicy>daily</updatePolicy>
231 <checksumPolicy>fail</checksumPolicy>
232 </releases>
233 <snapshots>
234 <enabled>false</enabled>
235 <updatePolicy>never</updatePolicy>
236 <checksumPolicy>fail</checksumPolicy>
237 </snapshots>
238 </repository>
239 </repositories>
240 <distributionManagement>
241 <site>
242 <id>argeo-commons-site</id>
243 <name>Argeo Commons Site</name>
244 <url>file://${site.repoBase}/${developmentCycle}/</url>
245 </site>
246 </distributionManagement>
247 <reporting>
248 <plugins>
249 <plugin>
250 <groupId>org.apache.maven.plugins</groupId>
251 <artifactId>maven-project-info-reports-plugin</artifactId>
252 <reportSets>
253 <reportSet>
254 <reports>
255 <report>index</report>
256 <report>summary</report>
257 <report>license</report>
258 <report>scm</report>
259 <report>issue-tracking</report>
260 <report>dependencies</report>
261 </reports>
262 </reportSet>
263 <reportSet>
264 <inherited>false</inherited>
265 <reports>
266 <report>project-team</report>
267 </reports>
268 </reportSet>
269 </reportSets>
270 </plugin>
271 <plugin>
272 <groupId>org.apache.maven.plugins</groupId>
273 <artifactId>maven-javadoc-plugin</artifactId>
274 <inherited>false</inherited>
275 <configuration>
276 <aggregate>true</aggregate>
277 <encoding>UTF-8</encoding>
278 </configuration>
279 </plugin>
280 <plugin>
281 <groupId>org.apache.maven.plugins</groupId>
282 <artifactId>maven-jxr-plugin</artifactId>
283 <configuration>
284 <aggregate>true</aggregate>
285 </configuration>
286 </plugin>
287 <plugin>
288 <groupId>org.apache.maven.plugins</groupId>
289 <artifactId>maven-surefire-report-plugin</artifactId>
290 <inherited>false</inherited>
291 <configuration>
292 <aggregate>true</aggregate>
293 </configuration>
294 </plugin>
295 <plugin>
296 <groupId>org.codehaus.mojo</groupId>
297 <artifactId>taglist-maven-plugin</artifactId>
298 <configuration>
299 <aggregate>true</aggregate>
300 <tags>
301 <tag>TODO</tag>
302 <tag>FIXME</tag>
303 <tag>@deprecated</tag>
304 </tags>
305 </configuration>
306 </plugin>
307 <plugin>
308 <groupId>org.apache.maven.plugins</groupId>
309 <artifactId>maven-changelog-plugin</artifactId>
310 <inherited>false</inherited>
311 </plugin>
312 <plugin>
313 <groupId>org.apache.maven.plugins</groupId>
314 <artifactId>maven-pmd-plugin</artifactId>
315 <version>2.3</version>
316 <inherited>false</inherited>
317 <configuration>
318 <linkXref>true</linkXref>
319 <targetJdk>1.5</targetJdk>
320 <aggregate>true</aggregate>
321 <excludes>
322 <exclude>**/springutil/*.java</exclude>
323 </excludes>
324 </configuration>
325 <reportSets>
326 <reportSet>
327 <reports>
328 <report>cpd</report>
329 </reports>
330 </reportSet>
331 </reportSets>
332 </plugin>
333 </plugins>
334 </reporting>
335 <profiles>
336 <profile>
337 <id>release</id>
338 <distributionManagement>
339 <site>
340 <id>argeo-commons-site</id>
341 <name>Argeo Commons Site</name>
342 <url>file://${site.repoBase}/${project.version}</url>
343 </site>
344 </distributionManagement>
345 </profile>
346 </profiles>
347 </project>