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