diff --git a/build.gradle b/build.gradle index 3f4a0ed4..651da3d9 100644 --- a/build.gradle +++ b/build.gradle @@ -21,7 +21,6 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-jdbc' - implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.5.0' implementation 'org.springframework.boot:spring-boot-starter-validation' implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6' @@ -43,6 +42,9 @@ dependencies { testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.springframework.security:spring-security-test' + //swagger 2.2.0 사용 2.5.0는 does not exist in document 에러 발생 + implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0' + // ⭐ Spring boot 3.x이상 QueryDsl 추가 implementation 'com.querydsl:querydsl-jpa:5.0.0:jakarta' annotationProcessor "com.querydsl:querydsl-apt:5.0.0:jakarta"