Release mdsal
[mdsal.git] / karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2021 PANTHEON.tech, s.r.o. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11   <parent>
12     <groupId>org.opendaylight.odlparent</groupId>
13     <artifactId>karaf4-parent</artifactId>
14     <version>10.0.2</version>
15     <relativePath/>
16 </parent>
17
18   <groupId>org.opendaylight.mdsal</groupId>
19   <artifactId>mdsal-karaf</artifactId>
20   <version>9.0.3</version>
21   <packaging>pom</packaging>
22
23   <dependencyManagement>
24     <dependencies>
25       <dependency>
26         <groupId>org.opendaylight.mdsal</groupId>
27         <artifactId>mdsal-artifacts</artifactId>
28         <version>9.0.3</version>
29         <type>pom</type>
30         <scope>import</scope>
31       </dependency>
32     </dependencies>
33   </dependencyManagement>
34
35   <dependencies>
36     <dependency>
37       <!-- scope is compile so all features (there is only one) are installed
38       into startup.properties and the feature repo itself is not installed -->
39       <groupId>org.apache.karaf.features</groupId>
40       <artifactId>framework</artifactId>
41       <type>kar</type>
42     </dependency>
43
44     <dependency>
45       <groupId>org.opendaylight.mdsal</groupId>
46       <artifactId>features-mdsal</artifactId>
47       <classifier>features</classifier>
48       <type>xml</type>
49       <scope>runtime</scope>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.mdsal</groupId>
53       <artifactId>features-mdsal-experimental</artifactId>
54       <classifier>features</classifier>
55       <type>xml</type>
56       <scope>runtime</scope>
57     </dependency>
58   </dependencies>
59
60   <scm>
61     <connection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</connection>
62     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
63     <tag>HEAD</tag>
64     <url>https://git.opendaylight.org/gerrit/gitweb?p=mdsal.git;a=summary</url>
65   </scm>
66 </project>