From 5ae655b57fd54a2b9cc5b135b086945875221796 Mon Sep 17 00:00:00 2001 From: Alex Koukarine Date: Wed, 18 Dec 2024 13:33:09 -0800 Subject: [PATCH] Add toolchains resolver plugin. (#822) Fix #817 by adding opensource toolcahins resolver plugin to help simplify the local project configuration set up. Signed-off-by: halxinate --- settings.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/settings.gradle.kts b/settings.gradle.kts index 426ba4f62..094fad465 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -33,6 +33,10 @@ dependencyResolutionManagement { } } +plugins { + id("org.gradle.toolchains.foojay-resolver-convention") version("0.9.0") +} + include(":processor") include(":processor-annotations") include(":identity")