78cb4796fb064a2f8bec7091384b6fd2e1fc3103
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright © 2014, 2016 Cisco Systems, 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 <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.mdsal</groupId>
13     <artifactId>binding-parent</artifactId>
14     <version>0.13.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.ovsdb</groupId>
20   <artifactId>hwvtepsouthbound-impl</artifactId>
21   <version>1.7.0-SNAPSHOT</version>
22   <packaging>bundle</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>org.opendaylight.controller</groupId>
31         <artifactId>mdsal-artifacts</artifactId>
32         <version>1.8.0-SNAPSHOT</version>
33         <type>pom</type>
34         <scope>import</scope>
35       </dependency>
36     </dependencies>
37   </dependencyManagement>
38
39   <dependencies>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>sal-core-api</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.mdsal</groupId>
46       <artifactId>mdsal-binding-dom-codec</artifactId>
47     </dependency>
48     <!-- project specific dependencies -->
49     <dependency>
50       <groupId>${project.groupId}</groupId>
51       <artifactId>hwvtepsouthbound-api</artifactId>
52       <version>${project.version}</version>
53     </dependency>
54     <dependency>
55       <groupId>${project.groupId}</groupId>
56       <artifactId>library</artifactId>
57       <version>${project.version}</version>
58     </dependency>
59       <dependency>
60           <groupId>org.apache.karaf.shell</groupId>
61           <artifactId>org.apache.karaf.shell.console</artifactId>
62           <scope>provided</scope>
63       </dependency>
64     <dependency>
65       <groupId>${project.groupId}</groupId>
66       <artifactId>schema.hardwarevtep</artifactId>
67       <version>${project.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>${project.groupId}</groupId>
71       <artifactId>utils.mdsal-utils</artifactId>
72       <version>${project.version}</version>
73     </dependency>
74     <!-- Testing Dependencies -->
75       <dependency>
76           <groupId>org.opendaylight.controller</groupId>
77           <artifactId>sal-binding-broker-impl</artifactId>
78           <scope>test</scope>
79       </dependency>
80       <dependency>
81           <groupId>org.opendaylight.controller</groupId>
82           <artifactId>sal-binding-broker-impl</artifactId>
83           <scope>test</scope>
84           <type>test-jar</type>
85       </dependency>
86       <dependency>
87           <groupId>org.slf4j</groupId>
88           <artifactId>slf4j-simple</artifactId>
89           <scope>test</scope>
90       </dependency>
91
92       <dependency>
93       <groupId>junit</groupId>
94       <artifactId>junit</artifactId>
95       <scope>test</scope>
96     </dependency>
97     <dependency>
98       <groupId>org.mockito</groupId>
99       <artifactId>mockito-core</artifactId>
100       <scope>test</scope>
101     </dependency>
102       <dependency>
103           <groupId>org.powermock</groupId>
104           <artifactId>powermock-api-mockito</artifactId>
105           <scope>test</scope>
106       </dependency>
107       <dependency>
108           <groupId>org.powermock</groupId>
109           <artifactId>powermock-module-junit4</artifactId>
110           <scope>test</scope>
111       </dependency>
112   </dependencies>
113
114   <build>
115     <plugins>
116       <plugin>
117         <groupId>org.apache.felix</groupId>
118         <artifactId>maven-bundle-plugin</artifactId>
119         <configuration>
120           <instructions>
121             <Private-Package>org.opendaylight.ovsdb.schema.hardwarevtep</Private-Package>
122             <Export-Package>org.opendaylight.ovsdb.hwvtepsouthbound.*,org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.hwvtepsouthbound.impl.rev150901.*</Export-Package>
123           </instructions>
124         </configuration>
125       </plugin>
126       <plugin>
127         <groupId>org.apache.maven.plugins</groupId>
128         <artifactId>maven-checkstyle-plugin</artifactId>
129         <configuration>
130           <failsOnError>true</failsOnError>
131         </configuration>
132       </plugin>
133       <plugin>
134         <groupId>org.apache.maven.plugins</groupId>
135         <artifactId>maven-surefire-plugin</artifactId>
136         <configuration>
137           <forkCount>1</forkCount>
138           <reuseForks>false</reuseForks>
139         </configuration>
140       </plugin>
141     </plugins>
142   </build>
143
144   <!--
145       Maven Site Configuration
146
147       The following configuration is necessary for maven-site-plugin to
148       correctly identify the correct deployment path for OpenDaylight Maven
149       sites.
150   -->
151   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
152
153   <distributionManagement>
154     <site>
155       <id>opendaylight-site</id>
156       <url>${nexus.site.url}/${project.artifactId}/</url>
157     </site>
158   </distributionManagement>
159 </project>