Merge "Bug 6297: Change subscriber's RLOC selection algo"
[lispflowmapping.git] / mappingservice / lisp-proto / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 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 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.mdsal</groupId>
14     <artifactId>binding-parent</artifactId>
15     <version>0.9.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.lispflowmapping</groupId>
20   <artifactId>mappingservice.lisp-proto</artifactId>
21   <version>1.4.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <name>Mapping Service LISP Protocol</name>
24
25   <properties>
26     <pmd.cpd.fail>true</pmd.cpd.fail>
27   </properties>
28
29   <dependencies>
30     <dependency>
31       <groupId>org.opendaylight.mdsal.model</groupId>
32       <artifactId>ietf-inet-types-2013-07-15</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.mdsal.model</groupId>
36       <artifactId>ietf-yang-types-20130715</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.mdsal.model</groupId>
40       <artifactId>iana-afn-safi</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.apache.commons</groupId>
44       <artifactId>commons-lang3</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.lispflowmapping</groupId>
48       <artifactId>common.unittest.tools</artifactId>
49       <version>${project.version}</version>
50       <scope>test</scope>
51     </dependency>
52     <dependency>
53       <groupId>junit-addons</groupId>
54       <artifactId>junit-addons</artifactId>
55       <version>1.4</version>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.mockito</groupId>
60       <artifactId>mockito-core</artifactId>
61       <scope>test</scope>
62     </dependency>
63   </dependencies>
64
65   <build>
66     <pluginManagement>
67       <plugins>
68         <plugin>
69           <!-- Enforce odlparent checkstyle -->
70           <groupId>org.apache.maven.plugins</groupId>
71           <artifactId>maven-checkstyle-plugin</artifactId>
72           <configuration>
73             <includeTestSourceDirectory>true</includeTestSourceDirectory>
74             <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
75           </configuration>
76         </plugin>
77       </plugins>
78     </pluginManagement>
79   </build>
80
81   <!--
82       Maven Site Configuration
83
84       The following configuration is necessary for maven-site-plugin to
85       correctly identify the correct deployment path for OpenDaylight Maven
86       sites.
87   -->
88   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
89
90   <distributionManagement>
91     <site>
92       <id>opendaylight-site</id>
93       <url>${nexus.site.url}/${project.artifactId}/</url>
94     </site>
95   </distributionManagement>
96
97 </project>