BGPCEP-710: Create Network Topology Loader
[bgpcep.git] / features / config-loader / odl-bgpcep-bmp-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 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.odlparent</groupId>
15         <artifactId>single-feature-parent</artifactId>
16         <version>2.0.5</version>
17         <relativePath/>
18     </parent>
19
20     <groupId>org.opendaylight.bgpcep</groupId>
21     <artifactId>odl-bgpcep-bmp-config-loader</artifactId>
22     <version>0.9.0-SNAPSHOT</version>
23     <packaging>feature</packaging>
24
25     <name>OpenDaylight :: BGPCEP :: BMP Config Loader</name>
26
27     <dependencyManagement>
28         <!-- ODL-BGP-ARTIFACTS -->
29         <dependencies>
30             <dependency>
31                 <groupId>org.opendaylight.bgpcep</groupId>
32                 <artifactId>bgpcep-artifacts</artifactId>
33                 <version>${project.version}</version>
34                 <type>pom</type>
35                 <scope>import</scope>
36             </dependency>
37             <dependency>
38                 <groupId>org.opendaylight.bgpcep</groupId>
39                 <artifactId>dependency-version-management</artifactId>
40                 <version>${project.version}</version>
41                 <type>pom</type>
42                 <scope>import</scope>
43             </dependency>
44         </dependencies>
45     </dependencyManagement>
46
47     <dependencies>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>bmp-monitors-config-loader</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>odl-bgpcep-config-loader-impl</artifactId>
55             <classifier>features</classifier>
56             <type>xml</type>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.controller</groupId>
60             <artifactId>odl-mdsal-broker</artifactId>
61             <type>xml</type>
62             <classifier>features</classifier>
63         </dependency>
64     </dependencies>
65
66     <!--
67         Maven Site Configuration
68
69         The following configuration is necessary for maven-site-plugin to
70         correctly identify the correct deployment path for OpenDaylight Maven
71         sites.
72     -->
73     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
74
75     <distributionManagement>
76         <site>
77             <id>opendaylight-site</id>
78             <url>${nexus.site.url}/${project.artifactId}/</url>
79         </site>
80     </distributionManagement>
81 </project>