Release Oxygen
[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" 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}-cli</artifactId>
14     <version>${version}</version>
15     <packaging>feature</packaging>
16
17     <name>OpenDaylight :: ${artifactId} :: CLI [Karaf Feature]</name>
18
19     <dependencyManagement>
20         <dependencies>
21             <dependency>
22                 <groupId>org.opendaylight.mdsal.model</groupId>
23                 <artifactId>mdsal-model-artifacts</artifactId>
24                 <version>0.12.2</version>
25                 <type>pom</type>
26                 <scope>import</scope>
27             </dependency>
28             <dependency>
29                 <groupId>org.opendaylight.controller</groupId>
30                 <artifactId>mdsal-artifacts</artifactId>
31                 <version>1.7.2</version>
32                 <type>pom</type>
33                 <scope>import</scope>
34             </dependency>
35         </dependencies>
36     </dependencyManagement>
37
38     <dependencies>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>odl-${artifactId}</artifactId>
42             <version>${project.version}</version>
43             <type>xml</type>
44             <classifier>features</classifier>
45         </dependency>
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>${artifactId}-cli</artifactId>
49             <version>${project.version}</version>
50         </dependency>
51     </dependencies>
52
53 </project>