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