Revert "ignore test testMultithreadedIdAllocationFromReleaseIds of Idmanager"
[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>7.0.5</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.genius</groupId>
19   <artifactId>genius-aggregator</artifactId>
20   <version>0.10.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   <properties>
32     <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
33     <maven.deploy.skip>true</maven.deploy.skip>
34     <maven.install.skip>true</maven.install.skip>
35   </properties>
36
37   <modules>
38     <module>commons</module>
39     <module>interfacemanager</module>
40     <module>itm</module>
41     <module>cloudscaler</module>
42     <module>lockmanager</module>
43     <module>mdsalutil</module>
44     <module>arputil</module>
45     <module>idmanager</module>
46     <module>alivenessmonitor</module>
47     <module>features</module>
48     <module>artifacts</module>
49     <module>fcapsmanager</module>
50     <module>fcapsapplication</module>
51     <module>ipv6util</module>
52     <module>networkutils</module>
53   </modules>
54
55   <build>
56     <pluginManagement>
57       <plugins>
58           <plugin>
59           <!-- Downgrade javadoc plugin, as 3.1.0+ breaks with maven.compiler.release=11 + javadoc:aggregate -->
60           <artifactId>maven-javadoc-plugin</artifactId>
61           <version>3.0.1</version>
62         </plugin>
63       </plugins>
64     </pluginManagement>
65   </build>
66
67   <profiles>
68     <profile>
69       <id>karaf</id>
70       <activation>
71         <activeByDefault>true</activeByDefault>
72       </activation>
73
74       <modules>
75         <module>karaf</module>
76       </modules>
77     </profile>
78   </profiles>
79
80 </project>