d96edd12233265888939b57c7b3f768a01a74bf7
[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.genius</groupId>
39             <artifactId>networkutils</artifactId>
40             <version>${genius.version}</version>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.infrautils</groupId>
44             <artifactId>jobcoordinator-api</artifactId>
45             <version>${infrautils.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.mdsal.model</groupId>
49             <artifactId>ietf-access-control-list</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.mdsal.model</groupId>
53             <artifactId>yang-ext</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>aclservice-api</artifactId>
58             <version>${project.version}</version>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>coe-api</artifactId>
63             <version>${project.version}</version>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>elanmanager-api</artifactId>
68             <version>${project.version}</version>
69         </dependency>
70         <dependency>
71             <groupId>${project.groupId}</groupId>
72             <artifactId>vpnmanager-api</artifactId>
73             <version>${project.version}</version>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.ovsdb</groupId>
77             <artifactId>utils.southbound-utils</artifactId>
78             <version>${ovsdb.version}</version>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.serviceutils</groupId>
82             <artifactId>listener-api</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.serviceutils</groupId>
86             <artifactId>tools-api</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.apache.aries.blueprint</groupId>
90             <artifactId>blueprint-maven-plugin-annotation</artifactId>
91         </dependency>
92
93         <dependency>
94             <groupId>org.awaitility</groupId>
95             <artifactId>awaitility</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.controller</groupId>
100             <artifactId>sal-binding-broker-impl</artifactId>
101             <version>${controller.mdsal.version}</version>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.genius</groupId>
106             <artifactId>testutils</artifactId>
107             <version>${genius.version}</version>
108             <scope>test</scope>
109         </dependency>
110         <dependency>
111             <groupId>org.opendaylight.genius</groupId>
112             <artifactId>mdsalutil-testutils</artifactId>
113             <version>${genius.version}</version>
114             <scope>test</scope>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.serviceutils</groupId>
118             <artifactId>tools-testutils</artifactId>
119             <version>${serviceutils.version}</version>
120             <scope>test</scope>
121         </dependency>
122     </dependencies>
123
124     <build>
125         <plugins>
126             <plugin>
127                 <groupId>org.apache.aries.blueprint</groupId>
128                 <artifactId>blueprint-maven-plugin</artifactId>
129             </plugin>
130             <plugin>
131                 <groupId>org.apache.felix</groupId>
132                 <artifactId>maven-bundle-plugin</artifactId>
133                 <extensions>true</extensions>
134                 <configuration>
135                     <instructions>
136                         <!-- We purposely don't export any packages to avoid any dependencies
137                              on this bundle and prevent @Singleton annotated classes from being
138                              accidently included in another bundle's blueprint XML  -->
139                         <Export-Package/>
140                     </instructions>
141                 </configuration>
142             </plugin>
143             <plugin>
144                 <groupId>org.codehaus.mojo</groupId>
145                 <artifactId>build-helper-maven-plugin</artifactId>
146                 <executions>
147                     <execution>
148                         <id>attach-artifacts</id>
149                         <goals>
150                             <goal>attach-artifact</goal>
151                         </goals>
152                         <phase>package</phase>
153                         <configuration>
154                             <artifacts>
155                                 <artifact>
156                                     <file>${project.build.directory}/classes/initial/netvirt-coe-config.xml</file>
157                                     <type>xml</type>
158                                     <classifier>config</classifier>
159                                 </artifact>
160                             </artifacts>
161                         </configuration>
162                     </execution>
163                 </executions>
164             </plugin>
165         </plugins>
166     </build>
167 </project>