Bump versions by 0.1.0 for next dev cycle
[netvirt.git] / vpnservice / statemanager / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. 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"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12   <parent>
13     <groupId>org.opendaylight.netvirt</groupId>
14     <artifactId>config-parent</artifactId>
15     <version>0.4.0-SNAPSHOT</version>
16     <relativePath>../../commons/config-parent</relativePath>
17   </parent>
18
19   <modelVersion>4.0.0</modelVersion>
20   <artifactId>statemanager-impl</artifactId>
21   <version>0.4.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <dependencies>
24     <dependency>
25       <groupId>org.apache.commons</groupId>
26       <artifactId>commons-lang3</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller</groupId>
30       <artifactId>config-util</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>sal-binding-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>${project.groupId}</groupId>
38       <artifactId>bgpmanager-api</artifactId>
39       <version>${vpnservices.version}</version>
40     </dependency>
41     <dependency>
42       <groupId>${project.groupId}</groupId>
43       <artifactId>elanmanager-api</artifactId>
44       <version>${vpnservices.version}</version>
45     </dependency>
46     <dependency>
47       <groupId>${project.groupId}</groupId>
48       <artifactId>fibmanager-api</artifactId>
49       <version>${vpnservices.version}</version>
50     </dependency>
51     <dependency>
52       <groupId>${project.groupId}</groupId>
53       <artifactId>neutronvpn-api</artifactId>
54       <version>${vpnservices.version}</version>
55     </dependency>
56     <dependency>
57       <groupId>${project.groupId}</groupId>
58       <artifactId>vpnmanager-api</artifactId>
59       <version>${vpnservices.version}</version>
60     </dependency>
61   </dependencies>
62
63   <build>
64     <plugins>
65       <plugin>
66         <groupId>org.apache.maven.plugins</groupId>
67         <artifactId>maven-checkstyle-plugin</artifactId>
68         <configuration>
69           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
70         </configuration>
71       </plugin>
72     </plugins>
73   </build>
74
75   <!--
76       Maven Site Configuration
77
78       The following configuration is necessary for maven-site-plugin to
79       correctly identify the correct deployment path for OpenDaylight Maven
80       sites.
81   -->
82   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
83
84   <distributionManagement>
85     <site>
86       <id>opendaylight-site</id>
87       <url>${nexus.site.url}/${project.artifactId}/</url>
88     </site>
89   </distributionManagement>
90 </project>