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