Pull out commons lang version

This commit is contained in:
Chris Burlinchon 2018-11-19 17:19:44 +00:00
parent f676941dbf
commit cb0091f097
3 changed files with 3 additions and 2 deletions

View File

@ -82,7 +82,7 @@ dependencies {
// JAnsi: for drawing things to the terminal in nicely coloured ways.
compile "org.fusesource.jansi:jansi:$jansi_version"
compile "commons-lang:commons-lang:2.6"
compile "commons-lang:commons-lang:$commons_lang_version"
integrationTestCompile project(':node-driver')
integrationTestCompile "org.apache.curator:curator-test:${curator_version}"

View File

@ -78,6 +78,7 @@ buildscript {
ext.class_graph_version = '4.2.12'
ext.jcabi_manifests_version = '1.1'
ext.picocli_version = '3.8.0'
ext.commons_lang_version = '2.6'
// Name of the IntelliJ SDK created for the deterministic Java rt.jar.
// ext.deterministic_idea_sdk = '1.8 (Deterministic)'

View File

@ -100,7 +100,7 @@ dependencies {
// Apache JEXL: An embeddable expression evaluation library.
// This may be temporary until we experiment with other ways to do on-the-fly contract specialisation via an API.
compile "org.apache.commons:commons-jexl3:3.0"
compile 'commons-lang:commons-lang:2.6'
compile "commons-lang:commons-lang:$commons_lang_version"
// Java ed25519 implementation. See https://github.com/str4d/ed25519-java/
compile "net.i2p.crypto:eddsa:$eddsa_version"