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