fc416f9434051384c22e0b282591b8cfb05bc78e
[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.13.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.13.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     </dependencies>
37   </dependencyManagement>
38
39   <dependencies>
40     <dependency>
41       <groupId>${project.groupId}</groupId>
42       <artifactId>hwvtepsouthbound-features</artifactId>
43       <classifier>features</classifier>
44       <type>xml</type>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.mdsal</groupId>
48       <artifactId>mdsal-binding-api</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.mdsal</groupId>
52       <artifactId>mdsal-common-api</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>${project.groupId}</groupId>
56       <artifactId>utils.hwvtepsouthbound-utils</artifactId>
57       <version>${project.version}</version>
58     </dependency>
59     <!-- Dependencies for pax exam karaf container -->
60     <dependency>
61       <groupId>org.ops4j.pax.exam</groupId>
62       <artifactId>pax-exam-container-karaf</artifactId>
63       <scope>compile</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.ops4j.pax.exam</groupId>
67       <artifactId>pax-exam-junit4</artifactId>
68       <scope>compile</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.ops4j.pax.exam</groupId>
72       <artifactId>pax-exam</artifactId>
73       <scope>compile</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.ops4j.pax.url</groupId>
77       <artifactId>pax-url-aether</artifactId>
78       <scope>compile</scope>
79     </dependency>
80     <dependency>
81       <groupId>com.guicedee.services</groupId>
82       <artifactId>javax.inject</artifactId>
83       <scope>compile</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.apache.karaf.features</groupId>
87       <artifactId>org.apache.karaf.features.core</artifactId>
88       <scope>compile</scope>
89     </dependency>
90     <dependency>
91       <groupId>org.osgi</groupId>
92       <artifactId>osgi.core</artifactId>
93       <scope>compile</scope>
94     </dependency>
95     <dependency>
96       <groupId>junit</groupId>
97       <artifactId>junit</artifactId>
98       <scope>compile</scope>
99     </dependency>
100     <dependency>
101       <groupId>org.slf4j</groupId>
102       <artifactId>slf4j-simple</artifactId>
103       <scope>test</scope>
104     </dependency>
105     <dependency>
106       <groupId>org.sonarsource.java</groupId>
107       <artifactId>sonar-jacoco-listeners</artifactId>
108       <scope>test</scope>
109     </dependency>
110     <!-- AbstractConfigTestBase::getKarafDistro() needs this to find its version -->
111     <dependency>
112       <groupId>org.opendaylight.ovsdb</groupId>
113       <artifactId>hwvtepsouthbound-karaf</artifactId>
114       <version>${project.version}</version>
115       <type>tar.gz</type>
116       <scope>test</scope>
117     </dependency>
118   </dependencies>
119   <build>
120     <plugins>
121       <plugin>
122         <groupId>org.jacoco</groupId>
123         <artifactId>jacoco-maven-plugin</artifactId>
124       </plugin>
125       <plugin>
126         <groupId>org.apache.maven.plugins</groupId>
127         <artifactId>maven-failsafe-plugin</artifactId>
128         <configuration>
129           <excludes>
130             <!--<exclude>**/HwvtepSouthboundIT.java</exclude>-->
131           </excludes>
132         </configuration>
133       </plugin>
134       <!-- Needed if you use versionAsInProject() -->
135       <plugin>
136         <groupId>org.apache.servicemix.tooling</groupId>
137         <artifactId>depends-maven-plugin</artifactId>
138         <executions>
139           <execution>
140             <id>generate-depends-file</id>
141             <goals>
142               <goal>generate-depends-file</goal>
143             </goals>
144           </execution>
145         </executions>
146       </plugin>
147     </plugins>
148   </build>
149
150   <!--
151       Maven Site Configuration
152
153       The following configuration is necessary for maven-site-plugin to
154       correctly identify the correct deployment path for OpenDaylight Maven
155       sites.
156   -->
157   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
158
159   <distributionManagement>
160     <site>
161       <id>opendaylight-site</id>
162       <url>${nexus.site.url}/${project.artifactId}/</url>
163     </site>
164   </distributionManagement>
165 </project>