You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi Team
--- clover-maven-plugin:4.4.1:instrumentInternal (clover.inst) @ project1 ---
[INFO] No Clover instrumentation done on source files in: [/Users/paritosh/ABC/project1/src/main/java] as no matching sources files found (JAVA_LANGUAGE)
[INFO] No Clover instrumentation done on source files in: [/Users/paritosh/ABC/project1/src/test/java] as no matching sources files found (JAVA_LANGUAGE)
[INFO]
I tried providing the exact path of the java file as well in the configuration but every time it threw the same error message. Even I tried the goal of maven clover:setup but it threw the same message.
Due to this, no clover database is getting generated hence there are no reports.
No Clover database found, skipping report generation
My project uses java 11. I read somewhere that there is no support for java 11 as of now but is there any upcoming plan for this.
Also, is the error which is coming up due to this java version? Is there any work around for now.
Code snippet from pom.xml:
<groupId>org.openclover</groupId>
<artifactId>clover-maven-plugin</artifactId>
<configuration>
<targetPercentage>10%</targetPercentage> <cloverDatabase>${project.build.directory}/clover/clover.db</cloverDatabase>
<debug>true</debug>
<includes> <include>${project.source.directory}/</include>
</includes>
</configuration>
<executions>
<execution>
<id>clover.inst</id>
<phase>validate</phase>
<goals>
<goal>instrument-test</goal>
<!-- <goal>setup</goal> -->
</goals>
</execution>
It would be really great if I can get some ideas on this. Please let me know if any other information is required.