Bump to odlparent 3.1.0 and yangtools 2.0.3
[groupbasedpolicy.git] / distribution-karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2015 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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>3.1.0</version>
13     <relativePath/>
14   </parent>
15
16   <artifactId>distribution-karaf</artifactId>
17   <groupId>org.opendaylight.groupbasedpolicy</groupId>
18   <version>0.7.1-SNAPSHOT</version>
19   <packaging>pom</packaging>
20   <!-- <name> formatting is used by autorelease to parse and notify projects on
21      build failure. Please do not modify this unless you have a good reason. -->
22   <name>ODL :: groupbasedpolicy :: ${project.artifactId}</name>
23
24   <prerequisites>
25     <maven>3.0</maven>
26   </prerequisites>
27
28   <properties>
29     <groupbasedpolicy.project.version>0.7.1-SNAPSHOT</groupbasedpolicy.project.version>
30     <sfc.version>0.7.1-SNAPSHOT</sfc.version>
31   </properties>
32
33   <dependencyManagement>
34     <dependencies>
35       <dependency>
36         <groupId>${project.groupId}</groupId>
37         <artifactId>groupbasedpolicy-artifacts</artifactId>
38         <version>${project.version}</version>
39         <type>pom</type>
40         <scope>import</scope>
41       </dependency>
42     </dependencies>
43   </dependencyManagement>
44   <dependencies>
45     <dependency>
46       <!-- scope is compile so all features (there is only one) are installed
47         into startup.properties and the feature repo itself is not installed -->
48       <groupId>org.apache.karaf.features</groupId>
49       <artifactId>framework</artifactId>
50       <type>kar</type>
51     </dependency>
52
53     <!-- Project local feautures -->
54     <dependency>
55       <groupId>org.opendaylight.groupbasedpolicy</groupId>
56       <artifactId>features-groupbasedpolicy</artifactId>
57       <classifier>features</classifier>
58       <type>xml</type>
59       <scope>runtime</scope>
60     </dependency>
61   </dependencies>
62
63   <build>
64     <plugins>
65       <!-- DO NOT deploy the karaf artifact -->
66       <plugin>
67         <groupId>org.apache.maven.plugins</groupId>
68         <artifactId>maven-deploy-plugin</artifactId>
69         <configuration>
70           <skip>true</skip>
71         </configuration>
72       </plugin>
73     </plugins>
74   </build>
75
76   <scm>
77     <connection>scm:git:ssh://git.opendaylight.org:29418/groupbasedpolicy.git</connection>
78     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/groupbasedpolicy.git</developerConnection>
79     <tag>HEAD</tag>
80     <url>https://git.opendaylight.org/gerrit/gitweb?p=groupbasedpolicy.git;a=summary</url>
81   </scm>
82 </project>