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