Bump versions by x.(y+1).z for next dev cycle
[bgpcep.git] / distribution-karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved.
3   This program and the accompanying materials are made available under the
4   terms of the Eclipse Public License v1.0 which accompanies this distribution,
5   and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8   <modelVersion>4.0.0</modelVersion>
9
10   <parent>
11     <groupId>org.opendaylight.odlparent</groupId>
12     <artifactId>karaf4-parent</artifactId>
13     <version>2.0.4</version>
14     <relativePath />
15   </parent>
16
17   <groupId>org.opendaylight.bgpcep</groupId>
18   <artifactId>distribution-karaf</artifactId>
19   <version>0.9.0-SNAPSHOT</version>
20   <packaging>pom</packaging>
21
22   <dependencyManagement>
23     <dependencies>
24       <dependency>
25         <groupId>${project.groupId}</groupId>
26         <artifactId>bgpcep-artifacts</artifactId>
27         <version>${project.version}</version>
28         <type>pom</type>
29         <scope>import</scope>
30       </dependency>
31       <dependency>
32         <groupId>org.opendaylight.bgpcep</groupId>
33         <artifactId>dependency-version-management</artifactId>
34         <version>${project.version}</version>
35         <type>pom</type>
36         <scope>import</scope>
37       </dependency>
38     </dependencies>
39   </dependencyManagement>
40
41   <dependencies>
42     <dependency>
43       <!-- scope is compile so all features (there is only one) are installed
44         into startup.properties and the feature repo itself is not installed -->
45       <groupId>org.apache.karaf.features</groupId>
46       <artifactId>framework</artifactId>
47       <type>kar</type>
48     </dependency>
49
50     <!-- Project local feautures -->
51     <dependency>
52       <groupId>org.opendaylight.bgpcep</groupId>
53       <artifactId>features-bgp</artifactId>
54       <classifier>features</classifier>
55       <type>xml</type>
56       <scope>runtime</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.bgpcep</groupId>
60       <artifactId>features-bmp</artifactId>
61       <classifier>features</classifier>
62       <type>xml</type>
63       <scope>runtime</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.bgpcep</groupId>
67       <artifactId>features-bgpcep-extras</artifactId>
68       <classifier>features</classifier>
69       <type>xml</type>
70       <scope>runtime</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.bgpcep</groupId>
74       <artifactId>features-pcep</artifactId>
75       <classifier>features</classifier>
76       <type>xml</type>
77       <scope>runtime</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.bgpcep</groupId>
81       <artifactId>features-rsvp</artifactId>
82       <classifier>features</classifier>
83       <type>xml</type>
84       <scope>runtime</scope>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.netconf</groupId>
88       <artifactId>features-restconf</artifactId>
89       <classifier>features</classifier>
90       <type>xml</type>
91       <scope>runtime</scope>
92     </dependency>
93   </dependencies>
94
95   <build>
96     <plugins>
97
98       <!-- DO NOT install or deploy the karaf artifact -->
99       <plugin>
100         <groupId>org.apache.maven.plugins</groupId>
101         <artifactId>maven-install-plugin</artifactId>
102         <configuration>
103           <skip>true</skip>
104         </configuration>
105       </plugin>
106       <plugin>
107         <groupId>org.apache.maven.plugins</groupId>
108         <artifactId>maven-deploy-plugin</artifactId>
109         <configuration>
110           <skip>true</skip>
111         </configuration>
112       </plugin>
113     </plugins>
114   </build>
115
116   <scm>
117     <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
118     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
119     <tag>HEAD</tag>
120     <url>https://git.opendaylight.org/gerrit/gitweb?p=bgpcep.git;a=summary</url>
121   </scm>
122
123   <!--
124       Maven Site Configuration
125
126       The following configuration is necessary for maven-site-plugin to
127       correctly identify the correct deployment path for OpenDaylight Maven
128       sites.
129   -->
130   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
131
132   <distributionManagement>
133     <site>
134       <id>opendaylight-site</id>
135       <url>${nexus.site.url}/${project.artifactId}/</url>
136     </site>
137   </distributionManagement>
138 </project>