Fix serviceutils aggregator version
[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.0</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.serviceutils</groupId>
20   <artifactId>serviceutils-aggregator</artifactId>
21   <version>0.2.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>srm</module>
38   </modules>
39
40   <profiles>
41     <profile>
42       <id>karaf</id>
43       <activation>
44         <activeByDefault>true</activeByDefault>
45       </activation>
46
47       <modules>
48         <module>karaf</module>
49       </modules>
50     </profile>
51   </profiles>
52
53   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
54   <build>
55     <plugins>
56       <plugin>
57         <groupId>org.apache.maven.plugins</groupId>
58         <artifactId>maven-deploy-plugin</artifactId>
59         <configuration>
60           <skip>true</skip>
61         </configuration>
62       </plugin>
63       <plugin>
64         <groupId>org.apache.maven.plugins</groupId>
65         <artifactId>maven-install-plugin</artifactId>
66         <configuration>
67           <skip>true</skip>
68         </configuration>
69       </plugin>
70     </plugins>
71   </build>
72 </project>