aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-11-16 21:46:06 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-11-16 21:46:06 +0100
commit234965e9e167f510ab38b0fcdad3bd2846691339 (patch)
tree587d47764d6cd4b5a049c7eb3699be8af6ddca43 /build.gradle
parentchore(web): fix Sonar issue (diff)
downloadrefinery-234965e9e167f510ab38b0fcdad3bd2846691339.tar.gz
refinery-234965e9e167f510ab38b0fcdad3bd2846691339.tar.zst
refinery-234965e9e167f510ab38b0fcdad3bd2846691339.zip
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.
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle8
1 files changed, 4 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle
index 694d5c2d..91478387 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,8 +1,8 @@
1plugins { 1plugins {
2 id 'com.github.johnrengelman.shadow' version '7.1.0' apply false 2 alias libs.plugins.shadow apply false
3 id 'org.siouan.frontend-jdk11' version '5.3.0' apply false 3 alias libs.plugins.frontend apply false
4 id 'org.sonarqube' version '3.3' 4 alias libs.plugins.sonarqube
5 id 'org.xtext.xtend' version '3.0.0-M1' apply false 5 alias libs.plugins.xtend apply false
6} 6}
7 7
8allprojects { 8allprojects {