b2c060ebe83c2d9702cc92efe47297478d995ae0
[ovsdb.git] / southbound / southbound-features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2014 Cisco Systems, Inc. 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.5.0-SNAPSHOT</version>
13   </parent>
14   <groupId>org.opendaylight.ovsdb</groupId>
15   <artifactId>southbound-features</artifactId>
16   <version>1.1.0-SNAPSHOT</version>
17   <name>${project.artifactId}</name>
18   <modelVersion>4.0.0</modelVersion>
19   <prerequisites>
20     <maven>3.1.1</maven>
21   </prerequisites>
22   <properties>
23     <mdsal.version>1.2.0-SNAPSHOT</mdsal.version>
24     <yangtools.version>0.7.0-SNAPSHOT</yangtools.version>
25   </properties>
26   <dependencyManagement>
27     <dependencies>
28       <!-- project specific dependencies -->
29       <dependency>
30         <groupId>org.opendaylight.yangtools</groupId>
31         <artifactId>yangtools-artifacts</artifactId>
32         <version>${yangtools.version}</version>
33         <type>pom</type>
34         <scope>import</scope>
35       </dependency>
36       <dependency>
37         <groupId>org.opendaylight.controller</groupId>
38         <artifactId>mdsal-artifacts</artifactId>
39         <version>${mdsal.version}</version>
40         <type>pom</type>
41         <scope>import</scope>
42       </dependency>
43     </dependencies>
44   </dependencyManagement>
45   <dependencies>
46     <dependency>
47       <groupId>org.opendaylight.yangtools</groupId>
48       <artifactId>features-yangtools</artifactId>
49       <type>xml</type>
50       <classifier>features</classifier>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>features-mdsal</artifactId>
55       <type>xml</type>
56       <classifier>features</classifier>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.controller</groupId>
60       <artifactId>features-restconf</artifactId>
61       <type>xml</type>
62       <classifier>features</classifier>
63     </dependency>
64     <dependency>
65       <groupId>${groupId}</groupId>
66       <artifactId>southbound-impl</artifactId>
67       <version>${project.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>${groupId}</groupId>
71       <artifactId>southbound-api</artifactId>
72       <version>${project.version}</version>
73     </dependency>
74   </dependencies>
75 </project>