From 0eae48e19cbf5bfa8d0a7e9180b94dd7d369ad14 Mon Sep 17 00:00:00 2001 From: Simon Templer Date: Fri, 8 Mar 2024 10:44:43 +0100 Subject: [PATCH] build: use common version variable for hale dependencies --- build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 6715914c..893e0910 100644 --- a/build.gradle +++ b/build.gradle @@ -12,10 +12,11 @@ buildscript { mavenCentral() } dependencies { + def haleVersion = '4.0.0' // for Config class - classpath 'eu.esdihumboldt.hale:eu.esdihumboldt.util.config:4.0.0' + classpath "eu.esdihumboldt.hale:eu.esdihumboldt.util.config:$haleVersion" // for XMLSchemaUpdater (depends on https://github.com/halestudio/hale/pull/731) - classpath 'eu.esdihumboldt.hale:eu.esdihumboldt.hale.common.core:4.0.0' + classpath "eu.esdihumboldt.hale:eu.esdihumboldt.hale.common.core:$haleVersion" classpath 'org.ajoberstar.grgit:grgit-core:4.1.1' }