Bump versions by x.y.(z+1)
[serviceutils.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2018 Ericsson India Global Services Pvt Ltd. 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 INTERNAL
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
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>odlparent-lite</artifactId>
15     <version>3.1.7</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.serviceutils</groupId>
20   <artifactId>serviceutils-aggregator</artifactId>
21   <version>0.2.4-SNAPSHOT</version>
22   <name>serviceutils</name>
23   <packaging>pom</packaging>
24
25   <scm>
26     <connection>scm:git:ssh://git.opendaylight.org:29418/serviceutils.git</connection>
27     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/serviceutils.git</developerConnection>
28     <tag>HEAD</tag>
29     <url>https://wiki.opendaylight.org/view/serviceutils:Main</url>
30   </scm>
31
32   <modules>
33     <module>commons</module>
34     <module>tools</module>
35     <module>features</module>
36     <module>artifacts</module>
37     <module>srm</module>
38     <module>upgrade</module>
39   </modules>
40
41   <profiles>
42     <profile>
43       <id>karaf</id>
44       <activation>
45         <activeByDefault>true</activeByDefault>
46       </activation>
47
48       <modules>
49         <module>karaf</module>
50       </modules>
51     </profile>
52   </profiles>
53
54   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
55   <build>
56     <plugins>
57       <plugin>
58         <groupId>org.apache.maven.plugins</groupId>
59         <artifactId>maven-deploy-plugin</artifactId>
60         <configuration>
61           <skip>true</skip>
62         </configuration>
63       </plugin>
64       <plugin>
65         <groupId>org.apache.maven.plugins</groupId>
66         <artifactId>maven-install-plugin</artifactId>
67         <configuration>
68           <skip>true</skip>
69         </configuration>
70       </plugin>
71     </plugins>
72   </build>
73 </project>