5e15c4cbfef470920ca99de9dd3451a4f2347e04
[controller.git] / opendaylight / usermanager / 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         <artifactId>usermanager</artifactId>
14         <version>0.4.0-SNAPSHOT</version>
15         <packaging>bundle</packaging>
16         <build>
17                 <plugins>
18                         <plugin>
19                                 <groupId>org.apache.felix</groupId>
20                                 <artifactId>maven-bundle-plugin</artifactId>
21                                 <version>2.3.6</version>
22                                 <extensions>true</extensions>
23                                 <configuration>
24                                         <instructions>
25                                                 <Import-Package>
26                                                         org.opendaylight.controller.clustering.services,
27                                                         org.opendaylight.controller.configuration,
28                                                         org.opendaylight.controller.sal.authorization,
29                                                         org.opendaylight.controller.sal.core,
30                                                         org.opendaylight.controller.sal.packet,
31                                                         org.opendaylight.controller.sal.utils,
32                                                         org.opendaylight.controller.switchmanager,
33                                                         org.opendaylight.controller.containermanager,
34                                                         org.slf4j,
35                                                         org.eclipse.osgi.framework.console,
36                                                         org.osgi.framework,
37                                                         org.apache.felix.dm,
38                                                         org.apache.commons.lang3.builder,
39                                                         org.apache.commons.logging,
40                                                         javax.servlet,
41                                                         javax.servlet.http,
42                                                         org.springframework.security.web.context,
43                                                         org.springframework.security.core,
44                                                         org.springframework.security.core.context,
45                                                         org.apache.commons.lang3,
46                                                         org.springframework.security.authentication,
47                                                         org.springframework.security.core.authority,
48                                                         org.springframework.security.core.userdetails
49
50                                                 </Import-Package>
51                                                 <Export-Package>
52                                                         org.opendaylight.controller.usermanager,
53                                                         org.opendaylight.controller.usermanager.internal                                                
54                                                 </Export-Package>
55                                                 <Bundle-Activator>
56                                                         org.opendaylight.controller.usermanager.internal.Activator
57                                                 </Bundle-Activator>
58                                         </instructions>
59           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
60                                 </configuration>
61                         </plugin>
62                 </plugins>
63         </build>
64         <dependencies>
65                 <dependency>
66                         <groupId>org.opendaylight.controller</groupId>
67                         <artifactId>switchmanager</artifactId>
68                         <version>0.4.0-SNAPSHOT</version>
69                 </dependency>
70                 <dependency>
71                         <groupId>org.opendaylight.controller</groupId>
72                         <artifactId>containermanager</artifactId>
73                         <version>0.4.0-SNAPSHOT</version>
74                 </dependency>
75                 <dependency>
76                         <groupId>org.opendaylight.controller</groupId>
77                         <artifactId>clustering.services</artifactId>
78                         <version>0.4.0-SNAPSHOT</version>
79                 </dependency>
80                 <dependency>
81                         <groupId>org.opendaylight.controller</groupId>
82                         <artifactId>configuration</artifactId>
83                         <version>0.4.0-SNAPSHOT</version>
84                 </dependency>
85                 <dependency>
86                         <groupId>org.opendaylight.controller</groupId>
87                         <artifactId>sal</artifactId>
88                         <version>0.5.0-SNAPSHOT</version>
89                 </dependency>
90         </dependencies>
91 </project>