24f7d8b5d642fe5ec928af54e657d41e28453200
[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   <name>ODL :: netvirt :: ${project.artifactId}</name>
20   <packaging>jar</packaging>
21   <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>
22   <licenses>
23     <license>
24       <name>Eclipse Public License v1.0</name>
25       <url>http://www.eclipse.org/legal/epl-v10.html</url>
26     </license>
27   </licenses>
28   <developers>
29     <developer>
30       <name>Sam Hague</name>
31       <email>shague@gmail.com</email>
32       <url>https://github.com/shague</url>
33     </developer>
34   </developers>
35   <scm>
36     <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
37     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
38     <tag>HEAD</tag>
39     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
40   </scm>
41
42   <properties>
43     <controller.mdsal.version>1.5.0-SNAPSHOT</controller.mdsal.version>
44     <karaf.distro.groupId>org.opendaylight.netvirt</karaf.distro.groupId>
45     <karaf.distro.artifactId>karaf</karaf.distro.artifactId>
46     <karaf.distro.version>${project.version}</karaf.distro.version>
47     <karaf.distro.type>zip</karaf.distro.type>
48     <ovsdb.version>1.4.0-SNAPSHOT</ovsdb.version>
49   </properties>
50
51   <dependencies>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>sal-binding-api</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>sal-common-api</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>${project.groupId}</groupId>
62       <artifactId>features-netvirt</artifactId>
63       <version>${project.version}</version>
64       <classifier>features</classifier>
65       <type>xml</type>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>config-util</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.codehaus.sonar-plugins.java</groupId>
73       <artifactId>sonar-jacoco-listeners</artifactId>
74       <scope>test</scope>
75     </dependency>
76     <dependency>
77       <groupId>${project.groupId}</groupId>
78       <artifactId>utils.mdsal-openflow</artifactId>
79       <version>${project.version}</version>
80       <scope>test</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.ovsdb</groupId>
84       <artifactId>utils.mdsal-utils</artifactId>
85       <version>${ovsdb.version}</version>
86       <scope>test</scope>
87     </dependency>
88     <dependency>
89       <groupId>${project.groupId}</groupId>
90       <artifactId>utils.netvirt-it-utils</artifactId>
91       <version>${project.version}</version>
92       <scope>test</scope>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.ovsdb</groupId>
96       <artifactId>utils.ovsdb-it-utils</artifactId>
97       <version>${ovsdb.version}</version>
98       <scope>test</scope>
99     </dependency>
100     <dependency>
101       <groupId>${project.groupId}</groupId>
102       <artifactId>utils.neutron-utils</artifactId>
103       <version>${project.version}</version>
104       <scope>test</scope>
105     </dependency>
106   </dependencies>
107
108   <build>
109     <plugins>
110       <plugin>
111         <groupId>org.jacoco</groupId>
112         <artifactId>jacoco-maven-plugin</artifactId>
113       </plugin>
114       <plugin>
115         <groupId>org.apache.maven.plugins</groupId>
116         <artifactId>maven-checkstyle-plugin</artifactId>
117         <configuration>
118           <!--<propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>-->
119           <includeTestSourceDirectory>true</includeTestSourceDirectory>
120         </configuration>
121       </plugin>
122       <plugin>
123         <groupId>org.apache.maven.plugins</groupId>
124         <artifactId>maven-failsafe-plugin</artifactId>
125       </plugin>
126     </plugins>
127   </build>
128
129   <!--
130       Maven Site Configuration
131
132       The following configuration is necessary for maven-site-plugin to
133       correctly identify the correct deployment path for OpenDaylight Maven
134       sites.
135   -->
136   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
137
138   <distributionManagement>
139     <site>
140       <id>opendaylight-site</id>
141       <url>${nexus.site.url}/${project.artifactId}/</url>
142     </site>
143   </distributionManagement>
144 </project>