From c2f47c6522b0c3f43c5a59a260d251b4b0bd207f Mon Sep 17 00:00:00 2001 From: Matthew Dolan Date: Thu, 6 Jun 2024 01:17:48 +0100 Subject: [PATCH] Remove unnecessary publish exclusions (#52) --- cryptohash/build.gradle.kts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cryptohash/build.gradle.kts b/cryptohash/build.gradle.kts index 019d7c9..d51816e 100644 --- a/cryptohash/build.gradle.kts +++ b/cryptohash/build.gradle.kts @@ -139,7 +139,3 @@ tasks.withType().configureEach { "--add-opens=java.base/java.util.zip=ALL-UNNAMED", ) } - -tasks.withType() - .matching { it.publication.name in listOf("jvm", "js", "kotlinMultiplatform") } - .configureEach { onlyIf { hostOs == "Linux" } }