Suppress Gradle warnings

After migrating a project from Gradle to Gradle version 4.0-rc-1, the build output shows some deprecation warnings. Since the deprecated methods are used by Gradle plugins, I have no control over capturing the alerts. The Gradle documentation and help does not provide information on disabling such warnings.

How can you disable Gradle failure warnings?

+5


source to share


1 answer


there is an option --warning-mode none

to suppress deprecation warnings.



0


source







All Articles