Bump versions by 0.1.0 for next dev cycle
[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.5.0-SNAPSHOT</version>
18         <relativePath/>
19     </parent>
20
21     <modelVersion>4.0.0</modelVersion>
22
23     <groupId>org.opendaylight.bgpcep</groupId>
24     <version>0.7.0-SNAPSHOT</version>
25     <artifactId>integration-tests</artifactId>
26     <description>BGPCEP integration tests</description>
27     <packaging>bundle</packaging>
28     <name>${project.artifactId}</name>
29     <prerequisites>
30         <maven>3.0.4</maven>
31     </prerequisites>
32
33     <properties>
34         <skipITs>false</skipITs>
35         <karaf.distro.groupId>org.opendaylight.bgpcep</karaf.distro.groupId>
36         <karaf.distro.artifactId>bgpcep-karaf</karaf.distro.artifactId>
37         <karaf.distro.version>${project.version}</karaf.distro.version>
38         <karaf.distro.type>zip</karaf.distro.type>
39     </properties>
40
41     <dependencies>
42         <!-- claims all the dependency features in case we want to test them -->
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>features-bgp</artifactId>
46             <version>${project.version}</version>
47             <classifier>features</classifier>
48             <type>xml</type>
49         </dependency>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>features-pcep</artifactId>
53             <version>${project.version}</version>
54             <classifier>features</classifier>
55             <type>xml</type>
56         </dependency>
57         <dependency>
58             <groupId>${project.groupId}</groupId>
59             <artifactId>features-bmp</artifactId>
60             <version>${project.version}</version>
61             <classifier>features</classifier>
62             <type>xml</type>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>features-rsvp</artifactId>
67             <version>${project.version}</version>
68             <classifier>features</classifier>
69             <type>xml</type>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>features-extras</artifactId>
74             <version>${project.version}</version>
75             <classifier>features</classifier>
76             <type>xml</type>
77         </dependency>
78     </dependencies>
79
80     <!--
81         Maven Site Configuration
82
83         The following configuration is necessary for maven-site-plugin to
84         correctly identify the correct deployment path for OpenDaylight Maven
85         sites.
86     -->
87     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
88
89     <distributionManagement>
90         <site>
91             <id>opendaylight-site</id>
92             <url>${nexus.site.url}/${project.artifactId}/</url>
93         </site>
94     </distributionManagement>
95 </project>