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