e809fe8679fb7b3a1ed8a6bb4295ff11d58b2e02
[genius.git] / mdsalutil / mdsalutil-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Ericsson India Global Services Pvt Ltd. and others.All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.genius</groupId>
15     <artifactId>binding-parent</artifactId>
16     <version>0.9.0-SNAPSHOT</version>
17     <relativePath>../../commons/binding-parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.genius</groupId>
21   <artifactId>mdsalutil-api</artifactId>
22   <version>0.9.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24   <!-- <name> formatting is used by autorelease to parse and notify projects on
25        build failure. Please do not modify this unless you have a good reason. -->
26   <name>ODL :: genius :: ${project.artifactId}</name>
27
28   <dependencies>
29     <dependency>
30       <groupId>org.opendaylight.yangtools</groupId>
31       <artifactId>util</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.openflowplugin.model</groupId>
35       <artifactId>model-flow-base</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.openflowplugin.model</groupId>
39       <artifactId>model-flow-service</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.openflowplugin.libraries</groupId>
43       <artifactId>liblldp</artifactId>
44     </dependency>
45     <!--<dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>sal-binding-api</artifactId>
48     </dependency>!-->
49     <dependency>
50       <groupId>org.opendaylight.mdsal</groupId>
51       <artifactId>mdsal-eos-binding-api</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.openflowplugin</groupId>
55       <artifactId>openflowplugin-extension-nicira</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.openflowplugin</groupId>
59       <artifactId>openflowjava-extension-nicira</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.openflowplugin</groupId>
63       <artifactId>openflowplugin-extension-eric</artifactId>
64       <version>${openflowplugin.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.openflowplugin</groupId>
68       <artifactId>openflowjava-extension-eric</artifactId>
69       <version>${openflowplugin.version}</version>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.ovsdb</groupId>
73       <artifactId>hwvtepsouthbound-api</artifactId>
74       <version>${genius.ovsdb.version}</version>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.ovsdb</groupId>
78       <artifactId>utils.config</artifactId>
79       <version>${genius.ovsdb.version}</version>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.serviceutils</groupId>
83       <artifactId>tools-api</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.serviceutils</groupId>
87       <artifactId>listener-api</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>${project.groupId}</groupId>
91       <artifactId>ipv6util-api</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.infrautils</groupId>
95       <artifactId>infrautils-util</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.infrautils</groupId>
99       <artifactId>inject</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>javax.annotation</groupId>
103       <artifactId>javax.annotation-api</artifactId>
104       <optional>true</optional>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.infrautils</groupId>
108       <artifactId>jobcoordinator-api</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>org.opendaylight.infrautils</groupId>
112       <artifactId>caches-api</artifactId>
113     </dependency>
114    <dependency>
115       <groupId>org.opendaylight.infrautils</groupId>
116       <artifactId>metrics-api</artifactId>
117    </dependency>
118     <dependency>
119       <groupId>org.opendaylight.infrautils</groupId>
120       <artifactId>caches-guava-impl</artifactId>
121       <scope>test</scope>
122     </dependency>
123     <dependency>
124       <groupId>org.immutables</groupId>
125       <artifactId>value</artifactId>
126     </dependency>
127     <dependency>
128       <groupId>org.osgi</groupId>
129       <artifactId>org.osgi.core</artifactId>
130     </dependency>
131     <dependency>
132       <groupId>org.apache.aries.blueprint</groupId>
133       <artifactId>blueprint-maven-plugin-annotation</artifactId>
134       <optional>true</optional>
135     </dependency>
136     <dependency>
137       <groupId>commons-net</groupId>
138       <artifactId>commons-net</artifactId>
139     </dependency>
140
141     <!-- Dependencies with <scope>test -->
142     <dependency>
143       <groupId>org.opendaylight.yangtools</groupId>
144       <artifactId>testutils</artifactId>
145       <scope>test</scope>
146     </dependency>
147     <dependency>
148       <groupId>org.awaitility</groupId>
149       <artifactId>awaitility</artifactId>
150       <scope>test</scope>
151     </dependency>
152     <dependency>
153       <groupId>org.opendaylight.mdsal</groupId>
154       <artifactId>mdsal-binding-test-utils</artifactId>
155       <scope>test</scope>
156     </dependency>
157     <dependency>
158       <groupId>org.opendaylight.mdsal</groupId>
159       <artifactId>mdsal-binding-spi</artifactId>
160     </dependency>
161     <dependency>
162       <groupId>org.opendaylight.infrautils</groupId>
163       <artifactId>infrautils-testutils</artifactId>
164     </dependency>
165     <dependency>
166       <groupId>com.google.truth</groupId>
167       <artifactId>truth</artifactId>
168       <scope>test</scope>
169     </dependency>
170     <dependency>
171       <groupId>com.google.guava</groupId>
172       <artifactId>guava-testlib</artifactId>
173     </dependency>
174     <!--<dependency>
175        <groupId>org.opendaylight.controller</groupId>
176        <artifactId>sal-binding-broker-impl</artifactId>
177        <scope>test</scope>
178      </dependency>
179      <dependency>
180        <groupId>org.opendaylight.controller</groupId>
181        <artifactId>sal-binding-broker-impl</artifactId>
182        <scope>test</scope>
183        <type>test-jar</type>
184      </dependency>!-->
185     <dependency>
186       <groupId>org.opendaylight.mdsal</groupId>
187       <artifactId>mdsal-binding-dom-adapter</artifactId>
188       <scope>test</scope>
189     </dependency>
190     <dependency>
191       <groupId>org.opendaylight.mdsal</groupId>
192       <artifactId>mdsal-binding-dom-adapter</artifactId>
193       <scope>test</scope>
194       <type>test-jar</type>
195     </dependency>
196   </dependencies>
197
198   <build>
199     <plugins>
200       <plugin>
201         <groupId>org.apache.felix</groupId>
202         <artifactId>maven-bundle-plugin</artifactId>
203         <extensions>true</extensions>
204         <configuration>
205           <instructions>
206             <Bundle-Activator>org.opendaylight.genius.datastoreutils.Activator</Bundle-Activator>
207           </instructions>
208         </configuration>
209       </plugin>
210       <plugin>
211         <groupId>org.apache.maven.plugins</groupId>
212         <artifactId>maven-jar-plugin</artifactId>
213         <executions>
214           <execution>
215             <goals>
216               <goal>test-jar</goal>
217             </goals>
218           </execution>
219         </executions>
220       </plugin>
221     </plugins>
222   </build>
223 </project>