Update Gradle configuration

This commit is contained in:
Sergey Solovyev
2018-04-29 19:04:13 +02:00
parent f41a37fe31
commit 68cded37d9
29 changed files with 180 additions and 188 deletions

View File

@@ -4,10 +4,9 @@ apply plugin: 'application'
mainClassName = 'org.solovyev.android.translations.Android'
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'commons-cli:commons-cli:1.3'
compile 'org.apache.httpcomponents:httpclient:4.5.1'
compile 'org.json:json:20151123'
compile 'org.simpleframework:simple-xml:2.7.1'
compile 'commons-cli:commons-cli:1.3.1'
implementation 'commons-cli:commons-cli:1.3'
implementation 'org.apache.httpcomponents:httpclient:4.5.1'
implementation 'org.json:json:20151123'
implementation 'org.simpleframework:simple-xml:2.7.1'
implementation 'commons-cli:commons-cli:1.3.1'
}