94f078ecba84771ef20e80ec9e12900c88d2d332
[neutron.git] / features / production / odl-neutron-spi / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2018 Intel Corporation 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>single-feature-parent</artifactId>
15         <version>3.1.2</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.neutron</groupId>
20     <artifactId>odl-neutron-spi</artifactId>
21     <version>0.11.0-SNAPSHOT</version>
22     <packaging>feature</packaging>
23     <name>OpenDaylight :: Neutron :: API</name>
24
25     <properties>
26         <explicitFeatureDependencies>true</explicitFeatureDependencies>
27     </properties>
28
29     <dependencyManagement>
30         <dependencies>
31             <dependency>
32                 <groupId>org.opendaylight.controller</groupId>
33                 <artifactId>mdsal-artifacts</artifactId>
34                 <version>1.8.0-SNAPSHOT</version>
35                 <type>pom</type>
36                 <scope>import</scope>
37             </dependency>
38             <dependency>
39                 <groupId>org.opendaylight.mdsal.model</groupId>
40                 <artifactId>mdsal-model-artifacts</artifactId>
41                 <version>0.13.0-SNAPSHOT</version>
42                 <type>pom</type>
43                 <scope>import</scope>
44             </dependency>
45         </dependencies>
46     </dependencyManagement>
47
48     <dependencies>
49         <dependency>
50             <groupId>org.opendaylight.controller</groupId>
51             <artifactId>odl-mdsal-broker</artifactId>
52             <type>xml</type>
53             <classifier>features</classifier>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.mdsal.model</groupId>
57             <artifactId>odl-mdsal-model-rfc6991</artifactId>
58             <type>xml</type>
59             <classifier>features</classifier>
60         </dependency>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>neutron-spi</artifactId>
64             <version>${project.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>commons-net</groupId>
68             <artifactId>commons-net</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>com.fasterxml.jackson.core</groupId>
72             <artifactId>jackson-annotations</artifactId>
73         </dependency>
74     </dependencies>
75
76 </project>