Вы можете использовать внешние библиотеки в gradle buildscript.
пример:
buildscript {
repositories {
mavenCentral()
}
dependencies {
// this dependency will be used in gradle build script.
classpath 'org.apache.commons:commons-lang3:3.8.1'
}
}
//and use it like this in Your tasks
org.apache.commons.lang3.StringUtils.join(configurations.testRuntime,File.pathSeparator)
Я не уверен, что это решит вашу проблему, но вы можете попробовать и другие библиотеки, подобные этой.