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