BUG-5280: expose backing client actor reference
[controller.git] / opendaylight / md-sal / sal-dom-broker / 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>sal-parent</artifactId>
7     <version>1.5.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-broker-impl</artifactId>
10   <packaging>bundle</packaging>
11
12   <dependencies>
13     <dependency>
14       <groupId>com.google.guava</groupId>
15       <artifactId>guava</artifactId>
16     </dependency>
17     <dependency>
18       <groupId>com.lmax</groupId>
19       <artifactId>disruptor</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.mdsal</groupId>
23       <artifactId>mdsal-eos-dom-api</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.mdsal</groupId>
27       <artifactId>mdsal-dom-api</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.mdsal</groupId>
31       <artifactId>mdsal-dom-broker</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>sal-common-impl</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>sal-common-util</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>sal-core-api</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>sal-core-spi</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>sal-inmemory-datastore</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.yangtools</groupId>
55       <artifactId>util</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.yangtools</groupId>
59       <artifactId>yang-data-impl</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.yangtools</groupId>
63       <artifactId>yang-parser-impl</artifactId>
64     </dependency>
65
66     <dependency>
67       <groupId>junit</groupId>
68       <artifactId>junit</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.slf4j</groupId>
72       <artifactId>slf4j-api</artifactId>
73     </dependency>
74
75     <dependency>
76       <groupId>org.opendaylight.yangtools</groupId>
77       <artifactId>mockito-configuration</artifactId>
78       <scope>test</scope>
79     </dependency>
80     <dependency>
81       <groupId>org.slf4j</groupId>
82       <artifactId>slf4j-simple</artifactId>
83       <scope>test</scope>
84     </dependency>
85   </dependencies>
86
87   <build>
88     <plugins>
89
90       <plugin>
91         <groupId>org.apache.felix</groupId>
92         <artifactId>maven-bundle-plugin</artifactId>
93         <extensions>true</extensions>
94         <configuration>
95           <instructions>
96             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
97             <Export-Package>
98                             <!--  Legacy code -->
99                             org.opendaylight.controller.sal.dom.broker,
100                             org.opendaylight.controller.sal.dom.broker.impl,
101                             org.opendaylight.controller.sal.dom.broker.osgi,
102                             org.opendaylight.controller.sal.dom.broker.util,
103                             org.opendaylight.controller.sal.dom.broker.spi,
104                             <!--sal.broker.impl is exported for sal-netconf-connector to use SchemaAwareRpcRegistry.-->
105                             <!-- TODO Remove sal.broker.impl from export when SchemaAwareRpcRegistry is not used in connector anymore -->
106                             org.opendaylight.controller.md.sal.dom.broker.impl,
107                             org.opendaylight.controller.md.sal.dom.broker.impl.*,
108                             org.opendaylight.controller.md.sal.dom.clustering.impl,
109             </Export-Package>
110             <Import-Package>*</Import-Package>
111           </instructions>
112         </configuration>
113       </plugin>
114     </plugins>
115   </build>
116   <scm>
117     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
118     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
119     <tag>HEAD</tag>
120     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
121   </scm>
122 </project>