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