still hacking the build

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892940 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2021-09-05 14:41:19 +00:00
parent bd9a10a153
commit 4e7753f065
1 changed files with 12 additions and 0 deletions

View File

@ -245,6 +245,18 @@ publishing {
pom {
name = 'Apache POI - API based on OPC and OOXML schemas'
description = 'Apache POI - Java API To Access Microsoft Format Files'
withXml {
// Update dependencies with resolved versions
def hasDependencies = !asNode().dependencies.isEmpty()
if (hasDependencies) {
asNode().dependencies.first().each {
String artifactId = it.get("artifactId").first().value().first()
String modifiedName = artifactId.equals("poi-ooxml-full") ? "poi-ooxml-lite" : artifactId
it.get("artifactId").first().value = modifiedName
}
}
}
}
}
}