Fixed binding-parent groupId. It was causing build failure
[ovsdb.git] / library / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015 Red Hat, Inc. and others. All rights reserved. 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.6.0-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15   <groupId>org.opendaylight.ovsdb</groupId>
16   <artifactId>library-features</artifactId>
17   <version>1.2.1-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.model.version>0.8.0-SNAPSHOT</mdsal.model.version>
25     <mdsal.version>1.3.0-SNAPSHOT</mdsal.version>
26     <restconf.version>1.3.0-SNAPSHOT</restconf.version>
27     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
28     <dlux.version>0.3.0-SNAPSHOT</dlux.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.mdsal.model</groupId>
62       <artifactId>features-mdsal-model</artifactId>
63       <version>${mdsal.model.version}</version>
64       <classifier>features</classifier>
65       <type>xml</type>
66       <scope>runtime</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.netconf</groupId>
70       <artifactId>features-restconf</artifactId>
71       <classifier>features</classifier>
72       <version>${restconf.version}</version>
73       <type>xml</type>
74       <scope>runtime</scope>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.dlux</groupId>
78       <artifactId>features-dlux</artifactId>
79       <classifier>features</classifier>
80       <version>${dlux.version}</version>
81       <type>xml</type>
82       <scope>runtime</scope>
83     </dependency>
84     <dependency>
85       <groupId>${project.groupId}</groupId>
86       <artifactId>library</artifactId>
87       <version>${project.version}</version>
88     </dependency>
89     <dependency>
90       <groupId>${project.groupId}</groupId>
91       <artifactId>library</artifactId>
92       <version>${project.version}</version>
93       <type>xml</type>
94       <classifier>config</classifier>
95     </dependency>
96   </dependencies>
97 </project>