TestDataStoreJobCoordinator with waitForAllJobs() methods req. in tests
[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>inject</artifactId>
67       <version>${genius.infrautils.version}</version>
68   </dependency>
69   <dependency>
70     <groupId>org.opendaylight.yangtools</groupId>
71     <artifactId>testutils</artifactId>
72     <scope>test</scope>
73   </dependency>
74   <dependency>
75     <groupId>org.awaitility</groupId>
76     <artifactId>awaitility</artifactId>
77     <scope>test</scope>
78   </dependency>
79 </dependencies>
80  <build>
81     <plugins>
82       <plugin>
83         <groupId>org.apache.felix</groupId>
84         <artifactId>maven-bundle-plugin</artifactId>
85         <extensions>true</extensions>
86         <configuration>
87           <instructions>
88             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
89             <Embed-Transitive>true</Embed-Transitive>
90           </instructions>
91         </configuration>
92       </plugin>
93      <plugin>
94        <groupId>org.apache.maven.plugins</groupId>
95        <artifactId>maven-jar-plugin</artifactId>
96        <executions>
97          <execution>
98            <goals>
99              <goal>test-jar</goal>
100            </goals>
101          </execution>
102        </executions>
103      </plugin>
104     </plugins>
105   </build>
106 </project>