Bump versions by x.(y+1).z
[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>13.0.11</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.serviceutils</groupId>
20   <artifactId>serviceutils-aggregator</artifactId>
21   <version>0.14.0-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>metrics</module>
38     <module>srm</module>
39     <module>upgrade</module>
40   </modules>
41
42   <properties>
43     <maven.deploy.skip>true</maven.deploy.skip>
44     <maven.install.skip>true</maven.install.skip>
45   </properties>
46
47   <profiles>
48     <profile>
49       <id>karaf</id>
50       <activation>
51         <activeByDefault>true</activeByDefault>
52       </activation>
53
54       <modules>
55         <module>karaf</module>
56       </modules>
57     </profile>
58   </profiles>
59
60   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
61   <build>
62     <pluginManagement>
63       <plugins>
64         <plugin>
65           <groupId>org.apache.maven.plugins</groupId>
66           <artifactId>maven-javadoc-plugin</artifactId>
67           <!-- https://issues.apache.org/jira/browse/MJAVADOC-649 -->
68           <version>3.1.1</version>
69         </plugin>
70       </plugins>
71     </pluginManagement>
72   </build>
73 </project>