Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,11 @@ internal abstract class DefaultNmcpAggregationExtension(private val project: Pro
project.allprojects {
check(!allNames.contains(it.name.lowercase())) {
"""
Nmcp: some projects have the same name: '${it.name}'. This creates issues when resolving the aggregation.
You can usually resolve this error by renaming your projects (including possibly your root project).

Nmcp: some projects have the same name: '${it.name}'. If your projects also have the same groupId, this can create issues when resolving the aggregation.
You can usually resolve this error by renaming your projects (including possibly your root project), or setting a distinct `group` in the colliding projects.
Or you can disable this check by calling `allowDuplicateProjectNames.set(true)`.
See https://github.com/gradle/gradle/issues/36167 for more details.
See https://github.com/gradle/gradle/issues/847 for more details.
""".trimIndent()
}
allNames.add(it.name.lowercase())
Expand Down
Loading