Remove use of junit-addons
[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.17.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.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.dsbackend</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>${project.groupId}</groupId>
36       <artifactId>mappingservice.lisp-proto</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>mappingservice.mapcache</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>${project.groupId}</groupId>
44       <artifactId>mappingservice.config</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>${project.groupId}</groupId>
48       <artifactId>common.unittest.tools</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.mockito</groupId>
52       <artifactId>mockito-core</artifactId>
53       <version>3.12.4</version>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.powermock</groupId>
58       <artifactId>powermock-api-mockito2</artifactId>
59       <version>2.0.9</version>
60       <scope>test</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.powermock</groupId>
64       <artifactId>powermock-module-junit4</artifactId>
65       <version>2.0.9</version>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.lispflowmapping</groupId>
70       <artifactId>mappingservice.inmemorydb</artifactId>
71       <scope>test</scope>
72     </dependency>
73     <!-- needed for osgi console -->
74     <dependency>
75       <groupId>org.opendaylight.mdsal</groupId>
76       <artifactId>mdsal-singleton-common-api</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.mdsal</groupId>
80       <artifactId>mdsal-singleton-dom-impl</artifactId>
81     </dependency>
82   </dependencies>
83
84   <build>
85     <plugins>
86       <plugin>
87         <artifactId>maven-surefire-plugin</artifactId>
88         <configuration combine.children="append">
89           <!-- FIXME: remove this declaration once powermock is gone -->
90           <argLine>
91             @{argLine}
92             --add-opens java.base/java.lang=ALL-UNNAMED
93             --add-opens java.base/java.lang.reflect=ALL-UNNAMED
94             --add-opens java.base/java.net=ALL-UNNAMED
95             --add-opens java.base/java.util=ALL-UNNAMED
96             --add-opens java.base/java.util.concurrent=ALL-UNNAMED
97           </argLine>
98         </configuration>
99       </plugin>
100     </plugins>
101   </build>
102 </project>