BGPCEP-710: Create Network Topology Loader
[bgpcep.git] / config-loader / protocols-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>protocols-config-loader</artifactId>
23     <description>BGPCEP Protocols 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-openconfig-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             <scope>test</scope>
78         </dependency>
79     </dependencies>
80
81     <build>
82         <plugins>
83             <plugin>
84                 <groupId>org.apache.maven.plugins</groupId>
85                 <artifactId>maven-checkstyle-plugin</artifactId>
86                 <configuration>
87                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
88                 </configuration>
89             </plugin>
90             <plugin>
91                 <groupId>org.codehaus.mojo</groupId>
92                 <artifactId>findbugs-maven-plugin</artifactId>
93                 <configuration>
94                     <failOnError>true</failOnError>
95                 </configuration>
96             </plugin>
97         </plugins>
98     </build>
99
100     <scm>
101         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
102         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
103         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
104         <tag>HEAD</tag>
105     </scm>
106
107     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
108     <distributionManagement>
109         <site>
110             <id>opendaylight-site</id>
111             <url>${nexus.site.url}/${project.artifactId}/</url>
112         </site>
113     </distributionManagement>
114 </project>