mirror of
https://github.com/FabricMC/fabric.git
synced 2024-11-14 19:25:23 -05:00
Exclude meta projects from main maven artifact.
This fixes being unable to depend on it in dev.
This commit is contained in:
parent
0fd1430e85
commit
7eebb47af6
1 changed files with 1 additions and 1 deletions
|
@ -668,7 +668,7 @@ publishing {
|
|||
def depsNode = asNode().appendNode("dependencies")
|
||||
subprojects.each {
|
||||
// The maven BOM containing all of the deprecated modules is added manually below.
|
||||
if (it.path.startsWith(":deprecated")) {
|
||||
if (it.path.startsWith(":deprecated") || metaProjects.contains(it.name)) {
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue