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