Merge "NorthBound APIs for the Bridge Domain configuration Service. This is the first...
[controller.git] / opendaylight / usermanager / implementation / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?> <project
2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
3   xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>commons.opendaylight</artifactId>
8     <version>1.4.0-SNAPSHOT</version>
9     <relativePath>../../commons/opendaylight</relativePath>
10   </parent>
11
12   <artifactId>usermanager.implementation</artifactId>
13   <version>0.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <build>
16     <plugins>
17       <plugin>
18         <groupId>org.apache.felix</groupId>
19         <artifactId>maven-bundle-plugin</artifactId>
20         <version>2.3.6</version>
21         <extensions>true</extensions>
22         <configuration>
23           <instructions>
24             <Import-Package>
25               org.opendaylight.controller.clustering.services,
26               org.opendaylight.controller.configuration,
27               org.opendaylight.controller.sal.authorization,
28               org.opendaylight.controller.sal.core,
29               org.opendaylight.controller.sal.packet,
30               org.opendaylight.controller.sal.utils,
31               org.opendaylight.controller.containermanager,
32               org.slf4j,
33               org.eclipse.osgi.framework.console,
34               org.osgi.framework,
35               org.apache.felix.dm,
36               org.apache.commons.lang3.builder,
37               org.apache.commons.logging,
38               javax.servlet,
39               javax.servlet.http,
40               org.springframework.security.web.context,
41               org.springframework.security.core,
42               org.springframework.security.core.context,
43               org.apache.commons.lang3,
44               org.springframework.security.authentication,
45               org.springframework.security.core.authority,
46               org.springframework.security.core.userdetails,
47               org.opendaylight.controller.usermanager
48             </Import-Package>
49             <Export-Package>
50 <!--
51               org.opendaylight.controller.usermanager,
52               org.opendaylight.controller.usermanager.internal
53  -->
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>usermanager</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>