Replies: 1 comment 3 replies
-
You do not have to disable it. It is expected behavior. By default,
Just like as follows:
We use compile classpath by default, refer to #115 to learn about the motivation. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
currently when I run spotbugs on my project, it will report lots of classes names printed following "The following classes needed for analysis were missing:". After digging around, I find that I have to manually overwrite the ./build/spotbugs/auxclasspath/spotbugsMain file with jar files under my gradle cache directory -- I don't know why spotbugs will look for the jar files there either. But anyway, if I manually put the jar files list in this spotbugsMain file then spotbugs run without reporting any warning messages any more. But then I realized that this file would be overwritten each time the gradle run. So my question is:
Thanks
Beta Was this translation helpful? Give feedback.
All reactions