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