From 234965e9e167f510ab38b0fcdad3bd2846691339 Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Tue, 16 Nov 2021 21:46:06 +0100 Subject: build: use version catalogs Gradle version catalogs allow centralized management of dependency artifact coordinates using a toml file. Previously, we use the gradle.properties file, which cannot manage group and name coordinates, only versions. Node and yarn versions still have to be in gradle.properties, because they do not correspond to any coordiates of a maven artifact. --- settings.gradle | 2 ++ 1 file changed, 2 insertions(+) (limited to 'settings.gradle') diff --git a/settings.gradle b/settings.gradle index 0e237de1..a53586f2 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,3 +1,5 @@ +enableFeaturePreview 'VERSION_CATALOGS' + rootProject.name = 'refinery' include 'language' -- cgit v1.2.3-54-g00ecf