Add blueprint wiring for LispFlowMapping
[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.7.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.lispflowmapping</groupId>
20   <artifactId>features-lispflowmapping</artifactId>
21   <version>1.4.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.7.0-SNAPSHOT</commons.opendaylight.version>
30     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
31     <config.version>0.5.0-SNAPSHOT</config.version>
32     <dlux.core.version>0.4.0-SNAPSHOT</dlux.core.version>
33     <features.file>features.xml</features.file>
34     <mdsal.version>1.4.0-SNAPSHOT</mdsal.version>
35     <mdsal.model.version>0.9.0-SNAPSHOT</mdsal.model.version>
36     <neutron.version>0.7.0-SNAPSHOT</neutron.version>
37     <restconf.version>1.4.0-SNAPSHOT</restconf.version>
38   </properties>
39
40   <dependencyManagement>
41     <dependencies>
42       <!-- project specific dependencies -->
43       <dependency>
44         <groupId>org.opendaylight.controller</groupId>
45         <artifactId>mdsal-artifacts</artifactId>
46         <version>${mdsal.version}</version>
47         <type>pom</type>
48         <scope>import</scope>
49       </dependency>
50     </dependencies>
51   </dependencyManagement>
52
53   <dependencies>
54     <dependency>
55       <groupId>org.opendaylight.mdsal.model</groupId>
56       <artifactId>features-mdsal-model</artifactId>
57       <version>${mdsal.model.version}</version>
58       <classifier>features</classifier>
59       <type>xml</type>
60       <scope>runtime</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>features-config</artifactId>
65       <version>${config.version}</version>
66       <classifier>features</classifier>
67       <type>xml</type>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.controller</groupId>
71       <artifactId>features-mdsal</artifactId>
72       <classifier>features</classifier>
73       <type>xml</type>
74       <scope>runtime</scope>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.netconf</groupId>
78       <artifactId>features-restconf</artifactId>
79       <version>${restconf.version}</version>
80       <classifier>features</classifier>
81       <type>xml</type>
82       <scope>runtime</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.dlux</groupId>
86       <artifactId>features-dlux</artifactId>
87       <version>${dlux.core.version}</version>
88       <classifier>features</classifier>
89       <type>xml</type>
90       <scope>runtime</scope>
91     </dependency>
92     <dependency>
93       <groupId>${project.groupId}</groupId>
94       <artifactId>mappingservice.dsbackend</artifactId>
95       <version>${project.version}</version>
96     </dependency>
97     <dependency>
98       <groupId>${project.groupId}</groupId>
99       <artifactId>mappingservice.implementation</artifactId>
100       <version>${project.version}</version>
101     </dependency>
102     <dependency>
103       <groupId>${project.groupId}</groupId>
104       <artifactId>mappingservice.southbound</artifactId>
105       <version>${project.version}</version>
106     </dependency>
107     <dependency>
108       <groupId>${project.groupId}</groupId>
109       <artifactId>mappingservice.api</artifactId>
110       <version>${project.version}</version>
111     </dependency>
112     <dependency>
113       <groupId>${project.groupId}</groupId>
114       <artifactId>mappingservice.inmemorydb</artifactId>
115       <version>${project.version}</version>
116     </dependency>
117     <!--
118     <dependency>
119       <groupId>${project.groupId}</groupId>
120       <artifactId>mappingservice.neutron</artifactId>
121       <version>${project.version}</version>
122     </dependency>
123     -->
124     <dependency>
125       <groupId>${project.groupId}</groupId>
126       <artifactId>mappingservice.shell</artifactId>
127       <version>${project.version}</version>
128     </dependency>
129     <dependency>
130       <groupId>${project.groupId}</groupId>
131       <artifactId>mappingservice.lisp-proto</artifactId>
132       <version>${project.version}</version>
133     </dependency>
134     <dependency>
135       <groupId>${project.groupId}</groupId>
136       <artifactId>lispflowmapping-ui-bundle</artifactId>
137       <version>${project.version}</version>
138     </dependency>
139     <!--
140     <dependency>
141       <groupId>org.opendaylight.neutron</groupId>
142       <artifactId>features-neutron</artifactId>
143       <version>${neutron.version}</version>
144       <classifier>features</classifier>
145       <type>xml</type>
146     </dependency>
147     -->
148   </dependencies>
149
150   <!--
151       Maven Site Configuration
152
153       The following configuration is necessary for maven-site-plugin to
154       correctly identify the correct deployment path for OpenDaylight Maven
155       sites.
156   -->
157   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
158
159   <distributionManagement>
160     <site>
161       <id>opendaylight-site</id>
162       <url>${nexus.site.url}/${project.artifactId}/</url>
163     </site>
164   </distributionManagement>
165
166 </project>