From bc4c7b25d30b666d130c3fe2110ba88aed1a2ba3 Mon Sep 17 00:00:00 2001 From: Karl Tauber Date: Mon, 23 Jun 2025 16:56:38 +0200 Subject: [PATCH] snapshots: publish macOS `.dylib` native libraries to Maven Central Snapshots (disabled in commit 5575854e6837be4dd806acf52b3eb3a9ea36e14f) --- flatlaf-core/build.gradle.kts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/flatlaf-core/build.gradle.kts b/flatlaf-core/build.gradle.kts index f1de6233..f02a413d 100644 --- a/flatlaf-core/build.gradle.kts +++ b/flatlaf-core/build.gradle.kts @@ -158,8 +158,4 @@ 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" } }