Bump versions by x.(y+1).z
[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.14.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   <properties>
18     <odlparent.spotbugs.enforce>false</odlparent.spotbugs.enforce>
19   </properties>
20
21   <dependencies>
22     <dependency>
23       <groupId>org.osgi</groupId>
24       <artifactId>org.osgi.core</artifactId>
25       <scope>provided</scope>
26     </dependency>
27     <dependency>
28       <groupId>${project.groupId}</groupId>
29       <artifactId>mappingservice.api</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>${project.groupId}</groupId>
33       <artifactId>mappingservice.dsbackend</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>${project.groupId}</groupId>
37       <artifactId>mappingservice.lisp-proto</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>${project.groupId}</groupId>
41       <artifactId>mappingservice.mapcache</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>${project.groupId}</groupId>
45       <artifactId>mappingservice.config</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>${project.groupId}</groupId>
49       <artifactId>common.unittest.tools</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>junit-addons</groupId>
53       <artifactId>junit-addons</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.powermock</groupId>
57       <artifactId>powermock-api-mockito2</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.powermock</groupId>
61       <artifactId>powermock-module-junit4</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.lispflowmapping</groupId>
65       <artifactId>mappingservice.inmemorydb</artifactId>
66       <scope>test</scope>
67     </dependency>
68     <!-- needed for osgi console -->
69     <dependency>
70       <groupId>org.opendaylight.mdsal</groupId>
71       <artifactId>mdsal-singleton-common-api</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.mdsal</groupId>
75       <artifactId>mdsal-singleton-dom-impl</artifactId>
76     </dependency>
77   </dependencies>
78 </project>