]> git.argeo.org Git - lgpl/argeo-commons.git/blob - security/runtime/org.argeo.security.mvc/pom.xml
Explore JSon approach
[lgpl/argeo-commons.git] / security / runtime / org.argeo.security.mvc / 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.1-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.security.mvc</artifactId>
11 <name>Commons Security MVC</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 </instructions>
36 </configuration>
37 </plugin>
38 </plugins>
39 </build>
40 <dependencies>
41 <!-- Spring -->
42 <dependency>
43 <groupId>org.springframework</groupId>
44 <artifactId>org.springframework.web.servlet</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>org.springframework</groupId>
48 <artifactId>org.springframework.aop</artifactId>
49 </dependency>
50
51 <!-- J2EE -->
52 <dependency>
53 <groupId>javax.servlet</groupId>
54 <artifactId>com.springsource.javax.servlet</artifactId>
55 </dependency>
56
57 <!-- Security -->
58 <dependency>
59 <groupId>org.springframework.security</groupId>
60 <artifactId>org.springframework.security</artifactId>
61 </dependency>
62
63 <dependency>
64 <groupId>com.springsource.json</groupId>
65 <artifactId>com.springsource.json</artifactId>
66 <version>1.0.1.RELEASE</version>
67 </dependency>
68 <dependency>
69 <groupId>org.antlr</groupId>
70 <artifactId>com.springsource.org.antlr</artifactId>
71 </dependency>
72
73 <!-- LDAP -->
74 <dependency>
75 <groupId>org.springframework.ldap</groupId>
76 <artifactId>org.springframework.ldap</artifactId>
77 <version>1.3.0.RELEASE</version>
78 </dependency>
79 <dependency>
80 <groupId>org.springframework.ldap</groupId>
81 <artifactId>org.springframework.ldap.core.simple</artifactId>
82 <version>1.3.0.RELEASE</version>
83 </dependency>
84 </dependencies>
85 </project>