Bump to odlparent 3.1.0 and yangtools 2.0.3
[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>3.1.0</version>
14     <relativePath/>
15   </parent>
16
17   <groupId>org.opendaylight.bgpcep</groupId>
18   <artifactId>distribution-karaf</artifactId>
19   <version>0.10.0-SNAPSHOT</version>
20   <packaging>pom</packaging>
21
22   <dependencyManagement>
23     <dependencies>
24       <dependency>
25         <groupId>org.opendaylight.bgpcep</groupId>
26         <artifactId>bgpcep-parent</artifactId>
27         <version>${project.version}</version>
28         <type>pom</type>
29         <scope>import</scope>
30       </dependency>
31     </dependencies>
32   </dependencyManagement>
33
34   <dependencies>
35     <dependency>
36       <!-- scope is compile so all features (there is only one) are installed
37         into startup.properties and the feature repo itself is not installed -->
38       <groupId>org.apache.karaf.features</groupId>
39       <artifactId>framework</artifactId>
40       <type>kar</type>
41     </dependency>
42
43     <!-- Project local feautures -->
44     <dependency>
45       <groupId>org.opendaylight.bgpcep</groupId>
46       <artifactId>features-bgp</artifactId>
47       <classifier>features</classifier>
48       <type>xml</type>
49       <scope>runtime</scope>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.bgpcep</groupId>
53       <artifactId>features-bmp</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-bgpcep-extras</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-pcep</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-rsvp</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-config-loader</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 </project>