Skip to content

Commit

Permalink
➕ Chore: Swagger API 의존성 추가 (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
win-luck committed Oct 13, 2023
1 parent 925c4dc commit ca23caf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ dependencies {
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'

// Swagger dependency
implementation 'io.springfox:springfox-boot-starter:3.0.0'
implementation 'io.springfox:springfox-swagger-ui:3.0.0'
}

tasks.named('test') {
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# db
spring.profiles.include = db

# swagger
spring.mvc.pathmatch.matching-strategy=ant_path_matcher

0 comments on commit ca23caf

Please sign in to comment.