mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
Fix some Gradle deprecation warnings
A number of warnings still remain, they seem a bit more complicated to fix.
This commit is contained in:
parent
fe3359bd79
commit
2dd124eb42
@ -503,8 +503,8 @@ subprojects {
|
|||||||
publishing {
|
publishing {
|
||||||
publications {
|
publications {
|
||||||
POI(MavenPublication) {
|
POI(MavenPublication) {
|
||||||
groupId 'org.apache.poi'
|
groupId = 'org.apache.poi'
|
||||||
artifactId project.archivesBaseName
|
artifactId = project.archivesBaseName
|
||||||
|
|
||||||
from components.java
|
from components.java
|
||||||
|
|
||||||
|
|||||||
@ -156,9 +156,13 @@ test {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
javadoc { enabled(false) }
|
javadoc {
|
||||||
|
enabled = false
|
||||||
|
}
|
||||||
|
|
||||||
sourcesJar { enabled(false) }
|
sourcesJar {
|
||||||
|
enabled = false
|
||||||
|
}
|
||||||
|
|
||||||
generateMetadataFileForPOIPublication.enabled = false
|
generateMetadataFileForPOIPublication.enabled = false
|
||||||
publishPOIPublicationToMavenLocal.enabled = false
|
publishPOIPublicationToMavenLocal.enabled = false
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user