Bump upstreams
[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>9.0.8</version>
13     <relativePath/>
14   </parent>
15
16   <groupId>org.opendaylight.bgpcep</groupId>
17   <artifactId>distribution-karaf</artifactId>
18   <version>0.16.8-SNAPSHOT</version>
19   <packaging>pom</packaging>
20
21   <dependencyManagement>
22     <dependencies>
23       <dependency>
24         <groupId>org.opendaylight.bgpcep</groupId>
25         <artifactId>bgpcep-parent</artifactId>
26         <version>${project.version}</version>
27         <type>pom</type>
28         <scope>import</scope>
29       </dependency>
30     </dependencies>
31   </dependencyManagement>
32
33   <dependencies>
34     <dependency>
35       <!-- scope is compile so all features (there is only one) are installed
36         into startup.properties and the feature repo itself is not installed -->
37       <groupId>org.apache.karaf.features</groupId>
38       <artifactId>framework</artifactId>
39       <type>kar</type>
40     </dependency>
41
42     <!-- Project local feautures -->
43     <dependency>
44       <groupId>org.opendaylight.bgpcep</groupId>
45       <artifactId>features-bgp</artifactId>
46       <classifier>features</classifier>
47       <type>xml</type>
48       <scope>runtime</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.bgpcep</groupId>
52       <artifactId>features-bmp</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-bgpcep-extras</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-pcep</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-graph</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-algo</artifactId>
81       <classifier>features</classifier>
82       <type>xml</type>
83       <scope>runtime</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.bgpcep</groupId>
87       <artifactId>features-rsvp</artifactId>
88       <classifier>features</classifier>
89       <type>xml</type>
90       <scope>runtime</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.bgpcep</groupId>
94       <artifactId>features-config-loader</artifactId>
95       <classifier>features</classifier>
96       <type>xml</type>
97       <scope>runtime</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.netconf</groupId>
101       <artifactId>features-restconf</artifactId>
102       <classifier>features</classifier>
103       <type>xml</type>
104       <scope>runtime</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.mdsal</groupId>
108       <artifactId>features-mdsal</artifactId>
109       <classifier>features</classifier>
110       <type>xml</type>
111       <scope>runtime</scope>
112     </dependency>
113   </dependencies>
114
115   <build>
116     <plugins>
117
118       <!-- DO NOT install or deploy the karaf artifact -->
119       <plugin>
120         <groupId>org.apache.maven.plugins</groupId>
121         <artifactId>maven-install-plugin</artifactId>
122         <configuration>
123           <skip>true</skip>
124         </configuration>
125       </plugin>
126       <plugin>
127         <groupId>org.apache.maven.plugins</groupId>
128         <artifactId>maven-deploy-plugin</artifactId>
129         <configuration>
130           <skip>true</skip>
131         </configuration>
132       </plugin>
133     </plugins>
134   </build>
135
136     <scm>
137         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
138         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
139         <tag>HEAD</tag>
140         <url>https://git.opendaylight.org/gerrit/gitweb?p=bgpcep.git;a=summary</url>
141     </scm>
142 </project>