Release Carbon
[bgpcep.git] / features / bgp / odl-bgpcep-bgp-config-loader / 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>1.8.4-Carbon</version>
10         <relativePath/>
11     </parent>
12
13     <groupId>org.opendaylight.bgpcep</groupId>
14     <artifactId>odl-bgpcep-bgp-config-loader</artifactId>
15     <version>0.7.4-Carbon</version>
16     <packaging>feature</packaging>
17
18     <name>OpenDaylight :: BGP :: Config Loader</name>
19
20     <properties>
21         <mdsal.common.version>2.2.4-Carbon</mdsal.common.version>
22     </properties>
23
24     <dependencyManagement>
25         <!-- ODL-BGP-ARTIFACTS -->
26         <dependencies>
27             <dependency>
28                 <groupId>org.opendaylight.bgpcep</groupId>
29                 <artifactId>bgpcep-artifacts</artifactId>
30                 <version>${project.version}</version>
31                 <type>pom</type>
32                 <scope>import</scope>
33             </dependency>
34             <dependency>
35                 <groupId>org.opendaylight.mdsal</groupId>
36                 <artifactId>mdsal-artifacts</artifactId>
37                 <version>${mdsal.common.version}</version>
38                 <type>pom</type>
39                 <scope>import</scope>
40             </dependency>
41         </dependencies>
42     </dependencyManagement>
43
44     <dependencies>
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>bgp-config-loader-spi</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>bgp-config-loader-impl</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>odl-bgpcep-config-files</artifactId>
56             <type>xml</type>
57             <classifier>features</classifier>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.mdsal</groupId>
61             <artifactId>odl-mdsal-dom-api</artifactId>
62             <type>xml</type>
63             <classifier>features</classifier>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.mdsal</groupId>
67             <artifactId>odl-mdsal-binding-runtime</artifactId>
68             <type>xml</type>
69             <classifier>features</classifier>
70         </dependency>
71     </dependencies>
72
73     <!--
74         Maven Site Configuration
75
76         The following configuration is necessary for maven-site-plugin to
77         correctly identify the correct deployment path for OpenDaylight Maven
78         sites.
79     -->
80     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
81
82     <distributionManagement>
83         <site>
84             <id>opendaylight-site</id>
85             <url>${nexus.site.url}/${project.artifactId}/</url>
86         </site>
87     </distributionManagement>
88 </project>