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