814a9d6c59881b0138ac3c036f3e33f25feede60
[bgpcep.git] / features / pcep / odl-bgpcep-pcep / 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-pcep</artifactId>
15     <version>0.9.0-SNAPSHOT</version>
16     <packaging>feature</packaging>
17
18     <name>OpenDaylight :: PCEP</name>
19
20     <dependencyManagement>
21         <dependencies>
22             <!-- ODL-BGP-ARTIFACTS -->
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-pcep-dependencies</artifactId>
37             <type>xml</type>
38             <classifier>features</classifier>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>odl-bgpcep-pcep-api</artifactId>
43             <type>xml</type>
44             <classifier>features</classifier>
45         </dependency>
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>odl-bgpcep-pcep-impl</artifactId>
49             <type>xml</type>
50             <classifier>features</classifier>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>odl-bgpcep-programming-api</artifactId>
55             <type>xml</type>
56             <classifier>features</classifier>
57         </dependency>
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>odl-bgpcep-programming-impl</artifactId>
61             <type>xml</type>
62             <classifier>features</classifier>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>odl-bgpcep-pcep-topology</artifactId>
67             <type>xml</type>
68             <classifier>features</classifier>
69         </dependency>
70         <dependency>
71             <groupId>${project.groupId}</groupId>
72             <artifactId>odl-bgpcep-pcep-stateful07</artifactId>
73             <type>xml</type>
74             <classifier>features</classifier>
75         </dependency>
76         <dependency>
77             <groupId>${project.groupId}</groupId>
78             <artifactId>odl-bgpcep-pcep-topology-provider</artifactId>
79             <type>xml</type>
80             <classifier>features</classifier>
81         </dependency>
82         <dependency>
83             <groupId>${project.groupId}</groupId>
84             <artifactId>odl-bgpcep-pcep-tunnel-provider</artifactId>
85             <type>xml</type>
86             <classifier>features</classifier>
87         </dependency>
88         <dependency>
89             <groupId>${project.groupId}</groupId>
90             <artifactId>odl-bgpcep-pcep-segment-routing</artifactId>
91             <type>xml</type>
92             <classifier>features</classifier>
93         </dependency>
94         <dependency>
95             <groupId>${project.groupId}</groupId>
96             <artifactId>odl-bgpcep-pcep-auto-bandwidth</artifactId>
97             <type>xml</type>
98             <classifier>features</classifier>
99         </dependency>
100     </dependencies>
101     <!--
102         Maven Site Configuration
103
104         The following configuration is necessary for maven-site-plugin to
105         correctly identify the correct deployment path for OpenDaylight Maven
106         sites.
107     -->
108     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
109
110     <distributionManagement>
111         <site>
112             <id>opendaylight-site</id>
113             <url>${nexus.site.url}/${project.artifactId}/</url>
114         </site>
115     </distributionManagement>
116 </project>