aboutsummaryrefslogtreecommitdiffstats
path: root/store
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 /store
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 'store')
-rw-r--r--store/build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/store/build.gradle b/store/build.gradle
index 6861b732..0a5ba549 100644
--- a/store/build.gradle
+++ b/store/build.gradle
@@ -4,6 +4,6 @@ apply from: "${rootDir}/gradle/junit.gradle"
4apply from: "${rootDir}/gradle/jmh.gradle" 4apply from: "${rootDir}/gradle/jmh.gradle"
5 5
6dependencies { 6dependencies {
7 implementation "org.eclipse.viatra:viatra-query-runtime:${viatraVersion}" 7 implementation libs.ecore
8 implementation "org.eclipse.emf:org.eclipse.emf.ecore:${ecoreVersion}" 8 implementation libs.viatra
9} 9}