-
-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTML report doesn't generates when gradle-lombok plugins is also applied #94
Comments
I have also discovered that it generates HTML reports but only up to version 1.6.8. When upgraded to 1.6.9+ it generates XML 🤔 |
@simPod checkout my solution from 1.6.9 branch. It's generates html report with 1.6.9 version without lombok plugin applied, but it's not when lombok plugin applied (see branch 1.6.9-lombok) |
@daggerok I see. It was probably misbehaving for me and I had to restart gradle daemons. Now it works with 1.7.1 as well. I have similar issue as you. Having this makes spotbugs generate xml no matter what. buildscript {
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.3'
}
} Removing |
Also any other plugin, like spring boot causes the same |
I cannot reproduce this problem with latest versions:
please feel free to reopen this issue when you could reproduce with them. |
Hello, this issue comes from that one: #32
what's wrong
when gradle lombok plugin is applied, spotbugs-gradle-plugin generates XML reports instead of configured HTML format
how to reproduce
to reproduce a bug, please do next:
build.gradle
file:// id 'io.franzbecker.gradle-lombok' version '1.14' apply false
as you can see, XML reports was generated instead of configured html format. As soon line 25 will be commented out, html reports will be generated as expected.
Regards,
Maksim
The text was updated successfully, but these errors were encountered: