com.netflix.nebula.lint.rule.dependency.TransitiveDuplicateDepenencyClassRule.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-lint-plugin Show documentation
Show all versions of gradle-lint-plugin Show documentation
Pluggable and configurable linter tool for identifying and reporting on patterns of misuse or deprecations in Gradle scripts
package com.netflix.nebula.lint.rule.dependency
import org.gradle.api.artifacts.Configuration
import org.gradle.api.artifacts.ModuleVersionIdentifier
class TransitiveDuplicateDepenencyClassRule extends AbstractDuplicateDependencyClassRule {
@Override
protected List moduleIds(Configuration conf) {
return transitiveModuleIds(conf) - firstOrderModuleIds(conf)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy