Migrate bundles' configuration mgmt to ConfigurationService
[controller.git] / opendaylight / usermanager / api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2   <modelVersion>4.0.0</modelVersion>
3   <parent>
4     <groupId>org.opendaylight.controller</groupId>
5     <artifactId>commons.opendaylight</artifactId>
6     <version>1.4.1-SNAPSHOT</version>
7     <relativePath>../../commons/opendaylight</relativePath>
8   </parent>
9   <scm>
10     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
11     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
12     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
13     <tag>HEAD</tag>
14   </scm>
15
16   <artifactId>usermanager</artifactId>
17   <version>0.4.1-SNAPSHOT</version>
18   <packaging>bundle</packaging>
19   <build>
20     <plugins>
21       <plugin>
22         <groupId>org.apache.felix</groupId>
23         <artifactId>maven-bundle-plugin</artifactId>
24         <version>${bundle.plugin.version}</version>
25         <extensions>true</extensions>
26         <configuration>
27           <instructions>
28             <Import-Package>
29               org.opendaylight.controller.configuration,
30               org.opendaylight.controller.sal.authorization,
31               org.opendaylight.controller.sal.core,
32               org.opendaylight.controller.sal.packet,
33               org.opendaylight.controller.sal.utils,
34               org.slf4j,
35               org.eclipse.osgi.framework.console,
36               org.osgi.framework,
37               org.apache.felix.dm,
38               org.apache.commons.logging,
39               javax.servlet,
40               javax.servlet.http,
41               org.springframework.security.web.context,
42               org.springframework.security.core,
43               org.springframework.security.core.context,
44               org.springframework.security.authentication,
45               org.springframework.security.core.authority,
46               org.springframework.security.core.userdetails,
47               javax.xml.bind.annotation
48             </Import-Package>
49             <Export-Package>
50               org.opendaylight.controller.usermanager,
51              </Export-Package>
52             <Bundle-Activator>
53              </Bundle-Activator>
54           </instructions>
55           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
56         </configuration>
57       </plugin>
58     </plugins>
59   </build>
60   <dependencies>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>configuration</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>sal</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>junit</groupId>
71       <artifactId>junit</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>equinoxSDK381</groupId>
75       <artifactId>javax.servlet</artifactId>
76     </dependency>
77     <!-- Spring security -->
78     <dependency>
79       <groupId>org.springframework.security</groupId>
80       <artifactId>spring-security-core</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.springframework.security</groupId>
84       <artifactId>spring-security-web</artifactId>
85     </dependency>
86   </dependencies>
87 </project>