Use dpl portId
[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.3.0-SNAPSHOT</version>
15     <relativePath>../../commons/it</relativePath>
16   </parent>
17   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.netvirt</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/netvirt.git</connection>
39     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
40     <tag>HEAD</tag>
41     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
42   </scm>
43
44   <properties>
45     <controller.mdsal.version>1.4.0-SNAPSHOT</controller.mdsal.version>
46     <karaf.distro.groupId>org.opendaylight.netvirt</karaf.distro.groupId>
47     <karaf.distro.artifactId>karaf</karaf.distro.artifactId>
48     <karaf.distro.version>${project.version}</karaf.distro.version>
49     <karaf.distro.type>zip</karaf.distro.type>
50     <ovsdb.version>1.3.0-SNAPSHOT</ovsdb.version>
51   </properties>
52
53   <dependencies>
54     <dependency>
55       <groupId>org.opendaylight.controller</groupId>
56       <artifactId>sal-binding-api</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.controller</groupId>
60       <artifactId>sal-common-api</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>${project.groupId}</groupId>
64       <artifactId>features-netvirt</artifactId>
65       <version>${project.version}</version>
66       <classifier>features</classifier>
67       <type>xml</type>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>config-util</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.codehaus.sonar-plugins.java</groupId>
75       <artifactId>sonar-jacoco-listeners</artifactId>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>${project.groupId}</groupId>
80       <artifactId>utils.it-utils</artifactId>
81       <version>${project.version}</version>
82       <scope>test</scope>
83     </dependency>
84   </dependencies>
85
86   <build>
87     <plugins>
88       <plugin>
89         <groupId>org.jacoco</groupId>
90         <artifactId>jacoco-maven-plugin</artifactId>
91       </plugin>
92       <plugin>
93         <groupId>org.apache.maven.plugins</groupId>
94         <artifactId>maven-checkstyle-plugin</artifactId>
95       </plugin>
96       <plugin>
97         <groupId>org.apache.maven.plugins</groupId>
98         <artifactId>maven-failsafe-plugin</artifactId>
99       </plugin>
100     </plugins>
101   </build>
102 </project>