Merge "Bug 6278: Depend on odlparent's version of karaf.branding & opendaylight-karaf...
[lispflowmapping.git] / mappingservice / 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
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.api</artifactId>
13   <version>1.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <name>Mapping Service Public APIs</name>
16
17   <properties>
18     <pmd.cpd.fail>true</pmd.cpd.fail>
19   </properties>
20
21   <dependencies>
22     <dependency>
23       <groupId>org.opendaylight.lispflowmapping</groupId>
24       <artifactId>mappingservice.lisp-proto</artifactId>
25       <version>${project.version}</version>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>config-api</artifactId>
30       <version>0.5.0-SNAPSHOT</version>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.mdsal.model</groupId>
34       <artifactId>yang-ext</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.mdsal.model</groupId>
38       <artifactId>ietf-inet-types-2013-07-15</artifactId>
39     </dependency>
40   </dependencies>
41
42   <build>
43     <pluginManagement>
44       <plugins>
45         <plugin>
46           <!-- Enforce odlparent checkstyle -->
47           <groupId>org.apache.maven.plugins</groupId>
48           <artifactId>maven-checkstyle-plugin</artifactId>
49           <configuration>
50             <includeTestSourceDirectory>true</includeTestSourceDirectory>
51             <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
52           </configuration>
53         </plugin>
54       </plugins>
55     </pluginManagement>
56   </build>
57
58   <!--
59       Maven Site Configuration
60
61       The following configuration is necessary for maven-site-plugin to
62       correctly identify the correct deployment path for OpenDaylight Maven
63       sites.
64   -->
65   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
66
67   <distributionManagement>
68     <site>
69       <id>opendaylight-site</id>
70       <url>${nexus.site.url}/${project.artifactId}/</url>
71     </site>
72   </distributionManagement>
73
74 </project>