1 <?xml version="1.0" encoding="UTF-8"?>
3 Copyright (c) 2015 Ericsson India Global Services Pvt Ltd. and others. All rights reserved.
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
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13 <groupId>org.opendaylight.netvirt</groupId>
14 <artifactId>binding-parent</artifactId>
15 <version>0.10.0-SNAPSHOT</version>
16 <relativePath>../../commons/binding-parent</relativePath>
19 <artifactId>bgpmanager-impl</artifactId>
20 <name>ODL :: netvirt :: ${project.artifactId}</name>
21 <packaging>bundle</packaging>
22 <modelVersion>4.0.0</modelVersion>
26 <groupId>org.osgi</groupId>
27 <artifactId>org.osgi.core</artifactId>
30 <groupId>${project.groupId}</groupId>
31 <artifactId>bgpmanager-api</artifactId>
32 <version>${project.version}</version>
35 <groupId>${project.groupId}</groupId>
36 <artifactId>elanmanager-api</artifactId>
37 <version>${project.version}</version>
40 <groupId>org.opendaylight.genius</groupId>
41 <artifactId>mdsalutil-api</artifactId>
42 <version>${genius.version}</version>
45 <groupId>org.opendaylight.ovsdb</groupId>
46 <artifactId>utils.mdsal-utils</artifactId>
47 <version>${ovsdb.version}</version>
50 <groupId>${project.groupId}</groupId>
51 <artifactId>model-bgp</artifactId>
52 <version>${model.bgp.version}</version>
55 <groupId>org.apache.thrift</groupId>
56 <artifactId>libthrift</artifactId>
57 <version>0.9.3</version>
60 <groupId>${project.groupId}</groupId>
61 <artifactId>fibmanager-api</artifactId>
62 <version>${project.version}</version>
65 <groupId>${project.groupId}</groupId>
66 <artifactId>vpnmanager-api</artifactId>
67 <version>${project.version}</version>
70 <groupId>org.opendaylight.controller</groupId>
71 <artifactId>sal-binding-broker-impl</artifactId>
75 <groupId>org.opendaylight.controller</groupId>
76 <artifactId>sal-binding-broker-impl</artifactId>
81 <groupId>org.apache.karaf.shell</groupId>
82 <artifactId>org.apache.karaf.shell.console</artifactId>
83 <scope>provided</scope>
86 <groupId>com.google.truth</groupId>
87 <artifactId>truth</artifactId>
91 <groupId>org.opendaylight.infrautils</groupId>
92 <artifactId>metrics-api</artifactId>
93 <version>${infrautils.version}</version>
100 <groupId>org.apache.aries.blueprint</groupId>
101 <artifactId>blueprint-maven-plugin</artifactId>
104 <groupId>org.apache.felix</groupId>
105 <artifactId>maven-bundle-plugin</artifactId>
106 <extensions>true</extensions>
109 <!-- We purposely don't export any packages to avoid any dependencies
110 on this bundle and prevent @Singleton annotated classes from being
111 accidently included in another bundle's blueprint XML -->
117 <groupId>org.apache.maven.plugins</groupId>
118 <artifactId>maven-checkstyle-plugin</artifactId>
120 <excludes>**/gen/**/*</excludes>
124 <groupId>org.apache.maven.plugins</groupId>
125 <artifactId>maven-pmd-plugin</artifactId>
127 <excludes>**/gen/**/*</excludes>
131 <groupId>com.github.spotbugs</groupId>
132 <artifactId>spotbugs-maven-plugin</artifactId>
134 <failOnError>true</failOnError>
136 We specifically include the packages to analyze since we don't want the
137 thrift-generated classes analyzed since they yield violations. It would be
138 better to specify the packages to exclude which can be done via an
139 <excludeFilterFile> but then we wouldn't pick up the exclusions filter file
142 NOTE: it would be nice to list each package on a separate line but FindBugs
143 doesn't seem to trim WS between the commas.
146 org.opendaylight.netvirt.bgpmanager.*,org.opendaylight.netvirt.bgpmanager.commands.*,org.opendaylight.netvirt.bgpmanager.oam.*,org.opendaylight.netvirt.bgpmanager.thrift.client.*,org.opendaylight.netvirt.bgpmanager.thrift.server.*