Karl Tauber
2025-05-23 00:59:32 +02:00
parent 640f2ba9a2
commit 5575854e68
8 changed files with 50 additions and 24 deletions

View File

@@ -158,4 +158,8 @@ flatlafPublish {
NativeArtifact( "${natives}/libflatlaf-linux-x86_64.so", "linux-x86_64", "so" ),
NativeArtifact( "${natives}/libflatlaf-linux-arm64.so", "linux-arm64", "so" ),
)
// Maven Central Snapshots repo currently does not accept .dylib files
if( version.toString().endsWith( "-SNAPSHOT" ) )
nativeArtifacts = nativeArtifacts?.filter { it.type != "dylib" }
}