Upgrade to Neon base platform
[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 <!--
4 Copyright © 2014, 2016 Cisco Systems, Inc. and others.  All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11
12   <parent>
13     <groupId>org.opendaylight.ovsdb</groupId>
14     <artifactId>ovsdb-binding-parent</artifactId>
15     <version>1.8.0-SNAPSHOT</version>
16     <relativePath>../../commons/binding-parent</relativePath>
17   </parent>
18
19   <modelVersion>4.0.0</modelVersion>
20   <groupId>org.opendaylight.ovsdb</groupId>
21   <artifactId>hwvtepsouthbound-impl</artifactId>
22   <version>1.8.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24   <!-- <name> formatting is used by autorelease to parse and notify projects on
25        build failure. Please do not modify this unless you have a good reason. -->
26   <name>ODL :: ovsdb :: ${project.artifactId}</name>
27
28   <dependencies>
29     <dependency>
30       <groupId>org.osgi</groupId>
31       <artifactId>org.osgi.core</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>sal-core-api</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.mdsal</groupId>
39       <artifactId>mdsal-binding-dom-codec</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.mdsal</groupId>
43       <artifactId>mdsal-eos-binding-api</artifactId>
44     </dependency>
45     <!-- project specific dependencies -->
46     <dependency>
47       <groupId>${project.groupId}</groupId>
48       <artifactId>hwvtepsouthbound-api</artifactId>
49       <version>${project.version}</version>
50     </dependency>
51     <dependency>
52       <groupId>${project.groupId}</groupId>
53       <artifactId>library</artifactId>
54       <version>${project.version}</version>
55     </dependency>
56       <dependency>
57           <groupId>org.apache.karaf.shell</groupId>
58           <artifactId>org.apache.karaf.shell.console</artifactId>
59           <scope>provided</scope>
60       </dependency>
61     <dependency>
62       <groupId>${project.groupId}</groupId>
63       <artifactId>schema.hardwarevtep</artifactId>
64       <version>${project.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>${project.groupId}</groupId>
68       <artifactId>utils.mdsal-utils</artifactId>
69       <version>${project.version}</version>
70     </dependency>
71     <!-- Testing Dependencies -->
72       <dependency>
73           <groupId>org.opendaylight.controller</groupId>
74           <artifactId>sal-binding-broker-impl</artifactId>
75           <scope>test</scope>
76       </dependency>
77       <dependency>
78           <groupId>org.opendaylight.controller</groupId>
79           <artifactId>sal-binding-broker-impl</artifactId>
80           <scope>test</scope>
81           <type>test-jar</type>
82       </dependency>
83       <dependency>
84           <groupId>org.slf4j</groupId>
85           <artifactId>slf4j-simple</artifactId>
86           <scope>test</scope>
87       </dependency>
88
89       <dependency>
90       <groupId>junit</groupId>
91       <artifactId>junit</artifactId>
92       <scope>test</scope>
93     </dependency>
94     <dependency>
95       <groupId>org.powermock</groupId>
96       <artifactId>powermock-api-mockito</artifactId>
97       <version>1.6.4</version>
98       <scope>test</scope>
99     </dependency>
100     <dependency>
101       <groupId>org.javassist</groupId>
102       <artifactId>javassist</artifactId>
103       <version>3.21.0-GA</version>
104       <scope>test</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.mockito</groupId>
108       <artifactId>mockito-core</artifactId>
109       <version>1.10.19</version>
110       <scope>test</scope>
111     </dependency>
112     <dependency>
113       <groupId>org.powermock</groupId>
114       <artifactId>powermock-module-junit4</artifactId>
115       <version>1.6.4</version>
116       <scope>test</scope>
117     </dependency>
118     <dependency>
119       <groupId>org.powermock</groupId>
120       <artifactId>powermock-api-support</artifactId>
121       <version>1.6.4</version>
122       <scope>test</scope>
123     </dependency>
124     <dependency>
125       <groupId>org.powermock</groupId>
126       <artifactId>powermock-reflect</artifactId>
127       <version>1.6.4</version>
128       <scope>test</scope>
129     </dependency>
130     <dependency>
131       <groupId>org.powermock</groupId>
132       <artifactId>powermock-core</artifactId>
133       <version>1.6.4</version>
134       <scope>test</scope>
135     </dependency>
136   </dependencies>
137
138   <build>
139     <plugins>
140       <plugin>
141         <groupId>org.apache.felix</groupId>
142         <artifactId>maven-bundle-plugin</artifactId>
143         <configuration>
144           <instructions>
145             <Private-Package>org.opendaylight.ovsdb.schema.hardwarevtep</Private-Package>
146             <Export-Package>org.opendaylight.ovsdb.hwvtepsouthbound.*,org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.hwvtepsouthbound.impl.rev150901.*</Export-Package>
147           </instructions>
148         </configuration>
149       </plugin>
150       <plugin>
151         <groupId>org.apache.maven.plugins</groupId>
152         <artifactId>maven-surefire-plugin</artifactId>
153         <configuration>
154           <forkCount>1</forkCount>
155           <reuseForks>false</reuseForks>
156         </configuration>
157       </plugin>
158     </plugins>
159   </build>
160
161   <!--
162       Maven Site Configuration
163
164       The following configuration is necessary for maven-site-plugin to
165       correctly identify the correct deployment path for OpenDaylight Maven
166       sites.
167   -->
168   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
169
170   <distributionManagement>
171     <site>
172       <id>opendaylight-site</id>
173       <url>${nexus.site.url}/${project.artifactId}/</url>
174     </site>
175   </distributionManagement>
176 </project>