gradle clean-up

This commit is contained in:
rusefillc 2022-10-15 23:45:58 -04:00
parent afe5c56d8a
commit cda581bf28
4 changed files with 8 additions and 8 deletions

View File

@ -17,7 +17,7 @@ dependencies {
api project(':core_ui')
api project(':core_io')
api group: 'net.jcip', name: 'jcip-annotations', version: '1.0'
api global_libs.jcip
api global_libs.json
// not 'api' since Android would use own implementation
implementation ts_plugin_libs.httpclient

View File

@ -16,13 +16,13 @@ tasks.withType(Test) {
dependencies {
implementation global_libs.javaxJson
api global_libs.jcip
api project(':models')
api project(':core_io')
api project(':logging')
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 global_libs.json
implementation ts_plugin_libs.httpclient

View File

@ -9,6 +9,7 @@ ext {
javaxJson : "javax.json:javax.json-api:1.1.4",
snakeyaml : "org.yaml:snakeyaml:1.26",
commons_logging: "commons-logging:commons-logging:1.2",
jcip : 'net.jcip:jcip-annotations:1.0',
]
ts_plugin_libs = [

View File

@ -6,14 +6,13 @@ dependencies {
implementation project(':logging-api')
implementation project(':ecu_io')
compileOnly 'net.jcip:jcip-annotations:1.0'
implementation global_libs.javaxJson
implementation 'org.takes:takes:1.20'
implementation 'org.glassfish:javax.json:1.1.4'
testImplementation testFixtures(project(':ecu_io'))
testImplementation ts_plugin_libs.httpcore
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.13.3'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.13.3'
implementation group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
implementation global_libs.jsr305
testImplementation testFixtures(project(':ecu_io'))
testImplementation ts_plugin_libs.httpcore
}