We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81935fb commit 9c66cffCopy full SHA for 9c66cff
tools/idea-plugin/build.gradle.kts
@@ -138,9 +138,8 @@ tasks {
138
}
139
140
tasks.register<CheckComposeVersionCompatibility>("checkComposeVersionCompatibility") {
141
- val runtimeClasspath = configurations.named("runtimeClasspath")
142
- artifactCollection = provider {
143
- runtimeClasspath.get().incoming.artifactView { lenient(true) }.artifacts
+ artifactCollection = configurations.runtimeClasspath.map {
+ it.incoming.artifactView { lenient(true) }.artifacts
144
145
expectedComposeVersion = libs.versions.compose
146
0 commit comments