-
Notifications
You must be signed in to change notification settings - Fork 54
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
Auxiliary classpath is broken #549
Comments
corebonts
pushed a commit
to corebonts/spotbugs-maven-plugin
that referenced
this issue
Feb 24, 2023
…File argument The plugin versions before 4.7.3.1 passed the auxiliary classpath via the standard input, which caused a deadlock during parallel builds with non-forked spotbugs. spotbugs#488 Although this was fixed by removing the -auxclasspathFromInput, this broke the classpath logic. The solution is to pass the classpath using a file.
This was referenced Feb 25, 2023
fix in the works... |
hazendaz
added a commit
that referenced
this issue
Feb 25, 2023
#549 Pass the auxiliary classpath using the -auxclasspathFromFile agument
fixed in master now. Writing tests to ensure this does not happen again in future. No current IT tests checked for any such condition giving false positive this was ok for changing. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The plugin versions before 4.7.3.1 passed the auxiliary classpath via the standard input, which caused a deadlock during parallel builds with non-forked spotbugs. #488
Although this was fixed by removing the
-auxclasspathFromInput
, this broke the classpath logic.The solution is to pass the classpath using a file. (merge request is approaching soon)
The text was updated successfully, but these errors were encountered: