Daniel Perez
12/24/2022, 5:45 PMA and B are modules in a the same Gradle project.
A is a regular module
B exposes a plugin with ID "my.gradle.plugin"
I would like to have the following
A -> B(Plugin)
I know normally you'd use the plugins
block and use the id()
method, but I'm not sure how to configure it from another module like you would with a library in the dependencies
block with project()
Chris Lee
12/24/2022, 5:54 PMpluginManagement {
includeBuild("build-logic")
}
Daniel Perez
12/24/2022, 6:27 PMChris Lee
12/24/2022, 6:28 PMDaniel Perez
12/24/2022, 6:29 PMChris Lee
12/24/2022, 6:31 PMDaniel Perez
12/24/2022, 6:36 PMdan-plugin
. That also didn't work(same version catalog issue pops up right after). I can send whatever you'd like to see since it's a personal project. Thanks for your patience so far tooChris Lee
12/24/2022, 6:37 PMDaniel Perez
12/24/2022, 6:41 PMDaniel Perez
12/24/2022, 6:45 PMA
and B
live in the same folder/gradle projectDaniel Perez
12/24/2022, 6:45 PMA
and B
would both be subprojectsChris Lee
12/24/2022, 6:46 PMDaniel Perez
12/24/2022, 6:48 PMB
be a separate gradle project entirely? With it's own settings.gradle.kts and everything?Chris Lee
12/24/2022, 6:49 PMDaniel Perez
12/24/2022, 6:52 PM