Bump versions by x.y.(z+1)
[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.4-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.4-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     <dependency>
46       <groupId>javax.inject</groupId>
47       <artifactId>javax.inject</artifactId>
48       <optional>true</optional>
49     </dependency>
50     <dependency>
51       <groupId>org.apache.aries.blueprint</groupId>
52       <artifactId>blueprint-maven-plugin-annotation</artifactId>
53       <optional>true</optional>
54     </dependency>
55     <!-- project specific dependencies -->
56     <dependency>
57       <groupId>${project.groupId}</groupId>
58       <artifactId>hwvtepsouthbound-api</artifactId>
59       <version>${project.version}</version>
60     </dependency>
61     <dependency>
62       <groupId>${project.groupId}</groupId>
63       <artifactId>library</artifactId>
64       <version>${project.version}</version>
65     </dependency>
66       <dependency>
67           <groupId>org.apache.karaf.shell</groupId>
68           <artifactId>org.apache.karaf.shell.console</artifactId>
69           <scope>provided</scope>
70       </dependency>
71     <dependency>
72       <groupId>${project.groupId}</groupId>
73       <artifactId>schema.hardwarevtep</artifactId>
74       <version>${project.version}</version>
75     </dependency>
76     <dependency>
77       <groupId>${project.groupId}</groupId>
78       <artifactId>utils.mdsal-utils</artifactId>
79       <version>${project.version}</version>
80     </dependency>
81     <dependency>
82       <groupId>javax.annotation</groupId>
83       <artifactId>javax.annotation-api</artifactId>
84       <optional>true</optional>
85     </dependency>
86     <!-- Testing Dependencies -->
87       <dependency>
88           <groupId>org.opendaylight.controller</groupId>
89           <artifactId>sal-binding-broker-impl</artifactId>
90           <scope>test</scope>
91       </dependency>
92       <dependency>
93           <groupId>org.opendaylight.controller</groupId>
94           <artifactId>sal-binding-broker-impl</artifactId>
95           <scope>test</scope>
96           <type>test-jar</type>
97       </dependency>
98       <dependency>
99           <groupId>org.slf4j</groupId>
100           <artifactId>slf4j-simple</artifactId>
101           <scope>test</scope>
102       </dependency>
103
104       <dependency>
105       <groupId>junit</groupId>
106       <artifactId>junit</artifactId>
107       <scope>test</scope>
108     </dependency>
109     <dependency>
110       <groupId>org.powermock</groupId>
111       <artifactId>powermock-api-mockito</artifactId>
112       <version>1.6.4</version>
113       <scope>test</scope>
114     </dependency>
115     <dependency>
116       <groupId>org.javassist</groupId>
117       <artifactId>javassist</artifactId>
118       <version>3.21.0-GA</version>
119       <scope>test</scope>
120     </dependency>
121     <dependency>
122       <groupId>org.mockito</groupId>
123       <artifactId>mockito-core</artifactId>
124       <version>1.10.19</version>
125       <scope>test</scope>
126     </dependency>
127     <dependency>
128       <groupId>org.powermock</groupId>
129       <artifactId>powermock-module-junit4</artifactId>
130       <version>1.6.4</version>
131       <scope>test</scope>
132     </dependency>
133     <dependency>
134       <groupId>org.powermock</groupId>
135       <artifactId>powermock-api-support</artifactId>
136       <version>1.6.4</version>
137       <scope>test</scope>
138     </dependency>
139     <dependency>
140       <groupId>org.powermock</groupId>
141       <artifactId>powermock-reflect</artifactId>
142       <version>1.6.4</version>
143       <scope>test</scope>
144     </dependency>
145     <dependency>
146       <groupId>org.powermock</groupId>
147       <artifactId>powermock-core</artifactId>
148       <version>1.6.4</version>
149       <scope>test</scope>
150     </dependency>
151   </dependencies>
152
153   <build>
154     <plugins>
155       <plugin>
156         <groupId>org.apache.aries.blueprint</groupId>
157         <artifactId>blueprint-maven-plugin</artifactId>
158         <configuration>
159           <scanPaths>org.opendaylight.ovsdb.hwvtepsouthbound</scanPaths>
160         </configuration>
161       </plugin>
162       <plugin>
163         <groupId>org.apache.felix</groupId>
164         <artifactId>maven-bundle-plugin</artifactId>
165         <configuration>
166           <instructions>
167             <Karaf-Commands>org.opendaylight.ovsdb.hwvtepsouthbound.TransactionHistoryCmd</Karaf-Commands>
168             <Private-Package>org.opendaylight.ovsdb.schema.hardwarevtep</Private-Package>
169             <Export-Package>org.opendaylight.ovsdb.hwvtepsouthbound.*,org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.hwvtepsouthbound.impl.rev150901.*</Export-Package>
170           </instructions>
171         </configuration>
172       </plugin>
173       <plugin>
174         <groupId>org.apache.maven.plugins</groupId>
175         <artifactId>maven-surefire-plugin</artifactId>
176         <configuration>
177           <forkCount>1</forkCount>
178           <reuseForks>false</reuseForks>
179         </configuration>
180       </plugin>
181     </plugins>
182   </build>
183
184   <!--
185       Maven Site Configuration
186
187       The following configuration is necessary for maven-site-plugin to
188       correctly identify the correct deployment path for OpenDaylight Maven
189       sites.
190   -->
191   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
192
193   <distributionManagement>
194     <site>
195       <id>opendaylight-site</id>
196       <url>${nexus.site.url}/${project.artifactId}/</url>
197     </site>
198   </distributionManagement>
199 </project>