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