]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
Remove unused directory
[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 <groupId>org.argeo.commons</groupId>
6 <artifactId>argeo-commons</artifactId>
7 <version>2.1.29-SNAPSHOT</version>
8 <name>Argeo Commons</name>
9 <packaging>pom</packaging>
10 <properties>
11 <version.argeo-commons>2.1.29-SNAPSHOT</version.argeo-commons>
12 <developmentCycle.argeo-commons>2.1</developmentCycle.argeo-commons>
13 <developmentCycle.argeo-commons.startDate>2012-12-19</developmentCycle.argeo-commons.startDate>
14 <version.argeo-distribution>2.1.11</version.argeo-distribution>
15 <!-- RPM -->
16 <rpm.release>6</rpm.release>
17 <rpm.stagingRepository>/srv/rpmfactory/argeo-osgi-2-staging/6/x86_64</rpm.stagingRepository>
18 <!-- encoding, see http://is.gd/mvn_source_encoding -->
19 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20 </properties>
21 <modules>
22 <!-- Base -->
23 <module>org.argeo.util</module>
24 <module>org.argeo.osgi.boot</module>
25 <module>org.argeo.server.jcr</module>
26 <!-- Security -->
27 <module>org.argeo.security.core</module>
28 <module>org.argeo.security.jackrabbit</module>
29 <!-- Eclipse -->
30 <module>org.argeo.eclipse.ui</module>
31 <module>org.argeo.eclipse.ui.rap</module>
32 <!-- CMS -->
33 <module>org.argeo.cms</module>
34 <!-- Workbench -->
35 <module>org.argeo.eclipse.ui.workbench</module>
36 <module>org.argeo.eclipse.ui.workbench.rap</module>
37 <module>org.argeo.security.ui</module>
38 <module>org.argeo.security.ui.admin</module>
39 <module>org.argeo.security.ui.rap</module>
40 <!-- Distribution -->
41 <module>dep</module>
42 <module>dist</module>
43 </modules>
44 <scm>
45 <connection>scm:svn:https://svn.argeo.org/commons/trunk</connection>
46 <developerConnection>scm:svn:https://svn.argeo.org/commons/trunk</developerConnection>
47 <url>https://svn.argeo.org/commons/trunk</url>
48 </scm>
49 <inceptionYear>2007</inceptionYear>
50 <licenses>
51 <license>
52 <name>Apache 2</name>
53 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
54 <distribution>repo</distribution>
55 <comments><![CDATA[
56 Argeo Commons Enterprise Framework
57
58 Copyright (C) 2007-2012 Argeo GmbH
59
60 Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
61 you may not use this file except in compliance with the License.
62 You may obtain a copy of the License at
63
64 http://www.apache.org/licenses/LICENSE-2.0
65
66 Unless required by applicable law or agreed to in writing, software
67 distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
68 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
69 See the License for the specific language governing permissions and
70 limitations under the License.
71 ]]>
72 </comments>
73 </license>
74 </licenses>
75 <build>
76 <extensions>
77 <extension>
78 <groupId>org.apache.maven.wagon</groupId>
79 <artifactId>wagon-webdav-jackrabbit</artifactId>
80 <version>2.8</version>
81 </extension>
82 </extensions>
83 <sourceDirectory>src</sourceDirectory>
84 <testSourceDirectory>ext/test</testSourceDirectory>
85 <resources>
86 <resource>
87 <directory>src</directory>
88 <includes>
89 <include>**</include>
90 </includes>
91 <excludes>
92 <exclude>**/*.java</exclude>
93 </excludes>
94 </resource>
95 <resource>
96 <directory>.</directory>
97 <includes>
98 <include>**</include>
99 </includes>
100 <excludes>
101 <exclude>.*</exclude>
102 <exclude>.*/**</exclude>
103 <exclude>src/**</exclude>
104 <exclude>ext/**</exclude>
105 <exclude>target/**</exclude>
106 <exclude>bin/**</exclude>
107 <exclude>pom.xml</exclude>
108 <exclude>build.properties</exclude>
109 <exclude>*.bnd</exclude>
110 <exclude>*.target</exclude>
111 </excludes>
112 </resource>
113 </resources>
114 <testResources>
115 <testResource>
116 <directory>ext/test</directory>
117 <includes>
118 <include>**</include>
119 </includes>
120 <excludes>
121 <exclude>**/*.java</exclude>
122 </excludes>
123 </testResource>
124 </testResources>
125 <pluginManagement>
126 <plugins>
127 <!-- Maven -->
128 <plugin>
129 <artifactId>maven-compiler-plugin</artifactId>
130 <version>3.2</version>
131 <configuration>
132 <source>1.7</source>
133 <target>1.7</target>
134 <compilerId>eclipse</compilerId>
135 <!-- Required for compliance level, see http://jira.codehaus.org/browse/PLXCOMP-231 -->
136 <optimize>true</optimize>
137 <!-- Hack to work around issues with generated annotations : -->
138 <generatedSourcesDirectory>target/classes</generatedSourcesDirectory>
139 <generatedTestSourcesDirectory>target/test-classes</generatedTestSourcesDirectory>
140 </configuration>
141 <dependencies>
142 <dependency>
143 <groupId>org.codehaus.plexus</groupId>
144 <artifactId>plexus-compiler-eclipse</artifactId>
145 <version>2.3</version>
146 </dependency>
147 </dependencies>
148 </plugin>
149 <plugin>
150 <artifactId>maven-source-plugin</artifactId>
151 <version>2.4</version>
152 <executions>
153 <execution>
154 <id>attach-sources</id>
155 <phase>package</phase>
156 <goals>
157 <goal>jar</goal>
158 </goals>
159 </execution>
160 </executions>
161 <configuration>
162 <excludes>
163 <!-- Prevents source jars to contain misleading data -->
164 <exclude>plugin.xml</exclude>
165 <exclude>META-INF/MANIFEST.MF</exclude>
166 </excludes>
167 </configuration>
168 </plugin>
169 <plugin>
170 <artifactId>maven-clean-plugin</artifactId>
171 <version>2.6.1</version>
172 <configuration>
173 <filesets>
174 <fileset>
175 <directory>META-INF</directory>
176 <includes>
177 <include>MANIFEST.MF</include>
178 </includes>
179 </fileset>
180 </filesets>
181 </configuration>
182 </plugin>
183 <plugin>
184 <artifactId>maven-surefire-plugin</artifactId>
185 <version>2.18</version>
186 </plugin>
187 <plugin>
188 <artifactId>maven-jar-plugin</artifactId>
189 <version>2.5</version>
190 <configuration>
191 <archive>
192 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
193 </archive>
194 </configuration>
195 </plugin>
196 <plugin>
197 <artifactId>maven-antrun-plugin</artifactId>
198 <version>1.7</version>
199 </plugin>
200 <plugin>
201 <artifactId>maven-resources-plugin</artifactId>
202 <version>2.7</version>
203 </plugin>
204 <plugin>
205 <artifactId>maven-dependency-plugin</artifactId>
206 <version>2.9</version>
207 </plugin>
208 <plugin>
209 <artifactId>maven-release-plugin</artifactId>
210 <version>2.5.1</version>
211 <configuration>
212 <autoVersionSubmodules>true</autoVersionSubmodules>
213 </configuration>
214 </plugin>
215 <plugin>
216 <artifactId>maven-javadoc-plugin</artifactId>
217 <version>2.10.1</version>
218 </plugin>
219 <!-- Apache -->
220 <plugin>
221 <groupId>org.apache.felix</groupId>
222 <artifactId>maven-bundle-plugin</artifactId>
223 <version>2.3.7</version>
224 <extensions>true</extensions>
225 <configuration>
226 <manifestLocation>META-INF</manifestLocation>
227 <instructions>
228 <_include>bnd.bnd</_include>
229 <Bundle-Version>${project.version}-r${tstamp}</Bundle-Version>
230 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
231 <Bundle-RequiredExecutionEnvironment>JavaSE-1.7</Bundle-RequiredExecutionEnvironment>
232 <_removeheaders>Bnd-LastModified,Build-Jdk,Built-By,Tool,Created-By</_removeheaders>
233 <!-- SLC specific instructions -->
234 <SLC-Category>${project.groupId}</SLC-Category>
235 </instructions>
236 </configuration>
237 <executions>
238 <execution>
239 <id>bundle-manifest</id>
240 <phase>process-classes</phase>
241 <goals>
242 <goal>manifest</goal>
243 </goals>
244 </execution>
245 </executions>
246 </plugin>
247 <!-- Codehaus -->
248 <plugin>
249 <groupId>org.codehaus.mojo</groupId>
250 <artifactId>rpm-maven-plugin</artifactId>
251 <version>2.1-alpha-1</version>
252 <extensions>true</extensions>
253 <configuration>
254 <version>${project.version}</version>
255 <release>1.el${rpm.release}</release>
256 <distribution>argeo${rpm.release}</distribution>
257 <group>Applications/System</group>
258 <prefix>/usr</prefix>
259 </configuration>
260 </plugin>
261 <plugin>
262 <groupId>org.codehaus.mojo</groupId>
263 <artifactId>exec-maven-plugin</artifactId>
264 <version>1.3.2</version>
265 </plugin>
266 <!-- Argeo -->
267 <plugin>
268 <groupId>org.argeo.maven.plugins</groupId>
269 <artifactId>maven-argeo-osgi-plugin</artifactId>
270 <version>1.1.4</version>
271 </plugin>
272 <!-- Site -->
273 <plugin>
274 <artifactId>maven-site-plugin</artifactId>
275 <version>3.0</version>
276 <configuration>
277 <siteDirectory>doc/site</siteDirectory>
278 <generateSitemap>true</generateSitemap>
279 <skip>true</skip>
280 <reportPlugins>
281 <plugin>
282 <groupId>org.apache.maven.plugins</groupId>
283 <artifactId>maven-project-info-reports-plugin</artifactId>
284 <version>2.4</version>
285 <reportSets>
286 <reportSet>
287 <reports>
288 <report>index</report>
289 <report>summary</report>
290 <report>license</report>
291 <report>scm</report>
292 </reports>
293 </reportSet>
294 </reportSets>
295 </plugin>
296 <plugin>
297 <artifactId>maven-javadoc-plugin</artifactId>
298 <version>2.8.1</version>
299 <configuration>
300 <encoding>UTF-8</encoding>
301 <excludePackageNames>*.demo.*:*.internal.*</excludePackageNames>
302 <detectLinks>true</detectLinks>
303 <links>
304 <!-- Java -->
305 <link>http://docs.oracle.com/javase/6/docs/api</link>
306 <!-- OSGi -->
307 <link>http://www.osgi.org/javadoc/r4v42</link>
308 <!-- Spring -->
309 <link>http://static.springsource.org/spring/docs/2.5.x/api</link>
310 <link>http://static.springsource.org/osgi/docs/1.2.x/api</link>
311 <link>http://static.springsource.org/spring-security/site/docs/2.0.x/apidocs</link>
312 <!-- JCR -->
313 <link>http://www.day.com/maven/javax.jcr/javadocs/jcr-2.0</link>
314 <!-- Eclipse -->
315 <link>http://help.eclipse.org/helios/topic/org.eclipse.platform.doc.isv/reference/api</link>
316 </links>
317 </configuration>
318 <reportSets>
319 <reportSet>
320 <id>aggregate</id>
321 <reports>
322 <report>aggregate</report>
323 </reports>
324 </reportSet>
325 </reportSets>
326 </plugin>
327 <plugin>
328 <artifactId>maven-jxr-plugin</artifactId>
329 <version>2.3</version>
330 <configuration>
331 <excludes>
332 <exclude>**/demo/**/*</exclude>
333 <exclude>**/internal/**/*</exclude>
334 </excludes>
335 </configuration>
336 <reportSets>
337 <reportSet>
338 <id>aggregate</id>
339 <reports>
340 <report>aggregate</report>
341 </reports>
342 </reportSet>
343 </reportSets>
344 </plugin>
345 </reportPlugins>
346 </configuration>
347 </plugin>
348 </plugins>
349 </pluginManagement>
350 <plugins>
351 <plugin>
352 <artifactId>maven-clean-plugin</artifactId>
353 <configuration>
354 <filesets>
355 <fileset>
356 <directory>META-INF</directory>
357 <includes>
358 <include>MANIFEST.MF</include>
359 </includes>
360 </fileset>
361 </filesets>
362 </configuration>
363 </plugin>
364 <plugin>
365 <artifactId>maven-javadoc-plugin</artifactId>
366 <configuration>
367 <skip>true</skip>
368 </configuration>
369 </plugin>
370 <plugin>
371 <artifactId>maven-resources-plugin</artifactId>
372 <configuration>
373 <encoding>UTF-8</encoding>
374 </configuration>
375 </plugin>
376 <plugin>
377 <artifactId>maven-site-plugin</artifactId>
378 <inherited>false</inherited>
379 <configuration>
380 <skip>false</skip>
381 </configuration>
382 </plugin>
383 <plugin>
384 <artifactId>maven-release-plugin</artifactId>
385 <configuration>
386 <goals>deploy</goals>
387 <releaseProfiles>rpmbuild,rpmbuild-tp</releaseProfiles>
388 </configuration>
389 </plugin>
390 <plugin>
391 <groupId>org.apache.felix</groupId>
392 <artifactId>maven-bundle-plugin</artifactId>
393 </plugin>
394 </plugins>
395 </build>
396 <dependencies>
397 <dependency>
398 <groupId>org.argeo.tp</groupId>
399 <artifactId>argeo-tp</artifactId>
400 <version>${version.argeo-distribution}</version>
401 <scope>provided</scope>
402 <exclusions>
403 <exclusion>
404 <groupId>org.argeo.tp.spring</groupId>
405 <artifactId>org.springframework.ldap</artifactId>
406 </exclusion>
407 <exclusion>
408 <groupId>org.argeo.tp.spring.security</groupId>
409 <artifactId>org.springframework.security.acls</artifactId>
410 </exclusion>
411 <exclusion>
412 <groupId>org.argeo.tp.spring.security</groupId>
413 <artifactId>org.springframework.security.aspects</artifactId>
414 </exclusion>
415 <exclusion>
416 <groupId>org.argeo.tp.spring.security</groupId>
417 <artifactId>org.springframework.security.config</artifactId>
418 </exclusion>
419 <exclusion>
420 <groupId>org.argeo.tp.spring.security</groupId>
421 <artifactId>org.springframework.security.core</artifactId>
422 </exclusion>
423 <exclusion>
424 <groupId>org.argeo.tp.spring.security</groupId>
425 <artifactId>org.springframework.security.ldap</artifactId>
426 </exclusion>
427 <exclusion>
428 <groupId>org.argeo.tp.spring.security</groupId>
429 <artifactId>org.springframework.security.web</artifactId>
430 </exclusion>
431 </exclusions>
432 </dependency>
433 </dependencies>
434 <repositories>
435 <repository>
436 <id>argeo-tp</id>
437 <url>http://forge.argeo.org/data/public/java/argeo-tp-2.1/</url>
438 <releases>
439 <enabled>true</enabled>
440 <updatePolicy>daily</updatePolicy>
441 <checksumPolicy>warn</checksumPolicy>
442 </releases>
443 </repository>
444 </repositories>
445 <pluginRepositories>
446 <pluginRepository>
447 <id>central</id>
448 <url>http://repo1.maven.org/maven2</url>
449 <releases>
450 <enabled>true</enabled>
451 <updatePolicy>daily</updatePolicy>
452 <checksumPolicy>warn</checksumPolicy>
453 </releases>
454 </pluginRepository>
455 <pluginRepository>
456 <id>argeo-maven-plugins</id>
457 <url>http://repo.argeo.org/data/public/java/argeo-maven-1.1</url>
458 <releases>
459 <enabled>true</enabled>
460 <updatePolicy>daily</updatePolicy>
461 <checksumPolicy>warn</checksumPolicy>
462 </releases>
463 </pluginRepository>
464 </pluginRepositories>
465 <distributionManagement>
466 <repository>
467 <id>staging</id>
468 <url>dav:https://repo.argeo.org/data/files/java/argeo-commons-${developmentCycle.argeo-commons}</url>
469 <uniqueVersion>false</uniqueVersion>
470 </repository>
471 </distributionManagement>
472 <profiles>
473 <profile>
474 <id>localrepo</id>
475 <repositories>
476 <repository>
477 <id>argeo-tp</id>
478 <url>http://localhost:7080/data/public/java/argeo-tp-${developmentCycle.argeo-commons}/</url>
479 <releases>
480 <enabled>true</enabled>
481 <updatePolicy>daily</updatePolicy>
482 <checksumPolicy>warn</checksumPolicy>
483 </releases>
484 </repository>
485 </repositories>
486 <distributionManagement>
487 <repository>
488 <id>staging</id>
489 <name>Internal Release Repository</name>
490 <url>dav:http://localhost:7080/data/files/java/argeo-commons-${developmentCycle.argeo-commons}</url>
491 </repository>
492 </distributionManagement>
493 </profile>
494 </profiles>
495 </project>