Remove the last remnants of the CSS
[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.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>LISP Flow Mapping Project - Karaf Features</name>
23
24   <properties>
25     <dlux.core.version>0.5.0-SNAPSHOT</dlux.core.version>
26     <mdsal.version>1.5.0-SNAPSHOT</mdsal.version>
27     <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
28     <neutron.version>0.8.0-SNAPSHOT</neutron.version>
29     <restconf.version>1.5.0-SNAPSHOT</restconf.version>
30   </properties>
31
32   <dependencyManagement>
33     <dependencies>
34       <!-- project specific dependencies -->
35       <dependency>
36         <groupId>org.opendaylight.controller</groupId>
37         <artifactId>mdsal-artifacts</artifactId>
38         <version>${mdsal.version}</version>
39         <type>pom</type>
40         <scope>import</scope>
41       </dependency>
42     </dependencies>
43   </dependencyManagement>
44
45   <dependencies>
46     <dependency>
47       <groupId>org.opendaylight.mdsal.model</groupId>
48       <artifactId>features-mdsal-model</artifactId>
49       <version>${mdsal.model.version}</version>
50       <classifier>features</classifier>
51       <type>xml</type>
52       <scope>runtime</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.controller</groupId>
56       <artifactId>features-mdsal</artifactId>
57       <classifier>features</classifier>
58       <type>xml</type>
59       <scope>runtime</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.netconf</groupId>
63       <artifactId>features-restconf</artifactId>
64       <version>${restconf.version}</version>
65       <classifier>features</classifier>
66       <type>xml</type>
67       <scope>runtime</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.dlux</groupId>
71       <artifactId>features-dlux</artifactId>
72       <version>${dlux.core.version}</version>
73       <classifier>features</classifier>
74       <type>xml</type>
75       <scope>runtime</scope>
76     </dependency>
77     <dependency>
78       <groupId>${project.groupId}</groupId>
79       <artifactId>mappingservice.dsbackend</artifactId>
80       <version>${project.version}</version>
81     </dependency>
82     <dependency>
83       <groupId>${project.groupId}</groupId>
84       <artifactId>mappingservice.implementation</artifactId>
85       <version>${project.version}</version>
86     </dependency>
87     <dependency>
88       <groupId>${project.groupId}</groupId>
89       <artifactId>mappingservice.southbound</artifactId>
90       <version>${project.version}</version>
91     </dependency>
92     <dependency>
93       <groupId>${project.groupId}</groupId>
94       <artifactId>mappingservice.api</artifactId>
95       <version>${project.version}</version>
96     </dependency>
97     <dependency>
98       <groupId>${project.groupId}</groupId>
99       <artifactId>mappingservice.inmemorydb</artifactId>
100       <version>${project.version}</version>
101     </dependency>
102     <dependency>
103       <groupId>${project.groupId}</groupId>
104       <artifactId>mappingservice.neutron</artifactId>
105       <version>${project.version}</version>
106     </dependency>
107     <dependency>
108       <groupId>${project.groupId}</groupId>
109       <artifactId>mappingservice.shell</artifactId>
110       <version>${project.version}</version>
111     </dependency>
112     <dependency>
113       <groupId>${project.groupId}</groupId>
114       <artifactId>mappingservice.lisp-proto</artifactId>
115       <version>${project.version}</version>
116     </dependency>
117     <dependency>
118       <groupId>${project.groupId}</groupId>
119       <artifactId>mappingservice.config</artifactId>
120       <version>${project.version}</version>
121     </dependency>
122     <dependency>
123       <groupId>${project.groupId}</groupId>
124       <artifactId>lispflowmapping-ui-bundle</artifactId>
125       <version>${project.version}</version>
126     </dependency>
127     <dependency>
128       <groupId>org.opendaylight.neutron</groupId>
129       <artifactId>features-neutron</artifactId>
130       <version>${neutron.version}</version>
131       <classifier>features</classifier>
132       <type>xml</type>
133     </dependency>
134   </dependencies>
135
136   <!--
137       Maven Site Configuration
138
139       The following configuration is necessary for maven-site-plugin to
140       correctly identify the correct deployment path for OpenDaylight Maven
141       sites.
142   -->
143   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
144
145   <distributionManagement>
146     <site>
147       <id>opendaylight-site</id>
148       <url>${nexus.site.url}/${project.artifactId}/</url>
149     </site>
150   </distributionManagement>
151
152 </project>