NETVIRT-1630 migrate to md-sal APIs
[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             <optional>true</optional>
31         </dependency>
32 <!--        <dependency>
33             <groupId>org.opendaylight.controller</groupId>
34             <artifactId>sal-binding-broker-impl</artifactId>
35         </dependency>-->
36         <dependency>
37             <groupId>org.opendaylight.mdsal</groupId>
38             <artifactId>mdsal-binding-dom-adapter</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.genius</groupId>
42             <artifactId>interfacemanager-api</artifactId>
43             <version>${genius.version}</version>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.genius</groupId>
47             <artifactId>mdsalutil-api</artifactId>
48             <version>${genius.version}</version>
49         </dependency>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>cloud-servicechain-api</artifactId>
53             <version>${project.version}</version>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>elanmanager-api</artifactId>
58             <version>${project.version}</version>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>fibmanager-api</artifactId>
63             <version>${project.version}</version>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>vpnmanager-api</artifactId>
68             <version>${project.version}</version>
69         </dependency>
70
71         <dependency>
72             <groupId>org.opendaylight.infrautils</groupId>
73             <artifactId>metrics-impl-test</artifactId>
74             <version>${infrautils.version}</version>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.infrautils</groupId>
79             <artifactId>jobcoordinator-impl</artifactId>
80             <version>${infrautils.version}</version>
81             <scope>test</scope>
82         </dependency>
83     </dependencies>
84
85     <build>
86         <plugins>
87             <plugin>
88                 <groupId>org.apache.aries.blueprint</groupId>
89                 <artifactId>blueprint-maven-plugin</artifactId>
90             </plugin>
91             <plugin>
92                 <groupId>org.apache.felix</groupId>
93                 <artifactId>maven-bundle-plugin</artifactId>
94                 <extensions>true</extensions>
95                 <configuration>
96                     <instructions>
97                         <!-- We purposely don't export any packages to avoid any dependencies
98                              on this bundle and prevent @Singleton annotated classes from being
99                              accidently included in another bundle's blueprint XML  -->
100                         <Export-Package/>
101                     </instructions>
102                 </configuration>
103             </plugin>
104         </plugins>
105     </build>
106 </project>