Remove NETCONF module reference from POM/features
[lispflowmapping.git] / 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
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
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   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>features-parent</artifactId>
15     <version>1.6.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.lispflowmapping</groupId>
20   <artifactId>features-lispflowmapping</artifactId>
21   <version>1.3.0-SNAPSHOT</version>
22   <name>LISP Flow Mapping Project - Karaf Features</name>
23
24   <prerequisites>
25     <maven>3.1.1</maven>
26   </prerequisites>
27
28   <properties>
29     <commons.opendaylight.version>1.6.0-SNAPSHOT</commons.opendaylight.version>
30     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
31     <dlux.core.version>0.3.0-SNAPSHOT</dlux.core.version>
32     <features.file>features.xml</features.file>
33     <mdsal.version>1.3.0-SNAPSHOT</mdsal.version>
34     <neutron.version>0.6.0-SNAPSHOT</neutron.version>
35     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
36   </properties>
37
38   <dependencyManagement>
39     <dependencies>
40       <!-- project specific dependencies -->
41       <dependency>
42         <groupId>org.opendaylight.controller</groupId>
43         <artifactId>mdsal-artifacts</artifactId>
44         <version>${mdsal.version}</version>
45         <type>pom</type>
46         <scope>import</scope>
47       </dependency>
48     </dependencies>
49   </dependencyManagement>
50
51   <dependencies>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>features-base</artifactId>
55       <version>${commons.opendaylight.version}</version>
56       <classifier>features</classifier>
57       <type>xml</type>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>features-mdsal</artifactId>
62       <classifier>features</classifier>
63       <type>xml</type>
64       <scope>runtime</scope>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>features-restconf</artifactId>
69       <classifier>features</classifier>
70       <type>xml</type>
71       <scope>runtime</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.yangtools</groupId>
75       <artifactId>features-yangtools</artifactId>
76       <version>${yangtools.version}</version>
77       <classifier>features</classifier>
78       <type>xml</type>
79       <scope>runtime</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.dlux</groupId>
83       <artifactId>features-dlux</artifactId>
84       <version>${dlux.core.version}</version>
85       <classifier>features</classifier>
86       <type>xml</type>
87       <scope>runtime</scope>
88     </dependency>
89     <dependency>
90       <groupId>${project.groupId}</groupId>
91       <artifactId>mappingservice.implementation</artifactId>
92       <version>${project.version}</version>
93     </dependency>
94     <dependency>
95       <groupId>${project.groupId}</groupId>
96       <artifactId>mappingservice.implementation</artifactId>
97       <version>${project.version}</version>
98       <classifier>config</classifier>
99       <type>xml</type>
100     </dependency>
101     <dependency>
102       <groupId>${project.groupId}</groupId>
103       <artifactId>mappingservice.southbound</artifactId>
104       <version>${project.version}</version>
105     </dependency>
106     <dependency>
107       <groupId>${project.groupId}</groupId>
108       <artifactId>mappingservice.southbound</artifactId>
109       <version>${project.version}</version>
110       <classifier>config</classifier>
111       <type>xml</type>
112     </dependency>
113     <dependency>
114       <groupId>${project.groupId}</groupId>
115       <artifactId>mappingservice.api</artifactId>
116       <version>${project.version}</version>
117     </dependency>
118     <dependency>
119       <groupId>${project.groupId}</groupId>
120       <artifactId>mappingservice.config</artifactId>
121       <version>${project.version}</version>
122     </dependency>
123     <dependency>
124       <groupId>${project.groupId}</groupId>
125       <artifactId>mappingservice.inmemorydb</artifactId>
126       <version>${project.version}</version>
127     </dependency>
128     <dependency>
129       <groupId>${project.groupId}</groupId>
130       <artifactId>mappingservice.inmemorydb</artifactId>
131       <version>${project.version}</version>
132       <classifier>config</classifier>
133       <type>xml</type>
134     </dependency>
135     <dependency>
136       <groupId>${project.groupId}</groupId>
137       <artifactId>mappingservice.neutron</artifactId>
138       <version>${project.version}</version>
139     </dependency>
140     <dependency>
141       <groupId>${project.groupId}</groupId>
142       <artifactId>mappingservice.shell</artifactId>
143       <version>${project.version}</version>
144     </dependency>
145     <dependency>
146       <groupId>${project.groupId}</groupId>
147       <artifactId>mappingservice.lisp-proto</artifactId>
148       <version>${project.version}</version>
149     </dependency>
150     <dependency>
151       <groupId>${project.groupId}</groupId>
152       <artifactId>lispflowmapping-ui-bundle</artifactId>
153       <version>${project.version}</version>
154     </dependency>
155     <dependency>
156       <groupId>org.opendaylight.neutron</groupId>
157       <artifactId>features-neutron</artifactId>
158       <version>${neutron.version}</version>
159       <classifier>features</classifier>
160       <type>xml</type>
161     </dependency>
162   </dependencies>
163 </project>