From 16299e545e41529745ba2f3d6af17e647798ccb4 Mon Sep 17 00:00:00 2001
From: dgelessus <dgelessus@users.noreply.github.com>
Date: Fri, 28 Apr 2023 12:16:33 +0200
Subject: [PATCH] Unconditionally depend on SNAPSHOT version of parser

Because the code currently uses a method that's not in the release
version yet. Once it's released, this should be changed to the
non-SNAPSHOT version.
---
 build.gradle | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/build.gradle b/build.gradle
index d96d8e0..3a5f21f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -22,13 +22,7 @@ configurations.all {
 	resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
 }
 
-def parser_version
-if (isSnapshot) {
-	parser_version = '2.12.4-SNAPSHOT'
-}
-else {
-	parser_version = '2.12.3'
-}
+def parser_version = '2.12.4-SNAPSHOT'
 
 dependencies {
 	implementation(group: 'commons-cli', name: 'commons-cli', version: '1.4')
-- 
GitLab