Skip to content

Commit a8f43af

Browse files
committed
fix maven publish
1 parent a94e7fe commit a8f43af

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ indra {
6363
url = 'https://lucko.me'
6464
}
6565
}
66+
withXml {
67+
def root = asNode()
68+
// maven central is sad about fabric's dependencies in the pom
69+
root.remove(root.get('dependencies'))
70+
root.remove(root.get('dependencyManagement'))
71+
}
6672
}
6773
}
6874
signWithKeyFromProperties("signingKey", "signingPassword")

0 commit comments

Comments
 (0)