MRI version bumpup for Aluminium
[netvirt.git] / cloud-servicechain / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!-- Copyright (c) 2015 Ericsson India Global Services Pvt Ltd. and others.
3  All rights reserved. This program and the accompanying materials are made
4  available under the terms of the Eclipse Public License v1.0 which accompanies
5  this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8
9     <parent>
10         <groupId>org.opendaylight.netvirt</groupId>
11         <artifactId>binding-parent</artifactId>
12         <version>0.11.0-SNAPSHOT</version>
13         <relativePath>../../commons/binding-parent</relativePath>
14     </parent>
15
16     <artifactId>cloud-servicechain-impl</artifactId>
17     <name>ODL :: netvirt :: ${project.artifactId}</name>
18     <packaging>bundle</packaging>
19     <modelVersion>4.0.0</modelVersion>
20
21     <dependencies>
22         <dependency>
23             <groupId>org.osgi</groupId>
24             <artifactId>org.osgi.core</artifactId>
25             <scope>provided</scope>
26         </dependency>
27         <dependency>
28             <groupId>javax.inject</groupId>
29             <artifactId>javax.inject</artifactId>
30             <scope>provided</scope>
31             <optional>true</optional>
32         </dependency>
33 <!--        <dependency>
34             <groupId>org.opendaylight.controller</groupId>
35             <artifactId>sal-binding-broker-impl</artifactId>
36         </dependency>-->
37         <dependency>
38             <groupId>org.opendaylight.mdsal</groupId>
39             <artifactId>mdsal-binding-dom-adapter</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.genius</groupId>
43             <artifactId>interfacemanager-api</artifactId>
44             <version>${genius.version}</version>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.genius</groupId>
48             <artifactId>mdsalutil-api</artifactId>
49             <version>${genius.version}</version>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>cloud-servicechain-api</artifactId>
54             <version>${project.version}</version>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>elanmanager-api</artifactId>
59             <version>${project.version}</version>
60         </dependency>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>fibmanager-api</artifactId>
64             <version>${project.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>vpnmanager-api</artifactId>
69             <version>${project.version}</version>
70         </dependency>
71
72         <dependency>
73             <groupId>org.opendaylight.infrautils</groupId>
74             <artifactId>metrics-impl-test</artifactId>
75             <version>${infrautils.version}</version>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.infrautils</groupId>
80             <artifactId>jobcoordinator-impl</artifactId>
81             <version>${infrautils.version}</version>
82             <scope>test</scope>
83         </dependency>
84     </dependencies>
85
86     <build>
87         <plugins>
88             <plugin>
89                 <groupId>org.apache.aries.blueprint</groupId>
90                 <artifactId>blueprint-maven-plugin</artifactId>
91             </plugin>
92             <plugin>
93                 <groupId>org.apache.felix</groupId>
94                 <artifactId>maven-bundle-plugin</artifactId>
95                 <extensions>true</extensions>
96                 <configuration>
97                     <instructions>
98                         <!-- We purposely don't export any packages to avoid any dependencies
99                              on this bundle and prevent @Singleton annotated classes from being
100                              accidently included in another bundle's blueprint XML  -->
101                         <Export-Package/>
102                     </instructions>
103                 </configuration>
104             </plugin>
105         </plugins>
106     </build>
107 </project>