19 lines
610 B
Groovy
19 lines
610 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':logging-api')
|
|
implementation project(':ecu_io')
|
|
|
|
// todo: what's the relationship with global_libs.javaxJson?
|
|
implementation 'org.glassfish:javax.json:1.1.4'
|
|
implementation 'org.takes:takes:1.20'
|
|
|
|
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 global_libs.jsr305
|
|
|
|
testImplementation testFixtures(project(':ecu_io'))
|
|
testImplementation ts_plugin_libs.httpcore
|
|
} |