rusefi/java_tools/proxy_server/build.gradle

19 lines
642 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')
compileOnly 'net.jcip:jcip-annotations:1.0'
implementation 'org.takes:takes:1.20'
implementation 'org.glassfish:javax.json:1.1.4'
testImplementation testFixtures(project(':ecu_io'))
testImplementation ts_plugin_libs.httpcore
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'
implementation group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
}