Release 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.3</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>javax.inject</groupId>
24             <artifactId>javax.inject</artifactId>
25             <scope>provided</scope>
26             <optional>true</optional>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.genius</groupId>
30             <artifactId>interfacemanager-api</artifactId>
31             <version>${genius.version}</version>
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>cloud-servicechain-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>${project.groupId}</groupId>
55             <artifactId>vpnmanager-api</artifactId>
56             <version>${project.version}</version>
57         </dependency>
58
59         <dependency>
60             <groupId>org.opendaylight.infrautils</groupId>
61             <artifactId>metrics-impl-test</artifactId>
62             <version>${infrautils.version}</version>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.infrautils</groupId>
67             <artifactId>jobcoordinator-impl</artifactId>
68             <version>${infrautils.version}</version>
69             <scope>test</scope>
70         </dependency>
71     </dependencies>
72
73     <build>
74         <plugins>
75             <plugin>
76                 <groupId>org.apache.aries.blueprint</groupId>
77                 <artifactId>blueprint-maven-plugin</artifactId>
78             </plugin>
79             <plugin>
80                 <groupId>org.apache.felix</groupId>
81                 <artifactId>maven-bundle-plugin</artifactId>
82                 <extensions>true</extensions>
83                 <configuration>
84                     <instructions>
85                         <!-- We purposely don't export any packages to avoid any dependencies
86                              on this bundle and prevent @Singleton annotated classes from being
87                              accidently included in another bundle's blueprint XML  -->
88                         <Export-Package/>
89                     </instructions>
90                 </configuration>
91             </plugin>
92         </plugins>
93     </build>
94 </project>