Bump versions by x.(y+1).z for next dev cycle
[ovsdb.git] / library / features / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015, 2016 Red Hat, Inc. and others. All rights reserved. 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 INTERNAL
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   <parent>
10     <groupId>org.opendaylight.odlparent</groupId>
11     <artifactId>features-parent</artifactId>
12     <version>1.9.0-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15   <groupId>org.opendaylight.ovsdb</groupId>
16   <artifactId>library-features</artifactId>
17   <version>1.5.0-SNAPSHOT</version>
18   <name>${project.artifactId}</name>
19   <modelVersion>4.0.0</modelVersion>
20   <prerequisites>
21     <maven>3.1.1</maven>
22   </prerequisites>
23   <properties>
24     <mdsal.model.version>0.11.0-SNAPSHOT</mdsal.model.version>
25     <controller.mdsal.version>1.6.0-SNAPSHOT</controller.mdsal.version>
26     <yangtools.version>1.2.0-SNAPSHOT</yangtools.version>
27     <aaa.version>0.6.0-SNAPSHOT</aaa.version>
28     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
29   </properties>
30   <dependencyManagement>
31     <dependencies>
32       <!-- project specific dependencies -->
33       <dependency>
34         <groupId>org.opendaylight.controller</groupId>
35         <artifactId>mdsal-artifacts</artifactId>
36         <version>${controller.mdsal.version}</version>
37         <type>pom</type>
38         <scope>import</scope>
39       </dependency>
40       <dependency>
41         <groupId>org.opendaylight.aaa</groupId>
42         <artifactId>features-aaa</artifactId>
43         <version>${aaa.version}</version>
44         <type>pom</type>
45         <scope>import</scope>
46       </dependency>
47     </dependencies>
48   </dependencyManagement>
49   <dependencies>
50     <dependency>
51       <groupId>org.opendaylight.yangtools</groupId>
52       <artifactId>features-yangtools</artifactId>
53       <classifier>features</classifier>
54       <version>${yangtools.version}</version>
55       <type>xml</type>
56       <scope>runtime</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.aaa</groupId>
60       <artifactId>features-aaa</artifactId>
61       <version>${aaa.version}</version>
62       <type>xml</type>
63       <classifier>features</classifier>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>features-mdsal</artifactId>
68       <classifier>features</classifier>
69       <version>${controller.mdsal.version}</version>
70       <type>xml</type>
71       <scope>runtime</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.mdsal.model</groupId>
75       <artifactId>features-mdsal-model</artifactId>
76       <version>${mdsal.model.version}</version>
77       <classifier>features</classifier>
78       <type>xml</type>
79       <scope>runtime</scope>
80     </dependency>
81     <dependency>
82       <groupId>${project.groupId}</groupId>
83       <artifactId>library</artifactId>
84       <version>${project.version}</version>
85     </dependency>
86     <dependency>
87       <groupId>${project.groupId}</groupId>
88       <artifactId>library</artifactId>
89       <version>${project.version}</version>
90       <type>cfg</type>
91       <classifier>config</classifier>
92     </dependency>
93     <dependency>
94       <groupId>${project.groupId}</groupId>
95       <artifactId>utils.servicehelper</artifactId>
96       <version>${project.version}</version>
97     </dependency>
98     <dependency>
99       <groupId>${project.groupId}</groupId>
100       <artifactId>schema.openvswitch</artifactId>
101       <version>${project.version}</version>
102     </dependency>
103     <dependency>
104       <groupId>${project.groupId}</groupId>
105       <artifactId>schema.hardwarevtep</artifactId>
106       <version>${project.version}</version>
107     </dependency>
108   </dependencies>
109
110   <!--
111       Maven Site Configuration
112
113       The following configuration is necessary for maven-site-plugin to
114       correctly identify the correct deployment path for OpenDaylight Maven
115       sites.
116   -->
117   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
118
119   <distributionManagement>
120     <site>
121       <id>opendaylight-site</id>
122       <url>${nexus.site.url}/${project.artifactId}/</url>
123     </site>
124   </distributionManagement>
125 </project>