Merge "Formatting cleanup of POM files"
[controller.git] / opendaylight / usermanager / 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</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.switchmanager,
32               org.opendaylight.controller.containermanager,
33               org.slf4j,
34               org.eclipse.osgi.framework.console,
35               org.osgi.framework,
36               org.apache.felix.dm,
37               org.apache.commons.lang3.builder,
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.apache.commons.lang3,
45               org.springframework.security.authentication,
46               org.springframework.security.core.authority,
47               org.springframework.security.core.userdetails
48             </Import-Package>
49             <Export-Package>
50               org.opendaylight.controller.usermanager,
51               org.opendaylight.controller.usermanager.internal
52             </Export-Package>
53             <Bundle-Activator>
54               org.opendaylight.controller.usermanager.internal.Activator
55             </Bundle-Activator>
56           </instructions>
57           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
58         </configuration>
59       </plugin>
60     </plugins>
61   </build>
62   <dependencies>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>switchmanager</artifactId>
66       <version>0.4.0-SNAPSHOT</version>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>containermanager</artifactId>
71       <version>0.4.0-SNAPSHOT</version>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.controller</groupId>
75       <artifactId>clustering.services</artifactId>
76       <version>0.4.0-SNAPSHOT</version>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.controller</groupId>
80       <artifactId>configuration</artifactId>
81       <version>0.4.0-SNAPSHOT</version>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.controller</groupId>
85       <artifactId>sal</artifactId>
86       <version>0.5.0-SNAPSHOT</version>
87     </dependency>
88   </dependencies>
89 </project>