Jacoco aggregate

Change-Id: I321cc7e391f13f48ffe911d538d16c9f28a077b4
Signed-off-by: Dawid Pakuła <zulus@w3des.net>
diff --git a/build/update.site/pom.xml b/build/update.site/pom.xml
index 601e9a0..0821692 100644
--- a/build/update.site/pom.xml
+++ b/build/update.site/pom.xml
@@ -58,5 +58,26 @@
 				</plugins>
 			</build>
 		</profile>
+        <profile>
+                <id>sonar</id>
+                <build>
+                        <plugins>
+                                <plugin>
+                                        <groupId>org.jacoco</groupId>
+                                        <artifactId>jacoco-maven-plugin</artifactId>
+                                        <version>${jacoco.version}</version>
+                                        <executions>
+                                                <execution>
+                                                        <id>report</id>
+                                                        <goals>
+                                                                <goal>report-aggregate</goal>
+                                                        </goals>
+                                                        <phase>verify</phase>
+                                                </execution>
+                                        </executions>
+                                </plugin>
+                        </plugins>
+                </build>
+        </profile>
 	</profiles>
 </project>