rusefi/java_tools/enum_to_string/build.gradle

24 lines
423 B
Groovy

plugins {
id 'java-library'
id 'com.github.johnrengelman.shadow' version "${shadowVersion}"
}
defaultTasks 'shadowJar'
dependencies {
api project(':logging')
}
shadowJar {
manifest {
attributes(
'Main-Class': 'com.rusefi.EnumToString'
)
}
dependencies {
exclude(dependency(global_libs.jsr305))
exclude(dependency(global_libs.annotations))
}
}