Bump versions by 0.1.0 for next dev cycle
[controller.git] / opendaylight / md-sal / messagebus-util / 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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13
14     <parent>
15         <groupId>org.opendaylight.controller</groupId>
16         <artifactId>sal-parent</artifactId>
17         <version>1.5.0-SNAPSHOT</version>
18     </parent>
19
20     <artifactId>messagebus-util</artifactId>
21     <name>${project.artifactId}</name>
22
23     <packaging>bundle</packaging>
24
25     <dependencies>
26         <dependency>
27             <groupId>org.osgi</groupId>
28             <artifactId>org.osgi.core</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.controller</groupId>
32             <artifactId>sal-core-api</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.controller</groupId>
36             <artifactId>sal-binding-api</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.controller</groupId>
40             <artifactId>messagebus-api</artifactId>
41         </dependency>
42         <!-- Testing Dependencies -->
43         <dependency>
44               <groupId>junit</groupId>
45               <artifactId>junit</artifactId>
46               <scope>test</scope>
47         </dependency>
48         <dependency>
49               <groupId>org.glassfish.jersey.test-framework.providers</groupId>
50               <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
51               <scope>test</scope>
52         </dependency>
53         <dependency>
54               <groupId>org.mockito</groupId>
55               <artifactId>mockito-all</artifactId>
56               <scope>test</scope>
57         </dependency>
58     </dependencies>
59 </project>