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
No related branches found
No related tags found
No related merge requests found
Pipeline #112244 passed
......@@ -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')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment