Release Oxygen
[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"
14          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
15   <modelVersion>4.0.0</modelVersion>
16
17   <parent>
18     <groupId>org.opendaylight.mdsal</groupId>
19     <artifactId>binding-parent</artifactId>
20     <version>0.12.2</version>
21     <relativePath/>
22   </parent>
23
24   <groupId>${groupId}</groupId>
25   <artifactId>${artifactId}-cli</artifactId>
26   <version>${version}</version>
27   <!-- <name> formatting is used by autorelease to parse and notify projects on
28        build failure. Please do not modify this unless you have a good reason. -->
29   <name>ODL :: ${groupId} :: ${project.artifactId}</name>
30   <packaging>bundle</packaging>
31
32   <dependencyManagement>
33       <dependencies>
34           <dependency>
35               <groupId>org.opendaylight.controller</groupId>
36               <artifactId>mdsal-artifacts</artifactId>
37               <version>1.7.2</version>
38               <type>pom</type>
39               <scope>import</scope>
40           </dependency>
41       </dependencies>
42   </dependencyManagement>
43
44   <dependencies>
45     <!-- Project Dependencies -->
46     <dependency>
47       <groupId>${symbol_dollar}{project.groupId}</groupId>
48       <artifactId>${artifactId}-api</artifactId>
49       <version>${symbol_dollar}{project.version}</version>
50     </dependency>
51
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>sal-binding-api</artifactId>
55     </dependency>
56
57     <!-- Apache Karaf console dependency -->
58     <dependency>
59       <groupId>org.apache.karaf.shell</groupId>
60       <artifactId>org.apache.karaf.shell.console</artifactId>
61       <version>${karaf.version}</version>
62     </dependency>
63     <dependency>
64       <groupId>org.apache.karaf.shell</groupId>
65       <artifactId>org.apache.karaf.shell.table</artifactId>
66       <version>${karaf.version}</version>
67     </dependency>
68   </dependencies>
69
70   <build>
71     <plugins>
72       <plugin>
73         <groupId>org.apache.maven.plugins</groupId>
74         <artifactId>maven-checkstyle-plugin</artifactId>
75         <configuration>
76           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
77         </configuration>
78       </plugin>
79       <plugin>
80         <groupId>org.codehaus.mojo</groupId>
81         <artifactId>findbugs-maven-plugin</artifactId>
82         <configuration>
83           <failOnError>true</failOnError>
84         </configuration>
85       </plugin>
86     </plugins>
87   </build>
88 </project>