2020-07-24 09:11:37 -07:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-10-15 08:27:25 -07:00
|
|
|
implementation project(':logging-api')
|
|
|
|
implementation project(':ecu_io')
|
|
|
|
|
2022-10-15 21:07:07 -07:00
|
|
|
// todo: what's the relationship with global_libs.javaxJson?
|
|
|
|
implementation 'org.glassfish:javax.json:1.1.4'
|
2022-10-15 15:13:04 -07:00
|
|
|
implementation 'org.takes:takes:1.20'
|
|
|
|
|
2020-07-24 09:11:37 -07:00
|
|
|
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'
|
2022-10-15 20:45:58 -07:00
|
|
|
implementation global_libs.jsr305
|
|
|
|
|
|
|
|
testImplementation testFixtures(project(':ecu_io'))
|
|
|
|
testImplementation ts_plugin_libs.httpcore
|
2024-09-11 08:20:39 -07:00
|
|
|
}
|