I'm using NewerVersionAvailable
lint check to determine newer dependencies versions. But it looks like that this check is useful only for implementation
dependencies. I think we don't need to update junit
anytime soon. How to disable this check for separate dependency type? It is boring to add //noinspection
to each testImplementation
dependency. Example given:
dependencies {
// should warn
implementation 'com.android.support:support-annotations:25.0.0'
// shouldn't warn
testImplementation 'junit:junit:4.12'
}