Fixed Checkstyle violation errors in mdsal-common-api
[mdsal.git] / common / mdsal-common-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.mdsal</groupId>
6     <artifactId>mdsal-parent</artifactId>
7     <version>2.2.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <artifactId>mdsal-common-api</artifactId>
12   <packaging>bundle</packaging>
13
14   <dependencies>
15     <dependency>
16       <groupId>com.google.guava</groupId>
17       <artifactId>guava</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.yangtools</groupId>
21       <artifactId>concepts</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.yangtools</groupId>
25       <artifactId>util</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.yangtools</groupId>
29       <artifactId>yang-common</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>junit</groupId>
33       <artifactId>junit</artifactId>
34       <scope>test</scope>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.yangtools</groupId>
38       <artifactId>mockito-configuration</artifactId>
39       <scope>test</scope>
40     </dependency>
41   </dependencies>
42
43   <build>
44       <plugins>
45             <plugin>
46                 <groupId>org.apache.maven.plugins</groupId>
47                 <artifactId>maven-checkstyle-plugin</artifactId>
48                 <configuration>
49                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
50                 </configuration>
51             </plugin>
52         </plugins>
53   </build>
54
55   <scm>
56     <connection>scm:git:http://git.opendaylight.org/gerrit/mdsal.git</connection>
57     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
58     <tag>HEAD</tag>
59     <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
60   </scm>
61
62   <!--
63       Maven Site Configuration
64
65       The following configuration is necessary for maven-site-plugin to
66       correctly identify the correct deployment path for OpenDaylight Maven
67       sites.
68   -->
69   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
70
71   <distributionManagement>
72     <site>
73       <id>opendaylight-site</id>
74       <url>${nexus.site.url}/${project.artifactId}/</url>
75     </site>
76   </distributionManagement>
77
78 </project>