Bump versions by x.y.(z+1)
[unimgr.git] / features / odl-unimgr / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2015 Cable Television Laboratories, Inc. All rights reserved. 
3   This program and the accompanying materials are made available under the 
4   terms of the Eclipse Public License v1.0 which accompanies this distribution, 
5   and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8   <parent>
9     <groupId>org.opendaylight.odlparent</groupId>
10     <artifactId>single-feature-parent</artifactId>
11     <version>1.8.1-SNAPSHOT</version>
12     <relativePath />
13   </parent>
14   <groupId>org.opendaylight.unimgr</groupId>
15   <artifactId>odl-unimgr</artifactId>
16   <version>0.2.1-SNAPSHOT</version>
17   <packaging>feature</packaging>
18
19   <name>ODL :: unimgr :: ${project.artifactId}</name>
20   <modelVersion>4.0.0</modelVersion>
21
22   <properties>
23     <mdsal.version>1.5.1-SNAPSHOT</mdsal.version>
24     <controller.mdsal.version>1.5.1-SNAPSHOT</controller.mdsal.version>
25     <restconf.version>1.5.1-SNAPSHOT</restconf.version>
26     <yangtools.version>1.1.1-SNAPSHOT</yangtools.version>
27     <dlux.version>0.5.1-SNAPSHOT</dlux.version>
28     <dluxapps.version>0.5.1-SNAPSHOT</dluxapps.version>
29     <ovsdb.version>1.4.1-SNAPSHOT</ovsdb.version>
30     <netvirt.version>1.4.1-SNAPSHOT</netvirt.version>
31     <vpnservice.version>0.4.1-SNAPSHOT</vpnservice.version>
32     <mdsal.model.version>0.10.1-SNAPSHOT</mdsal.model.version>
33     <netconf.version>1.2.1-SNAPSHOT</netconf.version>
34     <genius.version>0.2.1-SNAPSHOT</genius.version>
35     <l2switch.version>0.5.1-SNAPSHOT</l2switch.version>
36     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
37     <openflowplugin.version>0.4.1-SNAPSHOT</openflowplugin.version>
38     <openflowjava.version>0.9.1-SNAPSHOT</openflowjava.version>
39     <ovsdb.version>1.4.1-SNAPSHOT</ovsdb.version>
40   </properties>
41
42   <dependencies>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>odl-mdsal-broker</artifactId>
46       <version>${controller.mdsal.version}</version>
47       <type>xml</type>
48       <classifier>features</classifier>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.ovsdb</groupId>
52       <artifactId>odl-ovsdb-southbound-impl</artifactId>
53       <version>${ovsdb.version}</version>
54       <type>xml</type>
55       <classifier>features</classifier>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.unimgr</groupId>
59       <artifactId>odl-unimgr-api</artifactId>
60       <version>${project.version}</version>
61       <type>xml</type>
62       <classifier>features</classifier>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.unimgr</groupId>
66       <artifactId>odl-unimgr-presto-api</artifactId>
67       <version>${project.version}</version>
68       <type>xml</type>
69       <classifier>features</classifier>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.netconf</groupId>
73       <artifactId>odl-netconf-connector</artifactId>
74       <version>${netconf.version}</version>
75       <type>xml</type>
76       <classifier>features</classifier>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.netconf</groupId>
80       <artifactId>odl-netconf-connector-ssh</artifactId>
81       <version>${netconf.version}</version>
82       <type>xml</type>
83       <classifier>features</classifier>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.netconf</groupId>
87       <artifactId>odl-netconf-tcp</artifactId>
88       <version>${netconf.version}</version>
89       <type>xml</type>
90       <classifier>features</classifier>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.unimgr</groupId>
94       <artifactId>unimgr-impl</artifactId>
95       <version>${project.version}</version>
96       <exclusions>
97         <exclusion>
98           <groupId>ch.qos.logback</groupId>
99           <artifactId>logback-core</artifactId>
100         </exclusion>
101         <exclusion>
102           <groupId>ch.qos.logback</groupId>
103           <artifactId>logback-classic</artifactId>
104         </exclusion>
105       </exclusions>
106     </dependency>
107     <dependency>
108       <groupId>org.opendaylight.unimgr</groupId>
109       <artifactId>unimgr-impl</artifactId>
110       <version>${project.version}</version>
111       <type>xml</type>
112       <classifier>config</classifier>
113       <exclusions>
114         <exclusion>
115           <groupId>ch.qos.logback</groupId>
116           <artifactId>logback-core</artifactId>
117         </exclusion>
118         <exclusion>
119           <groupId>ch.qos.logback</groupId>
120           <artifactId>logback-classic</artifactId>
121         </exclusion>
122       </exclusions>
123     </dependency>
124   </dependencies>
125
126 </project>