Bump versions by x.(y+1).z
[lispflowmapping.git] / mappingservice / southbound / 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.20.0-SNAPSHOT</version>
9   </parent>
10
11   <artifactId>mappingservice.southbound</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.framework</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>${project.groupId}</groupId>
28       <artifactId>mappingservice.api</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>${project.groupId}</groupId>
32       <artifactId>mappingservice.config</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>${project.groupId}</groupId>
36       <artifactId>mappingservice.inmemorydb</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>mappingservice.dsbackend</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>${project.groupId}</groupId>
44       <artifactId>mappingservice.lisp-proto</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>${project.groupId}</groupId>
48       <artifactId>mappingservice.mapcache</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>io.netty</groupId>
52       <artifactId>netty-buffer</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>io.netty</groupId>
56       <artifactId>netty-common</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>io.netty</groupId>
60       <artifactId>netty-transport-native-epoll</artifactId>
61       <classifier>linux-x86_64</classifier>
62     </dependency>
63     <dependency>
64       <groupId>org.mockito</groupId>
65       <artifactId>mockito-core</artifactId>
66       <version>4.11.0</version>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.mockito</groupId>
71       <artifactId>mockito-inline</artifactId>
72       <version>4.11.0</version>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.mdsal</groupId>
77       <artifactId>mdsal-singleton-api</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.mdsal</groupId>
81       <artifactId>mdsal-singleton-impl</artifactId>
82     </dependency>
83     <!-- osgi annotations -->
84     <dependency>
85       <groupId>com.guicedee.services</groupId>
86       <artifactId>javax.inject</artifactId>
87       <optional>true</optional>
88     </dependency>
89     <dependency>
90       <groupId>jakarta.annotation</groupId>
91       <artifactId>jakarta.annotation-api</artifactId>
92       <optional>true</optional>
93     </dependency>
94     <dependency>
95       <groupId>org.osgi</groupId>
96       <artifactId>org.osgi.service.component.annotations</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.osgi</groupId>
100       <artifactId>org.osgi.service.metatype.annotations</artifactId>
101     </dependency>
102   </dependencies>
103
104   <!--
105       Maven Site Configuration
106
107       The following configuration is necessary for maven-site-plugin to
108       correctly identify the correct deployment path for OpenDaylight Maven
109       sites.
110   -->
111   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
112
113   <distributionManagement>
114     <site>
115       <id>opendaylight-site</id>
116       <url>${nexus.site.url}/${project.artifactId}/</url>
117     </site>
118   </distributionManagement>
119
120 </project>