Release yangtools
[yangtools.git] / 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.15</version>
13         <relativePath/>
14     </parent>
15
16     <groupId>org.opendaylight.yangtools</groupId>
17     <artifactId>distribution-karaf</artifactId>
18     <version>7.0.17</version>
19     <packaging>pom</packaging>
20
21     <!-- DO NOT install or deploy the karaf artifact -->
22     <properties>
23         <maven.deploy.skip>true</maven.deploy.skip>
24         <maven.install.skip>true</maven.install.skip>
25     </properties>
26
27     <dependencyManagement>
28         <dependencies>
29             <dependency>
30                 <groupId>org.opendaylight.yangtools</groupId>
31                 <artifactId>yangtools-artifacts</artifactId>
32                 <version>${project.version}</version>
33                 <type>pom</type>
34                 <scope>import</scope>
35             </dependency>
36         </dependencies>
37     </dependencyManagement>
38
39     <dependencies>
40         <dependency>
41             <!-- scope is compile so all features (there is only one) are installed
42                  into startup.properties and the feature repo itself is not installed -->
43              <groupId>org.apache.karaf.features</groupId>
44              <artifactId>framework</artifactId>
45              <type>kar</type>
46          </dependency>
47
48          <!-- Project local feautures -->
49          <dependency>
50              <groupId>org.opendaylight.yangtools</groupId>
51              <artifactId>features-yangtools</artifactId>
52              <classifier>features</classifier>
53              <type>xml</type>
54              <scope>runtime</scope>
55          </dependency>
56          <dependency>
57              <groupId>org.opendaylight.yangtools</groupId>
58              <artifactId>features-yangtools-experimental</artifactId>
59              <classifier>features</classifier>
60              <type>xml</type>
61              <scope>runtime</scope>
62          </dependency>
63      </dependencies>
64
65      <scm>
66          <connection>scm:git:ssh://git.opendaylight.org:29418/yangtools.git</connection>
67          <developerConnection>scm:git:ssh://git.opendaylight.org:29418/yangtools.git</developerConnection>
68          <tag>HEAD</tag>
69          <url>https://git.opendaylight.org/gerrit/gitweb?p=yangtools.git;a=summary</url>
70      </scm>
71 </project>