Bump odlparent 2.0.4 to 2.0.5
[controller.git] / opendaylight / archetypes / opendaylight-startup / src / main / resources / archetype-resources / features / odl-X-rest / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6
7     <parent>
8         <groupId>org.opendaylight.odlparent</groupId>
9         <artifactId>single-feature-parent</artifactId>
10         <version>2.0.5</version>
11         <relativePath/>
12     </parent>
13
14     <groupId>${groupId}</groupId>
15     <artifactId>odl-${artifactId}-rest</artifactId>
16     <version>${version}</version>
17     <packaging>feature</packaging>
18
19     <name>OpenDaylight :: ${artifactId} :: REST [Karaf Feature]</name>
20
21     <dependencyManagement>
22         <dependencies>
23             <dependency>
24                 <groupId>org.opendaylight.netconf</groupId>
25                 <artifactId>restconf-artifacts</artifactId>
26                 <version>1.7.0-SNAPSHOT</version>
27                 <type>pom</type>
28                 <scope>import</scope>
29             </dependency>
30         </dependencies>
31     </dependencyManagement>
32
33     <dependencies>
34         <dependency>
35             <groupId>org.opendaylight.netconf</groupId>
36             <artifactId>odl-restconf</artifactId>
37             <type>xml</type>
38             <classifier>features</classifier>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>odl-${artifactId}-cli</artifactId>
43             <version>${project.version}</version>
44             <type>xml</type>
45             <classifier>features</classifier>
46         </dependency>
47     </dependencies>
48
49 </project>