Merge "Bug 8746: Multi-threading improvements"
[lispflowmapping.git] / mappingservice / implementation / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.lispflowmapping</groupId>
7     <artifactId>mappingservice-parent</artifactId>
8     <version>1.7.0-SNAPSHOT</version>
9   </parent>
10
11   <artifactId>mappingservice.implementation</artifactId>
12   <packaging>bundle</packaging>
13   <!-- <name> formatting is used by autorelease to parse and notify projects on
14        build failure. Please do not modify this unless you have a good reason. -->
15   <name>ODL :: lispflowmapping :: ${project.artifactId}</name>
16
17   <dependencies>
18     <dependency>
19       <groupId>${project.groupId}</groupId>
20       <artifactId>mappingservice.api</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>${project.groupId}</groupId>
24       <artifactId>mappingservice.dsbackend</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>${project.groupId}</groupId>
28       <artifactId>mappingservice.lisp-proto</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>${project.groupId}</groupId>
32       <artifactId>mappingservice.mapcache</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>${project.groupId}</groupId>
36       <artifactId>mappingservice.config</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>common.unittest.tools</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>junit-addons</groupId>
44       <artifactId>junit-addons</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.powermock</groupId>
48       <artifactId>powermock-api-mockito</artifactId>
49       <scope>test</scope>
50     </dependency>
51     <dependency>
52       <groupId>org.powermock</groupId>
53       <artifactId>powermock-module-junit4</artifactId>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.lispflowmapping</groupId>
58       <artifactId>mappingservice.inmemorydb</artifactId>
59       <scope>test</scope>
60     </dependency>
61     <!-- needed for osgi console -->
62     <dependency>
63       <groupId>org.opendaylight.mdsal</groupId>
64       <artifactId>mdsal-singleton-common-api</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.mdsal</groupId>
68       <artifactId>mdsal-singleton-dom-impl</artifactId>
69     </dependency>
70   </dependencies>
71 </project>