Bump versions by x.(y+1).z
[ovsdb.git] / utils / southbound-utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015, 2016 Red Hat, 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   <modelVersion>4.0.0</modelVersion>
11   <parent>
12     <groupId>org.opendaylight.ovsdb</groupId>
13     <artifactId>ovsdb-binding-parent</artifactId>
14     <version>1.14.0-SNAPSHOT</version>
15     <relativePath>../../commons/binding-parent</relativePath>
16   </parent>
17
18   <groupId>org.opendaylight.ovsdb</groupId>
19   <artifactId>utils.southbound-utils</artifactId>
20   <version>1.14.0-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22   <!-- <name> formatting is used by autorelease to parse and notify projects on
23        build failure. Please do not modify this unless you have a good reason. -->
24   <name>ODL :: ovsdb :: ${project.artifactId}</name>
25
26   <dependencies>
27     <!-- project specific dependencies -->
28     <dependency>
29       <groupId>${project.groupId}</groupId>
30       <artifactId>southbound-api</artifactId>
31       <version>${project.version}</version>
32     </dependency>
33     <dependency>
34       <groupId>${project.groupId}</groupId>
35       <artifactId>utils.mdsal-utils</artifactId>
36       <version>${project.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>utils.config</artifactId>
41       <version>${project.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
45       <artifactId>rfc6991-ietf-inet-types</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.mdsal.model</groupId>
49       <artifactId>ietf-topology</artifactId>
50     </dependency>
51     <!-- testing dependencies -->
52     <dependency>
53       <groupId>junit</groupId>
54       <artifactId>junit</artifactId>
55       <scope>test</scope>
56     </dependency>
57   </dependencies>
58
59   <build>
60     <plugins>
61       <plugin>
62         <groupId>org.apache.felix</groupId>
63         <artifactId>maven-bundle-plugin</artifactId>
64         <extensions>true</extensions>
65         <configuration>
66           <instructions>
67             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
68             <Embed-Transitive>true</Embed-Transitive>
69             <Export-Package>
70               org.opendaylight.ovsdb.utils.southbound.utils
71             </Export-Package>
72           </instructions>
73         </configuration>
74       </plugin>
75     </plugins>
76   </build>
77
78   <!--
79       Maven Site Configuration
80
81       The following configuration is necessary for maven-site-plugin to
82       correctly identify the correct deployment path for OpenDaylight Maven
83       sites.
84   -->
85   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
86
87   <distributionManagement>
88     <site>
89       <id>opendaylight-site</id>
90       <url>${nexus.site.url}/${project.artifactId}/</url>
91     </site>
92   </distributionManagement>
93 </project>