d6256c1af81400f1dbdad8d534767e21bf4879b0
[neutron.git] / features / production / odl-neutron-northbound-api / 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.neutron</groupId>
14         <artifactId>neutron-single-feature-parent</artifactId>
15         <version>0.12.2-SNAPSHOT</version>
16         <relativePath>../../parent</relativePath>
17     </parent>
18
19     <artifactId>odl-neutron-northbound-api</artifactId>
20     <packaging>feature</packaging>
21     <name>OpenDaylight :: Neutron :: Northbound</name>
22
23     <properties>
24         <config.configfile.directory>etc/opendaylight/datastore/initial/config</config.configfile.directory>
25         <config.configfile.file>neutron-northbound-api-config.xml</config.configfile.file>
26     </properties>
27
28     <dependencyManagement>
29         <dependencies>
30             <dependency>
31                 <groupId>org.opendaylight.infrautils</groupId>
32                 <artifactId>infrautils-artifacts</artifactId>
33                 <version>1.5.2-SNAPSHOT</version>
34                 <type>pom</type>
35                 <scope>import</scope>
36             </dependency>
37             <dependency>
38                 <groupId>org.opendaylight.aaa</groupId>
39                 <artifactId>aaa-artifacts</artifactId>
40                 <version>0.9.2-SNAPSHOT</version>
41                 <type>pom</type>
42                 <scope>import</scope>
43             </dependency>
44             <dependency>
45                 <groupId>org.opendaylight.netconf</groupId>
46                 <artifactId>restconf-artifacts</artifactId>
47                 <version>1.9.2-SNAPSHOT</version>
48                 <type>pom</type>
49                 <scope>import</scope>
50             </dependency>
51         </dependencies>
52     </dependencyManagement>
53
54     <dependencies>
55         <dependency>
56             <groupId>org.opendaylight.infrautils</groupId>
57             <artifactId>odl-infrautils-utils</artifactId>
58             <type>xml</type>
59             <classifier>features</classifier>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.infrautils</groupId>
63             <artifactId>odl-infrautils-inject</artifactId>
64             <type>xml</type>
65             <classifier>features</classifier>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.aaa</groupId>
69             <artifactId>odl-aaa-shiro</artifactId>
70             <type>xml</type>
71             <classifier>features</classifier>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.netconf</groupId>
75             <artifactId>odl-restconf</artifactId>
76             <type>xml</type>
77             <classifier>features</classifier>
78         </dependency>
79         <dependency>
80             <groupId>${project.groupId}</groupId>
81             <artifactId>odl-neutron-spi</artifactId>
82             <version>${project.version}</version>
83             <type>xml</type>
84             <classifier>features</classifier>
85         </dependency>
86         <dependency>
87             <groupId>${project.groupId}</groupId>
88             <artifactId>northbound-api</artifactId>
89             <version>${project.version}</version>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.neutron</groupId>
93             <artifactId>northbound-api</artifactId>
94             <version>${project.version}</version>
95             <type>xml</type>
96             <classifier>config</classifier>
97         </dependency>
98         <!-- because the REST API classes @Inject @Reference INeutronCRUD dependencies,
99              we do need a dependency to the implementation of those INeutronCRUDs in transcriber;
100              otherwise this feature would not work standalone, and SFT will fail. -->
101         <dependency>
102             <groupId>${project.groupId}</groupId>
103             <artifactId>transcriber</artifactId>
104             <version>${project.version}</version>
105         </dependency>
106      </dependencies>
107 </project>