apply plugin: 'java' apply plugin: 'com.github.ben-manes.versions' dependencies { compile "com.fasterxml.jackson.core:jackson-annotations:${rootProject.jacksonVersion}" compile "org.slf4j:slf4j-api:${rootProject.slf4jVersion}" compile 'org.apache.httpcomponents:httpclient:4.5.2' compile 'org.apache.commons:commons-lang3:3.5' compile 'org.apache.commons:commons-collections4:4.1' compile 'commons-io:commons-io:2.5' } compileJava.options.encoding = 'UTF-8' configurations { all*.exclude module: 'commons-logging' }