-
Notifications
You must be signed in to change notification settings - Fork 70
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
Review Gradle and Maven output for warnings #602
Comments
Contrast the Gradle and Maven outputs for warnings. This warning from the Gradle plugin is potentially problematic:
And implies this project picks up that update. This may depend on JDK version in use. |
Evaluating warning output from Gradle:
I don't feel this project should configure to make the JVM quieter. This warning is from plugins that use runtime configuration such as injecting an agent. PIT is the largest culprit in these warnings.
This is the kind of agent injection mentioned above.
TODO: Decide if we should add this JVM flag. It will suppress warnings like this, but also make it harder to spot security issues.
Another warning from plugins using agents.
Another warning from plugins using agents.
These seems to be generic warnings from Gradle as the PIT plugin needs an agent to modify bytecode. |
Evaluating warning output from Maven:
These seem to be related to bytecode manipulation tools. It is interesting that Gradle and Maven produce different warnings.
This is as Maven |
This project generates WARNING messages in the build from various tools.
Some or many cases may be easily resolved, and as-is are "noise" in the build. Noise makes it harder for devs to see true problems.
Tasks
The text was updated successfully, but these errors were encountered: