let's separate Android from not Android

This commit is contained in:
rusefillc 2022-10-15 17:46:48 -04:00
parent 4eee729d82
commit 32c955df3d
2 changed files with 5 additions and 1 deletions

View File

@ -4,6 +4,7 @@ plugins {
}
apply from: '../../android/dependencies.gradle'
apply from: '../../java_tools/dependencies.gradle'
configurations {
all*.exclude group: 'org.hamcrest', module: 'hamcrest-core'
@ -22,10 +23,12 @@ dependencies {
implementation group: 'com.fazecast', name: 'jSerialComm', version: '2.9.2'
implementation group: 'tel.schich', name: 'javacan-core', version: '3.2.0'
implementation group: 'net.jcip', name: 'jcip-annotations', version: '1.0'
implementation libs.json
implementation global_libs.json
implementation ts_plugin_libs.httpclient
// junit 4.13 does not mix well with httpclient :(
testImplementation group: 'junit', name: 'junit', version: '4.8.2'
testFixturesImplementation libs.mockito
testFixturesApi global_libs.annotations
testFixturesApi global_libs.junit
}

View File

@ -4,6 +4,7 @@ ext {
annotations : "org.jetbrains:annotations:16.0.1",
jsr305 : "com.google.code.findbugs:jsr305:3.0.2",
antlr : "org.antlr:antlr4:4.9.3", // use ANTLR version 4
json : "com.googlecode.json-simple:json-simple:1.1.1",
]
}