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