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