Skip to content

Commit

Permalink
feat: swagger 헤더 변경, favicon 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Seol-JY committed Aug 15, 2024
1 parent 4aeb810 commit f78abcf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ configurations {

repositories {
mavenCentral()
flatDir {
dirs 'libs'
}
}

dependencies {
Expand Down Expand Up @@ -59,6 +62,10 @@ dependencies {

/* Swagger */
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0'
implementation(group: 'org.springdoc', name: 'springdoc-openapi-starter-webmvc-ui', version: '2.6.0') {
exclude group: 'org.webjars', module: 'swagger-ui'
}
implementation files('libs/swagger-ui-5.17.14.jar')

/* Thymeleaf */
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:3.3.1'
Expand Down
Binary file added libs/swagger-ui-5.17.14.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ private Components securitySchemes() {

private Info apiInfo(String activeProfile) {
return new Info()
.title("Toduck 백엔드 API 명세서 (" + activeProfile + ")")
.title("백엔드 API 명세서 (" + activeProfile + ")")
.description(
"<p>이 문서는 Toduck 백엔드 API의 사용 방법과 예시를 제공합니다. "
+
Expand Down
Binary file added src/main/resources/static/favicon.ico
Binary file not shown.

0 comments on commit f78abcf

Please sign in to comment.