e86fc8e0513cb94d59c21f214aff616ff55fa776
[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>managed-tx-parent</artifactId>
12         <version>0.7.0-SNAPSHOT</version>
13         <relativePath>../../commons/managed-tx-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         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.controller</groupId>
28             <artifactId>sal-binding-broker-impl</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.genius</groupId>
32             <artifactId>interfacemanager-api</artifactId>
33             <version>${genius.version}</version>
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>${project.groupId}</groupId>
42             <artifactId>cloud-servicechain-api</artifactId>
43             <version>${project.version}</version>
44         </dependency>
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>elanmanager-api</artifactId>
48             <version>${project.version}</version>
49         </dependency>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>fibmanager-api</artifactId>
53             <version>${project.version}</version>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>vpnmanager-api</artifactId>
58             <version>${project.version}</version>
59         </dependency>
60
61         <dependency>
62             <groupId>org.opendaylight.infrautils</groupId>
63             <artifactId>metrics-impl-test</artifactId>
64             <version>${infrautils.version}</version>
65             <scope>test</scope>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.infrautils</groupId>
69             <artifactId>jobcoordinator-impl</artifactId>
70             <version>${infrautils.version}</version>
71             <scope>test</scope>
72         </dependency>
73     </dependencies>
74
75     <build>
76         <plugins>
77             <plugin>
78                 <groupId>org.apache.aries.blueprint</groupId>
79                 <artifactId>blueprint-maven-plugin</artifactId>
80             </plugin>
81             <plugin>
82                 <groupId>org.apache.felix</groupId>
83                 <artifactId>maven-bundle-plugin</artifactId>
84                 <extensions>true</extensions>
85                 <configuration>
86                     <instructions>
87                         <!-- We purposely don't export any packages to avoid any dependencies
88                              on this bundle and prevent @Singleton annotated classes from being
89                              accidently included in another bundle's blueprint XML  -->
90                         <Export-Package/>
91                     </instructions>
92                 </configuration>
93             </plugin>
94         </plugins>
95     </build>
96 </project>