Merge "Action redesign: nx_resubmit backwards compatibility"
[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.openflowplugin</groupId>
46     <artifactId>openflowplugin-extension-nicira</artifactId>
47     <version>${openflowplugin.version}</version>
48   </dependency>
49   <dependency>
50     <groupId>org.opendaylight.openflowplugin</groupId>
51     <artifactId>openflowjava-extension-nicira</artifactId>
52     <version>${openflowplugin.version}</version>
53   </dependency>
54   <dependency>
55     <groupId>org.opendaylight.ovsdb</groupId>
56     <artifactId>hwvtepsouthbound-api</artifactId>
57     <version>${genius.ovsdb.version}</version>
58   </dependency>
59   <dependency>
60     <groupId>org.opendaylight.ovsdb</groupId>
61     <artifactId>utils.config</artifactId>
62     <version>${genius.ovsdb.version}</version>
63   </dependency>
64   <dependency>
65       <groupId>org.opendaylight.infrautils</groupId>
66       <artifactId>counters-api</artifactId>
67       <version>${genius.infrautils.version}</version>
68   </dependency>
69   <dependency>
70       <groupId>org.opendaylight.infrautils</groupId>
71       <artifactId>inject</artifactId>
72       <version>${genius.infrautils.version}</version>
73   </dependency>
74
75   <!-- Dependencies with <scope>test -->
76   <dependency>
77     <groupId>org.opendaylight.yangtools</groupId>
78     <artifactId>testutils</artifactId>
79     <scope>test</scope>
80   </dependency>
81   <dependency>
82     <groupId>org.awaitility</groupId>
83     <artifactId>awaitility</artifactId>
84     <scope>test</scope>
85   </dependency>
86   <dependency>
87     <groupId>org.opendaylight.mdsal</groupId>
88     <artifactId>mdsal-binding-test-utils</artifactId>
89     <scope>test</scope>
90   </dependency>
91   <dependency>
92     <groupId>org.opendaylight.infrautils</groupId>
93     <artifactId>infrautils-testutils</artifactId>
94     <version>${genius.infrautils.version}</version>
95   </dependency>
96 </dependencies>
97  <build>
98     <plugins>
99       <plugin>
100         <groupId>org.apache.felix</groupId>
101         <artifactId>maven-bundle-plugin</artifactId>
102         <extensions>true</extensions>
103         <configuration>
104           <instructions>
105             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
106             <Embed-Transitive>true</Embed-Transitive>
107           </instructions>
108         </configuration>
109       </plugin>
110      <plugin>
111        <groupId>org.apache.maven.plugins</groupId>
112        <artifactId>maven-jar-plugin</artifactId>
113        <executions>
114          <execution>
115            <goals>
116              <goal>test-jar</goal>
117            </goals>
118          </execution>
119        </executions>
120      </plugin>
121     </plugins>
122   </build>
123 </project>