Merge "BUG 3057 - notify added event source by topics created before"
[controller.git] / opendaylight / adsal / usermanager / implementation / 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.6.0-SNAPSHOT</version>
8     <relativePath>../../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>usermanager.implementation</artifactId>
12   <version>0.6.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>equinoxSDK381</groupId>
17       <artifactId>org.eclipse.osgi</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>clustering.services</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>configuration</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>containermanager</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>sal</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.controller</groupId>
41       <artifactId>usermanager</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.slf4j</groupId>
45       <artifactId>jcl-over-slf4j</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.springframework.security</groupId>
49       <artifactId>spring-security-web</artifactId>
50     </dependency>
51
52   </dependencies>
53   <build>
54     <plugins>
55       <plugin>
56         <groupId>org.apache.felix</groupId>
57         <artifactId>maven-bundle-plugin</artifactId>
58         <extensions>true</extensions>
59         <configuration>
60           <instructions>
61             <Import-Package>org.opendaylight.controller.configuration,
62               org.opendaylight.controller.clustering.services,
63               org.opendaylight.controller.sal.authorization,
64               org.opendaylight.controller.sal.core,
65               org.opendaylight.controller.sal.packet,
66               org.opendaylight.controller.sal.utils,
67               org.opendaylight.controller.containermanager,
68               org.slf4j,
69               org.eclipse.osgi.framework.console,
70               org.osgi.framework,
71               org.apache.felix.dm,
72               org.apache.commons.lang3.builder,
73               org.apache.commons.logging,
74               javax.servlet,
75               javax.servlet.http,
76               org.springframework.security.web.context,
77               org.springframework.security.core,
78               org.springframework.security.core.context,
79               org.apache.commons.lang3,
80               org.springframework.security.authentication,
81               org.springframework.security.core.authority,
82               org.springframework.security.core.userdetails,
83               org.opendaylight.controller.usermanager</Import-Package>
84             <Export-Package>
85               <!--
86               org.opendaylight.controller.usermanager,
87               org.opendaylight.controller.usermanager.internal
88               -->
89             </Export-Package>
90             <Bundle-Activator>org.opendaylight.controller.usermanager.internal.Activator</Bundle-Activator>
91           </instructions>
92           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
93         </configuration>
94       </plugin>
95     </plugins>
96   </build>
97   <scm>
98     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
99     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
100     <tag>HEAD</tag>
101     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
102   </scm>
103 </project>