Justin Tullgren
09/21/2023, 2:36 PMincludeBuild
and dependencySubstition
to avoid having the kotlin compilation process pull a compiler plugin from a remote repository (like mavenLocal
) so that we don’t have to publish the kotlin compiler plugin
before debuggin?natario1
09/21/2023, 3:00 PMdependencySubstitution
explicitly (though you could if needed). I don’t think there’s anything special about how compiler plugins are resolved, your scenario used to work fine for me.Justin Tullgren
09/21/2023, 3:01 PMnatario1
09/21/2023, 3:18 PMincludeBuild
documentation in Gradle and check what’s wrong. project.group
, project.version
and the module name must match the Gradle dependency as added by your gradle pluginJustin Tullgren
09/21/2023, 3:18 PMVampire
09/21/2023, 4:58 PMgw outgoingVariants
on the producer to see what it producersJustin Tullgren
09/21/2023, 7:08 PM./gradlew outgoingVariants
on the build i am including. It says there are none. Did i run the command in the right place? @VampireVampire
09/21/2023, 7:11 PMJustin Tullgren
09/21/2023, 7:12 PMVampire
09/21/2023, 7:31 PMJustin Tullgren
09/21/2023, 7:31 PMVampire
09/21/2023, 8:35 PMgw :buildLogic:plugin-gradle:outgoingVariants
and gw :buildLogic:plugin-kotlin:outgoingVariants
show the respecting outgoing variants.Justin Tullgren
09/21/2023, 8:37 PMVampire
09/21/2023, 8:43 PM