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