Initial patch to deprecate sal utils Servicehelper
[ovsdb.git] / utils / servicehelper / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2015 Red Hat, 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     <artifactId>commons</artifactId>
16     <groupId>org.opendaylight.ovsdb</groupId>
17     <version>1.3.0-SNAPSHOT</version>
18     <relativePath>../../commons/parent/pom.xml</relativePath>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>servicehelper</artifactId>
23   <version>1.3.0-SNAPSHOT</version>
24   <name>${project.artifactId}</name>
25   <packaging>jar</packaging>
26
27   <dependencies>
28     <dependency>
29       <groupId>junit</groupId>
30       <artifactId>junit</artifactId>
31       <scope>test</scope>
32     </dependency>
33     <dependency>
34       <groupId>org.osgi</groupId>
35       <artifactId>org.osgi.core</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.slf4j</groupId>
39       <artifactId>slf4j-api</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.slf4j</groupId>
43       <artifactId>slf4j-simple</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.mockito</groupId>
47       <artifactId>mockito-core</artifactId>
48       <scope>test</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.powermock</groupId>
52       <artifactId>powermock-api-mockito</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.powermock</groupId>
57       <artifactId>powermock-core</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.powermock</groupId>
62       <artifactId>powermock-module-junit4</artifactId>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.springframework.osgi</groupId>
67       <artifactId>spring-osgi-mock</artifactId>
68       <version>1.2.1</version>
69       <scope>test</scope>
70     </dependency>
71   </dependencies>
72 </project>