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