bug 6643 hwvtep configuration reconcilation
[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.controller</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.6.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.4.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <dependencies>
24     <!-- project specific dependencies -->
25     <dependency>
26       <groupId>${project.groupId}</groupId>
27       <artifactId>hwvtepsouthbound-api</artifactId>
28       <version>${project.version}</version>
29     </dependency>
30     <dependency>
31       <groupId>${project.groupId}</groupId>
32       <artifactId>library</artifactId>
33       <version>${project.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>${project.groupId}</groupId>
37       <artifactId>schema.hardwarevtep</artifactId>
38       <version>${project.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>${project.groupId}</groupId>
42       <artifactId>utils.mdsal-utils</artifactId>
43       <version>${project.version}</version>
44     </dependency>
45     <!-- Testing Dependencies -->
46     <dependency>
47       <groupId>junit</groupId>
48       <artifactId>junit</artifactId>
49       <scope>test</scope>
50     </dependency>
51     <dependency>
52       <groupId>org.mockito</groupId>
53       <artifactId>mockito-all</artifactId>
54       <scope>test</scope>
55     </dependency>
56   </dependencies>
57
58   <build>
59     <plugins>
60       <plugin>
61         <groupId>org.apache.felix</groupId>
62         <artifactId>maven-bundle-plugin</artifactId>
63         <configuration>
64           <instructions>
65             <Private-Package>org.opendaylight.ovsdb.schema.hardwarevtep</Private-Package>
66             <Export-Package>org.opendaylight.ovsdb.hwvtepsouthbound.*,org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.hwvtepsouthbound.impl.rev150901.*</Export-Package>
67           </instructions>
68         </configuration>
69       </plugin>
70       <plugin>
71         <groupId>org.apache.maven.plugins</groupId>
72         <artifactId>maven-checkstyle-plugin</artifactId>
73         <configuration>
74           <failsOnError>true</failsOnError>
75         </configuration>
76       </plugin>
77     </plugins>
78   </build>
79
80   <!--
81       Maven Site Configuration
82
83       The following configuration is necessary for maven-site-plugin to
84       correctly identify the correct deployment path for OpenDaylight Maven
85       sites.
86   -->
87   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
88
89   <distributionManagement>
90     <site>
91       <id>opendaylight-site</id>
92       <url>${nexus.site.url}/${project.artifactId}/</url>
93     </site>
94   </distributionManagement>
95 </project>