Bump versions by 0.1.0 for next dev cycle
[ovsdb.git] / openstack / net-virt-it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2014 Cisco Systems, 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" 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
11   <parent>
12     <groupId>org.opendaylight.ovsdb</groupId>
13     <artifactId>it</artifactId>
14     <version>1.3.0-SNAPSHOT</version>
15     <relativePath>../../commons/it</relativePath>
16   </parent>
17   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.ovsdb</groupId>
19   <artifactId>openstack.net-virt-it</artifactId>
20   <version>1.3.0-SNAPSHOT</version>
21   <packaging>jar</packaging>
22   <description>The OVSDB Plugin integration project is a project for OpenDaylight that will implement the Open vSwitch Database RFC 7047 management protocol allowing the Southbound configuration of vSwitches and a network virtualization implementation.</description>
23   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
24   <licenses>
25     <license>
26       <name>Eclipse Public License v1.0</name>
27       <url>http://www.eclipse.org/legal/epl-v10.html</url>
28     </license>
29   </licenses>
30   <developers>
31     <developer>
32       <name>Sam Hague</name>
33       <email>shague@gmail.com</email>
34       <url>https://github.com/shague</url>
35     </developer>
36   </developers>
37   <scm>
38     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
39     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
40     <tag>HEAD</tag>
41     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
42   </scm>
43
44   <properties>
45     <karaf.distro.groupId>org.opendaylight.ovsdb</karaf.distro.groupId>
46     <karaf.distro.artifactId>karaf</karaf.distro.artifactId>
47     <karaf.distro.version>${project.version}</karaf.distro.version>
48     <karaf.distro.type>zip</karaf.distro.type>
49   </properties>
50
51   <dependencyManagement>
52     <dependencies>
53       <dependency>
54         <groupId>${project.groupId}</groupId>
55         <artifactId>ovsdb-artifacts</artifactId>
56         <version>${project.version}</version>
57         <type>pom</type>
58         <scope>import</scope>
59       </dependency>
60       <dependency>
61         <groupId>org.opendaylight.controller</groupId>
62         <artifactId>config-artifacts</artifactId>
63         <version>0.5.0-SNAPSHOT</version>
64         <type>pom</type>
65         <scope>import</scope>
66       </dependency>
67       <dependency>
68         <groupId>org.opendaylight.controller</groupId>
69         <artifactId>mdsal-artifacts</artifactId>
70         <version>${mdsal.version}</version>
71         <type>pom</type>
72         <scope>import</scope>
73       </dependency>
74     </dependencies>
75   </dependencyManagement>
76   <dependencies>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>sal-binding-api</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.controller</groupId>
83       <artifactId>sal-common-api</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>${project.groupId}</groupId>
87       <artifactId>features-ovsdb</artifactId>
88       <version>1.3.0-SNAPSHOT</version>
89       <classifier>features</classifier>
90       <type>xml</type>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.controller</groupId>
94       <artifactId>config-util</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.codehaus.sonar-plugins.java</groupId>
98       <artifactId>sonar-jacoco-listeners</artifactId>
99       <scope>test</scope>
100     </dependency>
101   </dependencies>
102   <build>
103     <plugins>
104       <plugin>
105         <groupId>org.jacoco</groupId>
106         <artifactId>jacoco-maven-plugin</artifactId>
107       </plugin>
108       <plugin>
109         <groupId>org.apache.maven.plugins</groupId>
110         <artifactId>maven-checkstyle-plugin</artifactId>
111       </plugin>
112       <plugin>
113         <groupId>org.apache.maven.plugins</groupId>
114         <artifactId>maven-failsafe-plugin</artifactId>
115       </plugin>
116     </plugins>
117   </build>
118 </project>