Skip to content
Snippets Groups Projects
Commit 16299e54 authored by dgelessus's avatar dgelessus
Browse files

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.
parent 0f7e3ba2
Branches
Tags
No related merge requests found
Pipeline #112244 passed
...@@ -22,13 +22,7 @@ configurations.all { ...@@ -22,13 +22,7 @@ configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds' resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
} }
def parser_version def parser_version = '2.12.4-SNAPSHOT'
if (isSnapshot) {
parser_version = '2.12.4-SNAPSHOT'
}
else {
parser_version = '2.12.3'
}
dependencies { dependencies {
implementation(group: 'commons-cli', name: 'commons-cli', version: '1.4') implementation(group: 'commons-cli', name: 'commons-cli', version: '1.4')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment