44b2c2d33ecfcfc2ae64cc95445cf2ed2ec30283
[lispflowmapping.git] / mappingservice / dsbackend / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
4   ~
5   ~ This program and the accompanying materials are made available under the
6   ~ terms of the Eclipse Public License v1.0 which accompanies this distribution,
7   ~ and is available at http://www.eclipse.org/legal/epl-v10.html
8   -->
9
10 <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">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.lispflowmapping</groupId>
15     <artifactId>mappingservice-parent</artifactId>
16     <version>1.18.0-SNAPSHOT</version>
17   </parent>
18
19   <artifactId>mappingservice.dsbackend</artifactId>
20   <packaging>bundle</packaging>
21   <!-- <name> formatting is used by autorelease to parse and notify projects on
22        build failure. Please do not modify this unless you have a good reason. -->
23   <name>ODL :: lispflowmapping :: ${project.artifactId}</name>
24
25   <dependencies>
26     <dependency>
27       <groupId>${project.groupId}</groupId>
28       <artifactId>mappingservice.api</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>${project.groupId}</groupId>
32       <artifactId>mappingservice.lisp-proto</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.mdsal</groupId>
36       <artifactId>mdsal-binding-api</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>jakarta.xml.bind</groupId>
40       <artifactId>jakarta.xml.bind-api</artifactId>
41       <scope>test</scope>
42     </dependency>
43     <dependency>
44       <groupId>org.mockito</groupId>
45       <artifactId>mockito-core</artifactId>
46       <version>3.12.4</version>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.powermock</groupId>
51       <artifactId>powermock-api-mockito2</artifactId>
52       <version>2.0.9</version>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.powermock</groupId>
57       <artifactId>powermock-module-junit4</artifactId>
58       <version>2.0.9</version>
59       <scope>test</scope>
60     </dependency>
61   </dependencies>
62
63   <build>
64     <plugins>
65       <plugin>
66         <artifactId>maven-surefire-plugin</artifactId>
67         <configuration combine.children="append">
68           <!-- FIXME: remove this declaration once powermock is gone -->
69           <argLine>
70             @{argLine}
71             --add-opens java.base/java.lang=ALL-UNNAMED
72             --add-opens java.base/java.util=ALL-UNNAMED
73             --add-opens java.base/java.util.concurrent=ALL-UNNAMED
74           </argLine>
75         </configuration>
76       </plugin>
77     </plugins>
78   </build>
79 </project>