dd4253cc86b5685dfd9f03beb3041cee4e08ad03
[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>mdsal-parent</artifactId>
7     <version>1.8.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>sal-broker-impl</artifactId>
13   <version>1.8.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <dependencies>
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.yangtools</groupId>
51       <artifactId>util</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.yangtools</groupId>
55       <artifactId>yang-data-impl</artifactId>
56     </dependency>
57
58     <dependency>
59       <groupId>org.slf4j</groupId>
60       <artifactId>slf4j-api</artifactId>
61     </dependency>
62
63     <dependency>
64       <groupId>org.opendaylight.yangtools</groupId>
65       <artifactId>mockito-configuration</artifactId>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.slf4j</groupId>
70       <artifactId>slf4j-simple</artifactId>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.yangtools</groupId>
75       <artifactId>yang-test-util</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>sal-inmemory-datastore</artifactId>
80       <!-- FIXME: this should be scope=test
81       <scope>test</scope-->
82     </dependency>
83   </dependencies>
84
85   <build>
86     <plugins>
87       <plugin>
88         <groupId>org.apache.felix</groupId>
89         <artifactId>maven-bundle-plugin</artifactId>
90         <extensions>true</extensions>
91         <configuration>
92           <instructions>
93             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
94             <Export-Package>
95                             <!--  Legacy code -->
96                             org.opendaylight.controller.sal.dom.broker,
97                             org.opendaylight.controller.sal.dom.broker.impl,
98                             org.opendaylight.controller.sal.dom.broker.osgi,
99                             org.opendaylight.controller.sal.dom.broker.util,
100                             org.opendaylight.controller.sal.dom.broker.spi,
101                             <!--sal.broker.impl is exported for sal-netconf-connector to use SchemaAwareRpcRegistry.-->
102                             <!-- TODO Remove sal.broker.impl from export when SchemaAwareRpcRegistry is not used in connector anymore -->
103                             org.opendaylight.controller.md.sal.dom.broker.impl,
104                             org.opendaylight.controller.md.sal.dom.broker.impl.*,
105                             org.opendaylight.controller.md.sal.dom.clustering.impl,
106             </Export-Package>
107           </instructions>
108         </configuration>
109       </plugin>
110     </plugins>
111   </build>
112   <scm>
113     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
114     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
115     <tag>HEAD</tag>
116     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
117   </scm>
118
119 </project>