Bump versions by x.(y+1).z for next dev cycle
[netvirt.git] / coe / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2017 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10
11     <parent>
12         <groupId>org.opendaylight.netvirt</groupId>
13         <artifactId>binding-parent</artifactId>
14         <version>0.8.0-SNAPSHOT</version>
15         <relativePath>../../commons/binding-parent</relativePath>
16     </parent>
17
18     <artifactId>coe-impl</artifactId>
19     <name>ODL :: netvirt :: ${project.artifactId}</name>
20     <packaging>bundle</packaging>
21     <modelVersion>4.0.0</modelVersion>
22
23     <dependencies>
24         <dependency>
25             <groupId>javax.inject</groupId>
26             <artifactId>javax.inject</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.coe</groupId>
30             <artifactId>coe-northbound-api</artifactId>
31             <version>0.5.0-SNAPSHOT</version>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.controller</groupId>
35             <artifactId>sal-binding-api</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.infrautils</groupId>
39             <artifactId>jobcoordinator-api</artifactId>
40             <version>${infrautils.version}</version>
41         </dependency>
42         <dependency>
43             <groupId>${project.groupId}</groupId>
44             <artifactId>coe-api</artifactId>
45             <version>${project.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>elanmanager-api</artifactId>
50             <version>${project.version}</version>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>vpnmanager-api</artifactId>
55             <version>${project.version}</version>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.ovsdb</groupId>
59             <artifactId>utils.southbound-utils</artifactId>
60             <version>${ovsdb.version}</version>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.serviceutils</groupId>
64             <artifactId>tools-api</artifactId>
65             <version>0.3.0-SNAPSHOT</version>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.genius</groupId>
69             <artifactId>mdsalutil-api</artifactId>
70             <version>${genius.version}</version>
71         </dependency>
72     </dependencies>
73
74     <build>
75         <plugins>
76             <plugin>
77                 <groupId>org.apache.aries.blueprint</groupId>
78                 <artifactId>blueprint-maven-plugin</artifactId>
79             </plugin>
80             <plugin>
81                 <groupId>org.apache.felix</groupId>
82                 <artifactId>maven-bundle-plugin</artifactId>
83                 <extensions>true</extensions>
84                 <configuration>
85                     <instructions>
86                         <!-- We purposely don't export any packages to avoid any dependencies
87                              on this bundle and prevent @Singleton annotated classes from being
88                              accidently included in another bundle's blueprint XML  -->
89                         <Export-Package/>
90                     </instructions>
91                 </configuration>
92             </plugin>
93             <plugin>
94                 <groupId>org.eclipse.xtend</groupId>
95                 <artifactId>xtend-maven-plugin</artifactId>
96                 <dependencies>
97                     <dependency>
98                         <groupId>org.eclipse.platform</groupId>
99                         <artifactId>org.eclipse.equinox.common</artifactId>
100                         <version>3.10.0</version>
101                     </dependency>
102                 </dependencies>
103             </plugin>
104             <plugin>
105                 <groupId>org.codehaus.mojo</groupId>
106                 <artifactId>build-helper-maven-plugin</artifactId>
107                 <executions>
108                     <execution>
109                         <id>attach-artifacts</id>
110                         <goals>
111                             <goal>attach-artifact</goal>
112                         </goals>
113                         <phase>package</phase>
114                         <configuration>
115                             <artifacts>
116                                 <artifact>
117                                     <file>${project.build.directory}/classes/initial/netvirt-coe-config.xml</file>
118                                     <type>xml</type>
119                                     <classifier>config</classifier>
120                                 </artifact>
121                             </artifacts>
122                         </configuration>
123                     </execution>
124                 </executions>
125             </plugin>
126         </plugins>
127     </build>
128 </project>