BUG-7511: PCEP features migration to karaf 4
[bgpcep.git] / features / pcep / features4-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>feature-repo-parent</artifactId>
9         <version>1.8.0-SNAPSHOT</version>
10         <relativePath/>
11     </parent>
12
13     <groupId>org.opendaylight.bgpcep</groupId>
14     <artifactId>features4-pcep</artifactId>
15     <version>0.7.0-SNAPSHOT</version>
16     <packaging>feature</packaging>
17
18     <dependencyManagement>
19         <dependencies>
20             <dependency>
21                 <groupId>org.opendaylight.bgpcep</groupId>
22                 <artifactId>bgpcep-artifacts</artifactId>
23                 <version>${project.version}</version>
24                 <type>pom</type>
25                 <scope>import</scope>
26             </dependency>
27         </dependencies>
28     </dependencyManagement>
29
30     <dependencies>
31         <dependency>
32             <groupId>${project.groupId}</groupId>
33             <artifactId>odl-bgpcep-pcep</artifactId>
34             <type>xml</type>
35             <classifier>features</classifier>
36             <scope>runtime</scope>
37         </dependency>
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>odl-bgpcep-pcep-dependencies</artifactId>
41             <type>xml</type>
42             <classifier>features</classifier>
43             <scope>runtime</scope>
44         </dependency>
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>odl-bgpcep-pcep-api</artifactId>
48             <type>xml</type>
49             <classifier>features</classifier>
50             <scope>runtime</scope>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>odl-bgpcep-pcep-impl</artifactId>
55             <type>xml</type>
56             <classifier>features</classifier>
57             <scope>runtime</scope>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>odl-bgpcep-programming-api</artifactId>
62             <type>xml</type>
63             <classifier>features</classifier>
64             <scope>runtime</scope>
65         </dependency>
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>odl-bgpcep-programming-impl</artifactId>
69             <type>xml</type>
70             <classifier>features</classifier>
71             <scope>runtime</scope>
72         </dependency>
73         <dependency>
74             <groupId>${project.groupId}</groupId>
75             <artifactId>odl-bgpcep-pcep-topology</artifactId>
76             <type>xml</type>
77             <classifier>features</classifier>
78             <scope>runtime</scope>
79         </dependency>
80         <dependency>
81             <groupId>${project.groupId}</groupId>
82             <artifactId>odl-bgpcep-pcep-stateful07</artifactId>
83             <type>xml</type>
84             <classifier>features</classifier>
85             <scope>runtime</scope>
86         </dependency>
87         <dependency>
88             <groupId>${project.groupId}</groupId>
89             <artifactId>odl-bgpcep-pcep-topology-provider</artifactId>
90             <type>xml</type>
91             <classifier>features</classifier>
92             <scope>runtime</scope>
93         </dependency>
94         <dependency>
95             <groupId>${project.groupId}</groupId>
96             <artifactId>odl-bgpcep-pcep-tunnel-provider</artifactId>
97             <type>xml</type>
98             <classifier>features</classifier>
99             <scope>runtime</scope>
100         </dependency>
101         <dependency>
102             <groupId>${project.groupId}</groupId>
103             <artifactId>odl-bgpcep-pcep-segment-routing</artifactId>
104             <type>xml</type>
105             <classifier>features</classifier>
106             <scope>runtime</scope>
107         </dependency>
108         <dependency>
109             <groupId>${project.groupId}</groupId>
110             <artifactId>odl-bgpcep-pcep-auto-bandwidth</artifactId>
111             <type>xml</type>
112             <classifier>features</classifier>
113             <scope>runtime</scope>
114         </dependency>
115     </dependencies>
116
117     <!--
118         Maven Site Configuration
119
120         The following configuration is necessary for maven-site-plugin to
121         correctly identify the correct deployment path for OpenDaylight Maven
122         sites.
123     -->
124     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
125
126     <distributionManagement>
127         <site>
128             <id>opendaylight-site</id>
129             <url>${nexus.site.url}/${project.artifactId}/</url>
130         </site>
131     </distributionManagement>
132 </project>