minor clean-up after previous change
[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.0-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.0-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.0-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.0-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.aaa</groupId>
63             <artifactId>odl-aaa-shiro</artifactId>
64             <type>xml</type>
65             <classifier>features</classifier>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.netconf</groupId>
69             <artifactId>odl-restconf</artifactId>
70             <type>xml</type>
71             <classifier>features</classifier>
72         </dependency>
73         <dependency>
74             <groupId>${project.groupId}</groupId>
75             <artifactId>odl-neutron-spi</artifactId>
76             <version>${project.version}</version>
77             <type>xml</type>
78             <classifier>features</classifier>
79         </dependency>
80         <dependency>
81             <groupId>${project.groupId}</groupId>
82             <artifactId>northbound-api</artifactId>
83             <version>${project.version}</version>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.neutron</groupId>
87             <artifactId>northbound-api</artifactId>
88             <version>${project.version}</version>
89             <type>xml</type>
90             <classifier>config</classifier>
91         </dependency>
92         <!-- because the REST API classes @Inject @Reference INeutronCRUD dependencies,
93              we do need a dependency to the implementation of those INeutronCRUDs in transcriber;
94              otherwise this feature would not work standalone, and SFT will fail. -->
95         <dependency>
96             <groupId>${project.groupId}</groupId>
97             <artifactId>transcriber</artifactId>
98             <version>${project.version}</version>
99         </dependency>
100      </dependencies>
101 </project>