Bump versions by 0.1.0 for next dev cycle
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015, 2016 Ericsson India Global Services Pvt Ltd. and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <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">
9   <parent>
10     <groupId>org.opendaylight.odlparent</groupId>
11     <artifactId>features-parent</artifactId>
12     <version>1.8.0-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15   <groupId>org.opendaylight.ovsdb</groupId>
16   <artifactId>hwvtepsouthbound-features</artifactId>
17   <version>1.4.0-SNAPSHOT</version>
18   <name>${project.artifactId}</name>
19   <modelVersion>4.0.0</modelVersion>
20   <prerequisites>
21     <maven>3.1.1</maven>
22   </prerequisites>
23   <properties>
24     <controller.mdsal.version>1.5.0-SNAPSHOT</controller.mdsal.version>
25     <restconf.version>1.5.0-SNAPSHOT</restconf.version>
26     <yangtools.version>1.1.0-SNAPSHOT</yangtools.version>
27     <dlux.version>0.5.0-SNAPSHOT</dlux.version>
28     <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
29     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
30   </properties>
31   <dependencyManagement>
32     <dependencies>
33       <!-- project specific dependencies -->
34       <dependency>
35         <groupId>org.opendaylight.controller</groupId>
36         <artifactId>mdsal-artifacts</artifactId>
37         <version>${controller.mdsal.version}</version>
38         <type>pom</type>
39         <scope>import</scope>
40       </dependency>
41       <dependency>
42         <groupId>org.opendaylight.netconf</groupId>
43         <artifactId>restconf-artifacts</artifactId>
44         <version>${restconf.version}</version>
45         <type>pom</type>
46         <scope>import</scope>
47       </dependency>
48     </dependencies>
49   </dependencyManagement>
50   <dependencies>
51     <dependency>
52       <groupId>org.opendaylight.yangtools</groupId>
53       <artifactId>features-yangtools</artifactId>
54       <classifier>features</classifier>
55       <version>${yangtools.version}</version>
56       <type>xml</type>
57       <scope>runtime</scope>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>features-mdsal</artifactId>
62       <classifier>features</classifier>
63       <version>${controller.mdsal.version}</version>
64       <type>xml</type>
65       <scope>runtime</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.mdsal.model</groupId>
69       <artifactId>features-mdsal-model</artifactId>
70       <version>${mdsal.model.version}</version>
71       <classifier>features</classifier>
72       <type>xml</type>
73       <scope>runtime</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.netconf</groupId>
77       <artifactId>features-restconf</artifactId>
78       <classifier>features</classifier>
79       <version>${restconf.version}</version>
80       <type>xml</type>
81       <scope>runtime</scope>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.dlux</groupId>
85       <artifactId>features-dlux</artifactId>
86       <classifier>features</classifier>
87       <version>${dlux.version}</version>
88       <type>xml</type>
89       <scope>runtime</scope>
90     </dependency>
91     <dependency>
92       <groupId>${project.groupId}</groupId>
93       <artifactId>hwvtepsouthbound-impl</artifactId>
94       <version>${project.version}</version>
95     </dependency>
96     <dependency>
97       <groupId>${project.groupId}</groupId>
98       <artifactId>hwvtepsouthbound-api</artifactId>
99       <version>${project.version}</version>
100     </dependency>
101     <dependency>
102       <groupId>${project.groupId}</groupId>
103       <artifactId>utils.hwvtepsouthbound-utils</artifactId>
104       <version>${project.version}</version>
105     </dependency>
106     <dependency>
107       <groupId>${project.groupId}</groupId>
108       <artifactId>utils.mdsal-utils</artifactId>
109       <version>${project.version}</version>
110     </dependency>
111     <dependency>
112       <groupId>${project.groupId}</groupId>
113       <artifactId>library-features</artifactId>
114       <type>xml</type>
115       <classifier>features</classifier>
116       <version>${project.version}</version>
117     </dependency>
118   </dependencies>
119
120   <!--
121       Maven Site Configuration
122
123       The following configuration is necessary for maven-site-plugin to
124       correctly identify the correct deployment path for OpenDaylight Maven
125       sites.
126   -->
127   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
128
129   <distributionManagement>
130     <site>
131       <id>opendaylight-site</id>
132       <url>${nexus.site.url}/${project.artifactId}/</url>
133     </site>
134   </distributionManagement>
135 </project>