Bump versions by 0.1.0 for next dev cycle
[netvirt.git] / openstack / netvirt2 / renderers / neutron / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2016 Red Hat, Inc. and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html
7 -->
8 <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">
9
10   <parent>
11     <groupId>org.opendaylight.controller</groupId>
12     <artifactId>config-parent</artifactId>
13     <version>0.6.0-SNAPSHOT</version>
14     <relativePath/>
15   </parent>
16
17   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.netvirt</groupId>
19   <artifactId>neutron</artifactId>
20   <version>1.4.0-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22
23   <properties>
24     <neutron.model.version>0.8.0-SNAPSHOT</neutron.model.version>
25   </properties>
26
27   <dependencies>
28     <dependency>
29       <groupId>org.opendaylight.neutron</groupId>
30       <artifactId>model</artifactId>
31       <version>${neutron.model.version}</version>
32     </dependency>
33     <dependency>
34       <groupId>${project.groupId}</groupId>
35       <artifactId>utils.mdsal-utils</artifactId>
36       <version>${project.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>netvirt-api</artifactId>
41       <version>${project.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.mdsal.model</groupId>
45       <artifactId>ietf-inet-types-2013-07-15</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.mdsal.model</groupId>
49       <artifactId>ietf-yang-types-20130715</artifactId>
50     </dependency>
51     <!-- Testing Dependencies -->
52     <dependency>
53       <groupId>junit</groupId>
54       <artifactId>junit</artifactId>
55       <scope>test</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.mockito</groupId>
59       <artifactId>mockito-all</artifactId>
60       <scope>test</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>sal-binding-broker-impl</artifactId>
65       <type>test-jar</type>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>mdsal-it-base</artifactId>
71       <version>1.5.0-SNAPSHOT</version>
72       <scope>test</scope>
73     </dependency>
74   </dependencies>
75
76   <!--
77       Maven Site Configuration
78
79       The following configuration is necessary for maven-site-plugin to
80       correctly identify the correct deployment path for OpenDaylight Maven
81       sites.
82   -->
83   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
84
85   <distributionManagement>
86     <site>
87       <id>opendaylight-site</id>
88       <url>${nexus.site.url}/${project.artifactId}/</url>
89     </site>
90   </distributionManagement>
91 </project>