UNOMI-746 : deactivate jacoco (#583)
diff --git a/.github/workflows/unomi-ci-build-tests.yml b/.github/workflows/unomi-ci-build-tests.yml
index a0a0257..4ee27ca 100644
--- a/.github/workflows/unomi-ci-build-tests.yml
+++ b/.github/workflows/unomi-ci-build-tests.yml
@@ -45,6 +45,7 @@
run: mvn -ntp clean install -Pintegration-tests
- name: Archive code coverage logs
uses: actions/upload-artifact@v3
+ if: false # UNOMI-746 Reactivate if necessary
with:
name: unomi-code-coverage-jdk${{ matrix.java }}-${{ github.run_number }}
path: itests/target/site/jacoco
diff --git a/itests/pom.xml b/itests/pom.xml
index 375e816..105461b 100644
--- a/itests/pom.xml
+++ b/itests/pom.xml
@@ -282,6 +282,16 @@
</execution>
</executions>
</plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
+ <id>jacoco-report-exec</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>