Switch from config-parent to {odl,binding-}parent
[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   </parent>
10
11   <groupId>org.opendaylight.lispflowmapping</groupId>
12   <artifactId>mappingservice.inmemorydb</artifactId>
13   <version>1.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <name>Mapping Service Inmemory Mappings Database</name>
16
17   <dependencies>
18     <dependency>
19       <groupId>${project.groupId}</groupId>
20       <artifactId>mappingservice.api</artifactId>
21       <version>${project.version}</version>
22     </dependency>
23   </dependencies>
24
25   <build>
26     <pluginManagement>
27       <plugins>
28         <plugin>
29           <!-- Temporarily override the odlparent checkstyle configuration.
30                We want to enforce some simple rules and add more as we clean up code -->
31           <artifactId>maven-checkstyle-plugin</artifactId>
32           <configuration>
33             <configLocation>checkstyle/java_rules.xml</configLocation>
34             <includeTestSourceDirectory>true</includeTestSourceDirectory>
35             <excludes>org/opendaylight/yang/gen/**,**/config/yang/**</excludes>
36             <failsOnError>true</failsOnError>
37             <consoleOutput>true</consoleOutput>
38           </configuration>
39           <dependencies>
40             <dependency>
41               <groupId>org.opendaylight.lispflowmapping</groupId>
42               <artifactId>common.build.tools</artifactId>
43               <version>${project.version}</version>
44             </dependency>
45           </dependencies>
46           <executions>
47             <execution>
48               <goals>
49                 <goal>check</goal>
50               </goals>
51               <phase>process-sources</phase>
52             </execution>
53           </executions>
54         </plugin>
55       </plugins>
56     </pluginManagement>
57   </build>
58
59   <!--
60       Maven Site Configuration
61
62       The following configuration is necessary for maven-site-plugin to
63       correctly identify the correct deployment path for OpenDaylight Maven
64       sites.
65   -->
66   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
67
68   <distributionManagement>
69     <site>
70       <id>opendaylight-site</id>
71       <url>${nexus.site.url}/${project.artifactId}/</url>
72     </site>
73   </distributionManagement>
74
75 </project>