Bump versions by 0.1.0 for next dev cycle
[netvirt.git] / openstack / netvirt2 / it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 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
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13
14   <parent>
15     <groupId>org.opendaylight.netvirt</groupId>
16     <artifactId>it</artifactId>
17     <version>1.4.0-SNAPSHOT</version>
18     <relativePath>../../commons/it</relativePath>
19   </parent>
20
21   <modelVersion>4.0.0</modelVersion>
22   <groupId>org.opendaylight.netvirt</groupId>
23   <artifactId>netvirt-it</artifactId>
24   <version>1.4.0-SNAPSHOT</version>
25   <packaging>jar</packaging>
26
27   <properties>
28     <controller.mdsal.version>1.5.0-SNAPSHOT</controller.mdsal.version>
29     <karaf.distro.groupId>org.opendaylight.ovsdb</karaf.distro.groupId>
30     <karaf.distro.artifactId>karaf</karaf.distro.artifactId>
31     <karaf.distro.version>${project.version}</karaf.distro.version>
32     <karaf.distro.type>zip</karaf.distro.type>
33     <ovsdb.version>1.4.0-SNAPSHOT</ovsdb.version>
34   </properties>
35
36   <dependencies>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>sal-binding-api</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>sal-common-api</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>config-util</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>${project.groupId}</groupId>
51       <artifactId>features-netvirt</artifactId>
52       <version>${project.version}</version>
53       <classifier>features</classifier>
54       <type>xml</type>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.ovsdb</groupId>
58       <artifactId>southbound-api</artifactId>
59       <version>${ovsdb.version}</version>
60     </dependency>
61     <dependency>
62       <groupId>${project.groupId}</groupId>
63       <artifactId>utils.netvirt-it-utils</artifactId>
64       <version>${project.version}</version>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>${project.groupId}</groupId>
69       <artifactId>utils.mdsal-openflow</artifactId>
70       <version>${project.version}</version>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>${project.groupId}</groupId>
75       <artifactId>utils.mdsal-utils</artifactId>
76       <version>${project.version}</version>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>${project.groupId}</groupId>
81       <artifactId>utils.neutron-utils</artifactId>
82       <version>${project.version}</version>
83       <scope>test</scope>
84     </dependency>
85     <dependency>
86       <groupId>${project.groupId}</groupId>
87       <artifactId>openstack.net-virt</artifactId>
88       <version>${project.version}</version>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.ovsdb</groupId>
92       <artifactId>utils.mdsal-utils</artifactId>
93       <version>${ovsdb.version}</version>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.ovsdb</groupId>
98       <artifactId>utils.southbound-utils</artifactId>
99       <version>${ovsdb.version}</version>
100       <scope>test</scope>
101     </dependency>
102     <dependency>
103       <groupId>org.codehaus.sonar-plugins.java</groupId>
104       <artifactId>sonar-jacoco-listeners</artifactId>
105       <scope>test</scope>
106     </dependency>
107   </dependencies>
108
109   <build>
110     <plugins>
111       <plugin>
112         <groupId>org.jacoco</groupId>
113         <artifactId>jacoco-maven-plugin</artifactId>
114       </plugin>
115       <plugin>
116         <groupId>org.apache.maven.plugins</groupId>
117         <artifactId>maven-checkstyle-plugin</artifactId>
118         <configuration>
119           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
120         </configuration>
121       </plugin>
122       <plugin>
123         <groupId>org.apache.maven.plugins</groupId>
124         <artifactId>maven-failsafe-plugin</artifactId>
125         <configuration>
126         <!--<excludes>
127             <exclude>**/NetvirtIT.java</exclude>
128           </excludes>-->
129         </configuration>
130       </plugin>
131     </plugins>
132   </build>
133
134   <!--
135       Maven Site Configuration
136
137       The following configuration is necessary for maven-site-plugin to
138       correctly identify the correct deployment path for OpenDaylight Maven
139       sites.
140   -->
141   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
142
143   <distributionManagement>
144     <site>
145       <id>opendaylight-site</id>
146       <url>${nexus.site.url}/${project.artifactId}/</url>
147     </site>
148   </distributionManagement>
149 </project>