Add missing annotation dependencies for Java 11
[netvirt.git] / coe / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2017 Ericsson India Global Services Pvt Ltd. 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10
11     <parent>
12         <groupId>org.opendaylight.netvirt</groupId>
13         <artifactId>binding-parent</artifactId>
14         <version>0.9.0-SNAPSHOT</version>
15         <relativePath>../../commons/binding-parent</relativePath>
16     </parent>
17
18     <artifactId>coe-impl</artifactId>
19     <name>ODL :: netvirt :: ${project.artifactId}</name>
20     <packaging>bundle</packaging>
21     <modelVersion>4.0.0</modelVersion>
22
23     <dependencies>
24         <dependency>
25             <groupId>javax.inject</groupId>
26             <artifactId>javax.inject</artifactId>
27             <optional>true</optional>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.coe</groupId>
31             <artifactId>coe-northbound-api</artifactId>
32             <version>0.6.0-SNAPSHOT</version>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.controller</groupId>
36             <artifactId>sal-binding-api</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.genius</groupId>
40             <artifactId>networkutils</artifactId>
41             <version>${genius.version}</version>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.infrautils</groupId>
45             <artifactId>jobcoordinator-api</artifactId>
46             <version>${infrautils.version}</version>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.mdsal.model</groupId>
50             <artifactId>ietf-access-control-list</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.mdsal.model</groupId>
54             <artifactId>yang-ext</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>aclservice-api</artifactId>
59             <version>${project.version}</version>
60         </dependency>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>coe-api</artifactId>
64             <version>${project.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>elanmanager-api</artifactId>
69             <version>${project.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>vpnmanager-api</artifactId>
74             <version>${project.version}</version>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.ovsdb</groupId>
78             <artifactId>utils.southbound-utils</artifactId>
79             <version>${ovsdb.version}</version>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.serviceutils</groupId>
83             <artifactId>listener-api</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.serviceutils</groupId>
87             <artifactId>tools-api</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.apache.aries.blueprint</groupId>
91             <artifactId>blueprint-maven-plugin-annotation</artifactId>
92             <optional>true</optional>
93         </dependency>
94
95         <dependency>
96             <groupId>org.awaitility</groupId>
97             <artifactId>awaitility</artifactId>
98             <scope>test</scope>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.controller</groupId>
102             <artifactId>sal-binding-broker-impl</artifactId>
103             <version>${controller.mdsal.version}</version>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.genius</groupId>
108             <artifactId>testutils</artifactId>
109             <version>${genius.version}</version>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.genius</groupId>
114             <artifactId>mdsalutil-testutils</artifactId>
115             <version>${genius.version}</version>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.serviceutils</groupId>
120             <artifactId>tools-testutils</artifactId>
121             <version>${serviceutils.version}</version>
122             <scope>test</scope>
123         </dependency>
124     </dependencies>
125
126     <build>
127         <plugins>
128             <plugin>
129                 <groupId>org.apache.aries.blueprint</groupId>
130                 <artifactId>blueprint-maven-plugin</artifactId>
131             </plugin>
132             <plugin>
133                 <groupId>org.apache.felix</groupId>
134                 <artifactId>maven-bundle-plugin</artifactId>
135                 <extensions>true</extensions>
136                 <configuration>
137                     <instructions>
138                         <!-- We purposely don't export any packages to avoid any dependencies
139                              on this bundle and prevent @Singleton annotated classes from being
140                              accidently included in another bundle's blueprint XML  -->
141                         <Export-Package/>
142                     </instructions>
143                 </configuration>
144             </plugin>
145             <plugin>
146                 <groupId>org.codehaus.mojo</groupId>
147                 <artifactId>build-helper-maven-plugin</artifactId>
148                 <executions>
149                     <execution>
150                         <id>attach-artifacts</id>
151                         <goals>
152                             <goal>attach-artifact</goal>
153                         </goals>
154                         <phase>package</phase>
155                         <configuration>
156                             <artifacts>
157                                 <artifact>
158                                     <file>${project.build.directory}/classes/initial/netvirt-coe-config.xml</file>
159                                     <type>xml</type>
160                                     <classifier>config</classifier>
161                                 </artifact>
162                             </artifacts>
163                         </configuration>
164                     </execution>
165                 </executions>
166             </plugin>
167         </plugins>
168     </build>
169 </project>