Import infrautils-artifacts in binding-parent
[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.7.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.7.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       <version>${openflowplugin.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.openflowplugin.model</groupId>
40       <artifactId>model-flow-service</artifactId>
41       <version>${openflowplugin.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.openflowplugin.libraries</groupId>
45       <artifactId>liblldp</artifactId>
46       <version>${openflowplugin.version}</version>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>sal-binding-api</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.mdsal</groupId>
54       <artifactId>mdsal-eos-binding-api</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.openflowplugin</groupId>
58       <artifactId>openflowplugin-extension-nicira</artifactId>
59       <version>${openflowplugin.version}</version>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.openflowplugin</groupId>
63       <artifactId>openflowjava-extension-nicira</artifactId>
64       <version>${openflowplugin.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.ovsdb</groupId>
68       <artifactId>hwvtepsouthbound-api</artifactId>
69       <version>${genius.ovsdb.version}</version>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.ovsdb</groupId>
73       <artifactId>utils.config</artifactId>
74       <version>${genius.ovsdb.version}</version>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.serviceutils</groupId>
78       <artifactId>tools-api</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>${project.groupId}</groupId>
82       <artifactId>ipv6util-api</artifactId>
83       <version>${project.version}</version>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.infrautils</groupId>
87       <artifactId>infrautils-util</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.infrautils</groupId>
91       <artifactId>inject</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>javax.annotation</groupId>
95       <artifactId>javax.annotation-api</artifactId>
96       <optional>true</optional>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.infrautils</groupId>
100       <artifactId>jobcoordinator-api</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.infrautils</groupId>
104       <artifactId>caches-api</artifactId>
105     </dependency>
106    <dependency>
107       <groupId>org.opendaylight.infrautils</groupId>
108       <artifactId>metrics-api</artifactId>
109    </dependency>
110     <dependency>
111       <groupId>org.opendaylight.infrautils</groupId>
112       <artifactId>caches-guava-impl</artifactId>
113       <scope>test</scope>
114     </dependency>
115     <dependency>
116       <groupId>org.immutables</groupId>
117       <artifactId>value</artifactId>
118     </dependency>
119     <dependency>
120       <groupId>org.osgi</groupId>
121       <artifactId>org.osgi.core</artifactId>
122     </dependency>
123     <dependency>
124       <groupId>org.apache.aries.blueprint</groupId>
125       <artifactId>blueprint-maven-plugin-annotation</artifactId>
126       <optional>true</optional>
127     </dependency>
128     <dependency>
129       <groupId>commons-net</groupId>
130       <artifactId>commons-net</artifactId>
131     </dependency>
132
133     <!-- Dependencies with <scope>test -->
134     <dependency>
135       <groupId>org.opendaylight.yangtools</groupId>
136       <artifactId>testutils</artifactId>
137       <scope>test</scope>
138     </dependency>
139     <dependency>
140       <groupId>org.awaitility</groupId>
141       <artifactId>awaitility</artifactId>
142       <scope>test</scope>
143     </dependency>
144     <dependency>
145       <groupId>org.opendaylight.mdsal</groupId>
146       <artifactId>mdsal-binding-test-utils</artifactId>
147       <scope>test</scope>
148     </dependency>
149     <dependency>
150       <groupId>org.opendaylight.infrautils</groupId>
151       <artifactId>infrautils-testutils</artifactId>
152     </dependency>
153     <dependency>
154       <groupId>com.google.truth</groupId>
155       <artifactId>truth</artifactId>
156       <scope>test</scope>
157     </dependency>
158     <dependency>
159       <groupId>com.google.guava</groupId>
160       <artifactId>guava-testlib</artifactId>
161     </dependency>
162     <dependency>
163        <groupId>org.opendaylight.controller</groupId>
164        <artifactId>sal-binding-broker-impl</artifactId>
165        <scope>test</scope>
166      </dependency>
167      <dependency>
168        <groupId>org.opendaylight.controller</groupId>
169        <artifactId>sal-binding-broker-impl</artifactId>
170        <scope>test</scope>
171        <type>test-jar</type>
172      </dependency>
173   </dependencies>
174
175   <build>
176     <plugins>
177       <plugin>
178         <groupId>org.apache.felix</groupId>
179         <artifactId>maven-bundle-plugin</artifactId>
180         <extensions>true</extensions>
181         <configuration>
182           <instructions>
183             <Bundle-Activator>org.opendaylight.genius.datastoreutils.Activator</Bundle-Activator>
184           </instructions>
185         </configuration>
186       </plugin>
187       <plugin>
188         <groupId>org.apache.maven.plugins</groupId>
189         <artifactId>maven-jar-plugin</artifactId>
190         <executions>
191           <execution>
192             <goals>
193               <goal>test-jar</goal>
194             </goals>
195           </execution>
196         </executions>
197       </plugin>
198     </plugins>
199   </build>
200 </project>