Fixed bug in Data store where multiple readers could overwrite
[controller.git] / opendaylight / md-sal / sal-binding-broker / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     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.0-SNAPSHOT</version>
8     </parent>
9     <artifactId>sal-binding-broker-impl</artifactId>
10     <packaging>bundle</packaging>
11     <scm>
12         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
15     </scm>
16
17     <build>
18         <plugins>
19             <plugin>
20                 <groupId>org.opendaylight.yangtools</groupId>
21                 <artifactId>yang-maven-plugin</artifactId>
22                 <version>0.5.9-SNAPSHOT</version>
23                 <executions>
24                     <execution>
25                         <goals>
26                             <goal>generate-sources</goal>
27                         </goals>
28                         <configuration>
29                             <codeGenerators>
30                                 <generator>
31                                     <codeGeneratorClass>
32                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
33                                     </codeGeneratorClass>
34                                     <outputBaseDir>${project.build.directory}/generated-sources/config</outputBaseDir>
35                                     <additionalConfiguration>
36                                         <namespaceToPackage1>
37                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
38                                         </namespaceToPackage1>
39                                     </additionalConfiguration>
40                                 </generator>
41                             </codeGenerators>
42                             <inspectDependencies>true</inspectDependencies>
43                         </configuration>
44                     </execution>
45                 </executions>
46                 <dependencies>
47                     <dependency>
48                         <groupId>org.opendaylight.controller</groupId>
49                         <artifactId>yang-jmx-generator-plugin</artifactId>
50                         <version>0.2.3-SNAPSHOT</version>
51                     </dependency>
52                 </dependencies>
53             </plugin>
54
55             <plugin>
56                 <groupId>org.codehaus.mojo</groupId>
57                 <artifactId>build-helper-maven-plugin</artifactId>
58                 <version>1.8</version>
59                 <executions>
60                     <execution>
61                         <id>add-source</id>
62                         <phase>generate-sources</phase>
63                         <goals>
64                             <goal>add-source</goal>
65                         </goals>
66                         <configuration>
67                             <sources>
68                                 <source>${project.build.directory}/generated-sources/config</source>
69                             </sources>
70                         </configuration>
71                     </execution>
72                 </executions>
73             </plugin>
74             <plugin>
75                 <groupId>org.apache.felix</groupId>
76                 <artifactId>maven-bundle-plugin</artifactId>
77                 <extensions>true</extensions>
78                 <configuration>
79                     <instructions>
80                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
81                         <Export-package>
82                             org.opendaylight.controller.sal.binding.spi.*,
83                         </Export-package>
84                         <Private-Package>
85                             org.opendaylight.controller.config.yang.md.sal.binding.impl,
86                             org.opendaylight.controller.sal.binding.impl,
87                             org.opendaylight.controller.sal.binding.impl.*,
88                             org.opendaylight.controller.sal.binding.codegen,
89                             org.opendaylight.controller.sal.binding.codegen.*,
90                             org.opendaylight.controller.sal.binding.dom.*,
91                         </Private-Package>
92                     </instructions>
93                 </configuration>
94             </plugin>
95             <plugin>
96                 <groupId>org.eclipse.xtend</groupId>
97                 <artifactId>xtend-maven-plugin</artifactId>
98             </plugin>
99             <plugin>
100                 <artifactId>maven-clean-plugin</artifactId>
101             </plugin>
102             <plugin>
103                 <groupId>org.jacoco</groupId>
104                 <artifactId>jacoco-maven-plugin</artifactId>
105                 <configuration>
106                     <includes>org.opendaylight.controller.*</includes>
107                 </configuration>
108                 <executions>
109                     <execution>
110                         <id>pre-test</id>
111                         <goals>
112                             <goal>prepare-agent</goal>
113                         </goals>
114                     </execution>
115                     <execution>
116                         <id>post-test</id>
117                         <phase>test</phase>
118                         <goals>
119                             <goal>report</goal>
120                         </goals>
121                     </execution>
122                 </executions>
123             </plugin>
124         </plugins>
125     </build>
126
127     <dependencies>
128         <dependency>
129             <groupId>org.opendaylight.controller</groupId>
130             <artifactId>sal-common-util</artifactId>
131             <version>1.0-SNAPSHOT</version>
132         </dependency>
133         <dependency>
134             <groupId>org.opendaylight.controller</groupId>
135             <artifactId>sal-common-impl</artifactId>
136             <version>1.0-SNAPSHOT</version>
137         </dependency>
138         <dependency>
139             <groupId>org.opendaylight.controller</groupId>
140             <artifactId>sal-binding-api</artifactId>
141             <version>1.0-SNAPSHOT</version>
142         </dependency>
143         <dependency>
144             <groupId>org.slf4j</groupId>
145             <artifactId>slf4j-api</artifactId>
146         </dependency>
147         <dependency>
148             <groupId>org.osgi</groupId>
149             <artifactId>org.osgi.core</artifactId>
150             <version>${osgi.core.version}</version>
151             <scope>provided</scope>
152         </dependency>
153         <dependency>
154             <groupId>com.google.guava</groupId>
155             <artifactId>guava</artifactId>
156         </dependency>
157         <dependency>
158             <groupId>org.reflections</groupId>
159             <artifactId>reflections</artifactId>
160             <version>0.9.9-RC1</version>
161         </dependency>
162         <dependency>
163             <groupId>org.javassist</groupId>
164             <artifactId>javassist</artifactId>
165             <version>3.17.1-GA</version>
166         </dependency>
167         <dependency>
168             <groupId>org.opendaylight.yangtools</groupId>
169             <artifactId>binding-generator-impl</artifactId>
170             <version>0.6.0-SNAPSHOT</version>
171         </dependency>
172         <dependency>
173             <groupId>org.opendaylight.yangtools</groupId>
174             <artifactId>yang-parser-impl</artifactId>
175             <version>0.5.9-SNAPSHOT</version>
176             <scope>test</scope>
177         </dependency>
178         <dependency>
179             <groupId>org.opendaylight.controller</groupId>
180             <artifactId>sal-core-api</artifactId>
181             <version>1.0-SNAPSHOT</version>
182         </dependency>
183         <dependency>
184             <groupId>org.opendaylight.controller</groupId>
185             <artifactId>sal-broker-impl</artifactId>
186             <version>1.0-SNAPSHOT</version>
187             <scope>runtime</scope>
188         </dependency>
189         <dependency>
190             <groupId>junit</groupId>
191             <artifactId>junit</artifactId>
192             <scope>test</scope>
193         </dependency>
194         <dependency>
195             <groupId>org.mockito</groupId>
196             <artifactId>mockito-all</artifactId>
197             <scope>test</scope>
198         </dependency>
199         <dependency>
200             <groupId>org.eclipse.xtend</groupId>
201             <artifactId>org.eclipse.xtend.lib</artifactId>
202         </dependency>
203         <dependency>
204             <groupId>org.eclipse.xtend</groupId>
205             <artifactId>org.eclipse.xtend.standalone</artifactId>
206             <version>2.4.3</version>
207             <scope>runtime</scope>
208         </dependency>
209         <dependency>
210             <groupId>org.opendaylight.controller</groupId>
211             <artifactId>sal-binding-config</artifactId>
212             <version>1.0-SNAPSHOT</version>
213         </dependency>
214         <dependency>
215             <groupId>org.opendaylight.controller.model</groupId>
216             <artifactId>model-flow-service</artifactId>
217             <version>1.0-SNAPSHOT</version>
218             <scope>test</scope>
219         </dependency>
220         <dependency>
221             <groupId>org.opendaylight.controller.model</groupId>
222             <artifactId>model-flow-management</artifactId>
223             <version>1.0-SNAPSHOT</version>
224             <scope>test</scope>
225         </dependency>
226         <dependency>
227             <groupId>org.opendaylight.yangtools</groupId>
228             <artifactId>yang-data-impl</artifactId>
229             <version>0.5.9-SNAPSHOT</version>
230         </dependency>
231         <dependency>
232             <groupId>org.opendaylight.yangtools</groupId>
233             <artifactId>yang-model-util</artifactId>
234             <version>0.5.9-SNAPSHOT</version>
235         </dependency>
236         <dependency>
237             <groupId>org.slf4j</groupId>
238             <artifactId>slf4j-simple</artifactId>
239             <version>${slf4j.version}</version>
240             <scope>test</scope>
241         </dependency>
242         <dependency>
243             <groupId>org.opendaylight.controller.model</groupId>
244             <artifactId>model-flow-statistics</artifactId>
245             <version>1.0-SNAPSHOT</version>
246             <scope>test</scope>
247         </dependency>
248         <dependency>
249             <groupId>org.reflections</groupId>
250             <artifactId>reflections</artifactId>
251             <version>0.9.9-RC1</version>
252             <scope>test</scope>
253         </dependency>
254     </dependencies>
255 </project>