]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
5ef816eecd81e57f293aae880ec1863685ee22e1
[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 <dependency>
46 <groupId>org.argeo.commons.basic</groupId>
47 <artifactId>org.argeo.basic.nodeps</artifactId>
48 <version>0.1.3-SNAPSHOT</version>
49 </dependency>
50
51 <!-- Spring LDAP -->
52 <dependency>
53 <groupId>org.argeo.dep.osgi</groupId>
54 <artifactId>org.argeo.dep.osgi.springframework.ldap</artifactId>
55 </dependency>
56
57
58 <!-- Security -->
59 <dependency>
60 <!--
61 Force inclusion of commons.lang to prevent v2.1.0 to be taken by
62 Spring Security
63 -->
64 <groupId>org.apache.commons</groupId>
65 <artifactId>com.springsource.org.apache.commons.lang</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.springframework.security</groupId>
69 <artifactId>org.springframework.security</artifactId>
70 </dependency>
71
72 <!-- Logging -->
73 <dependency>
74 <groupId>org.slf4j</groupId>
75 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>org.apache.log4j</groupId>
79 <artifactId>com.springsource.org.apache.log4j</artifactId>
80 </dependency>
81 <dependency>
82 <groupId>org.slf4j</groupId>
83 <artifactId>com.springsource.slf4j.log4j</artifactId>
84 </dependency>
85
86 <!-- JSON -->
87 <dependency>
88 <groupId>org.codehaus.jackson</groupId>
89 <artifactId>com.springsource.org.codehaus.jackson.mapper</artifactId>
90 </dependency>
91
92 <dependency>
93 <groupId>com.springsource.json</groupId>
94 <artifactId>com.springsource.json</artifactId>
95 </dependency>
96 <dependency>
97 <groupId>org.antlr</groupId>
98 <artifactId>com.springsource.org.antlr</artifactId>
99 </dependency>
100
101 <!-- TEST -->
102 <dependency>
103 <groupId>org.junit</groupId>
104 <artifactId>com.springsource.junit</artifactId>
105 <scope>test</scope>
106 </dependency>
107 <dependency>
108 <groupId>org.argeo.commons.server</groupId>
109 <artifactId>org.argeo.server.json</artifactId>
110 <version>0.1.3-SNAPSHOT</version>
111 <scope>test</scope>
112 </dependency>
113
114 </dependencies>
115 </project>