Extract neutron-utils from mdsal-utils
[netvirt.git] / utils / neutron-utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright © 2015 Red Hat, Inc. 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
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13     <modelVersion>4.0.0</modelVersion>
14
15     <parent>
16         <groupId>org.opendaylight.mdsal</groupId>
17         <artifactId>binding-parent</artifactId>
18         <version>0.8.0-SNAPSHOT</version>
19         <relativePath/>
20     </parent>
21
22     <groupId>org.opendaylight.ovsdb</groupId>
23     <artifactId>utils.neutron-utils</artifactId>
24     <version>1.2.1-SNAPSHOT</version>
25     <packaging>bundle</packaging>
26
27     <dependencies>
28         <dependency>
29             <groupId>org.opendaylight.controller</groupId>
30             <artifactId>sal-binding-api</artifactId>
31             <version>1.3.0-SNAPSHOT</version>
32         </dependency>
33         <dependency>
34             <groupId>org.slf4j</groupId>
35             <artifactId>slf4j-api</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>utils.mdsal-utils</artifactId>
40             <version>${project.version}</version>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.neutron</groupId>
44             <artifactId>model</artifactId>
45             <version>0.6.0-SNAPSHOT</version>
46         </dependency>
47     </dependencies>
48
49     <build>
50         <plugins>
51             <plugin>
52                 <groupId>org.apache.felix</groupId>
53                 <artifactId>maven-bundle-plugin</artifactId>
54                 <extensions>true</extensions>
55             </plugin>
56         </plugins>
57     </build>
58
59 </project>