gradle: use AbstractPublishToMaven instead of PublishToMavenRepository to support publishing to local Maven repo (PublishToMavenLocal)

This commit is contained in:
Karl Tauber
2024-02-19 18:47:48 +01:00
parent d7a76081e3
commit a8e71895ee
6 changed files with 6 additions and 6 deletions

View File

@@ -74,7 +74,7 @@ tasks {
exclude( "com/formdev/flatlaf/natives/**" )
}
withType<PublishToMavenRepository>().configureEach {
withType<AbstractPublishToMaven>().configureEach {
dependsOn( "jarNoNatives" )
}