]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.security.ldap/pom.xml
Prepare next development cycle
[lgpl/argeo-commons.git] / org.argeo.security.ldap / 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.security</groupId>
6 <artifactId>runtime</artifactId>
7 <version>0.2.3-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.security.ldap</artifactId>
11 <name>Commons Security LDAP</name>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 </plugin>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-source-plugin</artifactId>
21 </plugin>
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-jar-plugin</artifactId>
25 </plugin>
26 <plugin>
27 <groupId>org.apache.felix</groupId>
28 <artifactId>maven-bundle-plugin</artifactId>
29 <version>${version.maven-bundle-plugin}</version>
30 <configuration>
31 <instructions>
32 <Export-Package>
33 org.argeo.security.ldap.*
34 </Export-Package>
35 <Import-Package>
36 org.springframework.core,
37 org.springframework.dao,
38 *
39 </Import-Package>
40 </instructions>
41 </configuration>
42 </plugin>
43 </plugins>
44 </build>
45 <dependencies>
46 <dependency>
47 <groupId>org.argeo.commons.basic</groupId>
48 <artifactId>org.argeo.basic.nodeps</artifactId>
49 <version>0.2.3-SNAPSHOT</version>
50 </dependency>
51 <dependency>
52 <groupId>org.argeo.commons.security</groupId>
53 <artifactId>org.argeo.security.core</artifactId>
54 <version>0.2.3-SNAPSHOT</version>
55 </dependency>
56
57 <!-- JCR -->
58 <dependency>
59 <groupId>org.argeo.dep.osgi</groupId>
60 <artifactId>org.argeo.dep.osgi.jcr</artifactId>
61 </dependency>
62
63 <!-- Spring -->
64 <dependency>
65 <groupId>org.argeo.dep.osgi</groupId>
66 <artifactId>org.argeo.dep.osgi.springframework.ldap</artifactId>
67 </dependency>
68
69 <!-- Logging -->
70 <dependency>
71 <groupId>org.slf4j</groupId>
72 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
73 </dependency>
74
75 </dependencies>
76 </project>