Add artifact name formatting used by autorelease
[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   <!-- <name> formatting is used by autorelease to parse and notify projects on
27        build failure. Please do not modify this unless you have a good reason. -->
28   <name>ODL :: ${groupId} :: ${project.artifactId}</name>
29   <packaging>bundle</packaging>
30
31   <dependencies>
32     <!-- Project Dependencies -->
33     <dependency>
34       <groupId>${symbol_dollar}{project.groupId}</groupId>
35       <artifactId>${artifactId}-api</artifactId>
36       <version>${symbol_dollar}{project.version}</version>
37     </dependency>
38
39     <!-- Apache Karaf console dependency -->
40     <dependency>
41       <groupId>org.apache.karaf.shell</groupId>
42       <artifactId>org.apache.karaf.shell.console</artifactId>
43       <version>${karaf.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>org.apache.karaf.shell</groupId>
47       <artifactId>org.apache.karaf.shell.table</artifactId>
48       <version>${karaf.version}</version>
49     </dependency>
50   </dependencies>
51 </project>