Bump odlparent 2.0.4 to 2.0.5
[controller.git] / opendaylight / md-sal / mdsal-trace / cli / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2017 Red Hat and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.odlparent</groupId>
15     <artifactId>bundle-parent</artifactId>
16     <version>2.0.5</version>
17     <relativePath />
18   </parent>
19
20   <groupId>org.opendaylight.controller</groupId>
21   <artifactId>mdsal-trace-cli</artifactId>
22   <version>1.7.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.controller</groupId>
29         <artifactId>mdsal-artifacts</artifactId>
30         <version>${project.version}</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34     </dependencies>
35   </dependencyManagement>
36
37   <dependencies>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>mdsal-trace-api</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.apache.karaf.shell</groupId>
44       <artifactId>org.apache.karaf.shell.core</artifactId>
45       <!-- TODO remove <version> once https://git.opendaylight.org/gerrit/#/c/62397/ is merged-->
46       <version>4.0.9</version>
47       <exclusions>
48         <exclusion>
49           <groupId>*</groupId>
50           <artifactId>*</artifactId>
51         </exclusion>
52       </exclusions>
53     </dependency>
54   </dependencies>
55
56   <build>
57     <plugins>
58       <plugin>
59         <groupId>org.apache.felix</groupId>
60         <artifactId>maven-bundle-plugin</artifactId>
61         <extensions>true</extensions>
62         <configuration>
63           <instructions>
64             <Karaf-Commands>*</Karaf-Commands>
65           </instructions>
66         </configuration>
67       </plugin>
68       <plugin>
69         <groupId>org.apache.maven.plugins</groupId>
70         <artifactId>maven-checkstyle-plugin</artifactId>
71         <configuration>
72           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
73         </configuration>
74       </plugin>
75       <plugin>
76        <groupId>org.codehaus.mojo</groupId>
77        <artifactId>findbugs-maven-plugin</artifactId>
78        <configuration>
79          <failOnError>true</failOnError>
80        </configuration>
81      </plugin>
82     </plugins>
83   </build>
84 </project>