Bump versions by 0.1.0 for next dev cycle
[netvirt.git] / openstack / 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.6.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.4.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.4.0-SNAPSHOT</ovsdb.version>
35     <openflowplugin.version>0.4.0-SNAPSHOT</openflowplugin.version>
36   </properties>
37
38   <dependencies>
39       <dependency>
40           <groupId>org.opendaylight.controller</groupId>
41           <artifactId>sal-binding-api</artifactId>
42       </dependency>
43       <dependency>
44           <groupId>${project.groupId}</groupId>
45           <artifactId>utils.mdsal-utils</artifactId>
46           <version>${project.version}</version>
47       </dependency>
48       <dependency>
49         <groupId>${project.groupId}</groupId>
50         <artifactId>openstack.net-virt</artifactId>
51         <version>${project.version}</version>
52       </dependency>
53       <dependency>
54           <groupId>${project.groupId}</groupId>
55           <artifactId>utils.neutron-utils</artifactId>
56           <version>${project.version}</version>
57       </dependency>
58       <dependency>
59         <groupId>org.opendaylight.ovsdb</groupId>
60         <artifactId>utils.mdsal-utils</artifactId>
61         <version>${ovsdb.version}</version>
62       </dependency>
63       <dependency>
64           <groupId>org.opendaylight.ovsdb</groupId>
65           <artifactId>southbound-api</artifactId>
66           <version>${ovsdb.version}</version>
67       </dependency>
68       <dependency>
69           <groupId>org.opendaylight.ovsdb</groupId>
70           <artifactId>utils.southbound-utils</artifactId>
71           <version>${project.version}</version>
72       </dependency>
73       <dependency>
74           <groupId>org.opendaylight.netvirt</groupId>
75           <artifactId>utils.mdsal-openflow</artifactId>
76           <version>${project.version}</version>
77       </dependency>
78       <dependency>
79         <groupId>org.opendaylight.ovsdb</groupId>
80         <artifactId>utils.ovsdb-it-utils</artifactId>
81         <version>${project.version}</version>
82       </dependency>
83       <dependency>
84           <groupId>org.opendaylight.mdsal.model</groupId>
85           <artifactId>ietf-inet-types-2013-07-15</artifactId>
86       </dependency>
87       <dependency>
88           <groupId>org.opendaylight.mdsal.model</groupId>
89           <artifactId>ietf-topology</artifactId>
90       </dependency>
91       <dependency>
92           <groupId>junit</groupId>
93           <artifactId>junit</artifactId>
94           <scope>compile</scope>
95       </dependency>
96       <dependency>
97           <groupId>org.opendaylight.openflowplugin</groupId>
98           <artifactId>openflowplugin-extension-api</artifactId>
99           <version>${openflowplugin.version}</version>
100       </dependency>
101       <dependency>
102           <groupId>org.opendaylight.openflowplugin</groupId>
103           <artifactId>openflowplugin-extension-nicira</artifactId>
104           <version>${openflowplugin.version}</version>
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>
116               utils.mdsal-openflow;groupId=org.opendaylight.netvirt;type=!pom;inline=false
117             </Embed-Dependency>
118             <Embed-Transitive>true</Embed-Transitive>
119             <Export-Package>
120               org.opendaylight.netvirt.utils.netvirt.it.utils
121             </Export-Package>
122           </instructions>
123         </configuration>
124       </plugin>
125     </plugins>
126   </build>
127
128     <!--
129         Maven Site Configuration
130
131         The following configuration is necessary for maven-site-plugin to
132         correctly identify the correct deployment path for OpenDaylight Maven
133         sites.
134     -->
135     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
136
137     <distributionManagement>
138         <site>
139             <id>opendaylight-site</id>
140             <url>${nexus.site.url}/${project.artifactId}/</url>
141         </site>
142     </distributionManagement>
143 </project>