Fix FindBugs violations and enable enforcement in qosservice
[netvirt.git] / vpnservice / qosservice / api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2017 Ericsson India Global Services Pvt Ltd. and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <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">
9   <parent>
10     <groupId>org.opendaylight.netvirt</groupId>
11     <artifactId>binding-parent</artifactId>
12     <version>0.6.0-SNAPSHOT</version>
13     <relativePath>../../commons/binding-parent</relativePath>
14   </parent>
15
16   <modelVersion>4.0.0</modelVersion>
17   <artifactId>qosservice-api</artifactId>
18   <name>ODL :: netvirt :: ${project.artifactId}</name>
19   <packaging>bundle</packaging>
20   <dependencies>
21     <dependency>
22       <groupId>org.opendaylight.mdsal</groupId>
23       <artifactId>yang-binding</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.mdsal.model</groupId>
27       <artifactId>yang-ext</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.mdsal.model</groupId>
31       <artifactId>iana-if-type-2014-05-08</artifactId>
32     </dependency>
33   </dependencies>
34
35   <build>
36     <plugins>
37       <plugin>
38         <groupId>org.codehaus.mojo</groupId>
39         <artifactId>findbugs-maven-plugin</artifactId>
40         <configuration>
41           <failOnError>true</failOnError>
42         </configuration>
43       </plugin>
44     </plugins>
45   </build>
46
47   <!--
48       Maven Site Configuration
49
50       The following configuration is necessary for maven-site-plugin to
51       correctly identify the correct deployment path for OpenDaylight Maven
52       sites.
53   -->
54   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
55
56   <distributionManagement>
57     <site>
58       <id>opendaylight-site</id>
59       <url>${nexus.site.url}/${project.artifactId}/</url>
60     </site>
61   </distributionManagement>
62 </project>