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