Bump mdsal to 3.0.4
[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 <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">
9   <modelVersion>4.0.0</modelVersion>
10
11   <parent>
12     <groupId>org.opendaylight.odlparent</groupId>
13     <artifactId>odlparent-lite</artifactId>
14     <version>4.0.8</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.genius</groupId>
19   <artifactId>genius-aggregator</artifactId>
20   <version>0.6.0-SNAPSHOT</version>
21   <name>genius</name>
22   <packaging>pom</packaging>
23
24   <scm>
25     <connection>scm:git:ssh://git.opendaylight.org:29418/genius.git</connection>
26     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/genius.git</developerConnection>
27     <tag>HEAD</tag>
28     <url>https://wiki.opendaylight.org/view/genius:Main</url>
29   </scm>
30
31   <modules>
32     <module>commons</module>
33     <module>interfacemanager</module>
34     <module>itm</module>
35     <module>lockmanager</module>
36     <module>mdsalutil</module>
37     <module>arputil</module>
38     <module>idmanager</module>
39     <module>alivenessmonitor</module>
40     <module>features</module>
41     <module>artifacts</module>
42     <module>fcapsmanager</module>
43     <module>fcapsapplication</module>
44     <module>ipv6util</module>
45     <module>networkutils</module>
46   </modules>
47
48   <profiles>
49     <profile>
50       <id>karaf</id>
51       <activation>
52         <activeByDefault>true</activeByDefault>
53       </activation>
54
55       <modules>
56         <module>karaf</module>
57       </modules>
58     </profile>
59   </profiles>
60
61   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
62   <build>
63     <plugins>
64       <plugin>
65         <groupId>org.apache.maven.plugins</groupId>
66         <artifactId>maven-deploy-plugin</artifactId>
67         <configuration>
68           <skip>true</skip>
69         </configuration>
70       </plugin>
71       <plugin>
72         <groupId>org.apache.maven.plugins</groupId>
73         <artifactId>maven-install-plugin</artifactId>
74         <configuration>
75           <skip>true</skip>
76         </configuration>
77       </plugin>
78     </plugins>
79   </build>
80 </project>