Merge "Backward compatibility for User management"
[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                 <version>${yangtools.version}</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                                 <generator>
42                                     <codeGeneratorClass>org.opendaylight.yangtools.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>
43                                     <outputBaseDir>target/site/models</outputBaseDir>
44                                 </generator>
45                             </codeGenerators>
46                             <inspectDependencies>true</inspectDependencies>
47                         </configuration>
48                     </execution>
49                 </executions>
50                 <dependencies>
51                     <dependency>
52                         <groupId>org.opendaylight.controller</groupId>
53                         <artifactId>yang-jmx-generator-plugin</artifactId>
54                         <version>0.2.4-SNAPSHOT</version>
55                     </dependency>
56                     <dependency>
57                         <groupId>org.opendaylight.yangtools</groupId>
58                         <artifactId>maven-sal-api-gen-plugin</artifactId>
59                         <version>${yangtools.version}</version>
60                         <type>jar</type>
61                     </dependency>
62                 </dependencies>
63             </plugin>
64
65             <plugin>
66                 <groupId>org.codehaus.mojo</groupId>
67                 <artifactId>build-helper-maven-plugin</artifactId>
68                 <version>1.8</version>
69                 <executions>
70                     <execution>
71                         <id>add-source</id>
72                         <phase>generate-sources</phase>
73                         <goals>
74                             <goal>add-source</goal>
75
76
77                         </goals>
78                         <configuration>
79                             <sources>
80                                 <source>${project.build.directory}/generated-sources/config</source>
81                                 <source>src/main/xtend-gen</source>
82                             </sources>
83                         </configuration>
84                     </execution>
85                 </executions>
86             </plugin>
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                             org.opendaylight.controller.sal.binding.spi.*,
96                         </Export-package>
97                         <Private-Package>
98                             org.opendaylight.controller.config.yang.md.sal.binding.impl,
99                             org.opendaylight.controller.sal.binding.impl,
100                             org.opendaylight.controller.sal.binding.impl.*,
101                             org.opendaylight.controller.sal.binding.codegen,
102                             org.opendaylight.controller.sal.binding.codegen.*,
103                             <!--org.opendaylight.controller.sal.binding.dom.*,-->
104                             org.opendaylight.controller.sal.binding.osgi.*,
105                         </Private-Package>
106                     </instructions>
107                 </configuration>
108             </plugin>
109             <plugin>
110                 <groupId>org.eclipse.xtend</groupId>
111                 <artifactId>xtend-maven-plugin</artifactId>
112             </plugin>
113             <plugin>
114                 <artifactId>maven-clean-plugin</artifactId>
115             </plugin>
116             <plugin>
117                 <groupId>org.jacoco</groupId>
118                 <artifactId>jacoco-maven-plugin</artifactId>
119                 <configuration>
120                     <includes>org.opendaylight.controller.*</includes>
121                 </configuration>
122                 <executions>
123                     <execution>
124                         <id>pre-test</id>
125                         <goals>
126                             <goal>prepare-agent</goal>
127                         </goals>
128                     </execution>
129                     <execution>
130                         <id>post-test</id>
131                         <phase>test</phase>
132                         <goals>
133                             <goal>report</goal>
134                         </goals>
135                     </execution>
136                 </executions>
137             </plugin>
138
139
140             <plugin>
141                 <groupId>org.apache.maven.plugins</groupId>
142                 <artifactId>maven-jar-plugin</artifactId>
143                 <executions>
144                     <execution>
145                         <goals>
146                             <goal>test-jar</goal>
147                         </goals>
148                     </execution>
149                 </executions>
150             </plugin>
151         </plugins>
152     </build>
153
154     <dependencies>
155         <dependency>
156             <groupId>org.opendaylight.controller</groupId>
157             <artifactId>sal-common-util</artifactId>
158         </dependency>
159         <dependency>
160             <groupId>org.opendaylight.controller</groupId>
161             <artifactId>sal-common-impl</artifactId>
162         </dependency>
163         <dependency>
164             <groupId>org.opendaylight.controller</groupId>
165             <artifactId>sal-binding-api</artifactId>
166         </dependency>
167         <dependency>
168             <groupId>org.opendaylight.controller</groupId>
169             <artifactId>sal-binding-util</artifactId>
170         </dependency>
171         <dependency>
172             <groupId>org.slf4j</groupId>
173             <artifactId>slf4j-api</artifactId>
174         </dependency>
175         <dependency>
176             <groupId>org.osgi</groupId>
177             <artifactId>org.osgi.core</artifactId>
178             <scope>provided</scope>
179         </dependency>
180         <dependency>
181             <groupId>com.google.guava</groupId>
182             <artifactId>guava</artifactId>
183         </dependency>
184         <dependency>
185             <groupId>org.reflections</groupId>
186             <artifactId>reflections</artifactId>
187             <version>0.9.9-RC1</version>
188             <scope>compile</scope>
189         </dependency>
190         <dependency>
191             <groupId>org.javassist</groupId>
192             <artifactId>javassist</artifactId>
193         </dependency>
194         <dependency>
195             <groupId>org.opendaylight.yangtools</groupId>
196             <artifactId>binding-generator-impl</artifactId>
197         </dependency>
198         <dependency>
199             <groupId>org.opendaylight.yangtools</groupId>
200             <artifactId>yang-parser-impl</artifactId>
201             <scope>test</scope>
202         </dependency>
203         <dependency>
204             <groupId>org.opendaylight.controller</groupId>
205             <artifactId>sal-core-api</artifactId>
206         </dependency>
207         <dependency>
208             <groupId>org.opendaylight.controller</groupId>
209             <artifactId>sal-broker-impl</artifactId>
210             <scope>compile</scope>
211         </dependency>
212         <dependency>
213             <groupId>junit</groupId>
214             <artifactId>junit</artifactId>
215             <scope>test</scope>
216         </dependency>
217         <dependency>
218             <groupId>org.mockito</groupId>
219             <artifactId>mockito-all</artifactId>
220             <scope>test</scope>
221         </dependency>
222         <dependency>
223             <groupId>org.eclipse.xtend</groupId>
224             <artifactId>org.eclipse.xtend.lib</artifactId>
225         </dependency>
226         <dependency>
227             <groupId>org.opendaylight.controller</groupId>
228             <artifactId>sal-binding-config</artifactId>
229         </dependency>
230         <dependency>
231             <groupId>org.opendaylight.yangtools</groupId>
232             <artifactId>yang-data-impl</artifactId>
233         </dependency>
234         <dependency>
235             <groupId>org.opendaylight.yangtools</groupId>
236             <artifactId>yang-model-util</artifactId>
237         </dependency>
238         <dependency>
239             <groupId>org.slf4j</groupId>
240             <artifactId>slf4j-simple</artifactId>
241             <version>${slf4j.version}</version>
242             <scope>test</scope>
243         </dependency>
244             <dependency>
245             <groupId>org.opendaylight.yangtools.model</groupId>
246             <artifactId>ietf-inet-types</artifactId>
247         </dependency>
248         <dependency>
249             <groupId>org.opendaylight.yangtools.model</groupId>
250             <artifactId>ietf-topology-l3-unicast-igp</artifactId>
251             <scope>test</scope>
252         </dependency>
253         <dependency>
254             <groupId>org.opendaylight.controller.model</groupId>
255             <artifactId>model-flow-base</artifactId>
256         </dependency>
257         <dependency>
258             <groupId>org.opendaylight.controller.model</groupId>
259             <artifactId>model-flow-service</artifactId>
260         </dependency>
261         <dependency>
262             <groupId>org.opendaylight.controller.model</groupId>
263             <artifactId>model-flow-statistics</artifactId>
264         </dependency>
265     </dependencies>
266 </project>