OpenDaylight Controller functional modules.
[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         <groupId>org.opendaylight.controller</groupId>
14         <artifactId>usermanager</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                                                 <Import-Package>
27                                                         org.opendaylight.controller.clustering.services,
28                                                         org.opendaylight.controller.configuration,
29                                                         org.opendaylight.controller.sal.authorization,
30                                                         org.opendaylight.controller.sal.core,
31                                                         org.opendaylight.controller.sal.packet,
32                                                         org.opendaylight.controller.sal.utils,
33                                                         org.opendaylight.controller.switchmanager,
34                                                         org.opendaylight.controller.containermanager,
35                                                         org.slf4j,
36                                                         org.eclipse.osgi.framework.console,
37                                                         org.osgi.framework,
38                                                         org.apache.felix.dm,
39                                                         org.apache.commons.lang3.builder,
40                                                         org.apache.commons.logging,
41                                                         javax.servlet,
42                                                         javax.servlet.http,
43                                                         org.springframework.security.web.context,
44                                                         org.springframework.security.core,
45                                                         org.springframework.security.core.context,
46                                                         org.apache.commons.lang3,
47                                                         org.springframework.security.authentication,
48                                                         org.springframework.security.core.authority,
49                                                         org.springframework.security.core.userdetails
50
51                                                 </Import-Package>
52                                                 <Export-Package>
53                                                         org.opendaylight.controller.usermanager,
54                                                         org.opendaylight.controller.usermanager.internal                                                
55                                                 </Export-Package>
56                                                 <Bundle-Activator>
57                                                         org.opendaylight.controller.usermanager.internal.Activator
58                                                 </Bundle-Activator>
59                                         </instructions>
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.4.0-SNAPSHOT</version>
89                 </dependency>
90         </dependencies>
91 </project>