b09c9544e2f854c754d5d4f4665d48d2b097f0fd
[bgpcep.git] / features / bgp / odl-bgpcep-bgp / 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.5</version>
10         <relativePath/>
11     </parent>
12
13     <groupId>org.opendaylight.bgpcep</groupId>
14     <artifactId>odl-bgpcep-bgp</artifactId>
15     <version>0.9.0-SNAPSHOT</version>
16     <packaging>feature</packaging>
17
18     <name>OpenDaylight :: BGP</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>odl-bgpcep-bgp-parser</artifactId>
37             <classifier>features</classifier>
38             <type>xml</type>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>odl-bgpcep-bgp-rib-api</artifactId>
43             <classifier>features</classifier>
44             <type>xml</type>
45         </dependency>
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>odl-bgpcep-bgp-openconfig</artifactId>
49             <classifier>features</classifier>
50             <type>xml</type>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>odl-bgpcep-bgp-rib-impl</artifactId>
55             <classifier>features</classifier>
56             <type>xml</type>
57         </dependency>
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>odl-bgpcep-bgp-openconfig-state</artifactId>
61             <classifier>features</classifier>
62             <type>xml</type>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>odl-bgpcep-bgp-path-selection-mode</artifactId>
67             <classifier>features</classifier>
68             <type>xml</type>
69         </dependency>
70         <dependency>
71             <groupId>${project.groupId}</groupId>
72             <artifactId>odl-bgpcep-bgp-topology</artifactId>
73             <classifier>features</classifier>
74             <type>xml</type>
75         </dependency>
76         <dependency>
77             <groupId>${project.groupId}</groupId>
78             <artifactId>odl-bgpcep-bgp-cli</artifactId>
79             <classifier>features</classifier>
80             <type>xml</type>
81         </dependency>
82         <dependency>
83             <groupId>${project.groupId}</groupId>
84             <artifactId>odl-bgpcep-bgp-inet</artifactId>
85             <classifier>features</classifier>
86             <type>xml</type>
87         </dependency>
88         <dependency>
89             <groupId>${project.groupId}</groupId>
90             <artifactId>odl-bgpcep-bgp-linkstate</artifactId>
91             <classifier>features</classifier>
92             <type>xml</type>
93         </dependency>
94         <dependency>
95             <groupId>${project.groupId}</groupId>
96             <artifactId>odl-bgpcep-bgp-flowspec</artifactId>
97             <classifier>features</classifier>
98             <type>xml</type>
99         </dependency>
100         <dependency>
101             <groupId>${project.groupId}</groupId>
102             <artifactId>odl-bgpcep-bgp-labeled-unicast</artifactId>
103             <classifier>features</classifier>
104             <type>xml</type>
105         </dependency>
106         <dependency>
107             <groupId>${project.groupId}</groupId>
108             <artifactId>odl-bgpcep-bgp-l3vpn</artifactId>
109             <classifier>features</classifier>
110             <type>xml</type>
111         </dependency>
112         <dependency>
113             <groupId>${project.groupId}</groupId>
114             <artifactId>odl-bgpcep-bgp-evpn</artifactId>
115             <classifier>features</classifier>
116             <type>xml</type>
117         </dependency>
118     </dependencies>
119
120     <!--
121         Maven Site Configuration
122
123         The following configuration is necessary for maven-site-plugin to
124         correctly identify the correct deployment path for OpenDaylight Maven
125         sites.
126     -->
127     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
128
129     <distributionManagement>
130         <site>
131             <id>opendaylight-site</id>
132             <url>${nexus.site.url}/${project.artifactId}/</url>
133         </site>
134     </distributionManagement>
135 </project>