Fix some Gradle deprecation warnings

A number of warnings still remain,
they seem a bit more complicated to fix.
This commit is contained in:
Dominik Stadler 2025-12-02 22:10:10 +01:00
parent fe3359bd79
commit 2dd124eb42
2 changed files with 8 additions and 4 deletions

View File

@ -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

View File

@ -156,9 +156,13 @@ test {
}
}
javadoc { enabled(false) }
javadoc {
enabled = false
}
sourcesJar { enabled(false) }
sourcesJar {
enabled = false
}
generateMetadataFileForPOIPublication.enabled = false
publishPOIPublicationToMavenLocal.enabled = false