Update Robert's coordinates
[honeycomb.git] / vbd / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2015 Cisco and/or its affiliates.
4  Licensed under the Apache License, Version 2.0 (the "License");
5  you may not use this file except in compliance with the License.
6  You may obtain a copy of the License at:
7
8      http://www.apache.org/licenses/LICENSE-2.0
9
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15 -->
16 <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">
17   <parent>
18     <groupId>io.fd.honeycomb.common</groupId>
19     <artifactId>features-parent</artifactId>
20     <version>1.0.0-SNAPSHOT</version>
21     <relativePath>../../common/features-parent</relativePath>
22   </parent>
23
24   <groupId>io.fd.honeycomb.vbd</groupId>
25   <artifactId>vbd-features</artifactId>
26   <version>1.0.0-SNAPSHOT</version>
27   <name>${project.artifactId}</name>
28   <modelVersion>4.0.0</modelVersion>
29
30   <prerequisites>
31     <maven>3.1.1</maven>
32   </prerequisites>
33   <properties>
34     <mdsal.version>2.0.0-SNAPSHOT</mdsal.version>
35     <mdsal.model.version>0.8.0-SNAPSHOT</mdsal.model.version>
36     <restconf.version>1.3.0-SNAPSHOT</restconf.version>
37     <netconf.mdsal.version>1.3.0-SNAPSHOT</netconf.mdsal.version>
38     <netconf.version>1.0.0-SNAPSHOT</netconf.version>
39     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
40     <dlux.version>0.3.0-SNAPSHOT</dlux.version>
41     <v3po.version>1.0.0-SNAPSHOT</v3po.version>
42     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
43   </properties>
44   <dependencyManagement>
45     <dependencies>
46       <!-- project specific dependencies -->
47       <dependency>
48         <groupId>org.opendaylight.mdsal</groupId>
49         <artifactId>mdsal-artifacts</artifactId>
50         <version>2.0.0-SNAPSHOT</version>
51         <type>pom</type>
52         <scope>import</scope>
53       </dependency>
54       <dependency>
55         <groupId>org.opendaylight.mdsal.model</groupId>
56         <artifactId>mdsal-model-artifacts</artifactId>
57         <version>0.8.0-SNAPSHOT</version>
58         <type>pom</type>
59         <scope>import</scope>
60       </dependency>
61       <dependency>
62         <groupId>org.opendaylight.yangtools</groupId>
63         <artifactId>yangtools-artifacts</artifactId>
64         <version>0.8.0-SNAPSHOT</version>
65         <type>pom</type>
66         <scope>import</scope>
67       </dependency>
68
69       <dependency>
70         <groupId>io.fd.honeycomb.v3po</groupId>
71         <artifactId>v3po-artifacts</artifactId>
72         <version>1.0.0-SNAPSHOT</version>
73         <type>pom</type>
74         <scope>import</scope>
75       </dependency>
76
77       <dependency>
78         <groupId>io.fd.honeycomb.vbd</groupId>
79         <artifactId>vbd-artifacts</artifactId>
80         <version>1.0.0-SNAPSHOT</version>
81         <type>pom</type>
82         <scope>import</scope>
83       </dependency>
84     </dependencies>
85   </dependencyManagement>
86
87   <dependencies>
88     <dependency>
89       <groupId>org.opendaylight.yangtools</groupId>
90       <artifactId>features-yangtools</artifactId>
91       <classifier>features</classifier>
92       <type>xml</type>
93       <scope>runtime</scope>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.mdsal</groupId>
97       <artifactId>features-mdsal</artifactId>
98       <classifier>features</classifier>
99       <type>xml</type>
100       <scope>runtime</scope>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.mdsal.model</groupId>
104       <artifactId>features-mdsal-model</artifactId>
105       <classifier>features</classifier>
106       <type>xml</type>
107       <scope>runtime</scope>
108     </dependency>
109
110     <dependency>
111       <groupId>io.fd.honeycomb.v3po</groupId>
112       <artifactId>v3po-features</artifactId>
113       <classifier>features</classifier>
114       <type>xml</type>
115       <scope>runtime</scope>
116     </dependency>
117
118     <dependency>
119       <groupId>${project.groupId}</groupId>
120       <artifactId>vbd-impl</artifactId>
121     </dependency>
122
123     <dependency>
124       <groupId>${project.groupId}</groupId>
125       <artifactId>vbd-impl</artifactId>
126       <type>xml</type>
127       <classifier>config</classifier>
128     </dependency>
129
130     <dependency>
131       <groupId>${project.groupId}</groupId>
132       <artifactId>vbd-api</artifactId>
133     </dependency>
134
135     <dependency>
136       <groupId>${project.groupId}</groupId>
137       <artifactId>vbd-ui-bundle</artifactId>
138     </dependency>
139   </dependencies>
140 </project>