BGPCEP-580: Implement PCEP stats DS rendering
[bgpcep.git] / config-loader / config-loader-artifacts / 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     <modelVersion>4.0.0</modelVersion>
14
15     <parent>
16         <groupId>org.opendaylight.odlparent</groupId>
17         <artifactId>odlparent-lite</artifactId>
18         <version>2.0.5</version>
19         <relativePath/>
20     </parent>
21
22     <groupId>org.opendaylight.bgpcep</groupId>
23     <artifactId>config-loader-artifacts</artifactId>
24     <version>0.9.0-SNAPSHOT</version>
25     <packaging>pom</packaging>
26
27     <dependencyManagement>
28         <dependencies>
29             <dependency>
30                 <groupId>${project.groupId}</groupId>
31                 <artifactId>odl-bgpcep-config-loader</artifactId>
32                 <classifier>features</classifier>
33                 <type>xml</type>
34                 <version>${project.version}</version>
35             </dependency>
36             <dependency>
37                 <groupId>${project.groupId}</groupId>
38                 <artifactId>features-config-loader</artifactId>
39                 <version>${project.version}</version>
40             </dependency>
41             <dependency>
42                 <groupId>${project.groupId}</groupId>
43                 <artifactId>config-loader-spi</artifactId>
44                 <version>${project.version}</version>
45             </dependency>
46             <dependency>
47                 <groupId>${project.groupId}</groupId>
48                 <artifactId>config-loader-impl</artifactId>
49                 <version>${project.version}</version>
50             </dependency>
51             <dependency>
52                 <groupId>${project.groupId}</groupId>
53                 <artifactId>config-loader-impl</artifactId>
54                 <version>${project.version}</version>
55                 <type>test-jar</type>
56                 <scope>test</scope>
57             </dependency>
58         </dependencies>
59     </dependencyManagement>
60
61     <!--
62         Maven Site Configuration
63
64         The following configuration is necessary for maven-site-plugin to
65         correctly identify the correct deployment path for OpenDaylight Maven
66         sites.
67     -->
68     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
69
70     <distributionManagement>
71         <site>
72             <id>opendaylight-site</id>
73             <url>${nexus.site.url}/${project.artifactId}/</url>
74         </site>
75     </distributionManagement>
76 </project>