blob: c7e94c25cf71a1b5b93fb7da5d502bdd9d3aed96 [file] [log] [blame]
//noinspection GrPackage
project("moduleWithAdditionalClasspath") {
buildscript {
dependencies {
classpath files("lib/someDep.jar")
}
}
}
project("baseModule") {
buildscript {
dependencies {
classpath files("lib/inheritedDep.jar")
}
}
}
allprojects {
configurations.all {
// check for configuration which is not in unresolved state - http://youtrack.jetbrains.com/issue/IDEA-124839
exclude group: 'some-group'
// check for usage of custom resolutionStrategy - http://youtrack.jetbrains.com/issue/IDEA-125592
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
println details.target
}
}
}