Ant should go, gradle is the unified way #4371
This commit is contained in:
parent
1f458f5fb3
commit
c9bc396011
|
@ -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'
|
||||
|
|
|
@ -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
|
||||
}
|
Loading…
Reference in New Issue