feat: add zoo sample_test1

This commit is contained in:
2025-11-17 12:15:07 +09:00
parent a74bc5291d
commit 2fed53abe2

View File

@@ -61,19 +61,34 @@ bootJar {
}
// Spotless configuration for code formatting
//spotless {
// java {
// target 'src/**/*.java'
// googleJavaFormat('1.19.2').aosp().reflowLongStrings()
// indentWithSpaces(2)
// trimTrailingWhitespace()
// endWithNewline()
// importOrder()
// removeUnusedImports()
// formatAnnotations()
// }
//}
spotless {
java {
target 'src/**/*.java'
googleJavaFormat('1.19.2').aosp().reflowLongStrings()
indentWithSpaces(2)
trimTrailingWhitespace()
endWithNewline()
importOrder()
removeUnusedImports()
formatAnnotations()
}
java {
target 'src/**/*.java'
googleJavaFormat('1.19.2')
.aosp()
.reflowLongStrings()
// removeUnusedImports()
importOrder()
formatAnnotations()
// indentWithSpaces는 google-java-format에는 영향 없음
// indent control 불가 → 필요하면 google-java-format 제거해야 함
}
}
// Run spotlessCheck before build
tasks.named('build') {
dependsOn 'spotlessCheck'