Ant should go, gradle is the unified way #4371

This commit is contained in:
rusefillc 2022-07-28 16:35:57 -04:00
parent 1f458f5fb3
commit c9bc396011
2 changed files with 16 additions and 0 deletions

View File

@ -1,6 +1,8 @@
include ':app'
include ':shared_io'
project(':shared_io').projectDir = new File('../java_console/shared_io')
include ':shared_ui'
project(':shared_ui').projectDir = new File('../java_console/shared_ui')
include ':ecu_io'
project(':ecu_io').projectDir = new File('../java_console/io')
include ':logging'

View File

@ -0,0 +1,14 @@
plugins {
id 'java-library'
}
apply from: '../../android/dependencies.gradle'
dependencies {
api project(':ecu_io')
api project(':models')
api ts_plugin_libs.httpclient
api ts_plugin_libs.httpmime
api libs.json
testImplementation libs.junit
}