Hello, I’m working on a composite build project th...
# community-support
a
Hello, I’m working on a composite build project that uses version catalogs (gradle 7.5.1) on one of the leaf nodes (doesn’t include another build) Running into this error
Copy code
Error resolving plugin [id: 'org.jetbrains.kotlin.jvm', version: '1.7.0']
> The request for this plugin could not be satisfied because the plugin is already on the classpath with an unknown version, so compatibility cannot be checked.
on this block
Copy code
plugins {
    alias(libs.plugins.kotlin.jvm)
    alias(libs.plugins.detekt)
    id 'java-library'
    alias(libs.plugins.kotlin.kapt)
    id 'maven-publish'
}
I tried using the solution described in this gradle issue, but ran into this other issue
Copy code
Could not compile build file '<...>/projectA/build.gradle'.
> startup failed:
  build file '<...>/projectA/build.gradle': 2: argument list must be exactly 1 literal String or String with property replacement
This started happening after I applied a custom gradle settings plugin (linked in this thread) Does anyone know why this is running into an issue?