3d19ecad48ddad78a7198fc58011b0bb4204b069
[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>junit-addons</groupId>
52       <artifactId>junit-addons</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.mockito</groupId>
56       <artifactId>mockito-core</artifactId>
57       <version>3.12.4</version>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.powermock</groupId>
62       <artifactId>powermock-api-mockito2</artifactId>
63       <version>2.0.9</version>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>org.powermock</groupId>
68       <artifactId>powermock-module-junit4</artifactId>
69       <version>2.0.9</version>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.lispflowmapping</groupId>
74       <artifactId>mappingservice.inmemorydb</artifactId>
75       <scope>test</scope>
76     </dependency>
77     <!-- needed for osgi console -->
78     <dependency>
79       <groupId>org.opendaylight.mdsal</groupId>
80       <artifactId>mdsal-singleton-common-api</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.mdsal</groupId>
84       <artifactId>mdsal-singleton-dom-impl</artifactId>
85     </dependency>
86   </dependencies>
87
88   <build>
89     <plugins>
90       <plugin>
91         <artifactId>maven-surefire-plugin</artifactId>
92         <configuration combine.children="append">
93           <!-- FIXME: remove this declaration once powermock is gone -->
94           <argLine>
95             @{argLine}
96             --add-opens java.base/java.lang=ALL-UNNAMED
97             --add-opens java.base/java.lang.reflect=ALL-UNNAMED
98             --add-opens java.base/java.net=ALL-UNNAMED
99             --add-opens java.base/java.util=ALL-UNNAMED
100             --add-opens java.base/java.util.concurrent=ALL-UNNAMED
101           </argLine>
102         </configuration>
103       </plugin>
104     </plugins>
105   </build>
106 </project>