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