cf67964f12a3e01e72ce49c67f0fd405aeb8209a
[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         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.genius</groupId>
68             <artifactId>mdsalutil-api</artifactId>
69             <version>${genius.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.genius</groupId>
73             <artifactId>networkutils</artifactId>
74             <version>0.6.0-SNAPSHOT</version>
75         </dependency>
76         <dependency>
77             <groupId>org.apache.aries.blueprint</groupId>
78             <artifactId>blueprint-maven-plugin-annotation</artifactId>
79         </dependency>
80     </dependencies>
81
82     <build>
83         <plugins>
84             <plugin>
85                 <groupId>org.apache.aries.blueprint</groupId>
86                 <artifactId>blueprint-maven-plugin</artifactId>
87             </plugin>
88             <plugin>
89                 <groupId>org.apache.felix</groupId>
90                 <artifactId>maven-bundle-plugin</artifactId>
91                 <extensions>true</extensions>
92                 <configuration>
93                     <instructions>
94                         <!-- We purposely don't export any packages to avoid any dependencies
95                              on this bundle and prevent @Singleton annotated classes from being
96                              accidently included in another bundle's blueprint XML  -->
97                         <Export-Package/>
98                     </instructions>
99                 </configuration>
100             </plugin>
101             <plugin>
102                 <groupId>org.codehaus.mojo</groupId>
103                 <artifactId>build-helper-maven-plugin</artifactId>
104                 <executions>
105                     <execution>
106                         <id>attach-artifacts</id>
107                         <goals>
108                             <goal>attach-artifact</goal>
109                         </goals>
110                         <phase>package</phase>
111                         <configuration>
112                             <artifacts>
113                                 <artifact>
114                                     <file>${project.build.directory}/classes/initial/netvirt-coe-config.xml</file>
115                                     <type>xml</type>
116                                     <classifier>config</classifier>
117                                 </artifact>
118                             </artifacts>
119                         </configuration>
120                     </execution>
121                 </executions>
122             </plugin>
123         </plugins>
124     </build>
125 </project>