Merge "Use dpl portId"
[netvirt.git] / utils / netvirt-it-utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2016 Red Hat, Inc. 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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13   <parent>
14     <groupId>org.opendaylight.controller</groupId>
15     <artifactId>config-parent</artifactId>
16     <version>0.5.0-SNAPSHOT</version>
17     <relativePath/>
18   </parent>
19
20   <modelVersion>4.0.0</modelVersion>
21   <groupId>org.opendaylight.netvirt</groupId>
22   <artifactId>utils.netvirt-it-utils</artifactId>
23   <version>1.3.0-SNAPSHOT</version>
24   <packaging>bundle</packaging>
25
26   <scm>
27     <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
28     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
29     <tag>HEAD</tag>
30     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
31   </scm>
32
33   <properties>
34     <ovsdb.version>1.3.0-SNAPSHOT</ovsdb.version>
35   </properties>
36
37   <dependencies>
38       <dependency>
39           <groupId>org.opendaylight.controller</groupId>
40           <artifactId>sal-binding-api</artifactId>
41       </dependency>
42       <dependency>
43           <groupId>${project.groupId}</groupId>
44           <artifactId>utils.mdsal-utils</artifactId>
45           <version>${project.version}</version>
46       </dependency>
47       <dependency>
48         <groupId>org.opendaylight.ovsdb</groupId>
49           <artifactId>utils.mdsal-utils</artifactId>
50         <version>${ovsdb.version}</version>
51       </dependency>
52       <dependency>
53           <groupId>org.opendaylight.ovsdb</groupId>
54           <artifactId>southbound-api</artifactId>
55           <version>${ovsdb.version}</version>
56       </dependency>
57       <dependency>
58           <groupId>org.opendaylight.ovsdb</groupId>
59           <artifactId>utils.southbound-utils</artifactId>
60           <version>${project.version}</version>
61       </dependency>
62       <dependency>
63           <groupId>org.opendaylight.netvirt</groupId>
64           <artifactId>utils.mdsal-openflow</artifactId>
65           <version>${project.version}</version>
66       </dependency>
67       <dependency>
68           <groupId>org.opendaylight.mdsal.model</groupId>
69           <artifactId>ietf-inet-types</artifactId>
70       </dependency>
71       <dependency>
72           <groupId>org.opendaylight.mdsal.model</groupId>
73           <artifactId>ietf-topology</artifactId>
74       </dependency>
75       <dependency>
76           <groupId>junit</groupId>
77           <artifactId>junit</artifactId>
78           <scope>compile</scope>
79       </dependency>
80   </dependencies>
81   <build>
82     <plugins>
83       <plugin>
84         <groupId>org.apache.felix</groupId>
85         <artifactId>maven-bundle-plugin</artifactId>
86         <extensions>true</extensions>
87         <configuration>
88           <instructions>
89             <Embed-Dependency>
90               utils.mdsal-openflow;groupId=org.opendaylight.netvirt;type=!pom;inline=false
91             </Embed-Dependency>
92             <Embed-Transitive>true</Embed-Transitive>
93             <Export-Package>
94               org.opendaylight.netvirt.utils.netvirt.it.utils
95             </Export-Package>
96           </instructions>
97         </configuration>
98       </plugin>
99     </plugins>
100   </build>
101 </project>