From 892c7a027eb8ef71b995836c0ca6f762ec205593 Mon Sep 17 00:00:00 2001 From: Luis Majano Date: Mon, 8 Apr 2024 08:33:15 +0100 Subject: [PATCH] fixing downloadBoxLang --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 4ca577b..1f470ef 100644 --- a/build.gradle +++ b/build.gradle @@ -179,7 +179,7 @@ task downloadBoxLang( type: Download ) { // Configure the URL of the file to download src "https://ortus-temp.s3.amazonaws.com/jericho/libs/boxlang-${boxlangVersion}-all.jar" // Specify the destination directory for the downloaded file - dest "src/test/resources/libs" + dest "src/test/resources/libs/boxlang-${boxlangVersion}-all.jar" overwrite true onlyIfModified true }