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