11776c6e8577d9d0aa6ff356ae53be1649183320
[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/opendaylight</module>
31     <module>opendaylight/commons/logback_settings</module>
32     <module>opendaylight/commons/filter-valve</module>
33     <module>opendaylight/commons/liblldp</module>
34     <module>opendaylight/commons/enunciate-parent</module>
35     <module>benchmark</module>
36     <module>opendaylight/commons/jolokia</module>
37
38     <!-- Karaf Distribution -->
39     <module>karaf</module>
40     <module>features</module>
41
42     <!-- archetypes -->
43     <module>opendaylight/archetypes</module>
44   </modules>
45   <scm>
46     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
47     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
48     <tag>HEAD</tag>
49     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
50   </scm>
51
52   <profiles>
53     <!-- Turn off doclint on aggregated API javadoc build. -->
54     <profile>
55       <id>jdk8</id>
56       <activation>
57         <jdk>[1.8,)</jdk>
58       </activation>
59
60       <build>
61         <plugins>
62           <plugin>
63             <groupId>org.apache.maven.plugins</groupId>
64             <artifactId>maven-javadoc-plugin</artifactId>
65             <configuration>
66               <additionalparam>-Xdoclint:none</additionalparam>
67             </configuration>
68           </plugin>
69         </plugins>
70       </build>
71     </profile>
72   </profiles>
73 </project>