Slackbot
10/24/2023, 10:49 PMephemient
10/24/2023, 11:03 PMdependencies {
implementation("myGroup:myArtifact") {
// is ExternalModuleDependency
}
}
configurations.implementation {
withDependencies {
withType<ExternalModuleDependency>().matching { it.group == "myGroup" && it.name == "myArtifact" }.configureEach {
setVersion(extension.artifactVersion.get())
}
}
}