Skip to content

Commit 7eebb47

Browse files
committed
Exclude meta projects from main maven artifact.
This fixes being unable to depend on it in dev.
1 parent 0fd1430 commit 7eebb47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ publishing {
668668
def depsNode = asNode().appendNode("dependencies")
669669
subprojects.each {
670670
// The maven BOM containing all of the deprecated modules is added manually below.
671-
if (it.path.startsWith(":deprecated")) {
671+
if (it.path.startsWith(":deprecated") || metaProjects.contains(it.name)) {
672672
return
673673
}
674674

0 commit comments

Comments
 (0)