ef2eba5f371e5092972c8b41982ac050fdf27b6c
[netvirt.git] / openstack / net-virt-sfc / it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015 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   <artifactId>openstack.net-virt-sfc-it</artifactId>
23   <packaging>jar</packaging>
24
25   <properties>
26     <karaf.distro.groupId>org.opendaylight.netvirt</karaf.distro.groupId>
27     <karaf.distro.artifactId>openstack.net-virt-sfc-karaf</karaf.distro.artifactId>
28     <karaf.distro.version>${project.version}</karaf.distro.version>
29     <karaf.distro.type>zip</karaf.distro.type>
30     <ovsdb.version>1.3.0-SNAPSHOT</ovsdb.version>
31    </properties>
32
33   <dependencyManagement>
34     <dependencies>
35       <dependency>
36         <groupId>${project.groupId}</groupId>
37         <artifactId>openstack.net-virt-sfc-artifacts</artifactId>
38         <version>${project.version}</version>
39         <type>pom</type>
40         <scope>import</scope>
41       </dependency>
42     </dependencies>
43   </dependencyManagement>
44
45   <dependencies>
46     <dependency>
47       <groupId>${project.groupId}</groupId>
48       <artifactId>openstack.net-virt-sfc-features</artifactId>
49       <version>${project.version}</version>
50     </dependency>
51     <dependency>
52       <groupId>${project.groupId}</groupId>
53       <artifactId>openstack.net-virt-sfc-api</artifactId>
54       <version>${project.version}</version>
55     </dependency>
56     <dependency>
57       <groupId>${project.groupId}</groupId>
58       <artifactId>openstack.net-virt-sfc-impl</artifactId>
59       <version>${project.version}</version>
60     </dependency>
61     <dependency>
62       <groupId>${project.groupId}</groupId>
63       <artifactId>openstack.net-virt-providers</artifactId>
64       <version>${project.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>${project.groupId}</groupId>
68       <artifactId>utils.mdsal-openflow</artifactId>
69       <version>${project.version}</version>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>${project.groupId}</groupId>
74       <artifactId>utils.mdsal-utils</artifactId>
75       <version>${project.version}</version>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.ovsdb</groupId>
80       <artifactId>utils.mdsal-utils</artifactId>
81       <version>${ovsdb.version}</version>
82       <scope>test</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.ovsdb</groupId>
86       <artifactId>utils.southbound-utils</artifactId>
87       <version>${ovsdb.version}</version>
88       <scope>test</scope>
89     </dependency>
90     <dependency>
91       <groupId>${project.groupId}</groupId>
92       <artifactId>utils.netvirt-it-utils</artifactId>
93       <version>${project.version}</version>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.ovsdb</groupId>
98       <artifactId>utils.ovsdb-it-utils</artifactId>
99       <version>${ovsdb.version}</version>
100       <scope>test</scope>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.yangtools</groupId>
104       <artifactId>concepts</artifactId>
105       <scope>test</scope>
106     </dependency>
107     <dependency>
108       <groupId>org.codehaus.sonar-plugins.java</groupId>
109       <artifactId>sonar-jacoco-listeners</artifactId>
110       <scope>test</scope>
111     </dependency>
112   </dependencies>
113
114   <build>
115     <plugins>
116       <plugin>
117         <groupId>org.jacoco</groupId>
118         <artifactId>jacoco-maven-plugin</artifactId>
119       </plugin>
120       <plugin>
121         <groupId>org.apache.maven.plugins</groupId>
122         <artifactId>maven-checkstyle-plugin</artifactId>
123         <configuration>
124           <!--<propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>-->
125           <includeTestSourceDirectory>true</includeTestSourceDirectory>
126         </configuration>
127       </plugin>
128       <plugin>
129         <artifactId>maven-failsafe-plugin</artifactId>
130         <configuration>
131         <!--  <excludes>
132             <exclude>**/NetvirtSfcIT.java</exclude>
133           </excludes>-->
134         </configuration>
135       </plugin>
136     </plugins>
137   </build>
138
139   <!--
140       Maven Site Configuration
141
142       The following configuration is necessary for maven-site-plugin to
143       correctly identify the correct deployment path for OpenDaylight Maven
144       sites.
145   -->
146   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
147
148   <distributionManagement>
149     <site>
150       <id>opendaylight-site</id>
151       <url>${nexus.site.url}/${project.artifactId}/</url>
152     </site>
153   </distributionManagement>
154 </project>