Remove blueprint XML from mapping service implementation
[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     <!-- osgi annotations -->
74     <dependency>
75       <groupId>com.guicedee.services</groupId>
76       <artifactId>javax.inject</artifactId>
77       <optional>true</optional>
78     </dependency>
79     <dependency>
80       <groupId>jakarta.annotation</groupId>
81       <artifactId>jakarta.annotation-api</artifactId>
82       <optional>true</optional>
83     </dependency>
84     <dependency>
85       <groupId>org.osgi</groupId>
86       <artifactId>org.osgi.service.component.annotations</artifactId>
87     </dependency>
88     <!-- needed for osgi console -->
89     <dependency>
90       <groupId>org.opendaylight.mdsal</groupId>
91       <artifactId>mdsal-singleton-common-api</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.mdsal</groupId>
95       <artifactId>mdsal-singleton-dom-impl</artifactId>
96     </dependency>
97   </dependencies>
98
99   <build>
100     <plugins>
101       <plugin>
102         <artifactId>maven-surefire-plugin</artifactId>
103         <configuration combine.children="append">
104           <!-- FIXME: remove this declaration once powermock is gone -->
105           <argLine>
106             @{argLine}
107             --add-opens java.base/java.lang=ALL-UNNAMED
108             --add-opens java.base/java.lang.reflect=ALL-UNNAMED
109             --add-opens java.base/java.net=ALL-UNNAMED
110             --add-opens java.base/java.util=ALL-UNNAMED
111             --add-opens java.base/java.util.concurrent=ALL-UNNAMED
112           </argLine>
113         </configuration>
114       </plugin>
115     </plugins>
116   </build>
117 </project>