Release 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.4</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         </dependency>
136         <dependency>
137             <groupId>org.opendaylight.infrautils</groupId>
138             <artifactId>jobcoordinator-impl</artifactId>
139             <scope>test</scope>
140         </dependency>
141         <dependency>
142             <groupId>org.opendaylight.infrautils</groupId>
143             <artifactId>metrics-impl-test</artifactId>
144             <version>1.8.4</version>
145             <scope>test</scope>
146         </dependency>
147         <dependency>
148                 <groupId>org.opendaylight.genius</groupId>
149                 <artifactId>ipv6util-api</artifactId>
150                 <version>${genius.version}</version>
151         </dependency>
152         <dependency>
153             <groupId>com.google.code.findbugs</groupId>
154             <artifactId>jsr305</artifactId>
155             <version>3.0.2</version>
156             <optional>true</optional>
157         </dependency>
158     </dependencies>
159
160     <build>
161         <plugins>
162             <plugin>
163                 <groupId>org.apache.aries.blueprint</groupId>
164                 <artifactId>blueprint-maven-plugin</artifactId>
165             </plugin>
166             <plugin>
167                 <groupId>org.apache.felix</groupId>
168                 <artifactId>maven-bundle-plugin</artifactId>
169                 <extensions>true</extensions>
170                 <configuration>
171                     <instructions>
172                         <!-- We purposely don't export any packages to avoid any dependencies
173                              on this bundle and prevent @Singleton annotated classes from being
174                              accidently included in another bundle's blueprint XML  -->
175                         <Export-Package/>
176                     </instructions>
177                 </configuration>
178             </plugin>
179             <plugin>
180                 <groupId>org.codehaus.mojo</groupId>
181                 <artifactId>build-helper-maven-plugin</artifactId>
182                 <executions>
183                     <execution>
184                         <id>attach-artifacts</id>
185                         <goals>
186                             <goal>attach-artifact</goal>
187                         </goals>
188                         <phase>package</phase>
189                         <configuration>
190                             <artifacts>
191                                 <artifact>
192                                     <file>${project.build.directory}/classes/initial/netvirt-neutronvpn-config.xml
193                                     </file>
194                                     <type>xml</type>
195                                     <classifier>config</classifier>
196                                 </artifact>
197                             </artifacts>
198                         </configuration>
199                     </execution>
200                 </executions>
201             </plugin>
202         </plugins>
203     </build>
204
205 </project>