Bump versions by 0.1.0 for next dev cycle
[controller.git] / opendaylight / archetypes / opendaylight-startup / src / main / resources / archetype-resources / cli / pom.xml
1 #set( $symbol_pound = '#' )
2 #set( $symbol_dollar = '$' )
3 #set( $symbol_escape = '\' )
4 <?xml version="1.0" encoding="UTF-8"?>
5 <!-- vi: set et smarttab sw=4 tabstop=4: -->
6 <!--
7 Copyright © ${copyrightYear} ${copyright} and others. All rights reserved.
8
9 This program and the accompanying materials are made available under the
10 terms of the Eclipse Public License v1.0 which accompanies this distribution,
11 and is available at http://www.eclipse.org/legal/epl-v10.html
12 -->
13 <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">
14   <modelVersion>4.0.0</modelVersion>
15
16   <parent>
17     <groupId>org.opendaylight.controller</groupId>
18     <artifactId>config-parent</artifactId>
19     <version>0.6.0-SNAPSHOT</version>
20     <relativePath/>
21   </parent>
22
23   <groupId>${groupId}</groupId>
24   <artifactId>${artifactId}-cli</artifactId>
25   <version>${version}</version>
26   <packaging>bundle</packaging>
27
28   <dependencies>
29     <!-- Project Dependencies -->
30     <dependency>
31       <groupId>${symbol_dollar}{project.groupId}</groupId>
32       <artifactId>${artifactId}-api</artifactId>
33       <version>${symbol_dollar}{project.version}</version>
34     </dependency>
35
36     <!-- Apache Karaf console dependency -->
37     <dependency>
38       <groupId>org.apache.karaf.shell</groupId>
39       <artifactId>org.apache.karaf.shell.console</artifactId>
40       <version>${karaf.version}</version>
41     </dependency>
42     <dependency>
43       <groupId>org.apache.karaf.shell</groupId>
44       <artifactId>org.apache.karaf.shell.table</artifactId>
45       <version>${karaf.version}</version>
46     </dependency>
47   </dependencies>
48 </project>