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