OPNFLWPLUG-929 : Remove deprecated guava library
[openflowplugin.git] / features-aggregator / odl-openflowplugin-flow-services-rest / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.odlparent</groupId>
7         <artifactId>single-feature-parent</artifactId>
8         <version>2.0.5</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.opendaylight.openflowplugin</groupId>
13     <artifactId>odl-openflowplugin-flow-services-rest</artifactId>
14     <packaging>feature</packaging>
15     <version>0.6.0-SNAPSHOT</version>
16
17     <name>OpenDaylight :: Openflow Plugin :: Flow Services :: REST</name>
18
19     <properties>
20         <restconf.version>1.7.0-SNAPSHOT</restconf.version>
21     </properties>
22
23     <dependencyManagement>
24         <dependencies>
25             <!-- restconf -->
26             <dependency>
27                 <groupId>org.opendaylight.netconf</groupId>
28                 <artifactId>restconf-artifacts</artifactId>
29                 <version>${restconf.version}</version>
30                 <scope>import</scope>
31                 <type>pom</type>
32             </dependency>
33         </dependencies>
34     </dependencyManagement>
35
36     <dependencies>
37         <!-- feature dependencies -->
38         <dependency>
39             <groupId>org.opendaylight.openflowplugin</groupId>
40             <artifactId>odl-openflowplugin-flow-services</artifactId>
41             <version>${project.version}</version>
42             <classifier>features</classifier>
43             <type>xml</type>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.netconf</groupId>
47             <artifactId>odl-restconf</artifactId>
48             <version>${restconf.version}</version>
49             <classifier>features</classifier>
50             <type>xml</type>
51         </dependency>
52     </dependencies>
53
54 </project>