This is an automated email from the ASF dual-hosted git repository. jsinovassinnaik pushed a commit to branch UNOMI-746-deactivate-jacoco in repository https://gitbox.apache.org/repos/asf/unomi.git
commit 0bcd4150c244662e6bec2f0cecb4955235fb0b23 Author: jsinovassin <[email protected]> AuthorDate: Wed Mar 8 17:49:05 2023 +0100 UNOMI-746 : execute jacoco only in java 8 --- itests/pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/itests/pom.xml b/itests/pom.xml index 375e816b6..31bd0f327 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> + <jdk>1.8</jdk> + </activation> + <build> + <plugins> <plugin> <artifactId>exec-maven-plugin</artifactId> <groupId>org.codehaus.mojo</groupId>
