最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

java - Gradle composite build with convention plugins and platform - Stack Overflow

programmeradmin1浏览0评论

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?

发布评论

评论列表(0)

  1. 暂无评论