Is it possible to use Gradle Platform also for convention plugins? I have a project using gradle with the following structure
Projects:
------------------------------------------------------------
Root project 'my-project'
------------------------------------------------------------
Root project 'my-project'
+--- Project ':my-module-1'
+--- Project ':my-module-2'
+--- Project ':platform'
\--- Project ':my-module-3'
Included builds:
\--- Included build ':build-logic'
My settings.gradle.kts
pluginManagement {
includeBuild("build-logic")
}
rootProject.name = "my-project"
include(:platform)
include(:my-module-1)
include(:my-module-2)
include(:my-module-3)
I defined a Platforms module according to this documentation the build.gradle.kts is structured like this:
plugins {
`java-platform`
}
dependecies {
constraints {
api("some-dependency")
}
}
I used this documentation to define convention plugins that are located in a separate project called build-logic
To enforce my dependency constraints i add the following to the different my-modules
build.gradle.kts files
dependencies {
implementation(enforcedPlatform(project(":platform")))
// other dependencies here
}
But i can not add the platform
module to my build-logic
. build.gradle.kts. I get the error message: Project with path ':platform' could not be found in project ':build-logic'.
Is it not possible to use a platform in included builds?