plugins { id 'java' id 'org.springframework.boot' version '3.5.4' id 'io.spring.dependency-management' version '1.1.7' } group = 'com.bio' version = '0.0.1-SNAPSHOT' java { toolchain { languageVersion = JavaLanguageVersion.of(17) } } configurations { compileOnly { extendsFrom annotationProcessor } } repositories { mavenCentral() } dependencies { developmentOnly 'org.springframework.boot:spring-boot-devtools' implementation 'org.springframework.boot:spring-boot-starter-data-jpa' // PostgreSQL JDBC runtimeOnly 'org.postgresql:postgresql' implementation 'org.springframework.boot:spring-boot-starter-web' // Spring Securit implementation 'org.springframework.boot:spring-boot-starter-security' // Validation implementation 'org.springframework.boot:spring-boot-starter-validation' // MapStruct implementation 'org.mapstruct:mapstruct:1.5.5.Final' annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.5.Final' // MyBatis implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.3' // jwt implementation 'io.jsonwebtoken:jjwt-api:0.12.5' // lombok compileOnly 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok-mapstruct-binding:0.2.0' testImplementation 'org.springframework.boot:spring-boot-starter-test' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' // querydsl implementation 'io.github.openfeign.querydsl:querydsl-jpa:6.11' annotationProcessor 'io.github.openfeign.querydsl:querydsl-apt:6.11:jpa' annotationProcessor 'jakarta.annotation:jakarta.annotation-api' annotationProcessor 'jakarta.persistence:jakarta.persistence-api' // p6spy implementation 'com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.9.0' // SpringDoc OpenAPI (Swagger) implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.9' } tasks.named('test') { useJUnitPlatform() } // querydsl def generatedSrcDir = 'build/generated/sources/annotation-processor' clean { delete file(generatedSrcDir) } tasks.withType(JavaCompile).configureEach { options.generatedSourceOutputDirectory = file(generatedSrcDir) }