remove useless diagstatus ServiceDescriptor descriptions
[genius.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 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.genius</groupId>
20   <artifactId>genius-aggregator</artifactId>
21   <version>0.5.0-SNAPSHOT</version>
22   <name>genius</name>
23   <packaging>pom</packaging>
24
25   <scm>
26     <connection>scm:git:ssh://git.opendaylight.org:29418/genius.git</connection>
27     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/genius.git</developerConnection>
28     <tag>HEAD</tag>
29     <url>https://wiki.opendaylight.org/view/genius:Main</url>
30   </scm>
31
32   <modules>
33     <module>commons</module>
34     <module>interfacemanager</module>
35     <module>itm</module>
36     <module>lockmanager</module>
37     <module>tools</module>
38     <module>mdsalutil</module>
39     <module>arputil</module>
40     <module>idmanager</module>
41     <module>alivenessmonitor</module>
42     <module>features</module>
43     <module>artifacts</module>
44     <module>fcapsmanager</module>
45     <module>fcapsapplication</module>
46     <module>resourcemanager</module>
47     <module>srm</module>
48   </modules>
49
50   <profiles>
51     <profile>
52       <id>karaf</id>
53       <activation>
54         <activeByDefault>true</activeByDefault>
55       </activation>
56
57       <modules>
58         <module>karaf</module>
59       </modules>
60     </profile>
61   </profiles>
62
63   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
64   <build>
65     <plugins>
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       <plugin>
74         <groupId>org.apache.maven.plugins</groupId>
75         <artifactId>maven-install-plugin</artifactId>
76         <configuration>
77           <skip>true</skip>
78         </configuration>
79       </plugin>
80     </plugins>
81   </build>
82 </project>