Replacing Spring Security framework with Apache Tomcat Valve for Web Security (UI...
[controller.git] / opendaylight / security / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5         <modelVersion>4.0.0</modelVersion>
6         <parent>
7                 <groupId>org.opendaylight.controller</groupId>
8                 <artifactId>commons.opendaylight</artifactId>
9                 <version>1.4.0-SNAPSHOT</version>
10                 <relativePath>../commons/opendaylight</relativePath>
11         </parent>
12
13         <groupId>org.opendaylight.controller</groupId>
14         <artifactId>security</artifactId>
15         <version>0.4.0-SNAPSHOT</version>
16         <packaging>bundle</packaging>
17         <build>
18                 <plugins>
19                         <plugin>
20                                 <groupId>org.apache.felix</groupId>
21                                 <artifactId>maven-bundle-plugin</artifactId>
22                                 <version>2.3.6</version>
23                                 <extensions>true</extensions>
24                                 <configuration>
25                                         <instructions>
26                                             <Fragment-Host>
27                                             org.apache.catalina
28                                             </Fragment-Host>                                
29                                                 <Import-Package>
30                                                 org.slf4j,
31                                                 javax.servlet,
32                                                 org.apache.catalina,
33                                                 org.apache.catalina.connector,
34                                                 org.apache.catalina.valves,
35                                                 org.apache.catalina.realm,
36                                                 org.opendaylight.controller.sal.utils,
37                                                 org.opendaylight.controller.sal.authorization,
38                                                 org.opendaylight.controller.usermanager
39                                                 </Import-Package>
40                                                 <Export-Package>
41                                                 org.opendaylight.controller.security
42                                                 </Export-Package>
43                                         </instructions>
44                                 </configuration>
45                         </plugin>
46                 </plugins>
47         </build>
48         <dependencies>
49                 <dependency>
50                         <groupId>org.opendaylight.controller</groupId>
51                         <artifactId>usermanager</artifactId>
52                         <version>0.4.0-SNAPSHOT</version>
53                 </dependency>
54                 <dependency>
55             <groupId>org.opendaylight.controller</groupId>
56             <artifactId>sal</artifactId>
57             <version>0.4.0-SNAPSHOT</version>
58         </dependency>
59         </dependencies>
60 </project>