From 4e7753f06528811f953fdbf6d6dcf0e39c99da84 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Sun, 5 Sep 2021 14:41:19 +0000 Subject: [PATCH] still hacking the build git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892940 13f79535-47bb-0310-9956-ffa450edef68 --- poi-ooxml/build.gradle | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/poi-ooxml/build.gradle b/poi-ooxml/build.gradle index d769d3f4ff..55ba4d6b25 100644 --- a/poi-ooxml/build.gradle +++ b/poi-ooxml/build.gradle @@ -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 + } + } + } } } } -- 2.39.5