1b62d350d7679ccba67ab220eec3295a484e8347
[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.9.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.6.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             <optional>true</optional>
92         </dependency>
93
94         <dependency>
95             <groupId>org.awaitility</groupId>
96             <artifactId>awaitility</artifactId>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.controller</groupId>
101             <artifactId>sal-binding-broker-impl</artifactId>
102             <version>${controller.mdsal.version}</version>
103             <scope>test</scope>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.genius</groupId>
107             <artifactId>testutils</artifactId>
108             <version>${genius.version}</version>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.genius</groupId>
113             <artifactId>mdsalutil-testutils</artifactId>
114             <version>${genius.version}</version>
115             <scope>test</scope>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.serviceutils</groupId>
119             <artifactId>tools-testutils</artifactId>
120             <version>${serviceutils.version}</version>
121             <scope>test</scope>
122         </dependency>
123     </dependencies>
124
125     <build>
126         <plugins>
127             <plugin>
128                 <groupId>org.apache.aries.blueprint</groupId>
129                 <artifactId>blueprint-maven-plugin</artifactId>
130             </plugin>
131             <plugin>
132                 <groupId>org.apache.felix</groupId>
133                 <artifactId>maven-bundle-plugin</artifactId>
134                 <extensions>true</extensions>
135                 <configuration>
136                     <instructions>
137                         <!-- We purposely don't export any packages to avoid any dependencies
138                              on this bundle and prevent @Singleton annotated classes from being
139                              accidently included in another bundle's blueprint XML  -->
140                         <Export-Package/>
141                     </instructions>
142                 </configuration>
143             </plugin>
144             <plugin>
145                 <groupId>org.codehaus.mojo</groupId>
146                 <artifactId>build-helper-maven-plugin</artifactId>
147                 <executions>
148                     <execution>
149                         <id>attach-artifacts</id>
150                         <goals>
151                             <goal>attach-artifact</goal>
152                         </goals>
153                         <phase>package</phase>
154                         <configuration>
155                             <artifacts>
156                                 <artifact>
157                                     <file>${project.build.directory}/classes/initial/netvirt-coe-config.xml</file>
158                                     <type>xml</type>
159                                     <classifier>config</classifier>
160                                 </artifact>
161                             </artifacts>
162                         </configuration>
163                     </execution>
164                 </executions>
165             </plugin>
166         </plugins>
167     </build>
168 </project>