Checkstyle: fix issues and enforce on inmemorydb
[lispflowmapping.git] / mappingservice / inmemorydb / 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
5   <parent>
6     <groupId>org.opendaylight.mdsal</groupId>
7     <artifactId>binding-parent</artifactId>
8     <version>0.9.0-SNAPSHOT</version>
9     <relativePath/>
10   </parent>
11
12   <groupId>org.opendaylight.lispflowmapping</groupId>
13   <artifactId>mappingservice.inmemorydb</artifactId>
14   <version>1.4.0-SNAPSHOT</version>
15   <packaging>bundle</packaging>
16   <name>Mapping Service Inmemory Mappings Database</name>
17
18   <dependencies>
19     <dependency>
20       <groupId>${project.groupId}</groupId>
21       <artifactId>mappingservice.api</artifactId>
22       <version>${project.version}</version>
23     </dependency>
24   </dependencies>
25
26   <build>
27     <pluginManagement>
28       <plugins>
29         <plugin>
30           <!-- Enforce odlparent checkstyle -->
31           <groupId>org.apache.maven.plugins</groupId>
32           <artifactId>maven-checkstyle-plugin</artifactId>
33           <configuration>
34             <includeTestSourceDirectory>true</includeTestSourceDirectory>
35             <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
36           </configuration>
37         </plugin>
38       </plugins>
39     </pluginManagement>
40   </build>
41
42   <!--
43       Maven Site Configuration
44
45       The following configuration is necessary for maven-site-plugin to
46       correctly identify the correct deployment path for OpenDaylight Maven
47       sites.
48   -->
49   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
50
51   <distributionManagement>
52     <site>
53       <id>opendaylight-site</id>
54       <url>${nexus.site.url}/${project.artifactId}/</url>
55     </site>
56   </distributionManagement>
57
58 </project>