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