Bump versions by 0.1.0 for next dev cycle
[netvirt.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.netvirt</groupId>
13     <artifactId>it</artifactId>
14     <version>1.4.0-SNAPSHOT</version>
15     <relativePath>../commons/it</relativePath>
16   </parent>
17   <modelVersion>4.0.0</modelVersion>
18   <artifactId>openstack.net-virt-it</artifactId>
19   <packaging>jar</packaging>
20   <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>
21   <licenses>
22     <license>
23       <name>Eclipse Public License v1.0</name>
24       <url>http://www.eclipse.org/legal/epl-v10.html</url>
25     </license>
26   </licenses>
27   <developers>
28     <developer>
29       <name>Sam Hague</name>
30       <email>shague@gmail.com</email>
31       <url>https://github.com/shague</url>
32     </developer>
33   </developers>
34   <scm>
35     <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
36     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
37     <tag>HEAD</tag>
38     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
39   </scm>
40
41   <properties>
42     <controller.mdsal.version>1.5.0-SNAPSHOT</controller.mdsal.version>
43     <karaf.distro.groupId>org.opendaylight.netvirt</karaf.distro.groupId>
44     <karaf.distro.artifactId>karaf</karaf.distro.artifactId>
45     <karaf.distro.version>${project.version}</karaf.distro.version>
46     <karaf.distro.type>zip</karaf.distro.type>
47     <ovsdb.version>1.4.0-SNAPSHOT</ovsdb.version>
48   </properties>
49
50   <dependencies>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>sal-binding-api</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.controller</groupId>
57       <artifactId>sal-common-api</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>${project.groupId}</groupId>
61       <artifactId>features-netvirt</artifactId>
62       <version>${project.version}</version>
63       <classifier>features</classifier>
64       <type>xml</type>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>config-util</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.codehaus.sonar-plugins.java</groupId>
72       <artifactId>sonar-jacoco-listeners</artifactId>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>${project.groupId}</groupId>
77       <artifactId>utils.mdsal-openflow</artifactId>
78       <version>${project.version}</version>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.ovsdb</groupId>
83       <artifactId>utils.mdsal-utils</artifactId>
84       <version>${ovsdb.version}</version>
85       <scope>test</scope>
86     </dependency>
87     <dependency>
88       <groupId>${project.groupId}</groupId>
89       <artifactId>utils.netvirt-it-utils</artifactId>
90       <version>${project.version}</version>
91       <scope>test</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.ovsdb</groupId>
95       <artifactId>utils.ovsdb-it-utils</artifactId>
96       <version>${ovsdb.version}</version>
97       <scope>test</scope>
98     </dependency>
99     <dependency>
100       <groupId>${project.groupId}</groupId>
101       <artifactId>utils.neutron-utils</artifactId>
102       <version>${project.version}</version>
103       <scope>test</scope>
104     </dependency>
105   </dependencies>
106
107   <build>
108     <plugins>
109       <plugin>
110         <groupId>org.jacoco</groupId>
111         <artifactId>jacoco-maven-plugin</artifactId>
112       </plugin>
113       <plugin>
114         <groupId>org.apache.maven.plugins</groupId>
115         <artifactId>maven-checkstyle-plugin</artifactId>
116         <configuration>
117           <!--<propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>-->
118           <includeTestSourceDirectory>true</includeTestSourceDirectory>
119         </configuration>
120       </plugin>
121       <plugin>
122         <groupId>org.apache.maven.plugins</groupId>
123         <artifactId>maven-failsafe-plugin</artifactId>
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>