review-to-json 커밋

This commit is contained in:
2026-02-25 15:27:36 +09:00
parent 7ac03692e9
commit a419bd2768
229 changed files with 2044 additions and 1117 deletions

View File

@@ -2,6 +2,7 @@ plugins {
id 'java'
id 'org.springframework.boot' version '4.0.3'
id 'io.spring.dependency-management' version '1.1.7'
id 'com.diffplug.spotless' version '6.25.0'
}
group = 'com.kamcoback.cd'
@@ -37,8 +38,8 @@ dependencies {
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-webmvc-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
// testImplementation 'org.springframework.boot:spring-boot-starter-webmvc-test'
// testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
implementation "com.querydsl:querydsl-jpa:5.0.0:jakarta"
annotationProcessor "com.querydsl:querydsl-apt:5.0.0:jakarta"
@@ -49,6 +50,21 @@ dependencies {
}
tasks.named('test') {
useJUnitPlatform()
//tasks.named('test') {
// useJUnitPlatform()
//}
// Spotless configuration for code formatting (2-space indent)
spotless {
java {
target 'src/**/*.java'
googleJavaFormat('1.19.2') // Default Google Style = 2 spaces (NO .aosp()!)
trimTrailingWhitespace()
endWithNewline()
}
}
// Run spotlessCheck before build
tasks.named('build') {
dependsOn 'spotlessCheck'
}