rusefi/java_tools/enum_to_string/build.gradle

30 lines
531 B
Groovy

plugins {
id 'java-library'
id 'com.github.johnrengelman.shadow' version "${shadowVersion}"
}
defaultTasks 'shadowJar'
dependencies {
api project(':logging')
}
shadowJar {
/*
to exclude suffix '-all'
in resulting archive file name
*/
archiveClassifier = ''
manifest {
attributes(
'Main-Class': 'com.rusefi.EnumToString'
)
}
dependencies {
exclude(dependency(global_libs.jsr305))
exclude(dependency(global_libs.annotations))
}
}