Bug 7065 - Add sal-cluster-admin-impl to mdsal-artifacts
[controller.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.odlparent</groupId>
6     <artifactId>odlparent-lite</artifactId>
7     <version>1.8.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10   <groupId>org.opendaylight.controller</groupId>
11   <artifactId>releasepom</artifactId>
12   <version>0.5.0-SNAPSHOT</version>
13   <packaging>pom</packaging>
14   <name>controller</name>
15   <!-- Used by Sonar to set project name -->
16
17   <modules>
18
19     <!-- md-sal -->
20     <module>opendaylight/md-sal</module>
21     <!-- config -->
22     <module>opendaylight/config</module>
23
24     <module>opendaylight/model</module>
25
26     <module>opendaylight/blueprint</module>
27
28     <!-- Parents -->
29     <module>opendaylight/commons/protocol-framework</module>
30     <module>opendaylight/commons/logback_settings</module>
31     <module>opendaylight/commons/filter-valve</module>
32     <module>opendaylight/commons/liblldp</module>
33     <module>benchmark</module>
34     <module>opendaylight/commons/jolokia</module>
35
36     <!-- Karaf Distribution -->
37     <module>karaf</module>
38     <module>features</module>
39
40     <!-- archetypes -->
41     <module>opendaylight/archetypes</module>
42   </modules>
43   <scm>
44     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
45     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
46     <tag>HEAD</tag>
47     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
48   </scm>
49
50   <profiles>
51     <!-- Turn off doclint on aggregated API javadoc build. -->
52     <profile>
53       <id>jdk8</id>
54       <activation>
55         <jdk>[1.8,)</jdk>
56       </activation>
57
58       <build>
59         <plugins>
60           <plugin>
61             <groupId>org.apache.maven.plugins</groupId>
62             <artifactId>maven-javadoc-plugin</artifactId>
63             <configuration>
64               <additionalparam>-Xdoclint:none</additionalparam>
65             </configuration>
66           </plugin>
67         </plugins>
68       </build>
69     </profile>
70   </profiles>
71 </project>