researchgate / gradle-release

gradle-release is a plugin for providing a Maven-like release process for projects using Gradle
MIT License
868 stars 220 forks source link

Composite build not supported #383

Closed B-hamza closed 3 months ago

B-hamza commented 11 months ago

Using build-convention plugins ii have the error with the release showing : Cannot include build 'build-logic-conventions' in build ':com.project-release'. This is not supported yet.

My parent gradle.kts release conf

configure<ReleaseExtension> {
    ignoredSnapshotDependencies.set(listOf("net.researchgate:gradle-release"))
    preTagCommitMessage.set("[gradle-release-plugin] prepare release ")
    newVersionCommitMessage.set("[gradle-release-plugin] prepare for next development iteration ")
    with(git) { requireBranch.set("") }
}

i hava two subproject my Java app and the my composite build

my root settings.kts

includeBuild("build-logic-conventions")
include("app")
manishkteotia commented 6 months ago

Do we have any update? I am facing the same issue.

IRus commented 5 months ago

@B-hamza Is this duplicate of https://github.com/researchgate/gradle-release/issues/304?

Hillkorn commented 3 months ago

As mentioned by @IRus Duplicate of #304