Correct javadoc reference
[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>8.0.0</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>releasepom</artifactId>
13   <version>3.0.1-SNAPSHOT</version>
14   <packaging>pom</packaging>
15   <name>controller</name>
16   <!-- Used by Sonar to set project name -->
17
18   <properties>
19     <maven.deploy.skip>true</maven.deploy.skip>
20     <maven.install.skip>true</maven.install.skip>
21   </properties>
22
23   <modules>
24     <module>artifacts</module>
25     <module>bundle-parent</module>
26     <module>akka</module>
27
28     <!-- md-sal -->
29     <module>opendaylight/md-sal</module>
30     <!-- config -->
31     <module>opendaylight/config</module>
32
33     <module>opendaylight/model</module>
34
35     <module>opendaylight/blueprint</module>
36
37     <!-- Parents -->
38     <module>benchmark</module>
39     <module>opendaylight/commons/jolokia</module>
40
41     <!-- Karaf Distribution -->
42     <module>karaf</module>
43     <module>features</module>
44
45     <!-- documentation -->
46     <module>docs</module>
47   </modules>
48
49   <profiles>
50     <profile>
51       <id>sonar-jacoco-aggregate</id>
52       <activation>
53         <property>
54           <name>odl.jacoco.aggregateFile</name>
55         </property>
56       </activation>
57       <build>
58         <plugins>
59           <plugin>
60             <groupId>org.jacoco</groupId>
61             <artifactId>jacoco-maven-plugin</artifactId>
62             <executions>
63               <execution>
64                 <id>merge</id>
65                 <goals>
66                     <goal>merge</goal>
67                 </goals>
68                 <phase>generate-resources</phase>
69                 <configuration>
70                   <destFile>${odl.jacoco.aggregateFile}</destFile>
71                   <fileSets>
72                     <fileSet>
73                       <directory>${project.basedir}</directory>
74                       <includes>
75                         <include>**/target/code-coverage/*.exec</include>
76                       </includes>
77                     </fileSet>
78                   </fileSets>
79                 </configuration>
80               </execution>
81             </executions>
82           </plugin>
83         </plugins>
84       </build>
85     </profile>
86   </profiles>
87
88   <scm>
89     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
90     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
91     <tag>HEAD</tag>
92     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
93   </scm>
94 </project>