Integrate controller-2.0.1
[netvirt.git] / vpnmanager / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 - 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>vpnmanager-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.opendaylight.genius</groupId>
27             <artifactId>alivenessmonitor-api</artifactId>
28             <version>${genius.version}</version>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.genius</groupId>
32             <artifactId>arputil-api</artifactId>
33             <version>${genius.version}</version>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.genius</groupId>
37             <artifactId>idmanager-api</artifactId>
38             <version>${genius.version}</version>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.genius</groupId>
42             <artifactId>interfacemanager-api</artifactId>
43             <version>${genius.version}</version>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.genius</groupId>
47             <artifactId>itm-api</artifactId>
48             <version>${genius.version}</version>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.genius</groupId>
52             <artifactId>lockmanager-api</artifactId>
53             <version>${genius.version}</version>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.genius</groupId>
57             <artifactId>mdsalutil-api</artifactId>
58             <version>${genius.version}</version>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>bgpmanager-api</artifactId>
63             <version>${project.version}</version>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>fibmanager-api</artifactId>
68             <version>${project.version}</version>
69         </dependency>
70         <dependency>
71             <groupId>${project.groupId}</groupId>
72             <artifactId>natservice-api</artifactId>
73             <version>${project.version}</version>
74         </dependency>
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77             <artifactId>neutronvpn-api</artifactId>
78             <version>${project.version}</version>
79         </dependency>
80         <dependency>
81             <groupId>${project.groupId}</groupId>
82             <artifactId>vpnmanager-api</artifactId>
83             <version>${project.version}</version>
84         </dependency>
85         <dependency>
86             <groupId>${project.groupId}</groupId>
87             <artifactId>elanmanager-api</artifactId>
88             <version>${project.version}</version>
89         </dependency>
90         <dependency>
91             <groupId>org.opendaylight.genius</groupId>
92             <artifactId>ipv6util-api</artifactId>
93             <version>${genius.version}</version>
94         </dependency>
95         <dependency>
96             <groupId>${project.groupId}</groupId>
97             <artifactId>ipv6service-api</artifactId>
98             <version>${project.version}</version>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.serviceutils</groupId>
102             <artifactId>upgrade</artifactId>
103         </dependency>
104
105         <!-- Testing dependencies -->
106         <dependency>
107             <groupId>org.opendaylight.mdsal</groupId>
108             <artifactId>mdsal-binding-test-utils</artifactId>
109         </dependency>
110     </dependencies>
111
112     <build>
113         <plugins>
114             <plugin>
115                 <groupId>org.apache.aries.blueprint</groupId>
116                 <artifactId>blueprint-maven-plugin</artifactId>
117             </plugin>
118             <plugin>
119                 <groupId>org.apache.felix</groupId>
120                 <artifactId>maven-bundle-plugin</artifactId>
121                 <extensions>true</extensions>
122                 <configuration>
123                     <instructions>
124                         <!-- We purposely don't export any packages to avoid any dependencies
125                              on this bundle and prevent @Singleton annotated classes from being
126                              accidently included in another bundle's blueprint XML  -->
127                         <Export-Package/>
128                     </instructions>
129                 </configuration>
130             </plugin>
131             <plugin>
132                 <groupId>org.codehaus.mojo</groupId>
133                 <artifactId>build-helper-maven-plugin</artifactId>
134                 <executions>
135                     <execution>
136                         <id>attach-artifacts</id>
137                         <goals>
138                             <goal>attach-artifact</goal>
139                         </goals>
140                         <phase>package</phase>
141                         <configuration>
142                             <artifacts>
143                                 <artifact>
144                                     <file>${project.build.directory}/classes/initial/netvirt-vpnmanager-config.xml
145                                     </file>
146                                     <type>xml</type>
147                                     <classifier>config</classifier>
148                                 </artifact>
149                             </artifacts>
150                         </configuration>
151                     </execution>
152                 </executions>
153             </plugin>
154         </plugins>
155     </build>
156 </project>