Use Magnesium controller
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015, 2016 Ericsson India Global Services Pvt Ltd. 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.ovsdb</groupId>
13     <artifactId>it</artifactId>
14     <version>1.11.0-SNAPSHOT</version>
15     <relativePath>../../commons/it</relativePath>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.ovsdb</groupId>
20   <artifactId>hwvtepsouthbound-it</artifactId>
21   <version>1.11.0-SNAPSHOT</version>
22   <packaging>jar</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: ovsdb :: ${project.artifactId}</name>
26
27   <dependencyManagement>
28     <dependencies>
29       <dependency>
30         <groupId>${project.groupId}</groupId>
31         <artifactId>hwvtepsouthbound-artifacts</artifactId>
32         <version>${project.version}</version>
33         <type>pom</type>
34         <scope>import</scope>
35       </dependency>
36       <dependency>
37         <groupId>org.opendaylight.controller</groupId>
38         <artifactId>mdsal-artifacts</artifactId>
39         <version>1.11.0</version>
40         <type>pom</type>
41         <scope>import</scope>
42       </dependency>
43     </dependencies>
44   </dependencyManagement>
45
46   <dependencies>
47     <dependency>
48       <groupId>${project.groupId}</groupId>
49       <artifactId>hwvtepsouthbound-features</artifactId>
50       <classifier>features</classifier>
51       <type>xml</type>
52     </dependency>
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>utils.hwvtepsouthbound-utils</artifactId>
64       <version>${project.version}</version>
65     </dependency>
66     <!-- Dependencies for pax exam karaf container -->
67     <dependency>
68       <groupId>org.ops4j.pax.exam</groupId>
69       <artifactId>pax-exam-container-karaf</artifactId>
70       <scope>compile</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.ops4j.pax.exam</groupId>
74       <artifactId>pax-exam-junit4</artifactId>
75       <scope>compile</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.ops4j.pax.exam</groupId>
79       <artifactId>pax-exam</artifactId>
80       <scope>compile</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.ops4j.pax.url</groupId>
84       <artifactId>pax-url-aether</artifactId>
85       <scope>compile</scope>
86     </dependency>
87     <dependency>
88       <groupId>javax.inject</groupId>
89       <artifactId>javax.inject</artifactId>
90       <version>1</version>
91       <scope>compile</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.apache.karaf.features</groupId>
95       <artifactId>org.apache.karaf.features.core</artifactId>
96       <scope>compile</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.osgi</groupId>
100       <artifactId>org.osgi.core</artifactId>
101       <scope>compile</scope>
102     </dependency>
103     <dependency>
104       <groupId>junit</groupId>
105       <artifactId>junit</artifactId>
106       <scope>compile</scope>
107     </dependency>
108     <dependency>
109       <groupId>org.slf4j</groupId>
110       <artifactId>slf4j-simple</artifactId>
111       <scope>test</scope>
112     </dependency>
113     <dependency>
114       <groupId>org.sonarsource.java</groupId>
115       <artifactId>sonar-jacoco-listeners</artifactId>
116       <scope>test</scope>
117     </dependency>
118     <!-- AbstractConfigTestBase::getKarafDistro() needs this to find its version -->
119     <dependency>
120       <groupId>org.opendaylight.ovsdb</groupId>
121       <artifactId>hwvtepsouthbound-karaf</artifactId>
122       <version>${project.version}</version>
123       <type>tar.gz</type>
124       <scope>test</scope>
125     </dependency>
126   </dependencies>
127   <build>
128     <plugins>
129       <plugin>
130         <groupId>org.jacoco</groupId>
131         <artifactId>jacoco-maven-plugin</artifactId>
132       </plugin>
133       <plugin>
134         <groupId>org.apache.maven.plugins</groupId>
135         <artifactId>maven-failsafe-plugin</artifactId>
136         <configuration>
137           <excludes>
138             <!--<exclude>**/HwvtepSouthboundIT.java</exclude>-->
139           </excludes>
140         </configuration>
141       </plugin>
142       <!-- Needed if you use versionAsInProject() -->
143       <plugin>
144         <groupId>org.apache.servicemix.tooling</groupId>
145         <artifactId>depends-maven-plugin</artifactId>
146         <executions>
147           <execution>
148             <id>generate-depends-file</id>
149             <goals>
150               <goal>generate-depends-file</goal>
151             </goals>
152           </execution>
153         </executions>
154       </plugin>
155     </plugins>
156   </build>
157
158   <!--
159       Maven Site Configuration
160
161       The following configuration is necessary for maven-site-plugin to
162       correctly identify the correct deployment path for OpenDaylight Maven
163       sites.
164   -->
165   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
166
167   <distributionManagement>
168     <site>
169       <id>opendaylight-site</id>
170       <url>${nexus.site.url}/${project.artifactId}/</url>
171     </site>
172   </distributionManagement>
173 </project>