]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
44b512ac5517c108a4b87ccf00ed77bd6eb3417c
[lgpl/argeo-commons.git] / 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.1.3-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.security.core</artifactId>
11 <name>Commons Security Core</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.*
34 </Export-Package>
35 <Import-Package>*,
36 org.argeo.server.json;resolution:=optional,
37 org.springframework.ldap.core.support;resolution:=optional
38 </Import-Package>
39 </instructions>
40 </configuration>
41 </plugin>
42 </plugins>
43 </build>
44 <dependencies>
45 <!-- Spring LDAP -->
46 <dependency>
47 <groupId>org.argeo.dep.osgi</groupId>
48 <artifactId>org.argeo.dep.osgi.springframework.ldap</artifactId>
49 </dependency>
50
51
52 <!-- Security -->
53 <dependency>
54 <!--
55 Force inclusion of commons.lang to prevent v2.1.0 to be taken by
56 Spring Security
57 -->
58 <groupId>org.apache.commons</groupId>
59 <artifactId>com.springsource.org.apache.commons.lang</artifactId>
60 </dependency>
61 <dependency>
62 <groupId>org.springframework.security</groupId>
63 <artifactId>org.springframework.security</artifactId>
64 </dependency>
65
66 <!-- Logging -->
67 <dependency>
68 <groupId>org.slf4j</groupId>
69 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>org.apache.log4j</groupId>
73 <artifactId>com.springsource.org.apache.log4j</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>org.slf4j</groupId>
77 <artifactId>com.springsource.slf4j.log4j</artifactId>
78 </dependency>
79
80 <!-- JSON -->
81 <dependency>
82 <groupId>org.codehaus.jackson</groupId>
83 <artifactId>com.springsource.org.codehaus.jackson.mapper</artifactId>
84 </dependency>
85
86 <dependency>
87 <groupId>com.springsource.json</groupId>
88 <artifactId>com.springsource.json</artifactId>
89 </dependency>
90 <dependency>
91 <groupId>org.antlr</groupId>
92 <artifactId>com.springsource.org.antlr</artifactId>
93 </dependency>
94
95 <!-- TEST -->
96 <dependency>
97 <groupId>org.junit</groupId>
98 <artifactId>com.springsource.junit</artifactId>
99 <scope>test</scope>
100 </dependency>
101 <dependency>
102 <groupId>org.argeo.commons.server</groupId>
103 <artifactId>org.argeo.server.json</artifactId>
104 <version>0.1.3-SNAPSHOT</version>
105 <scope>test</scope>
106 </dependency>
107
108 </dependencies>
109 </project>