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