Switch from config-parent to {odl,binding-}parent
[lispflowmapping.git] / mappingservice / clustering / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2016 Cisco Systems, Inc. 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
10 <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">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.lispflowmapping</groupId>
15     <artifactId>mappingservice-parent</artifactId>
16     <version>1.4.0-SNAPSHOT</version>
17   </parent>
18
19   <artifactId>mappingservice.clustering</artifactId>
20   <packaging>bundle</packaging>
21   <name>Mapping Service Clustering</name>
22
23   <dependencies>
24     <dependency>
25       <groupId>org.slf4j</groupId>
26       <artifactId>slf4j-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller</groupId>
30       <artifactId>sal-common-api</artifactId>
31       <version>1.4.0-SNAPSHOT</version>
32     </dependency>
33   </dependencies>
34
35   <build>
36     <pluginManagement>
37       <plugins>
38         <plugin>
39           <!-- Enforce odlparent checkstyle -->
40           <groupId>org.apache.maven.plugins</groupId>
41           <artifactId>maven-checkstyle-plugin</artifactId>
42           <configuration>
43             <includeTestSourceDirectory>true</includeTestSourceDirectory>
44             <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
45           </configuration>
46         </plugin>
47       </plugins>
48     </pluginManagement>
49   </build>
50
51   <!--
52       Maven Site Configuration
53
54       The following configuration is necessary for maven-site-plugin to
55       correctly identify the correct deployment path for OpenDaylight Maven
56       sites.
57   -->
58   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
59
60   <distributionManagement>
61     <site>
62       <id>opendaylight-site</id>
63       <url>${nexus.site.url}/${project.artifactId}/</url>
64     </site>
65   </distributionManagement>
66 </project>