Add missing annotation dependencies for Java 11
[netvirt.git] / ipv6service / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=2 tabstop=2: --><!--
3 Copyright (c) 2016 Red Hat, 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 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <parent>
13         <groupId>org.opendaylight.netvirt</groupId>
14         <artifactId>binding-parent</artifactId>
15         <version>0.9.0-SNAPSHOT</version>
16         <relativePath>../../commons/binding-parent</relativePath>
17     </parent>
18
19     <artifactId>ipv6service-impl</artifactId>
20     <name>ODL :: netvirt :: ${project.artifactId}</name>
21     <packaging>bundle</packaging>
22     <modelVersion>4.0.0</modelVersion>
23
24     <dependencies>
25         <dependency>
26             <groupId>javax.inject</groupId>
27             <artifactId>javax.inject</artifactId>
28             <optional>true</optional>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.controller</groupId>
32             <artifactId>sal-binding-api</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.genius</groupId>
36             <artifactId>interfacemanager-api</artifactId>
37             <version>${genius.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.genius</groupId>
41             <artifactId>mdsalutil-api</artifactId>
42             <version>${genius.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.genius</groupId>
46             <artifactId>ipv6util-api</artifactId>
47             <version>${genius.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>elanmanager-api</artifactId>
52             <version>${project.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>ipv6service-api</artifactId>
57             <version>${project.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>neutronvpn-api</artifactId>
62             <version>${project.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.neutron</groupId>
66             <artifactId>model</artifactId>
67             <version>${neutron.version}</version>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.openflowplugin.model</groupId>
71             <artifactId>model-flow-service</artifactId>
72             <version>${openflowplugin.version}</version>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.openflowplugin</groupId>
76             <artifactId>openflowplugin-api</artifactId>
77             <version>${openflowplugin.version}</version>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.ovsdb</groupId>
81             <artifactId>southbound-api</artifactId>
82             <version>${ovsdb.version}</version>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.yangtools</groupId>
86             <artifactId>yang-common</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.powermock</groupId>
90             <artifactId>powermock-api-mockito</artifactId>
91             <version>1.6.4</version>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.javassist</groupId>
96             <artifactId>javassist</artifactId>
97             <version>3.21.0-GA</version>
98             <scope>test</scope>
99         </dependency>
100         <dependency>
101             <groupId>org.mockito</groupId>
102             <artifactId>mockito-core</artifactId>
103             <version>1.10.19</version>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>org.powermock</groupId>
108             <artifactId>powermock-module-junit4</artifactId>
109             <version>1.6.4</version>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.powermock</groupId>
114             <artifactId>powermock-api-support</artifactId>
115             <version>1.6.4</version>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.powermock</groupId>
120             <artifactId>powermock-reflect</artifactId>
121             <version>1.6.4</version>
122             <scope>test</scope>
123         </dependency>
124         <dependency>
125             <groupId>org.powermock</groupId>
126             <artifactId>powermock-core</artifactId>
127             <version>1.6.4</version>
128             <scope>test</scope>
129         </dependency>
130         <dependency>
131             <groupId>org.slf4j</groupId>
132             <artifactId>slf4j-simple</artifactId>
133             <scope>test</scope>
134         </dependency>
135     </dependencies>
136
137     <build>
138         <plugins>
139             <plugin>
140                 <groupId>org.apache.aries.blueprint</groupId>
141                 <artifactId>blueprint-maven-plugin</artifactId>
142             </plugin>
143             <plugin>
144                 <groupId>org.apache.felix</groupId>
145                 <artifactId>maven-bundle-plugin</artifactId>
146                 <extensions>true</extensions>
147                 <configuration>
148                     <instructions>
149                         <!-- We purposely don't export any packages to avoid any dependencies
150                              on this bundle and prevent @Singleton annotated classes from being
151                              accidently included in another bundle's blueprint XML  -->
152                         <Export-Package/>
153                     </instructions>
154                 </configuration>
155             </plugin>
156         </plugins>
157     </build>
158 </project>