helping Android

This commit is contained in:
rusefi 2020-07-12 23:45:40 -04:00
parent 4e81034aeb
commit 6d8b3f5d94
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,3 @@
ext.libs = [
junit : "junit:junit:4.13"
]

View File

@ -2,6 +2,8 @@ plugins {
id 'java'
}
apply from: '../../android/dependencies.gradle'
configurations {
all*.exclude group: 'org.hamcrest', module: 'hamcrest-core'
}
@ -17,5 +19,5 @@ dependencies {
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.12'
testImplementation group: 'junit', name: 'junit', version: '4.8.2'
testImplementation libs.junit
}