BUG-5737: enable OVSDB Maven site
[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.7.0-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15   <groupId>org.opendaylight.ovsdb</groupId>
16   <artifactId>hwvtepsouthbound-features</artifactId>
17   <version>1.3.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.4.0-SNAPSHOT</controller.mdsal.version>
25     <restconf.version>1.4.0-SNAPSHOT</restconf.version>
26     <yangtools.version>1.0.0-SNAPSHOT</yangtools.version>
27     <dlux.version>0.4.0-SNAPSHOT</dlux.version>
28     <mdsal.model.version>0.9.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-impl</artifactId>
99       <version>${project.version}</version>
100       <type>xml</type>
101       <classifier>config</classifier>
102     </dependency>
103     <dependency>
104       <groupId>${project.groupId}</groupId>
105       <artifactId>hwvtepsouthbound-api</artifactId>
106       <version>${project.version}</version>
107     </dependency>
108     <dependency>
109       <groupId>${project.groupId}</groupId>
110       <artifactId>utils.hwvtepsouthbound-utils</artifactId>
111       <version>${project.version}</version>
112     </dependency>
113     <dependency>
114       <groupId>${project.groupId}</groupId>
115       <artifactId>utils.mdsal-utils</artifactId>
116       <version>${project.version}</version>
117     </dependency>
118     <dependency>
119       <groupId>${project.groupId}</groupId>
120       <artifactId>library-features</artifactId>
121       <type>xml</type>
122       <classifier>features</classifier>
123       <version>${project.version}</version>
124     </dependency>
125   </dependencies>
126
127   <!--
128       Maven Site Configuration
129
130       The following configuration is necessary for maven-site-plugin to
131       correctly identify the correct deployment path for OpenDaylight Maven
132       sites.
133   -->
134   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
135
136   <distributionManagement>
137     <site>
138       <id>opendaylight-site</id>
139       <url>${nexus.site.url}/${project.artifactId}/</url>
140     </site>
141   </distributionManagement>
142 </project>