f5d79b23cf054a4d2c9ded91518474667d0a6805
[neutron.git] / features / production / odl-neutron-transcriber / 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>2.0.2</version>
12         <relativePath/>
13     </parent>
14
15     <groupId>org.opendaylight.neutron</groupId>
16     <artifactId>odl-neutron-transcriber</artifactId>
17     <version>0.9.0-SNAPSHOT</version>
18     <packaging>feature</packaging>
19     <name>OpenDaylight :: Neutron :: Implementation</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.6.0-SNAPSHOT</version>
31                 <type>pom</type>
32                 <scope>import</scope>
33             </dependency>
34         </dependencies>
35     </dependencyManagement>
36
37     <dependencies>
38         <dependency>
39             <groupId>org.opendaylight.controller</groupId>
40             <artifactId>odl-mdsal-broker</artifactId>
41             <type>xml</type>
42             <classifier>features</classifier>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>odl-neutron-spi</artifactId>
47             <version>${project.version}</version>
48             <type>xml</type>
49             <classifier>features</classifier>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>odl-neutron-northbound-api</artifactId>
54             <version>${project.version}</version>
55             <type>xml</type>
56             <classifier>features</classifier>
57         </dependency>
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>transcriber</artifactId>
61             <version>${project.version}</version>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>model</artifactId>
66             <version>${project.version}</version>
67         </dependency>
68         <dependency>
69             <groupId>org.osgi</groupId>
70             <artifactId>org.osgi.core</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>javax.inject</groupId>
74             <artifactId>javax.inject</artifactId>
75         </dependency>
76     </dependencies>
77
78 </project>