You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At this moment, DepClean analyzes the project's bytecode located in target/classes and target/test-classes. It is desirable to have a parameter that allows to not analyze bytecode classes used for testing in the project. This way, the dependencies that are only used for testing will be considered unused.
This parameter is useful to detect dependencies that have a compile scope but are only used for testing. Hence, these dependencies should have a test scope.
The text was updated successfully, but these errors were encountered:
At this moment, DepClean analyzes the project's bytecode located in
target/classes
andtarget/test-classes
. It is desirable to have a parameter that allows to not analyze bytecode classes used for testing in the project. This way, the dependencies that are only used for testing will be considered unused.This parameter is useful to detect dependencies that have a
compile
scope but are only used for testing. Hence, these dependencies should have atest
scope.The text was updated successfully, but these errors were encountered: