BGPCEP-710: Create Network Topology Loader
[bgpcep.git] / config-loader / bmp-monitors-config-loader / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2017 AT&T Intellectual Property. 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
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13
14     <modelVersion>4.0.0</modelVersion>
15     <parent>
16         <groupId>org.opendaylight.bgpcep</groupId>
17         <artifactId>config-parent</artifactId>
18         <version>0.9.0-SNAPSHOT</version>
19         <relativePath>../../config-parent</relativePath>
20     </parent>
21
22     <artifactId>bmp-monitors-config-loader</artifactId>
23     <description>BGPCEP BMP Monitors configuration Loader</description>
24     <packaging>bundle</packaging>
25     <name>${project.artifactId}</name>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>config-loader-spi</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>bgp-bmp-api</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>config-loader-impl</artifactId>
39             <scope>test</scope>
40         </dependency>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>config-loader-impl</artifactId>
44             <type>test-jar</type>
45             <scope>test</scope>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.mdsal</groupId>
49             <artifactId>mdsal-binding-dom-adapter</artifactId>
50             <scope>test</scope>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.controller</groupId>
54             <artifactId>sal-binding-broker-impl</artifactId>
55             <scope>test</scope>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.controller</groupId>
59             <artifactId>sal-binding-broker-impl</artifactId>
60             <type>test-jar</type>
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>testtool-util</artifactId>
66             <scope>test</scope>
67         </dependency>
68         <!-- junit/mockito default -->
69         <dependency>
70             <groupId>org.mockito</groupId>
71             <artifactId>mockito-core</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>junit</groupId>
76             <artifactId>junit</artifactId>
77         </dependency>
78     </dependencies>
79
80     <build>
81         <plugins>
82             <plugin>
83                 <groupId>org.apache.maven.plugins</groupId>
84                 <artifactId>maven-checkstyle-plugin</artifactId>
85                 <configuration>
86                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
87                 </configuration>
88             </plugin>
89             <plugin>
90                 <groupId>org.codehaus.mojo</groupId>
91                 <artifactId>findbugs-maven-plugin</artifactId>
92                 <configuration>
93                     <failOnError>true</failOnError>
94                 </configuration>
95             </plugin>
96         </plugins>
97     </build>
98
99     <scm>
100         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
101         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
102         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
103         <tag>HEAD</tag>
104     </scm>
105
106     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
107     <distributionManagement>
108         <site>
109             <id>opendaylight-site</id>
110             <url>${nexus.site.url}/${project.artifactId}/</url>
111         </site>
112     </distributionManagement>
113 </project>