2021-08-14 23:15:31 -07:00
|
|
|
plugins {
|
|
|
|
id 'java-library'
|
2023-05-30 19:10:01 -07:00
|
|
|
id 'com.github.johnrengelman.shadow' version "${shadowVersion}"
|
2021-08-14 23:15:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
defaultTasks 'shadowJar'
|
|
|
|
|
|
|
|
dependencies {
|
2022-10-15 07:38:34 -07:00
|
|
|
api project(':logging')
|
2021-08-14 23:15:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
manifest {
|
2023-05-30 20:45:17 -07:00
|
|
|
attributes(
|
|
|
|
'Main-Class': 'com.rusefi.EnumToString'
|
|
|
|
)
|
2021-08-14 23:15:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-10-15 08:12:18 -07:00
|
|
|
exclude(dependency(global_libs.jsr305))
|
|
|
|
exclude(dependency(global_libs.annotations))
|
2021-08-14 23:15:31 -07:00
|
|
|
}
|
2024-02-14 11:43:20 -08:00
|
|
|
}
|