Bump versions by x.(y+1).z for next dev cycle
[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.11.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.lispflowmapping</groupId>
20   <artifactId>mappingservice.lisp-proto</artifactId>
21   <version>1.6.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: lispflowmapping :: ${project.artifactId}</name>
26
27   <properties>
28     <pmd.cpd.fail>true</pmd.cpd.fail>
29   </properties>
30
31   <dependencies>
32     <dependency>
33       <groupId>org.opendaylight.mdsal.model</groupId>
34       <artifactId>ietf-inet-types-2013-07-15</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.mdsal.model</groupId>
38       <artifactId>ietf-yang-types-20130715</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.mdsal.model</groupId>
42       <artifactId>iana-afn-safi</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.apache.commons</groupId>
46       <artifactId>commons-lang3</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.lispflowmapping</groupId>
50       <artifactId>common.unittest.tools</artifactId>
51       <version>${project.version}</version>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>junit-addons</groupId>
56       <artifactId>junit-addons</artifactId>
57       <version>1.4</version>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.mockito</groupId>
62       <artifactId>mockito-core</artifactId>
63       <scope>test</scope>
64     </dependency>
65   </dependencies>
66
67   <build>
68     <pluginManagement>
69       <plugins>
70         <plugin>
71           <!-- Enforce odlparent checkstyle -->
72           <groupId>org.apache.maven.plugins</groupId>
73           <artifactId>maven-checkstyle-plugin</artifactId>
74           <configuration>
75             <includeTestSourceDirectory>true</includeTestSourceDirectory>
76             <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
77           </configuration>
78         </plugin>
79       </plugins>
80     </pluginManagement>
81   </build>
82
83   <!--
84       Maven Site Configuration
85
86       The following configuration is necessary for maven-site-plugin to
87       correctly identify the correct deployment path for OpenDaylight Maven
88       sites.
89   -->
90   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
91
92   <distributionManagement>
93     <site>
94       <id>opendaylight-site</id>
95       <url>${nexus.site.url}/${project.artifactId}/</url>
96     </site>
97   </distributionManagement>
98
99 </project>