remove maven dependencies

This commit is contained in:
Ellpeck 2020-02-07 21:05:26 +01:00
parent 6a20dbadc9
commit 352be206f2

View file

@ -141,6 +141,12 @@ publishing {
artifact deobfJar {
classifier 'deobf'
}
pom.withXml {
def node = asNode()
if(node.dependencies.size() > 0)
node.remove(node.dependencies)
}
}
}
repositories {