3fe06c10167b782298ce270942398d342c392aa8
[bgpcep.git] / integration-tests / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10
11 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13
14     <parent>
15         <groupId>org.opendaylight.controller</groupId>
16         <artifactId>mdsal-it-parent</artifactId>
17         <version>1.6.0-SNAPSHOT</version>
18         <relativePath/>
19     </parent>
20
21     <modelVersion>4.0.0</modelVersion>
22
23     <groupId>org.opendaylight.bgpcep</groupId>
24     <version>0.8.0-SNAPSHOT</version>
25     <artifactId>integration-tests</artifactId>
26     <description>BGPCEP integration tests</description>
27     <packaging>bundle</packaging>
28     <name>${project.artifactId}</name>
29
30     <properties>
31         <skipITs>false</skipITs>
32         <karaf.distro.groupId>org.opendaylight.bgpcep</karaf.distro.groupId>
33         <karaf.distro.artifactId>bgpcep-karaf</karaf.distro.artifactId>
34         <karaf.distro.version>${project.version}</karaf.distro.version>
35         <karaf.distro.type>zip</karaf.distro.type>
36     </properties>
37
38     <dependencies>
39         <!-- claims all the dependency features in case we want to test them -->
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>features-bgp</artifactId>
43             <version>${project.version}</version>
44             <classifier>features</classifier>
45             <type>xml</type>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>features-pcep</artifactId>
50             <version>${project.version}</version>
51             <classifier>features</classifier>
52             <type>xml</type>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>features-bmp</artifactId>
57             <version>${project.version}</version>
58             <classifier>features</classifier>
59             <type>xml</type>
60         </dependency>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>features-rsvp</artifactId>
64             <version>${project.version}</version>
65             <classifier>features</classifier>
66             <type>xml</type>
67         </dependency>
68         <dependency>
69             <groupId>${project.groupId}</groupId>
70             <artifactId>features-bgpcep-extras</artifactId>
71             <version>${project.version}</version>
72             <classifier>features</classifier>
73             <type>xml</type>
74         </dependency>
75         <dependency>
76             <groupId>org.osgi</groupId>
77             <artifactId>org.osgi.core</artifactId>
78         </dependency>
79     </dependencies>
80
81     <!--
82         Maven Site Configuration
83
84         The following configuration is necessary for maven-site-plugin to
85         correctly identify the correct deployment path for OpenDaylight Maven
86         sites.
87     -->
88     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
89
90     <distributionManagement>
91         <site>
92             <id>opendaylight-site</id>
93             <url>${nexus.site.url}/${project.artifactId}/</url>
94         </site>
95     </distributionManagement>
96 </project>