Merge (Abstract)TransactionContext
[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>9.0.7</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>releasepom</artifactId>
13   <version>4.0.4-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   </modules>
41
42   <profiles>
43     <profile>
44       <id>sonar-jacoco-aggregate</id>
45       <activation>
46         <property>
47           <name>odl.jacoco.aggregateFile</name>
48         </property>
49       </activation>
50       <build>
51         <plugins>
52           <plugin>
53             <groupId>org.jacoco</groupId>
54             <artifactId>jacoco-maven-plugin</artifactId>
55             <executions>
56               <execution>
57                 <id>merge</id>
58                 <goals>
59                     <goal>merge</goal>
60                 </goals>
61                 <phase>generate-resources</phase>
62                 <configuration>
63                   <destFile>${odl.jacoco.aggregateFile}</destFile>
64                   <fileSets>
65                     <fileSet>
66                       <directory>${project.basedir}</directory>
67                       <includes>
68                         <include>**/target/code-coverage/*.exec</include>
69                       </includes>
70                     </fileSet>
71                   </fileSets>
72                 </configuration>
73               </execution>
74             </executions>
75           </plugin>
76         </plugins>
77       </build>
78     </profile>
79   </profiles>
80
81   <scm>
82     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
83     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
84     <tag>HEAD</tag>
85     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
86   </scm>
87 </project>