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