mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-21 03:10:54 -04:00
Exclude meta projects from main maven artifact.
This fixes being unable to depend on it in dev.
(cherry picked from commit 7eebb47af6
)
This commit is contained in:
parent
3fc873d1ee
commit
0cb20561ee
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…
Add table
Add a link
Reference in a new issue