Switch from config-parent to {odl,binding-}parent
[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   <dependencies>
18     <dependency>
19       <groupId>org.opendaylight.lispflowmapping</groupId>
20       <artifactId>mappingservice.lisp-proto</artifactId>
21       <version>${project.version}</version>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>config-api</artifactId>
26       <version>0.5.0-SNAPSHOT</version>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.mdsal.model</groupId>
30       <artifactId>yang-ext</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.mdsal.model</groupId>
34       <artifactId>ietf-inet-types-2013-07-15</artifactId>
35     </dependency>
36   </dependencies>
37
38   <build>
39     <pluginManagement>
40       <plugins>
41         <plugin>
42           <!-- Enforce odlparent checkstyle -->
43           <groupId>org.apache.maven.plugins</groupId>
44           <artifactId>maven-checkstyle-plugin</artifactId>
45           <configuration>
46             <includeTestSourceDirectory>true</includeTestSourceDirectory>
47             <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
48           </configuration>
49         </plugin>
50       </plugins>
51     </pluginManagement>
52   </build>
53
54   <!--
55       Maven Site Configuration
56
57       The following configuration is necessary for maven-site-plugin to
58       correctly identify the correct deployment path for OpenDaylight Maven
59       sites.
60   -->
61   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
62
63   <distributionManagement>
64     <site>
65       <id>opendaylight-site</id>
66       <url>${nexus.site.url}/${project.artifactId}/</url>
67     </site>
68   </distributionManagement>
69
70 </project>