Bump to odlparent-3.0.0 and yangtools-2.0.0
[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.0.2</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.bgpcep</groupId>
88       <artifactId>features-config-loader</artifactId>
89       <classifier>features</classifier>
90       <type>xml</type>
91       <scope>runtime</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.netconf</groupId>
95       <artifactId>features-restconf</artifactId>
96       <classifier>features</classifier>
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 </project>