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