Patch to bring us into alignment with skip.karaf.featureTest from odlparent
[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     <relativePath></relativePath>
14   </parent>
15   <groupId>org.opendaylight.ovsdb</groupId>
16   <artifactId>southbound-features</artifactId>
17   <version>1.1.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     <mdsal.version>1.2.0-SNAPSHOT</mdsal.version>
25     <yangtools.version>0.7.0-SNAPSHOT</yangtools.version>
26   </properties>
27   <dependencyManagement>
28     <dependencies>
29       <!-- project specific dependencies -->
30       <dependency>
31         <groupId>org.opendaylight.yangtools</groupId>
32         <artifactId>yangtools-artifacts</artifactId>
33         <version>${yangtools.version}</version>
34         <type>pom</type>
35         <scope>import</scope>
36       </dependency>
37       <dependency>
38         <groupId>org.opendaylight.controller</groupId>
39         <artifactId>mdsal-artifacts</artifactId>
40         <version>${mdsal.version}</version>
41         <type>pom</type>
42         <scope>import</scope>
43       </dependency>
44     </dependencies>
45   </dependencyManagement>
46   <dependencies>
47     <dependency>
48       <groupId>org.opendaylight.yangtools</groupId>
49       <artifactId>features-yangtools</artifactId>
50       <type>xml</type>
51       <classifier>features</classifier>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>features-mdsal</artifactId>
56       <type>xml</type>
57       <classifier>features</classifier>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>features-restconf</artifactId>
62       <type>xml</type>
63       <classifier>features</classifier>
64     </dependency>
65     <dependency>
66       <groupId>${project.groupId}</groupId>
67       <artifactId>southbound-impl</artifactId>
68       <version>${project.version}</version>
69     </dependency>
70     <dependency>
71       <groupId>${project.groupId}</groupId>
72       <artifactId>southbound-api</artifactId>
73       <version>${project.version}</version>
74     </dependency>
75   </dependencies>
76 </project>