baa41362d265ea52f864622d5074af9bcef81d18
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-features / 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.9.0-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15   <groupId>org.opendaylight.ovsdb</groupId>
16   <artifactId>hwvtepsouthbound-features</artifactId>
17   <version>1.5.0-SNAPSHOT</version>
18   <name>${project.artifactId}</name>
19   <modelVersion>4.0.0</modelVersion>
20   <properties>
21     <controller.mdsal.version>1.6.0-SNAPSHOT</controller.mdsal.version>
22     <restconf.version>1.6.0-SNAPSHOT</restconf.version>
23     <yangtools.version>1.2.0-SNAPSHOT</yangtools.version>
24     <dluxapps.version>0.6.0-SNAPSHOT</dluxapps.version>
25     <mdsal.model.version>0.11.0-SNAPSHOT</mdsal.model.version>
26     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
27   </properties>
28   <dependencyManagement>
29     <dependencies>
30       <!-- project specific dependencies -->
31       <dependency>
32         <groupId>org.opendaylight.controller</groupId>
33         <artifactId>mdsal-artifacts</artifactId>
34         <version>${controller.mdsal.version}</version>
35         <type>pom</type>
36         <scope>import</scope>
37       </dependency>
38       <dependency>
39         <groupId>org.opendaylight.netconf</groupId>
40         <artifactId>restconf-artifacts</artifactId>
41         <version>${restconf.version}</version>
42         <type>pom</type>
43         <scope>import</scope>
44       </dependency>
45     </dependencies>
46   </dependencyManagement>
47   <dependencies>
48     <dependency>
49       <groupId>org.opendaylight.yangtools</groupId>
50       <artifactId>features-yangtools</artifactId>
51       <classifier>features</classifier>
52       <version>${yangtools.version}</version>
53       <type>xml</type>
54       <scope>runtime</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>features-mdsal</artifactId>
59       <classifier>features</classifier>
60       <version>${controller.mdsal.version}</version>
61       <type>xml</type>
62       <scope>runtime</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.mdsal.model</groupId>
66       <artifactId>features-mdsal-model</artifactId>
67       <version>${mdsal.model.version}</version>
68       <classifier>features</classifier>
69       <type>xml</type>
70       <scope>runtime</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.netconf</groupId>
74       <artifactId>features-restconf</artifactId>
75       <classifier>features</classifier>
76       <version>${restconf.version}</version>
77       <type>xml</type>
78       <scope>runtime</scope>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.dluxapps</groupId>
82       <artifactId>features-dluxapps</artifactId>
83       <classifier>features</classifier>
84       <version>${dluxapps.version}</version>
85       <type>xml</type>
86       <scope>runtime</scope>
87     </dependency>
88     <dependency>
89       <groupId>${project.groupId}</groupId>
90       <artifactId>hwvtepsouthbound-impl</artifactId>
91       <version>${project.version}</version>
92     </dependency>
93     <dependency>
94       <groupId>${project.groupId}</groupId>
95       <artifactId>hwvtepsouthbound-api</artifactId>
96       <version>${project.version}</version>
97     </dependency>
98     <dependency>
99       <groupId>${project.groupId}</groupId>
100       <artifactId>utils.hwvtepsouthbound-utils</artifactId>
101       <version>${project.version}</version>
102     </dependency>
103     <dependency>
104       <groupId>${project.groupId}</groupId>
105       <artifactId>utils.mdsal-utils</artifactId>
106       <version>${project.version}</version>
107     </dependency>
108     <dependency>
109       <groupId>${project.groupId}</groupId>
110       <artifactId>library-features</artifactId>
111       <type>xml</type>
112       <classifier>features</classifier>
113       <version>${project.version}</version>
114     </dependency>
115   </dependencies>
116
117   <!--
118       Maven Site Configuration
119
120       The following configuration is necessary for maven-site-plugin to
121       correctly identify the correct deployment path for OpenDaylight Maven
122       sites.
123   -->
124   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
125
126   <distributionManagement>
127     <site>
128       <id>opendaylight-site</id>
129       <url>${nexus.site.url}/${project.artifactId}/</url>
130     </site>
131   </distributionManagement>
132 </project>