Bump versions by 0.1.0 for next dev cycle
[netvirt.git] / vpnservice / 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.netvirt</groupId>
15     <artifactId>config-parent</artifactId>
16     <version>0.4.0-SNAPSHOT</version>
17     <relativePath>../../commons/config-parent/</relativePath>
18   </parent>
19
20   <modelVersion>4.0.0</modelVersion>
21   <artifactId>netvirt-it-utils</artifactId>
22   <packaging>bundle</packaging>
23
24   <properties>
25     <ovsdb.version>1.4.0-SNAPSHOT</ovsdb.version>
26   </properties>
27
28   <dependencies>
29     <dependency>
30       <groupId>org.opendaylight.ovsdb</groupId>
31       <artifactId>utils.mdsal-utils</artifactId>
32       <version>${ovsdb.version}</version>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.ovsdb</groupId>
36       <artifactId>utils.ovsdb-it-utils</artifactId>
37       <version>${ovsdb.version}</version>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.ovsdb</groupId>
41       <artifactId>utils.mdsal-utils</artifactId>
42       <version>${ovsdb.version}</version>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.netvirt</groupId>
46       <artifactId>neutronvpn-api</artifactId>
47       <version>${project.version}</version>
48     </dependency>
49     <dependency>
50       <groupId>junit</groupId>
51       <artifactId>junit</artifactId>
52       <scope>compile</scope>
53     </dependency>
54   </dependencies>
55
56   <build>
57     <plugins>
58       <plugin>
59         <groupId>org.apache.felix</groupId>
60         <artifactId>maven-bundle-plugin</artifactId>
61         <extensions>true</extensions>
62         <configuration>
63           <instructions>
64             <Embed-Dependency>
65               utils.mdsal-openflow;groupId=org.opendaylight.netvirt;type=!pom;inline=false
66             </Embed-Dependency>
67             <Embed-Transitive>true</Embed-Transitive>
68             <Export-Package>
69               org.opendaylight.netvirt.utils.netvirt.it.utils
70             </Export-Package>
71           </instructions>
72         </configuration>
73       </plugin>
74     </plugins>
75   </build>
76
77   <!--
78       Maven Site Configuration
79
80       The following configuration is necessary for maven-site-plugin to
81       correctly identify the correct deployment path for OpenDaylight Maven
82       sites.
83   -->
84   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
85
86   <distributionManagement>
87     <site>
88       <id>opendaylight-site</id>
89       <url>${nexus.site.url}/${project.artifactId}/</url>
90     </site>
91   </distributionManagement>
92 </project>