This is an automated email from the ASF dual-hosted git repository. centic pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/poi.git
commit 2dd124eb426e37e7f53f37c36275fa99616cbde3 Author: Dominik Stadler <[email protected]> AuthorDate: Tue Dec 2 22:10:10 2025 +0100 Fix some Gradle deprecation warnings A number of warnings still remain, they seem a bit more complicated to fix. --- build.gradle | 4 ++-- poi-integration/build.gradle | 8 ++++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index d913acac7a..b103292d1a 100644 --- a/build.gradle +++ b/build.gradle @@ -503,8 +503,8 @@ subprojects { publishing { publications { POI(MavenPublication) { - groupId 'org.apache.poi' - artifactId project.archivesBaseName + groupId = 'org.apache.poi' + artifactId = project.archivesBaseName from components.java diff --git a/poi-integration/build.gradle b/poi-integration/build.gradle index 0834fa5b3b..a6e02af472 100644 --- a/poi-integration/build.gradle +++ b/poi-integration/build.gradle @@ -156,9 +156,13 @@ test { } } -javadoc { enabled(false) } +javadoc { + enabled = false +} -sourcesJar { enabled(false) } +sourcesJar { + enabled = false +} generateMetadataFileForPOIPublication.enabled = false publishPOIPublicationToMavenLocal.enabled = false --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
