36 lines
845 B
Groovy
36 lines
845 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'com.github.johnrengelman.shadow' version '6.1.0'
|
|
}
|
|
|
|
apply from: '../../java_tools/dependencies.gradle'
|
|
|
|
defaultTasks 'shadowJar'
|
|
|
|
configurations {
|
|
all*.exclude group: 'org.hamcrest', module: 'hamcrest-core'
|
|
}
|
|
|
|
dependencies {
|
|
api global_libs.javaxJson
|
|
api project(':logging-api')
|
|
api project(':core_ui')
|
|
api project(':core_io')
|
|
|
|
api global_libs.jcip
|
|
api global_libs.json
|
|
// not 'api' since Android would use own implementation
|
|
implementation ts_plugin_libs.httpclient
|
|
|
|
// junit 4.13 does not mix well with httpclient :(
|
|
testImplementation group: 'junit', name: 'junit', version: '4.8.2'
|
|
testImplementation global_libs.mockito
|
|
}
|
|
|
|
shadowJar {
|
|
manifest {
|
|
attributes(
|
|
'Main-Class': 'com.rusefi.autoupdate.Autoupdate'
|
|
)
|
|
}
|
|
} |