admin管理员组文章数量:1345127
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?
本文标签: javaGradle composite build with convention plugins and platformStack Overflow
版权声明:本文标题:java - Gradle composite build with convention plugins and platform - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743767306a2535455.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论