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