Add LISP user interface
[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-netconf-connector</artifactId>
62       <classifier>features</classifier>
63       <type>xml</type>
64     </dependency> -->
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>features-mdsal</artifactId>
68       <classifier>features</classifier>
69       <type>xml</type>
70       <scope>runtime</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>features-restconf</artifactId>
75       <classifier>features</classifier>
76       <type>xml</type>
77       <scope>runtime</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.yangtools</groupId>
81       <artifactId>features-yangtools</artifactId>
82       <version>${yangtools.version}</version>
83       <classifier>features</classifier>
84       <type>xml</type>
85       <scope>runtime</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.dlux</groupId>
89       <artifactId>features-dlux</artifactId>
90       <version>${dlux.core.version}</version>
91       <classifier>features</classifier>
92       <type>xml</type>
93       <scope>runtime</scope>
94     </dependency>
95     <dependency>
96       <groupId>${project.groupId}</groupId>
97       <artifactId>mappingservice.implementation</artifactId>
98       <version>${project.version}</version>
99     </dependency>
100     <dependency>
101       <groupId>${project.groupId}</groupId>
102       <artifactId>mappingservice.implementation</artifactId>
103       <version>${project.version}</version>
104       <classifier>config</classifier>
105       <type>xml</type>
106     </dependency>
107     <dependency>
108       <groupId>${project.groupId}</groupId>
109       <artifactId>mappingservice.southbound</artifactId>
110       <version>${project.version}</version>
111     </dependency>
112     <dependency>
113       <groupId>${project.groupId}</groupId>
114       <artifactId>mappingservice.southbound</artifactId>
115       <version>${project.version}</version>
116       <classifier>config</classifier>
117       <type>xml</type>
118     </dependency>
119     <dependency>
120       <groupId>${project.groupId}</groupId>
121       <artifactId>mappingservice.api</artifactId>
122       <version>${project.version}</version>
123     </dependency>
124 <!--     <dependency>
125       <groupId>${project.groupId}</groupId>
126       <artifactId>mappingservice.clusterdao</artifactId>
127       <version>${project.version}</version>
128     </dependency> -->
129     <dependency>
130       <groupId>${project.groupId}</groupId>
131       <artifactId>mappingservice.config</artifactId>
132       <version>${project.version}</version>
133     </dependency>
134     <dependency>
135       <groupId>${project.groupId}</groupId>
136       <artifactId>mappingservice.inmemorydb</artifactId>
137       <version>${project.version}</version>
138     </dependency>
139     <dependency>
140       <groupId>${project.groupId}</groupId>
141       <artifactId>mappingservice.inmemorydb</artifactId>
142       <version>${project.version}</version>
143       <classifier>config</classifier>
144       <type>xml</type>
145     </dependency>
146 <!--     <dependency>
147       <groupId>${project.groupId}</groupId>
148       <artifactId>mappingservice.netconf</artifactId>
149       <version>${project.version}</version>
150     </dependency> -->
151     <dependency>
152       <groupId>${project.groupId}</groupId>
153       <artifactId>mappingservice.neutron</artifactId>
154       <version>${project.version}</version>
155     </dependency>
156     <dependency>
157       <groupId>${project.groupId}</groupId>
158       <artifactId>mappingservice.shell</artifactId>
159       <version>${project.version}</version>
160     </dependency>
161     <dependency>
162       <groupId>${project.groupId}</groupId>
163       <artifactId>mappingservice.lisp-proto</artifactId>
164       <version>${project.version}</version>
165     </dependency>
166     <dependency>
167       <groupId>${project.groupId}</groupId>
168       <artifactId>lispflowmapping-ui-bundle</artifactId>
169       <version>${project.version}</version>
170     </dependency>
171     <dependency>
172       <groupId>org.opendaylight.neutron</groupId>
173       <artifactId>features-neutron</artifactId>
174       <version>${neutron.version}</version>
175       <classifier>features</classifier>
176       <type>xml</type>
177     </dependency>
178     <dependency>
179       <groupId>junit</groupId>
180       <artifactId>junit-dep</artifactId>
181       <version>${junit.version}</version>
182       <scope>test</scope>
183     </dependency>
184   </dependencies>
185 </project>