Merge "Provide Karaf 4 features"
[lispflowmapping.git] / features / features-lispflowmapping / 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.8.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.lispflowmapping</groupId>
20   <artifactId>features-lispflowmapping</artifactId>
21   <version>1.5.0-SNAPSHOT</version>
22   <!-- <name> formatting is used by autorelease to parse and notify projects on
23        build failure. Please do not modify this unless you have a good reason. -->
24   <name>ODL :: lispflowmapping :: ${project.artifactId}</name>
25
26   <properties>
27     <dlux.core.version>0.5.0-SNAPSHOT</dlux.core.version>
28     <dluxapps.version>0.5.0-SNAPSHOT</dluxapps.version>
29     <mdsal.version>1.5.0-SNAPSHOT</mdsal.version>
30     <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
31     <neutron.version>0.8.0-SNAPSHOT</neutron.version>
32     <restconf.version>1.5.0-SNAPSHOT</restconf.version>
33   </properties>
34
35   <dependencyManagement>
36     <dependencies>
37       <!-- project specific dependencies -->
38       <dependency>
39         <groupId>org.opendaylight.controller</groupId>
40         <artifactId>mdsal-artifacts</artifactId>
41         <version>${mdsal.version}</version>
42         <type>pom</type>
43         <scope>import</scope>
44       </dependency>
45     </dependencies>
46   </dependencyManagement>
47
48   <dependencies>
49     <dependency>
50       <groupId>org.opendaylight.mdsal.model</groupId>
51       <artifactId>features-mdsal-model</artifactId>
52       <version>${mdsal.model.version}</version>
53       <classifier>features</classifier>
54       <type>xml</type>
55       <scope>runtime</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>features-mdsal</artifactId>
60       <classifier>features</classifier>
61       <type>xml</type>
62       <scope>runtime</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.netconf</groupId>
66       <artifactId>features-restconf</artifactId>
67       <version>${restconf.version}</version>
68       <classifier>features</classifier>
69       <type>xml</type>
70       <scope>runtime</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.dlux</groupId>
74       <artifactId>features-dlux</artifactId>
75       <version>${dlux.core.version}</version>
76       <classifier>features</classifier>
77       <type>xml</type>
78       <scope>runtime</scope>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.dluxapps</groupId>
82       <artifactId>features-dluxapps</artifactId>
83       <version>${dluxapps.version}</version>
84       <classifier>features</classifier>
85       <type>xml</type>
86       <scope>runtime</scope>
87     </dependency>
88     <dependency>
89       <groupId>${project.groupId}</groupId>
90       <artifactId>mappingservice.dsbackend</artifactId>
91       <version>${project.version}</version>
92     </dependency>
93     <dependency>
94       <groupId>${project.groupId}</groupId>
95       <artifactId>mappingservice.implementation</artifactId>
96       <version>${project.version}</version>
97     </dependency>
98     <dependency>
99       <groupId>${project.groupId}</groupId>
100       <artifactId>mappingservice.southbound</artifactId>
101       <version>${project.version}</version>
102     </dependency>
103     <dependency>
104       <groupId>${project.groupId}</groupId>
105       <artifactId>mappingservice.api</artifactId>
106       <version>${project.version}</version>
107     </dependency>
108     <dependency>
109       <groupId>${project.groupId}</groupId>
110       <artifactId>mappingservice.inmemorydb</artifactId>
111       <version>${project.version}</version>
112     </dependency>
113     <dependency>
114       <groupId>${project.groupId}</groupId>
115       <artifactId>mappingservice.neutron</artifactId>
116       <version>${project.version}</version>
117     </dependency>
118     <dependency>
119       <groupId>${project.groupId}</groupId>
120       <artifactId>mappingservice.shell</artifactId>
121       <version>${project.version}</version>
122     </dependency>
123     <dependency>
124       <groupId>${project.groupId}</groupId>
125       <artifactId>mappingservice.lisp-proto</artifactId>
126       <version>${project.version}</version>
127     </dependency>
128     <dependency>
129       <groupId>${project.groupId}</groupId>
130       <artifactId>mappingservice.config</artifactId>
131       <version>${project.version}</version>
132     </dependency>
133     <dependency>
134       <groupId>${project.groupId}</groupId>
135       <artifactId>lispflowmapping-ui-bundle</artifactId>
136       <version>${project.version}</version>
137     </dependency>
138     <dependency>
139       <groupId>org.opendaylight.neutron</groupId>
140       <artifactId>features-neutron</artifactId>
141       <version>${neutron.version}</version>
142       <classifier>features</classifier>
143       <type>xml</type>
144     </dependency>
145   </dependencies>
146
147   <!--
148       Maven Site Configuration
149
150       The following configuration is necessary for maven-site-plugin to
151       correctly identify the correct deployment path for OpenDaylight Maven
152       sites.
153   -->
154   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
155
156   <distributionManagement>
157     <site>
158       <id>opendaylight-site</id>
159       <url>${nexus.site.url}/${project.artifactId}/</url>
160     </site>
161   </distributionManagement>
162
163 </project>