]> git.argeo.org Git - lgpl/argeo-commons.git/blob - security/runtime/org.argeo.security.ldap/pom.xml
+ register a default command in both RAP and RCP security base apps to provide generi...
[lgpl/argeo-commons.git] / security / runtime / org.argeo.security.ldap / pom.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?><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">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.commons.security</groupId>
5 <artifactId>runtime</artifactId>
6 <version>2.1.7-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.security.ldap</artifactId>
10 <name>Commons Security LDAP</name>
11 <build>
12 <plugins>
13 <plugin>
14 <groupId>org.apache.maven.plugins</groupId>
15 <artifactId>maven-compiler-plugin</artifactId>
16 </plugin>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-source-plugin</artifactId>
20 </plugin>
21 <plugin>
22 <groupId>org.apache.maven.plugins</groupId>
23 <artifactId>maven-jar-plugin</artifactId>
24 </plugin>
25 <plugin>
26 <groupId>org.apache.felix</groupId>
27 <artifactId>maven-bundle-plugin</artifactId>
28
29 <configuration>
30 <instructions>
31 <Export-Package>
32 org.argeo.security.ldap.*
33 </Export-Package>
34 <Import-Package>
35 org.springframework.core,
36 org.springframework.dao,
37 javax.jcr.nodetype,
38 *
39 </Import-Package>
40 </instructions>
41 </configuration>
42 </plugin>
43 </plugins>
44 </build>
45 <dependencies>
46 <dependency>
47 <groupId>org.argeo.commons.base</groupId>
48 <artifactId>org.argeo.util</artifactId>
49 <version>2.1.7-SNAPSHOT</version>
50 </dependency>
51 <dependency>
52 <groupId>org.argeo.commons.security</groupId>
53 <artifactId>org.argeo.security.core</artifactId>
54 <version>2.1.7-SNAPSHOT</version>
55 </dependency>
56
57 <!-- JCR -->
58 <dependency>
59 <groupId>org.argeo.tp</groupId>
60 <artifactId>javax.jcr</artifactId>
61 </dependency>
62
63 <!-- Spring -->
64 <dependency>
65 <groupId>org.argeo.tp</groupId>
66 <artifactId>org.springframework.ldap</artifactId>
67 </dependency>
68
69 <!-- Logging -->
70 <dependency>
71 <groupId>org.argeo.tp</groupId>
72 <artifactId>slf4j.org.apache.commons.logging</artifactId>
73 </dependency>
74
75 </dependencies>
76 </project>