c77795383844a76c192768a3ccd7133f8e01f7fd
[controller.git] / opendaylight / archetypes / opendaylight-startup / src / main / resources / archetype-resources / features / odl-__artifactId__-cli / 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>3.0.2</version>
11         <relativePath/>
12     </parent>
13
14     <groupId>${groupId}</groupId>
15     <artifactId>odl-${artifactId}-cli</artifactId>
16     <version>${version}</version>
17     <packaging>feature</packaging>
18
19     <name>OpenDaylight :: ${artifactId} :: CLI [Karaf Feature]</name>
20
21     <dependencyManagement>
22         <dependencies>
23             <dependency>
24                 <groupId>org.opendaylight.mdsal.model</groupId>
25                 <artifactId>mdsal-model-artifacts</artifactId>
26                 <version>0.13.0-SNAPSHOT</version>
27                 <type>pom</type>
28                 <scope>import</scope>
29             </dependency>
30             <dependency>
31                 <groupId>org.opendaylight.controller</groupId>
32                 <artifactId>mdsal-artifacts</artifactId>
33                 <version>1.8.0-SNAPSHOT</version>
34                 <type>pom</type>
35                 <scope>import</scope>
36             </dependency>
37         </dependencies>
38     </dependencyManagement>
39
40     <dependencies>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>odl-${artifactId}</artifactId>
44             <version>${project.version}</version>
45             <type>xml</type>
46             <classifier>features</classifier>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>${artifactId}-cli</artifactId>
51             <version>${project.version}</version>
52         </dependency>
53     </dependencies>
54
55 </project>