Fix Checkstyle violations related to exception handling in elanmanager.
[netvirt.git] / vpnservice / elanmanager / elanmanager-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2016 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>config-parent</artifactId>
14     <version>0.4.0-SNAPSHOT</version>
15     <relativePath>../../commons/config-parent</relativePath>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.netvirt</groupId>
20   <artifactId>elanmanager-impl</artifactId>
21   <version>${vpnservices.version}</version>
22   <packaging>bundle</packaging>
23
24   <properties>
25     <powermock.version>1.6.4</powermock.version>
26     <mockitoall.version>1.10.19</mockitoall.version>
27   </properties>
28
29   <dependencies>
30     <dependency>
31       <groupId>${project.groupId}</groupId>
32       <artifactId>elanmanager-api</artifactId>
33       <version>${vpnservices.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.genius</groupId>
37       <artifactId>mdsalutil-api</artifactId>
38       <version>${genius.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.genius</groupId>
42       <artifactId>interfacemanager-api</artifactId>
43       <version>${genius.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.genius</groupId>
47       <artifactId>idmanager-api</artifactId>
48       <version>${genius.version}</version>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.genius</groupId>
52       <artifactId>itm-api</artifactId>
53       <version>${genius.version}</version>
54     </dependency>
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>neutronvpn-api</artifactId>
58       <version>${vpnservices.version}</version>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>sal-binding-broker-impl</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.ovsdb</groupId>
66       <artifactId>hwvtepsouthbound-api</artifactId>
67       <version>${vpns.ovsdb.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.neutron</groupId>
71       <artifactId>model</artifactId>
72       <version>${neutron.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>org.apache.karaf.shell</groupId>
76       <artifactId>org.apache.karaf.shell.console</artifactId>
77       <version>3.0.3</version>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.genius</groupId>
81       <artifactId>interfacemanager-impl</artifactId>
82       <version>${genius.version}</version>
83     </dependency>
84     <dependency>
85       <groupId>${project.groupId}</groupId>
86       <artifactId>dhcpservice-api</artifactId>
87       <version>${vpnservices.version}</version>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.ovsdb</groupId>
91       <artifactId>southbound-api</artifactId>
92       <version>${vpns.ovsdb.version}</version>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.ovsdb</groupId>
96       <artifactId>utils.mdsal-utils</artifactId>
97       <version>${vpns.ovsdb.version}</version>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.ovsdb</groupId>
101       <artifactId>utils.southbound-utils</artifactId>
102       <version>${vpns.ovsdb.version}</version>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.ovsdb</groupId>
106       <artifactId>utils.config</artifactId>
107       <version>${vpns.ovsdb.version}</version>
108     </dependency>
109
110       <!--  Only for unit-test -->
111    <dependency>
112         <groupId>org.mockito</groupId>
113         <artifactId>mockito-all</artifactId>
114         <version>${mockitoall.version}</version>
115         <scope>test</scope>
116     </dependency>
117     <dependency>
118         <groupId>org.powermock</groupId>
119         <artifactId>powermock-api-mockito</artifactId>
120         <version>${powermock.version}</version>
121         <scope>test</scope>
122     </dependency>
123     <dependency>
124         <groupId>org.powermock</groupId>
125         <artifactId>powermock-module-junit4</artifactId>
126         <version>${powermock.version}</version>
127         <scope>test</scope>
128     </dependency>
129       <dependency>
130           <groupId>org.opendaylight.controller</groupId>
131           <artifactId>sal-binding-broker-impl</artifactId>
132           <scope>test</scope>
133       </dependency>
134       <dependency>
135           <groupId>org.opendaylight.controller</groupId>
136           <artifactId>sal-binding-broker-impl</artifactId>
137           <version>${mdsal.version}</version>
138           <scope>test</scope>
139           <type>test-jar</type>
140       </dependency>
141       <dependency>
142           <groupId>org.slf4j</groupId>
143           <artifactId>slf4j-simple</artifactId>
144           <scope>test</scope>
145       </dependency>
146   </dependencies>
147
148   <build>
149     <plugins>
150       <plugin>
151         <groupId>org.apache.felix</groupId>
152         <artifactId>maven-bundle-plugin</artifactId>
153         <extensions>true</extensions>
154         <configuration>
155           <instructions>
156             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
157             <Embed-Transitive>true</Embed-Transitive>
158           </instructions>
159         </configuration>
160       </plugin>
161       <plugin>
162         <groupId>org.apache.maven.plugins</groupId>
163         <artifactId>maven-checkstyle-plugin</artifactId>
164         <configuration>
165           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
166         </configuration>
167       </plugin>
168     </plugins>
169   </build>
170
171     <!--
172         Maven Site Configuration
173
174         The following configuration is necessary for maven-site-plugin to
175         correctly identify the correct deployment path for OpenDaylight Maven
176         sites.
177     -->
178     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
179
180     <distributionManagement>
181         <site>
182             <id>opendaylight-site</id>
183             <url>${nexus.site.url}/${project.artifactId}/</url>
184         </site>
185     </distributionManagement>
186 </project>