Use ipAdressBuilder.getDefaultInstance()
[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.2</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>mdsalutil</module>
38     <module>arputil</module>
39     <module>idmanager</module>
40     <module>alivenessmonitor</module>
41     <module>features</module>
42     <module>artifacts</module>
43     <module>fcapsmanager</module>
44     <module>fcapsapplication</module>
45     <module>resourcemanager</module>
46     <module>ipv6util</module>
47   </modules>
48
49   <profiles>
50     <profile>
51       <id>karaf</id>
52       <activation>
53         <activeByDefault>true</activeByDefault>
54       </activation>
55
56       <modules>
57         <module>karaf</module>
58       </modules>
59     </profile>
60   </profiles>
61
62   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
63   <build>
64     <plugins>
65       <plugin>
66         <groupId>org.apache.maven.plugins</groupId>
67         <artifactId>maven-deploy-plugin</artifactId>
68         <configuration>
69           <skip>true</skip>
70         </configuration>
71       </plugin>
72       <plugin>
73         <groupId>org.apache.maven.plugins</groupId>
74         <artifactId>maven-install-plugin</artifactId>
75         <configuration>
76           <skip>true</skip>
77         </configuration>
78       </plugin>
79     </plugins>
80   </build>
81 </project>