Fix issues related to checkstyle compliance in module mdsalutil-impl
[genius.git] / mdsalutil / mdsalutil-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Ericsson India Global Services Pvt Ltd. 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.genius</groupId>
15     <artifactId>config-parent</artifactId>
16     <version>0.2.0-SNAPSHOT</version>
17     <relativePath>../../commons/config-parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.genius</groupId>
21   <artifactId>mdsalutil-impl</artifactId>
22   <version>0.2.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>sal-binding-api</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.openflowplugin.model</groupId>
32       <artifactId>model-flow-base</artifactId>
33       <version>${openflowplugin.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.genius</groupId>
37       <artifactId>mdsalutil-api</artifactId>
38       <version>0.2.0-SNAPSHOT</version>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.openflowplugin.model</groupId>
42       <artifactId>model-flow-service</artifactId>
43       <version>${openflowplugin.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>javax.inject</groupId>
47       <artifactId>javax.inject</artifactId>
48     </dependency>
49     <!--  TEST Dependencies -->
50     <dependency>
51       <groupId>org.powermock</groupId>
52       <artifactId>powermock-module-junit4</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.powermock</groupId>
57       <artifactId>powermock-api-mockito</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>sal-binding-broker-impl</artifactId>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>sal-binding-broker-impl</artifactId>
68       <version>${mdsal.version}</version>
69       <scope>test</scope>
70       <type>test-jar</type>
71     </dependency>
72     <dependency>
73       <groupId>${project.groupId}</groupId>
74       <artifactId>mdsalutil-api</artifactId>
75       <version>${project.version}</version>
76     </dependency>
77   </dependencies>
78   <build>
79     <plugins>
80       <plugin>
81         <groupId>org.apache.aries.blueprint</groupId>
82         <artifactId>blueprint-maven-plugin</artifactId>
83       </plugin>
84       <plugin>
85         <groupId>org.apache.maven.plugins</groupId>
86         <artifactId>maven-checkstyle-plugin</artifactId>
87         <configuration>
88           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
89         </configuration>
90       </plugin>
91     </plugins>
92   </build>
93 </project>