]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/runtime/org.argeo.server.ads/pom.xml
update logs
[lgpl/argeo-commons.git] / server / runtime / org.argeo.server.ads / pom.xml
1 <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.server</groupId>
5 <artifactId>runtime</artifactId>
6 <version>0.3.2-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.server.ads</artifactId>
10 <name>Commons Server Apache Directory Server</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 <version>${version.maven-bundle-plugin}</version>
29 <configuration>
30 <instructions>
31 <Export-Package>
32 org.argeo.server.ads.*
33 </Export-Package>
34 </instructions>
35 </configuration>
36 </plugin>
37 </plugins>
38 </build>
39 <dependencies>
40 <dependency>
41 <groupId>org.argeo.commons.basic</groupId>
42 <artifactId>org.argeo.basic.nodeps</artifactId>
43 <version>0.3.2-SNAPSHOT</version>
44 </dependency>
45
46 <!-- Apache DS -->
47 <dependency>
48 <groupId>org.apache.directory</groupId>
49 <artifactId>com.springsource.org.apache.directory.server.jndi</artifactId>
50 <exclusions>
51 <!--
52 Workaround for a weird issue where the underlying version from
53 slf4j get taken instead of the one we want
54 -->
55 <exclusion>
56 <groupId>org.slf4j</groupId>
57 <artifactId>com.springsource.slf4j.api</artifactId>
58 </exclusion>
59 </exclusions>
60 </dependency>
61
62 <!-- Apache Commons -->
63 <dependency>
64 <groupId>org.apache.commons</groupId>
65 <artifactId>com.springsource.org.apache.commons.io</artifactId>
66 </dependency>
67
68 <!-- Spring -->
69 <dependency>
70 <groupId>org.springframework</groupId>
71 <artifactId>org.springframework.beans</artifactId>
72 </dependency>
73
74 <!-- Logging -->
75 <dependency>
76 <groupId>org.slf4j</groupId>
77 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
78 </dependency>
79 <dependency>
80 <groupId>org.slf4j</groupId>
81 <artifactId>com.springsource.slf4j.api</artifactId>
82 </dependency>
83 </dependencies>
84 </project>