e2aca48cb92b5e2ab3e565fc64f135caaff74c6d
[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.12.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.12.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>javax.inject</groupId>
82       <artifactId>javax.inject</artifactId>
83       <version>1</version>
84       <scope>compile</scope>
85     </dependency>
86     <dependency>
87       <groupId>org.apache.karaf.features</groupId>
88       <artifactId>org.apache.karaf.features.core</artifactId>
89       <scope>compile</scope>
90     </dependency>
91     <dependency>
92       <groupId>org.osgi</groupId>
93       <artifactId>org.osgi.core</artifactId>
94       <scope>compile</scope>
95     </dependency>
96     <dependency>
97       <groupId>junit</groupId>
98       <artifactId>junit</artifactId>
99       <scope>compile</scope>
100     </dependency>
101     <dependency>
102       <groupId>org.slf4j</groupId>
103       <artifactId>slf4j-simple</artifactId>
104       <scope>test</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.sonarsource.java</groupId>
108       <artifactId>sonar-jacoco-listeners</artifactId>
109       <scope>test</scope>
110     </dependency>
111     <!-- AbstractConfigTestBase::getKarafDistro() needs this to find its version -->
112     <dependency>
113       <groupId>org.opendaylight.ovsdb</groupId>
114       <artifactId>hwvtepsouthbound-karaf</artifactId>
115       <version>${project.version}</version>
116       <type>tar.gz</type>
117       <scope>test</scope>
118     </dependency>
119   </dependencies>
120   <build>
121     <plugins>
122       <plugin>
123         <groupId>org.jacoco</groupId>
124         <artifactId>jacoco-maven-plugin</artifactId>
125       </plugin>
126       <plugin>
127         <groupId>org.apache.maven.plugins</groupId>
128         <artifactId>maven-failsafe-plugin</artifactId>
129         <configuration>
130           <excludes>
131             <!--<exclude>**/HwvtepSouthboundIT.java</exclude>-->
132           </excludes>
133         </configuration>
134       </plugin>
135       <!-- Needed if you use versionAsInProject() -->
136       <plugin>
137         <groupId>org.apache.servicemix.tooling</groupId>
138         <artifactId>depends-maven-plugin</artifactId>
139         <executions>
140           <execution>
141             <id>generate-depends-file</id>
142             <goals>
143               <goal>generate-depends-file</goal>
144             </goals>
145           </execution>
146         </executions>
147       </plugin>
148     </plugins>
149   </build>
150
151   <!--
152       Maven Site Configuration
153
154       The following configuration is necessary for maven-site-plugin to
155       correctly identify the correct deployment path for OpenDaylight Maven
156       sites.
157   -->
158   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
159
160   <distributionManagement>
161     <site>
162       <id>opendaylight-site</id>
163       <url>${nexus.site.url}/${project.artifactId}/</url>
164     </site>
165   </distributionManagement>
166 </project>