Enable NetVirt Maven site
[netvirt.git] / netvirt / 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.3.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.3.0-SNAPSHOT</version>
25   <packaging>jar</packaging>
26
27   <properties>
28     <controller.mdsal.version>1.4.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.3.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>org.opendaylight.ovsdb</groupId>
87       <artifactId>utils.mdsal-utils</artifactId>
88       <version>${ovsdb.version}</version>
89       <scope>test</scope>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.ovsdb</groupId>
93       <artifactId>utils.southbound-utils</artifactId>
94       <version>${ovsdb.version}</version>
95       <scope>test</scope>
96     </dependency>
97     <dependency>
98       <groupId>org.codehaus.sonar-plugins.java</groupId>
99       <artifactId>sonar-jacoco-listeners</artifactId>
100       <scope>test</scope>
101     </dependency>
102   </dependencies>
103
104   <build>
105     <plugins>
106       <plugin>
107         <groupId>org.jacoco</groupId>
108         <artifactId>jacoco-maven-plugin</artifactId>
109       </plugin>
110       <plugin>
111         <groupId>org.apache.maven.plugins</groupId>
112         <artifactId>maven-checkstyle-plugin</artifactId>
113         <configuration>
114           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
115         </configuration>
116       </plugin>
117       <plugin>
118         <groupId>org.apache.maven.plugins</groupId>
119         <artifactId>maven-failsafe-plugin</artifactId>
120         <configuration>
121         <!--<excludes>
122             <exclude>**/NetvirtIT.java</exclude>
123           </excludes>-->
124         </configuration>
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>