rusefi/java_tools/enum_to_string/build.gradle

30 lines
531 B
Groovy
Raw Normal View History

plugins {
id 'java-library'
2023-05-30 19:10:01 -07:00
id 'com.github.johnrengelman.shadow' version "${shadowVersion}"
}
defaultTasks 'shadowJar'
dependencies {
2022-10-15 07:38:34 -07:00
api project(':logging')
}
shadowJar {
/*
to exclude suffix '-all'
in resulting archive file name
*/
archiveClassifier = ''
manifest {
2023-05-30 20:45:17 -07:00
attributes(
'Main-Class': 'com.rusefi.EnumToString'
)
}
dependencies {
exclude(dependency(global_libs.jsr305))
exclude(dependency(global_libs.annotations))
}
2024-02-14 11:43:20 -08:00
}