Freeze upstream versions
[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.12.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             <scope>provided</scope>
33             <optional>true</optional>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.genius</groupId>
37             <artifactId>mdsalutil-api</artifactId>
38             <version>${genius.version}</version>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.mdsal</groupId>
42             <artifactId>mdsal-binding-util</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>bgpmanager-api</artifactId>
47             <version>${project.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>elanmanager-api</artifactId>
52             <version>${project.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>fibmanager-api</artifactId>
57             <version>${project.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.genius</groupId>
61             <artifactId>idmanager-api</artifactId>
62             <version>${genius.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.genius</groupId>
66             <artifactId>interfacemanager-api</artifactId>
67             <version>${genius.version}</version>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.genius</groupId>
71             <artifactId>itm-api</artifactId>
72             <version>${genius.version}</version>
73         </dependency>
74         <dependency>
75             <groupId>${project.groupId}</groupId>
76             <artifactId>vpnmanager-api</artifactId>
77             <version>${project.version}</version>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.genius</groupId>
81             <artifactId>lockmanager-api</artifactId>
82             <version>${genius.version}</version>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.openflowplugin.model</groupId>
86             <artifactId>model-flow-service</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.serviceutils</groupId>
90             <artifactId>upgrade</artifactId>
91         </dependency>
92     </dependencies>
93
94     <build>
95         <plugins>
96             <plugin>
97                 <groupId>org.apache.aries.blueprint</groupId>
98                 <artifactId>blueprint-maven-plugin</artifactId>
99             </plugin>
100             <plugin>
101                 <groupId>org.apache.felix</groupId>
102                 <artifactId>maven-bundle-plugin</artifactId>
103                 <extensions>true</extensions>
104                 <configuration>
105                     <instructions>
106                         <!-- We purposely don't export any packages to avoid any dependencies
107                              on this bundle and prevent @Singleton annotated classes from being
108                              accidently included in another bundle's blueprint XML  -->
109                         <Export-Package/>
110                     </instructions>
111                 </configuration>
112             </plugin>
113         </plugins>
114     </build>
115 </project>