Use serviceutils artifacts
[netvirt.git] / fibmanager / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2015 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.8.0-SNAPSHOT</version>
16         <relativePath>../../commons/binding-parent</relativePath>
17     </parent>
18
19     <artifactId>fibmanager-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>javax.inject</groupId>
31             <artifactId>javax.inject</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.genius</groupId>
35             <artifactId>mdsalutil-api</artifactId>
36             <version>${genius.version}</version>
37         </dependency>
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>bgpmanager-api</artifactId>
41             <version>${project.version}</version>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>elanmanager-api</artifactId>
46             <version>${project.version}</version>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>fibmanager-api</artifactId>
51             <version>${project.version}</version>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.genius</groupId>
55             <artifactId>idmanager-api</artifactId>
56             <version>${genius.version}</version>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.genius</groupId>
60             <artifactId>interfacemanager-api</artifactId>
61             <version>${genius.version}</version>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.genius</groupId>
65             <artifactId>itm-api</artifactId>
66             <version>${genius.version}</version>
67         </dependency>
68         <dependency>
69             <groupId>${project.groupId}</groupId>
70             <artifactId>vpnmanager-api</artifactId>
71             <version>${project.version}</version>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.genius</groupId>
75             <artifactId>lockmanager-api</artifactId>
76             <version>${genius.version}</version>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.openflowplugin.model</groupId>
80             <artifactId>model-flow-service</artifactId>
81             <version>${openflowplugin.version}</version>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.serviceutils</groupId>
85             <artifactId>upgrade</artifactId>
86         </dependency>
87     </dependencies>
88
89     <build>
90         <plugins>
91             <plugin>
92                 <groupId>org.apache.aries.blueprint</groupId>
93                 <artifactId>blueprint-maven-plugin</artifactId>
94             </plugin>
95             <plugin>
96                 <groupId>org.apache.felix</groupId>
97                 <artifactId>maven-bundle-plugin</artifactId>
98                 <extensions>true</extensions>
99                 <configuration>
100                     <instructions>
101                         <!-- We purposely don't export any packages to avoid any dependencies
102                              on this bundle and prevent @Singleton annotated classes from being
103                              accidently included in another bundle's blueprint XML  -->
104                         <Export-Package/>
105                     </instructions>
106                 </configuration>
107             </plugin>
108         </plugins>
109     </build>
110 </project>