]> git.argeo.org Git - lgpl/argeo-commons.git/blob - modules/pom.xml
Prepare next development cycle
[lgpl/argeo-commons.git] / modules / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 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.commons</groupId>
6 <version>0.3.4-SNAPSHOT</version>
7 <artifactId>security</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.commons.security</groupId>
11 <artifactId>modules</artifactId>
12 <packaging>pom</packaging>
13 <name>Commons Security Modules</name>
14 <modules>
15 <module>org.argeo.security.dao.os</module>
16 <module>org.argeo.security.dao.jackrabbit</module>
17 <module>org.argeo.security.dao.ldap</module>
18 <module>org.argeo.security.webapp</module>
19 </modules>
20 <build>
21 <resources>
22 <resource>
23 <directory>.</directory>
24 <includes>
25 <include>**</include>
26 </includes>
27 <excludes>
28 <exclude>.*</exclude>
29 <exclude>pom.xml</exclude>
30 <exclude>build.properties</exclude>
31 </excludes>
32 </resource>
33 </resources>
34 <plugins>
35 <plugin>
36 <artifactId>maven-clean-plugin</artifactId>
37 <configuration>
38 <filesets>
39 <fileset>
40 <directory>META-INF</directory>
41 <includes>
42 <include>MANIFEST.MF</include>
43 </includes>
44 </fileset>
45 </filesets>
46 </configuration>
47 </plugin>
48 <plugin>
49 <groupId>org.apache.maven.plugins</groupId>
50 <artifactId>maven-jar-plugin</artifactId>
51 <configuration>
52 <archive>
53 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
54 </archive>
55 </configuration>
56 </plugin>
57 <plugin>
58 <groupId>org.apache.felix</groupId>
59 <artifactId>maven-bundle-plugin</artifactId>
60 <configuration>
61 <manifestLocation>META-INF</manifestLocation>
62 <instructions>
63 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
64 </instructions>
65 </configuration>
66 </plugin>
67 </plugins>
68 </build>
69 </project>