Release Oxygen
[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" 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">
10     <modelVersion>4.0.0</modelVersion>
11
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>bundle-parent</artifactId>
15         <version>3.1.0</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.controller</groupId>
20     <artifactId>messagebus-util</artifactId>
21     <version>1.7.2</version>
22     <packaging>bundle</packaging>
23     <name>${project.artifactId}</name>
24
25     <dependencyManagement>
26         <dependencies>
27             <dependency>
28                 <groupId>org.opendaylight.controller</groupId>
29                 <artifactId>mdsal-artifacts</artifactId>
30                 <version>1.7.2</version>
31                 <type>pom</type>
32                 <scope>import</scope>
33             </dependency>
34         </dependencies>
35     </dependencyManagement>
36
37     <dependencies>
38         <dependency>
39             <groupId>org.opendaylight.controller</groupId>
40             <artifactId>sal-core-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.controller</groupId>
44             <artifactId>sal-binding-api</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.controller</groupId>
48             <artifactId>messagebus-api</artifactId>
49         </dependency>
50         <!-- Testing Dependencies -->
51         <dependency>
52               <groupId>junit</groupId>
53               <artifactId>junit</artifactId>
54               <scope>test</scope>
55         </dependency>
56         <dependency>
57               <groupId>org.glassfish.jersey.test-framework.providers</groupId>
58               <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
59               <version>2.4</version>
60               <scope>test</scope>
61         </dependency>
62         <dependency>
63               <groupId>org.mockito</groupId>
64               <artifactId>mockito-core</artifactId>
65               <scope>test</scope>
66         </dependency>
67     </dependencies>
68
69 </project>