Renamed artifacts to reflect the project's name.
[unimgr.git] / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Cable Television Laboratories, Inc. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
8 -->
9 <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">
10   <parent>
11     <groupId>org.opendaylight.odlparent</groupId>
12     <artifactId>features-parent</artifactId>
13     <version>1.6.0-SNAPSHOT</version>
14     <relativePath/>
15   </parent>
16   <groupId>org.opendaylight.unimgr</groupId>
17   <artifactId>unimgr-features</artifactId>
18   <version>0.0.1-SNAPSHOT</version>
19   <name>${project.artifactId}</name>
20   <modelVersion>4.0.0</modelVersion>
21   <prerequisites>
22     <maven>3.1.1</maven>
23   </prerequisites>
24   <properties>
25     <mdsal.version>1.3.0-SNAPSHOT</mdsal.version>
26     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
27     <dlux.version>0.3.0-SNAPSHOT</dlux.version>
28     <ovsdb.version>1.2.0-SNAPSHOT</ovsdb.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>${mdsal.version}</version>
38         <type>pom</type>
39         <scope>import</scope>
40       </dependency>
41     </dependencies>
42   </dependencyManagement>
43   <dependencies>
44     <dependency>
45       <groupId>org.opendaylight.yangtools</groupId>
46       <artifactId>features-yangtools</artifactId>
47       <classifier>features</classifier>
48       <version>${yangtools.version}</version>
49       <type>xml</type>
50       <scope>runtime</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>features-mdsal</artifactId>
55       <classifier>features</classifier>
56       <version>${mdsal.version}</version>
57       <type>xml</type>
58       <scope>runtime</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>features-restconf</artifactId>
63       <classifier>features</classifier>
64       <version>${mdsal.version}</version>
65       <type>xml</type>
66       <scope>runtime</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.dlux</groupId>
70       <artifactId>features-dlux</artifactId>
71       <classifier>features</classifier>
72       <version>${dlux.version}</version>
73       <type>xml</type>
74       <scope>runtime</scope>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.ovsdb</groupId>
78       <artifactId>southbound-features</artifactId>
79       <version>${ovsdb.version}</version>
80       <type>xml</type>
81       <classifier>features</classifier>
82     </dependency>
83     <dependency>
84       <groupId>${project.groupId}</groupId>
85       <artifactId>unimgr-impl</artifactId>
86       <version>${project.version}</version>
87     </dependency>
88     <dependency>
89       <groupId>${project.groupId}</groupId>
90       <artifactId>unimgr-impl</artifactId>
91       <version>${project.version}</version>
92       <type>xml</type>
93       <classifier>config</classifier>
94     </dependency>
95     <dependency>
96       <groupId>${project.groupId}</groupId>
97       <artifactId>unimgr-api</artifactId>
98       <version>${project.version}</version>
99     </dependency>
100         <dependency>
101       <groupId>${project.groupId}</groupId>
102       <artifactId>unimgr-cli</artifactId>
103       <version>${project.version}</version>
104     </dependency>
105   </dependencies>
106 </project>