Release Nitrogen
[bgpcep.git] / features / bgp / odl-bgpcep-config-files / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <groupId>org.opendaylight.odlparent</groupId>
8         <artifactId>single-feature-parent</artifactId>
9         <version>2.0.4</version>
10         <relativePath/>
11     </parent>
12     
13     <groupId>org.opendaylight.bgpcep</groupId>
14     <artifactId>odl-bgpcep-config-files</artifactId>
15     <version>0.8.0</version>
16     <packaging>feature</packaging>
17
18     <name>OpenDaylight :: Configuration Example Files</name>
19
20     <dependencyManagement>
21         <!-- ODL-BGP-ARTIFACTS -->
22         <dependencies>
23             <dependency>
24                 <groupId>org.opendaylight.bgpcep</groupId>
25                 <artifactId>bgpcep-artifacts</artifactId>
26                 <version>${project.version}</version>
27                 <type>pom</type>
28                 <scope>import</scope>
29             </dependency>
30         </dependencies>
31     </dependencyManagement>
32
33     <dependencies>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>bgp-controller-config</artifactId>
37             <type>xml</type>
38             <classifier>bgp-initial-config</classifier>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>bgp-controller-config</artifactId>
43             <type>xml</type>
44             <classifier>network-topology-initial-config</classifier>
45         </dependency>
46     </dependencies>
47
48     <!--
49         Maven Site Configuration
50
51         The following configuration is necessary for maven-site-plugin to
52         correctly identify the correct deployment path for OpenDaylight Maven
53         sites.
54     -->
55     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
56
57     <distributionManagement>
58         <site>
59             <id>opendaylight-site</id>
60             <url>${nexus.site.url}/${project.artifactId}/</url>
61         </site>
62     </distributionManagement>
63 </project>