Release Carbon
[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>karaf-parent</artifactId>
13     <version>1.8.4-Carbon</version>
14     <relativePath />
15   </parent>
16
17   <artifactId>distribution-karaf</artifactId>
18   <groupId>org.opendaylight.bgpcep</groupId>
19   <version>0.7.4-Carbon</version>
20   <packaging>pom</packaging>
21
22   <prerequisites>
23     <maven>3.1.1</maven>
24   </prerequisites>
25
26   <properties>
27     <restconfVersion>1.5.4-Carbon</restconfVersion>
28   </properties>
29
30   <dependencyManagement>
31     <dependencies>
32       <dependency>
33         <groupId>${project.groupId}</groupId>
34         <artifactId>bgpcep-artifacts</artifactId>
35         <version>${project.version}</version>
36         <type>pom</type>
37         <scope>import</scope>
38       </dependency>
39     </dependencies>
40   </dependencyManagement>
41
42   <dependencies>
43     <dependency>
44       <!-- scope is compile so all features (there is only one) are installed
45         into startup.properties and the feature repo itself is not installed -->
46       <groupId>org.apache.karaf.features</groupId>
47       <artifactId>framework</artifactId>
48       <type>kar</type>
49     </dependency>
50
51     <!-- Project local feautures -->
52     <dependency>
53       <groupId>org.opendaylight.bgpcep</groupId>
54       <artifactId>features-bgp</artifactId>
55       <classifier>features</classifier>
56       <version>${project.version}</version>
57       <type>xml</type>
58       <scope>runtime</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.bgpcep</groupId>
62       <artifactId>features-bmp</artifactId>
63       <classifier>features</classifier>
64       <version>${project.version}</version>
65       <type>xml</type>
66       <scope>runtime</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.bgpcep</groupId>
70       <artifactId>features-extras</artifactId>
71       <classifier>features</classifier>
72       <version>${project.version}</version>
73       <type>xml</type>
74       <scope>runtime</scope>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.bgpcep</groupId>
78       <artifactId>features-pcep</artifactId>
79       <classifier>features</classifier>
80       <version>${project.version}</version>
81       <type>xml</type>
82       <scope>runtime</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.bgpcep</groupId>
86       <artifactId>features-rsvp</artifactId>
87       <classifier>features</classifier>
88       <version>${project.version}</version>
89       <type>xml</type>
90       <scope>runtime</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.netconf</groupId>
94       <artifactId>features-restconf</artifactId>
95       <classifier>features</classifier>
96       <version>${restconfVersion}</version>
97       <type>xml</type>
98       <scope>runtime</scope>
99     </dependency>
100   </dependencies>
101
102   <build>
103     <plugins>
104
105       <!-- DO NOT install or deploy the karaf artifact -->
106       <plugin>
107         <groupId>org.apache.maven.plugins</groupId>
108         <artifactId>maven-install-plugin</artifactId>
109         <configuration>
110           <skip>true</skip>
111         </configuration>
112       </plugin>
113       <plugin>
114         <groupId>org.apache.maven.plugins</groupId>
115         <artifactId>maven-deploy-plugin</artifactId>
116         <configuration>
117           <skip>true</skip>
118         </configuration>
119       </plugin>
120     </plugins>
121   </build>
122
123   <scm>
124     <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
125     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
126     <tag>HEAD</tag>
127     <url>https://git.opendaylight.org/gerrit/gitweb?p=bgpcep.git;a=summary</url>
128   </scm>
129
130   <!--
131       Maven Site Configuration
132
133       The following configuration is necessary for maven-site-plugin to
134       correctly identify the correct deployment path for OpenDaylight Maven
135       sites.
136   -->
137   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
138
139   <distributionManagement>
140     <site>
141       <id>opendaylight-site</id>
142       <url>${nexus.site.url}/${project.artifactId}/</url>
143     </site>
144   </distributionManagement>
145 </project>