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