MRI version bumpup for Aluminium
[netvirt.git] / neutronvpn / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2016 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"
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.11.0-SNAPSHOT</version>
16         <relativePath>../../commons/binding-parent</relativePath>
17     </parent>
18
19     <artifactId>neutronvpn-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>org.osgi</groupId>
27             <artifactId>org.osgi.core</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>com.google.code.gson</groupId>
31             <artifactId>gson</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>javax.inject</groupId>
35             <artifactId>javax.inject</artifactId>
36             <scope>provided</scope>
37             <optional>true</optional>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.genius</groupId>
41             <artifactId>arputil-api</artifactId>
42             <version>${genius.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.genius</groupId>
46             <artifactId>idmanager-api</artifactId>
47             <version>${genius.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.genius</groupId>
51             <artifactId>interfacemanager-api</artifactId>
52             <version>${genius.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.genius</groupId>
56             <artifactId>itm-api</artifactId>
57             <version>${genius.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.serviceutils</groupId>
61             <artifactId>tools-api</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.serviceutils</groupId>
65             <artifactId>upgrade</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.genius</groupId>
69             <artifactId>mdsalutil-api</artifactId>
70             <version>${genius.version}</version>
71         </dependency>
72         <dependency>
73             <groupId>${project.groupId}</groupId>
74             <artifactId>aclservice-api</artifactId>
75             <version>${project.version}</version>
76         </dependency>
77         <dependency>
78             <groupId>${project.groupId}</groupId>
79             <artifactId>alarm-impl</artifactId>
80             <version>${project.version}</version>
81         </dependency>
82         <dependency>
83             <groupId>${project.groupId}</groupId>
84             <artifactId>elanmanager-api</artifactId>
85             <version>${project.version}</version>
86         </dependency>
87         <dependency>
88             <groupId>${project.groupId}</groupId>
89             <artifactId>natservice-api</artifactId>
90             <version>${project.version}</version>
91         </dependency>
92         <dependency>
93             <groupId>${project.groupId}</groupId>
94             <artifactId>neutronvpn-api</artifactId>
95             <version>${project.version}</version>
96         </dependency>
97         <dependency>
98             <groupId>${project.groupId}</groupId>
99             <artifactId>vpnmanager-api</artifactId>
100             <version>${project.version}</version>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.ovsdb</groupId>
104             <artifactId>hwvtepsouthbound-api</artifactId>
105             <version>${ovsdb.version}</version>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.ovsdb</groupId>
109             <artifactId>southbound-api</artifactId>
110             <version>${ovsdb.version}</version>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.ovsdb</groupId>
114             <artifactId>utils.mdsal-utils</artifactId>
115             <version>${ovsdb.version}</version>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.ovsdb</groupId>
119             <artifactId>utils.southbound-utils</artifactId>
120             <version>${ovsdb.version}</version>
121         </dependency>
122         <dependency>
123             <groupId>org.opendaylight.neutron</groupId>
124             <artifactId>model</artifactId>
125             <version>${neutron.version}</version>
126         </dependency>
127         <dependency>
128             <groupId>org.opendaylight.neutron</groupId>
129             <artifactId>neutron-spi</artifactId>
130             <version>${neutron.version}</version>
131         </dependency>
132         <dependency>
133             <groupId>org.opendaylight.infrautils</groupId>
134             <artifactId>caches-test</artifactId>
135             <version>${infrautils.version}</version>
136             <scope>test</scope>
137         </dependency>
138         <dependency>
139             <groupId>org.opendaylight.infrautils</groupId>
140             <artifactId>jobcoordinator-impl</artifactId>
141             <version>${infrautils.version}</version>
142             <scope>test</scope>
143         </dependency>
144         <dependency>
145             <groupId>org.opendaylight.infrautils</groupId>
146             <artifactId>metrics-impl-test</artifactId>
147             <version>${infrautils.version}</version>
148             <scope>test</scope>
149         </dependency>
150         <dependency>
151                 <groupId>org.opendaylight.genius</groupId>
152                 <artifactId>ipv6util-api</artifactId>
153                 <version>${genius.version}</version>
154         </dependency>
155         <dependency>
156             <groupId>com.google.code.findbugs</groupId>
157             <artifactId>jsr305</artifactId>
158             <version>3.0.2</version>
159             <optional>true</optional>
160         </dependency>
161     </dependencies>
162
163     <build>
164         <plugins>
165             <plugin>
166                 <groupId>org.apache.aries.blueprint</groupId>
167                 <artifactId>blueprint-maven-plugin</artifactId>
168             </plugin>
169             <plugin>
170                 <groupId>org.apache.felix</groupId>
171                 <artifactId>maven-bundle-plugin</artifactId>
172                 <extensions>true</extensions>
173                 <configuration>
174                     <instructions>
175                         <!-- We purposely don't export any packages to avoid any dependencies
176                              on this bundle and prevent @Singleton annotated classes from being
177                              accidently included in another bundle's blueprint XML  -->
178                         <Export-Package/>
179                     </instructions>
180                 </configuration>
181             </plugin>
182             <plugin>
183                 <groupId>org.codehaus.mojo</groupId>
184                 <artifactId>build-helper-maven-plugin</artifactId>
185                 <executions>
186                     <execution>
187                         <id>attach-artifacts</id>
188                         <goals>
189                             <goal>attach-artifact</goal>
190                         </goals>
191                         <phase>package</phase>
192                         <configuration>
193                             <artifacts>
194                                 <artifact>
195                                     <file>${project.build.directory}/classes/initial/netvirt-neutronvpn-config.xml
196                                     </file>
197                                     <type>xml</type>
198                                     <classifier>config</classifier>
199                                 </artifact>
200                             </artifacts>
201                         </configuration>
202                     </execution>
203                 </executions>
204             </plugin>
205         </plugins>
206     </build>
207
208 </project>