You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2020/03/14 14:18:09 UTC

[plc4x] 02/02: - Made jacoco generate the jacoco.xml reports so hopefully SonarCloud will import them.

This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit aa5ed2e804ecb0b695159df631ed4ae56e14eba4
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Sat Mar 14 15:18:00 2020 +0100

    - Made jacoco generate the jacoco.xml reports so hopefully SonarCloud will import them.
---
 plc4j/pom.xml | 7 +++++++
 pom.xml       | 2 --
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/plc4j/pom.xml b/plc4j/pom.xml
index 762f9d8..cd71a02 100644
--- a/plc4j/pom.xml
+++ b/plc4j/pom.xml
@@ -110,6 +110,13 @@
               <propertyName>failsafeArgLine</propertyName>
             </configuration>
           </execution>
+          <execution>
+            <id>report</id>
+            <phase>verify</phase>
+            <goals>
+              <goal>report</goal>
+            </goals>
+          </execution>
           <!--
               Check if the unit-test-coverage is at least a certain minimum.
           -->
diff --git a/pom.xml b/pom.xml
index 6ef7a36..775a101 100644
--- a/pom.xml
+++ b/pom.xml
@@ -98,8 +98,6 @@
     <!-- Timestamp for the reproducible builds -->
     <project.build.outputTimestamp>2019-11-01T10:30:00Z</project.build.outputTimestamp>
 
-    <!-- URL of the ASF SonarQube server -->
-    <sonar.host.url>https://builds.apache.org/analysis</sonar.host.url>
     <!-- Exclude all generated code -->
     <sonar.exclusions>**/generated-sources</sonar.exclusions>