rusefi/java_tools/proxy_server/build.gradle

19 lines
610 B
Groovy
Raw Normal View History

2020-07-24 09:11:37 -07:00
plugins {
id 'java'
}
dependencies {
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'
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
2020-07-24 09:11:37 -07:00
}