Merge "Bug 7599 hwvtep ucast mac consumption performance"
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.genius</groupId>
14     <artifactId>config-parent</artifactId>
15     <version>0.2.0-SNAPSHOT</version>
16     <relativePath>../../commons/config-parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.genius</groupId>
20   <artifactId>mdsalutil-api</artifactId>
21   <version>0.2.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23
24 <dependencies>
25   <dependency>
26     <groupId>org.opendaylight.yangtools</groupId>
27     <artifactId>util</artifactId>
28   </dependency>
29   <dependency>
30     <groupId>org.opendaylight.openflowplugin.model</groupId>
31     <artifactId>model-flow-base</artifactId>
32     <version>${openflowplugin.version}</version>
33   </dependency>
34   <dependency>
35     <groupId>org.opendaylight.openflowplugin.model</groupId>
36     <artifactId>model-flow-service</artifactId>
37     <version>${openflowplugin.version}</version>
38   </dependency>
39   <dependency>
40     <groupId>org.opendaylight.controller</groupId>
41     <artifactId>liblldp</artifactId>
42     <version>${liblldp.version}</version>
43   </dependency>
44   <dependency>
45     <groupId>org.opendaylight.controller</groupId>
46     <artifactId>sal-binding-api</artifactId>
47   </dependency>
48   <dependency>
49     <groupId>org.opendaylight.openflowplugin</groupId>
50     <artifactId>openflowplugin-extension-nicira</artifactId>
51     <version>${openflowplugin.version}</version>
52   </dependency>
53   <dependency>
54     <groupId>org.opendaylight.openflowplugin</groupId>
55     <artifactId>openflowjava-extension-nicira</artifactId>
56     <version>${openflowplugin.version}</version>
57   </dependency>
58   <dependency>
59     <groupId>org.opendaylight.ovsdb</groupId>
60     <artifactId>hwvtepsouthbound-api</artifactId>
61     <version>${genius.ovsdb.version}</version>
62   </dependency>
63   <dependency>
64     <groupId>org.opendaylight.ovsdb</groupId>
65     <artifactId>utils.config</artifactId>
66     <version>${genius.ovsdb.version}</version>
67   </dependency>
68   <dependency>
69       <groupId>org.opendaylight.infrautils</groupId>
70       <artifactId>counters-api</artifactId>
71       <version>${genius.infrautils.version}</version>
72   </dependency>
73   <dependency>
74       <groupId>org.opendaylight.infrautils</groupId>
75       <artifactId>inject</artifactId>
76       <version>${genius.infrautils.version}</version>
77   </dependency>
78
79   <!-- Dependencies with <scope>test -->
80   <dependency>
81     <groupId>org.opendaylight.yangtools</groupId>
82     <artifactId>testutils</artifactId>
83     <scope>test</scope>
84   </dependency>
85   <dependency>
86     <groupId>org.awaitility</groupId>
87     <artifactId>awaitility</artifactId>
88     <scope>test</scope>
89   </dependency>
90   <dependency>
91     <groupId>org.opendaylight.mdsal</groupId>
92     <artifactId>mdsal-binding-test-utils</artifactId>
93     <scope>test</scope>
94   </dependency>
95   <dependency>
96     <groupId>org.opendaylight.infrautils</groupId>
97     <artifactId>infrautils-testutils</artifactId>
98     <version>${genius.infrautils.version}</version>
99     <scope>test</scope>
100   </dependency>
101   <dependency>
102     <groupId>com.google.truth</groupId>
103     <artifactId>truth</artifactId>
104     <scope>test</scope>
105   </dependency>
106 </dependencies>
107  <build>
108     <plugins>
109       <plugin>
110         <groupId>org.apache.felix</groupId>
111         <artifactId>maven-bundle-plugin</artifactId>
112         <extensions>true</extensions>
113         <configuration>
114           <instructions>
115             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
116             <Embed-Transitive>true</Embed-Transitive>
117           </instructions>
118         </configuration>
119       </plugin>
120      <plugin>
121        <groupId>org.apache.maven.plugins</groupId>
122        <artifactId>maven-jar-plugin</artifactId>
123        <executions>
124          <execution>
125            <goals>
126              <goal>test-jar</goal>
127            </goals>
128          </execution>
129        </executions>
130      </plugin>
131      <plugin>
132       <groupId>org.apache.maven.plugins</groupId>
133       <artifactId>maven-checkstyle-plugin</artifactId>
134       <configuration>
135         <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
136       </configuration>
137     </plugin>
138     </plugins>
139   </build>
140 </project>