83bb22458e7deaedfb56ec6116d973a0d3b34419
[neutron.git] / features / production / odl-neutron-service / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <project xmlns="http://maven.apache.org/POM/4.0.0"
4          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
6     <modelVersion>4.0.0</modelVersion>
7
8     <parent>
9         <groupId>org.opendaylight.odlparent</groupId>
10         <artifactId>single-feature-parent</artifactId>
11         <version>3.0.2</version>
12         <relativePath/>
13     </parent>
14
15     <groupId>org.opendaylight.neutron</groupId>
16     <artifactId>odl-neutron-service</artifactId>
17     <version>0.11.0-SNAPSHOT</version>
18     <packaging>feature</packaging>
19     <name>OpenDaylight :: Neutron :: Service</name>
20
21     <properties>
22         <explicitFeatureDependencies>true</explicitFeatureDependencies>
23     </properties>
24
25     <dependencyManagement>
26         <dependencies>
27             <dependency>
28                 <groupId>org.opendaylight.controller</groupId>
29                 <artifactId>mdsal-artifacts</artifactId>
30                 <version>1.8.0-SNAPSHOT</version>
31                 <type>pom</type>
32                 <scope>import</scope>
33             </dependency>
34         </dependencies>
35     </dependencyManagement>
36
37     <dependencies>
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>odl-neutron-spi</artifactId>
41             <version>${project.version}</version>
42             <type>xml</type>
43             <classifier>features</classifier>
44         </dependency>
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>odl-neutron-northbound-api</artifactId>
48             <version>${project.version}</version>
49             <type>xml</type>
50             <classifier>features</classifier>
51         </dependency>
52
53         <!-- Transcriber's dependencies -->
54         <dependency>
55             <groupId>org.opendaylight.controller</groupId>
56             <artifactId>odl-mdsal-broker</artifactId>
57             <type>xml</type>
58             <classifier>features</classifier>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>odl-neutron-spi</artifactId>
63             <version>${project.version}</version>
64             <type>xml</type>
65             <classifier>features</classifier>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>odl-neutron-northbound-api</artifactId>
70             <version>${project.version}</version>
71             <type>xml</type>
72             <classifier>features</classifier>
73         </dependency>
74         <dependency>
75             <groupId>${project.groupId}</groupId>
76             <artifactId>transcriber</artifactId>
77             <version>${project.version}</version>
78         </dependency>
79         <dependency>
80             <groupId>${project.groupId}</groupId>
81             <artifactId>model</artifactId>
82             <version>${project.version}</version>
83         </dependency>
84         <dependency>
85             <groupId>javax.inject</groupId>
86             <artifactId>javax.inject</artifactId>
87         </dependency>
88     </dependencies>
89
90 </project>