Bump versions by x.(y+1).z
[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.20.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>com.github.spotbugs</groupId>
36       <artifactId>spotbugs-annotations</artifactId>
37       <optional>true</optional>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.mdsal</groupId>
41       <artifactId>mdsal-binding-api</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>jakarta.xml.bind</groupId>
45       <artifactId>jakarta.xml.bind-api</artifactId>
46       <scope>test</scope>
47     </dependency>
48     <dependency>
49       <groupId>org.mockito</groupId>
50       <artifactId>mockito-core</artifactId>
51       <version>3.12.4</version>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.powermock</groupId>
56       <artifactId>powermock-api-mockito2</artifactId>
57       <version>2.0.9</version>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.powermock</groupId>
62       <artifactId>powermock-module-junit4</artifactId>
63       <version>2.0.9</version>
64       <scope>test</scope>
65     </dependency>
66   </dependencies>
67
68   <build>
69     <plugins>
70       <plugin>
71         <artifactId>maven-surefire-plugin</artifactId>
72         <configuration combine.children="append">
73           <!-- FIXME: remove this declaration once powermock is gone -->
74           <argLine>
75             @{argLine}
76             --add-opens java.base/java.lang=ALL-UNNAMED
77             --add-opens java.base/java.util=ALL-UNNAMED
78             --add-opens java.base/java.util.concurrent=ALL-UNNAMED
79           </argLine>
80         </configuration>
81       </plugin>
82     </plugins>
83   </build>
84 </project>