Eli Graber
07/31/2025, 7:01 PMplugins {
id("io.gitlab.arturbosch.detekt")
}
After updating to 9.0.0, building the library fails with
Plugin [id: 'io.gitlab.arturbosch.detekt'] was not found in any of the following sources:
- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Included Builds (No included builds contain this plugin)
- Plugin Repositories (plugin dependency must include a version number for this source)
Anyone know if this new failure is intentional or a regression?Eli Graber
07/31/2025, 7:24 PMimplementation
instead of compileOnly
, but that isn't desirable. I'll file an issue.TrevJonez
07/31/2025, 8:46 PMimplementation/api
so it gets added to the runtime classpath of the consumer. Or your consumer needs to add it to their root project with an apply false
so that the version gets specified somewhere.
I usually just do implementation
and rarely have a problem from it adding stuff to the classpath. But every now and then issue pop up from things that use newer versions of kotlin than what the given gradle version embeds.Eli Graber
07/31/2025, 9:05 PMLaura Kassovic
07/31/2025, 10:14 PM