Add UT for SouthboundMapper and SouthboundProvider
[netvirt.git] / openstack / net-virt-sfc / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2015 Red Hat, Inc. and others. All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13
14   <parent>
15     <groupId>org.opendaylight.controller</groupId>
16     <artifactId>config-parent</artifactId>
17     <version>0.4.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <modelVersion>4.0.0</modelVersion>
22   <groupId>org.opendaylight.ovsdb</groupId>
23   <artifactId>openstack.net-virt-sfc-impl</artifactId>
24   <version>1.0.0-SNAPSHOT</version>
25   <packaging>bundle</packaging>
26   <dependencies>
27     <dependency>
28       <groupId>${project.groupId}</groupId>
29       <artifactId>openstack.net-virt-sfc-api</artifactId>
30       <version>${project.version}</version>
31     </dependency>
32
33     <!-- Testing Dependencies -->
34     <dependency>
35       <groupId>junit</groupId>
36       <artifactId>junit</artifactId>
37       <scope>test</scope>
38     </dependency>
39
40     <dependency>
41       <groupId>org.mockito</groupId>
42       <artifactId>mockito-all</artifactId>
43       <scope>test</scope>
44     </dependency>
45   </dependencies>
46
47 </project>