Merge "Generation of Notifications and RPCs from YANG"
[controller.git] / opendaylight / usermanager / api / 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 <!-- 
52               org.opendaylight.controller.usermanager.internal
53  -->
54              </Export-Package>
55             <Bundle-Activator>
56 <!-- 
57               org.opendaylight.controller.usermanager.internal.Activator
58  -->
59              </Bundle-Activator>
60           </instructions>
61           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
62         </configuration>
63       </plugin>
64     </plugins>
65   </build>
66   <dependencies>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>switchmanager</artifactId>
70       <version>0.4.0-SNAPSHOT</version>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>containermanager</artifactId>
75       <version>0.4.0-SNAPSHOT</version>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>clustering.services</artifactId>
80       <version>0.4.0-SNAPSHOT</version>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>configuration</artifactId>
85       <version>0.4.0-SNAPSHOT</version>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.controller</groupId>
89       <artifactId>sal</artifactId>
90       <version>0.5.0-SNAPSHOT</version>
91     </dependency>
92   </dependencies>
93 </project>