From 8beedffea29ee23dfc37a71d10c17111287a70a8 Mon Sep 17 00:00:00 2001 From: KennyTV Date: Thu, 27 May 2021 23:56:22 +0200 Subject: [PATCH] Fix project root build/libs dir not being cleaned The base plugin is usually applied by the java plugin, but since that has been moved into the platforms, cleaning was no longer applied to the root dir (created and filled by the universal submodule). --- build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle.kts b/build.gradle.kts index 93750893e..85dea62cc 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,6 +1,7 @@ import org.gradle.api.plugins.JavaPlugin.TEST_IMPLEMENTATION_CONFIGURATION_NAME plugins { + base id("via.build-logic") }